Class: RCS::Deploy

Inherits:
Object
  • Object
show all
Defined in:
lib/rcs-common/deploy.rb

Defined Under Namespace

Classes: Me, Target

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params) ⇒ Deploy

Returns a new instance of Deploy.



5
6
7
8
# File 'lib/rcs-common/deploy.rb', line 5

def initialize(params)
  @target = Target.new(params)
  @me = Me.new
end

Instance Attribute Details

#meObject (readonly)

Returns the value of attribute me.



3
4
5
# File 'lib/rcs-common/deploy.rb', line 3

def me
  @me
end

#targetObject (readonly)

Returns the value of attribute target.



3
4
5
# File 'lib/rcs-common/deploy.rb', line 3

def target
  @target
end