Method: ObjectiveCommand::Runners::Runner#apply_options
- Defined in:
- lib/objective_command/runners/runner.rb
#apply_options(*options) ⇒ Object
151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/objective_command/runners/runner.rb', line 151 def ( * ) .flatten.each do |k| option = @@running_options[k] if option.nil? raise ArgumentError, "Bad runner option: #{k}" else send option end end self end |