irbrc 406 B

12345678910111213
  1. # This loads some niceties for irb, courtesy of rvm.
  2. # It also loads your custom ~/.irbrc if it exists.
  3. # If you want to customize the irbrc for ONLY this version of
  4. # ruby then edit this file. It will only be deleted if you do
  5. # an "rvm install" over this ruby version.
  6. if ENV["rvm_path"].nil?
  7. require File.join(ENV["HOME"], "irbrc")
  8. else
  9. require File.join(ENV["rvm_path"], "scripts", "irbrc")
  10. end