Method: Application.each_option
- Defined in:
- lib/appl.rb
.each_option ⇒ Object
199 200 201 202 203 204 205 206 |
# File 'lib/appl.rb', line 199 def each_option .each { |opt,(desc,arg,dfl,act)| case dfl when Symbol then dfl = const_get dfl end yield opt, desc, arg, dfl, act } end |