Class: Cqrs::CommandGenerator

Inherits:
Rails::Generators::NamedBase
  • Object
show all
Defined in:
lib/generators/cqrs/command_generator.rb

Instance Method Summary collapse

Instance Method Details

#copy_command_fileObject



7
8
9
10
# File 'lib/generators/cqrs/command_generator.rb', line 7

def copy_command_file
  template "command.rb", "app/domain/commands/#{file_name}.rb"
  template "command_handler.rb", "app/domain/commands/#{file_name}_handler.rb"
end