Class: Phoenx::Scheme

Inherits:
Object
  • Object
show all
Defined in:
lib/phoenx/entities/scheme.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, block) ⇒ Scheme

Returns a new instance of Scheme.



8
9
10
11
# File 'lib/phoenx/entities/scheme.rb', line 8

def initialize(name, block)
	@name = name
	self.instance_eval(&block)
end

Instance Attribute Details

#archive_configurationObject

Returns the value of attribute archive_configuration.



5
6
7
# File 'lib/phoenx/entities/scheme.rb', line 5

def archive_configuration
  @archive_configuration
end

#launch_configurationObject

Returns the value of attribute launch_configuration.



6
7
8
# File 'lib/phoenx/entities/scheme.rb', line 6

def launch_configuration
  @launch_configuration
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/phoenx/entities/scheme.rb', line 4

def name
  @name
end