Class: YkCommand::ModuleHandler

Inherits:
Thor
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/yk_command/module/module_handler.rb

Instance Method Summary collapse

Constructor Details

#initialize(args = [], options = {}, config = {}) ⇒ ModuleHandler

Returns a new instance of ModuleHandler.



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/yk_command/module/module_handler.rb', line 6

def initialize(args = [], options = {}, config = {})

  super
  @final_path = config[:final_path]
  @name = config[:name]
  @project = config[:project]
  @prefixed_module = config[:prefixed_module]
  @author = config[:author]
  @date = config[:date]

end