Class: TestFlightConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/motion/project/testflight.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ TestFlightConfig

Returns a new instance of TestFlightConfig.



32
33
34
# File 'lib/motion/project/testflight.rb', line 32

def initialize(config)
  @config = config
end

Instance Attribute Details

#api_tokenObject

Returns the value of attribute api_token.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def api_token
  @api_token
end

#app_tokenObject

Returns the value of attribute app_token.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def app_token
  @app_token
end

#distribution_listsObject

Returns the value of attribute distribution_lists.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def distribution_lists
  @distribution_lists
end

#identify_testersObject

Returns the value of attribute identify_testers.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def identify_testers
  @identify_testers
end

#notifyObject

Returns the value of attribute notify.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def notify
  @notify
end

#sdkObject

Returns the value of attribute sdk.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def sdk
  @sdk
end

#team_tokenObject

Returns the value of attribute team_token.



30
31
32
# File 'lib/motion/project/testflight.rb', line 30

def team_token
  @team_token
end

Instance Method Details

#inspectObject



61
62
63
# File 'lib/motion/project/testflight.rb', line 61

def inspect
  {:sdk => sdk, :api_token => api_token, :team_token => team_token, :app_token => app_token, :distribution_lists => distribution_lists}.inspect
end