Sha256: fbfc1dd52636385643e9b4aba51c19ccbbdf72c61eae90ebde1f33b15f216d71

Contents?: true

Size: 791 Bytes

Versions: 7

Compression:

Stored size: 791 Bytes

Contents

require 'hutch'

Hutch::Logging.logger = Rails.logger
Hutch.connect

CommandServiceObject.configure do |config|
  # By setting the append_controller_helper to false you will need to
  # manually include the CommandServiceObject::ServiceControllerHelper
  # module to your base controller.
  # config.append_controller_helper = true
  #
  # The default command method name is :command
  # but you can easily rename it to avoid collisions.
  # config.command_method_name = :command
  #
  # Skip the generation of commands by the rails g service command
  # config.skip_command = false
  #
  # Skip the generation of minitest/rspec by the rails g service command
  # config.skip_test = false
  #
  # Skip the generation of errors by the rails g service command
  # config.skip_error = true
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
command_service_object-1.4.1 lib/generators/service/install/templates/initializer.rb
command_service_object-1.4.0 lib/generators/service/install/templates/initializer.rb
command_service_object-1.3.0 lib/generators/service/install/templates/initializer.rb
command_service_object-1.2.1 lib/generators/service/install/templates/initializer.rb
command_service_object-1.1.1 lib/generators/service/install/templates/initializer.rb
command_service_object-1.1.0 lib/generators/service/install/templates/initializer.rb
command_service_object-1.0.0 lib/generators/service/install/templates/initializer.rb