Method: Cody::Base#initialize

Defined in:
lib/cody/base.rb

#initialize(options) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
# File 'lib/cody/base.rb', line 6

def initialize(options)
  @options = options
  @project_name = options[:project_name] || inferred_project_name
  @full_project_name = project_name_convention(@project_name)
end