Method: Cody::Stack#initialize
- Defined in:
- lib/cody/stack.rb
#initialize(options) ⇒ Stack
Returns a new instance of Stack.
8 9 10 11 12 |
# File 'lib/cody/stack.rb', line 8 def initialize() @options = @project_name = @options[:project_name] || inferred_project_name @stack_name = normalize_stack_name([:stack_name] || inferred_stack_name(@project_name)) end |