class CommandServiceObject::Configuration
Attributes
append_controller_helper[RW]
command_method_name[RW]
skip_command[RW]
skip_error[RW]
skip_test[RW]
Public Class Methods
new()
click to toggle source
# File lib/command_service_object/configuration.rb, line 6 def initialize @append_controller_helper = true @command_method_name = :command @skip_command = false @skip_test = false @skip_error = true end