Class: Dev::TargetProcess::Project

Inherits:
Object
  • Object
show all
Defined in:
lib/firespring_dev_commands/target_process/project.rb

Overview

Class containing project information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Project

Returns a new instance of Project.



7
8
9
10
11
12
# File 'lib/firespring_dev_commands/target_process/project.rb', line 7

def initialize(data)
  @data = data
  @id = data['Id']
  @type = data['ResourceType']
  @name = data['Name']
end

Instance Attribute Details

#dateObject

Returns the value of attribute date.



5
6
7
# File 'lib/firespring_dev_commands/target_process/project.rb', line 5

def date
  @date
end

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/firespring_dev_commands/target_process/project.rb', line 5

def id
  @id
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/firespring_dev_commands/target_process/project.rb', line 5

def name
  @name
end

#typeObject

Returns the value of attribute type.



5
6
7
# File 'lib/firespring_dev_commands/target_process/project.rb', line 5

def type
  @type
end