Skip to content

Instantly share code, notes, and snippets.

@phaedryx
Created February 11, 2012 18:02
Show Gist options
  • Save phaedryx/1803342 to your computer and use it in GitHub Desktop.
Save phaedryx/1803342 to your computer and use it in GitHub Desktop.
module Foo
class BarGenerator < Rails::Generators::Base
class_option :baz, :aliases => '-b', :type => :string, :default => 'quux', :desc => 'foobar is unfoo'
def bar
puts options[:baz]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment