Flowdock
method

add_options!

Importance_1
v2.1.0 - Show latest stable - 1 note - Class: Rails::Generator::Options
add_options!(opt) protected

Override to add your options to the parser:

  def add_options!(opt)
    opt.on('-v', '--verbose') { |value| options[:verbose] = value }
  end
Show source
Register or log in to add new notes.
July 14, 2010
0 thanks

If you need to pass a value

In the above example ‘value’ happens to be either true or false depending if the option was passed in or not. If you wish to capture an actual value you’ll want something like this:

def add_options!(opt)
  opt.on('-option=value') { |value| options[:option] = value }
end