Skip to content

Instantly share code, notes, and snippets.

View buren-trialbee's full-sized avatar

Jacob Burenstam buren-trialbee

View GitHub Profile
# 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