class Spaceship::TestFlight::TestInfo
Attributes
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
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
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
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
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
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 52 def deep_copy TestInfo.new(raw_data.map(&:dup)) end
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 16 def description=(value) raw_data.each { |locale| locale['description'] = value } end
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 24 def feedback_email=(value) raw_data.each { |locale| locale['feedbackEmail'] = value } end
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 40 def marketing_url=(value) raw_data.each { |locale| locale['marketingUrl'] = value } end
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 32 def privacy_policy_url=(value) raw_data.each { |locale| locale['privacyPolicyUrl'] = value } end
# File spaceship/lib/spaceship/test_flight/test_info.rb, line 48 def whats_new=(value) raw_data.each { |locale| locale['whatsNew'] = value } end