Skip to content

Instantly share code, notes, and snippets.

@leighhalliday
Created May 30, 2015 21:10
Show Gist options
  • Save leighhalliday/da85b206011851fcac55 to your computer and use it in GitHub Desktop.
Save leighhalliday/da85b206011851fcac55 to your computer and use it in GitHub Desktop.
To start console in Sinatra
desc "start console"
task :console do
require 'irb'
require 'irb/completion'
require ::File.expand_path('../config/environment', __FILE__)
ARGV.clear
IRB.start
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment