Class: Map
- Inherits:
-
Object
show all
- Defined in:
- lib/ima/options.rb
Defined Under Namespace
Modules: Arguments, Options
Class Method Summary
collapse
Class Method Details
permalink
.options_for(*args, &block) ⇒ Object
[View source]
160
161
162
|
# File 'lib/ima/options.rb', line 160
def Map.options_for(*args, &block)
Map::Options.for(*args, &block)
end
|
permalink
.options_for!(*args, &block) ⇒ Object
[View source]
164
165
166
|
# File 'lib/ima/options.rb', line 164
def Map.options_for!(*args, &block)
Map::Options.for(*args, &block).pop
end
|
permalink
.update_options_for!(args, &block) ⇒ Object
[View source]
168
169
170
171
|
# File 'lib/ima/options.rb', line 168
def Map.update_options_for!(args, &block)
options = Map.options_for(args)
block.call(options)
end
|