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(={}) = @project_name = [:project_name] @full_project_name = [:full_project_name] # includes -development at the end @project_path = [:project_path] || get_project_path @properties = default_properties # defaults make project.rb simpler end |