在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

你可能感兴趣的:(Rails)