class Spaceship::TestFlight::TestInfo

Attributes

description[RW]

TestInfo Contains a collection of info for testers. There is one “testInfo” for each locale.

For now, when we set a value it sets the same value for all locales When getting a value, we return the first locale values

feedback_email[RW]

TestInfo Contains a collection of info for testers. There is one “testInfo” for each locale.

For now, when we set a value it sets the same value for all locales When getting a value, we return the first locale values

marketing_url[RW]

TestInfo Contains a collection of info for testers. There is one “testInfo” for each locale.

For now, when we set a value it sets the same value for all locales When getting a value, we return the first locale values

privacy_policy_url[RW]

TestInfo Contains a collection of info for testers. There is one “testInfo” for each locale.

For now, when we set a value it sets the same value for all locales When getting a value, we return the first locale values

whats_new[RW]

TestInfo Contains a collection of info for testers. There is one “testInfo” for each locale.

For now, when we set a value it sets the same value for all locales When getting a value, we return the first locale values

Public Instance Methods

deep_copy() click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 52
def deep_copy
  TestInfo.new(raw_data.map(&:dup))
end
description=(value) click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 16
def description=(value)
  raw_data.each { |locale| locale['description'] = value }
end
feedback_email=(value) click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 24
def feedback_email=(value)
  raw_data.each { |locale| locale['feedbackEmail'] = value }
end
marketing_url=(value) click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 40
def marketing_url=(value)
  raw_data.each { |locale| locale['marketingUrl'] = value }
end
privacy_policy_url=(value) click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 32
def privacy_policy_url=(value)
  raw_data.each { |locale| locale['privacyPolicyUrl'] = value }
end
whats_new=(value) click to toggle source
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 48
def whats_new=(value)
  raw_data.each { |locale| locale['whatsNew'] = value }
end