Method: Application.each_option

Defined in:
lib/appl.rb

.each_optionObject



199
200
201
202
203
204
205
206
# File 'lib/appl.rb', line 199

def each_option
  @options.each { |opt,(desc,arg,dfl,act)|
    case dfl
      when Symbol then dfl = const_get dfl
    end
    yield opt, desc, arg, dfl, act
  }
end