Class: Rails::Commands::Commander

Inherits:
Object
  • Object
show all
Defined in:
lib/rails/commands/commander.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCommander

Returns a new instance of Commander.



14
15
16
17
18
# File 'lib/rails/commands/commander.rb', line 14

def initialize
  @raker     = Raker.new
  @tester    = Tester.new
  @generator = Generator.new
end

Instance Attribute Details

#generatorObject (readonly)

Returns the value of attribute generator.



12
13
14
# File 'lib/rails/commands/commander.rb', line 12

def generator
  @generator
end

#rakerObject (readonly)

Returns the value of attribute raker.



12
13
14
# File 'lib/rails/commands/commander.rb', line 12

def raker
  @raker
end

#testerObject (readonly)

Returns the value of attribute tester.



12
13
14
# File 'lib/rails/commands/commander.rb', line 12

def tester
  @tester
end