Method: Codebuild::Project#initialize

Defined in:
lib/codebuild/project.rb

#initialize(options = {}) ⇒ Project

Returns a new instance of Project.



10
11
12
13
14
15
16
# File 'lib/codebuild/project.rb', line 10

def initialize(options={})
  @options = options
  @project_name = options[:project_name]
  @full_project_name = options[:full_project_name] # includes -development at the end
  @project_path = options[:project_path] || get_project_path
  @properties = default_properties # defaults make project.rb simpler
end