More than 5 years have passed since last update.
active_support
等をirbでrequireするのが面倒な場合は.irbrc
を設置する
%w(pp active_support/core_ext tapp).each do |file|
begin
require file
rescue LoadError
puts $!
end
end
pp
, active_support/core_ext
, tapp
がrequireされた状態でirbが開始されるようになる。
他にも、IRB.confの設定もここで行える
http://www.ruby-lang.org/ja/old-man/html/irb.html
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin