LoginSignup
2
2

More than 5 years have passed since last update.

rake pry console

Last updated at Posted at 2015-12-09

Rake task で pry を立ち上げる

task :console do
  require 'pry'
  require 'my_gem'
  ARGV.clear
  Pry.start
end

via 7 Lines Every Gem's Rakefile Should Have - Ernie Miller

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2