Class: Tug::Testflight

Inherits:
Deployer show all
Defined in:
lib/tug/deployment/testflight.rb

Instance Attribute Summary collapse

Attributes inherited from Deployer

#api_token, #dsym, #file, #notes, #notify

Instance Method Summary collapse

Methods inherited from Deployer

#deploy

Constructor Details

#initialize(options) ⇒ Testflight

Returns a new instance of Testflight.



7
8
9
10
11
12
# File 'lib/tug/deployment/testflight.rb', line 7

def initialize(options)
  super

  @lists      = options[:lists]
  @team_token = options[:team_token]
end

Instance Attribute Details

#listsObject (readonly)

Returns the value of attribute lists.



5
6
7
# File 'lib/tug/deployment/testflight.rb', line 5

def lists
  @lists
end

#team_tokenObject (readonly)

Returns the value of attribute team_token.



4
5
6
# File 'lib/tug/deployment/testflight.rb', line 4

def team_token
  @team_token
end