Skip to content

Instantly share code, notes, and snippets.

@buren
Created June 23, 2016 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buren/0b6777d98867900c8f9c44d625f90221 to your computer and use it in GitHub Desktop.
Save buren/0b6777d98867900c8f9c44d625f90221 to your computer and use it in GitHub Desktop.
Start a IRB session with a gem loaded
# From http://erniemiller.org/2014/02/05/7-lines-every-gems-rakefile-should-have/
task :console do
require 'irb'
require 'irb/completion'
require 'my_gem'
ARGV.clear
IRB.start
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment