class MotherBrain::Gear::Service::ActionRunner::CleanRoom
Public Instance Methods
environment_attribute(key, value, options = {})
click to toggle source
# File lib/mb/gears/service/action_runner.rb, line 80 def environment_attribute(key, value, options = {}) options = options.reverse_merge(toggle: false) real_model.add_environment_attribute(key, value, options) end
node_attribute(key, value, options = {})
click to toggle source
# File lib/mb/gears/service/action_runner.rb, line 85 def node_attribute(key, value, options = {}) options = options.reverse_merge(toggle: false) real_model.add_node_attribute(key, value, options) end
service_recipe(recipe)
click to toggle source
# File lib/mb/gears/service/action_runner.rb, line 76 def service_recipe(recipe) real_model.set_service_recipe(recipe) end