Module: Rails::Generator::Commands

Defined in:
lib/rails_generator/commands.rb

Defined Under Namespace

Classes: Base, Create, Destroy, List, RewindBase, Update

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

Even more convenient access to commands. Include Commands in the generator Base class to get a nice #command instance method which returns a delegate for the requested command.



21
22
23
24
25
# File 'lib/rails_generator/commands.rb', line 21

def self.included(base)
  base.send(:define_method, :command) do |command|
    Commands.instance(command, self)
  end
end

.instance(command, generator) ⇒ Object

Here’s a convenient way to get a handle on generator commands. Command.instance(‘destroy’, my_generator) instantiates a Destroy delegate of my_generator ready to do your dirty work.



13
14
15
16
# File 'lib/rails_generator/commands.rb', line 13

def self.instance(command, generator)
  const_get(command.to_s.camelize).new(generator)
  
end