Skip to content

Instantly share code, notes, and snippets.

@maiha
Created March 28, 2010 15:31
Show Gist options
  • Save maiha/346808 to your computer and use it in GitHub Desktop.
Save maiha/346808 to your computer and use it in GitHub Desktop.
# example for usage-completions
# using http://github.com/maiha/thor/
# compare: http://github.com/maiha/thor/tree/complete-usage
class Rails < Thor
desc "Open console via irb"
def console(env = 'development')
system("ruby script/console #{env}")
end
end
__END__
% thor list
rails
-----
thor rails:console ENV = "development" # Open console via irb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment