首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

在Rails中施用Pry

2012-08-26 
在Rails中使用PryPry可看成是IRB的加强版。支持语法高亮等特点。1、在Gemfile中添加:引用group :development

在Rails中使用Pry
Pry可看成是IRB的加强版。支持语法高亮等特点。
1、在Gemfile中添加:
引用group :development do
gem 'pry'
end
运行bundle install。
2、在config/environments/development.r文件最后面添加:
引用silence_warnings do
  require "pry"
  IRB = Pry
end
保存即可。
运行rails console进入pry终端。
pry项目地址:https://github.com/pry/pry

热点排行