fastlane 2.69.0.beta.20171204010003 → 2.69.0.beta.20171205010003
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/actions/appium.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +5 -2
- data/spaceship/lib/spaceship/base.rb +4 -4
- data/spaceship/lib/spaceship/tunes/iap_detail.rb +8 -2
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b03e2f9c11fdcde5531d97cf0083fe1b01aab953
|
4
|
+
data.tar.gz: 948146daac281de6b6f315e1d4b81e0a7ecadd6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3322e536ea10336b9c7d8809ca94d9597a2003093a17b62d494d6161fae6f3847f9355cd767da0eba32f04d58061482bb006387b0d15c1d7d4461ac19975db67
|
7
|
+
data.tar.gz: 8766855b6161e939bb1e06c6d1d9b3676b71e30c61cf6840a719e6e076443ed32a01a4eb632424e94f96db210af9b6e6f047746399179269da9e3f99cecbac49
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.69.0.beta.
|
2
|
+
VERSION = '2.69.0.beta.20171205010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -135,7 +135,10 @@ module Gym
|
|
135
135
|
hash = normalize_export_options(Gym.config[:export_options])
|
136
136
|
else
|
137
137
|
# Reads options from file
|
138
|
-
|
138
|
+
plist_file_path = Gym.config[:export_options]
|
139
|
+
UI.user_error!("Couldn't find plist file at path #{File.expand_path(plist_file_path)}") unless File.exist?(plist_file_path)
|
140
|
+
hash = Plist.parse_xml(plist_file_path)
|
141
|
+
UI.user_error!("Couldn't read provided plist at path #{File.expand_path(plist_file_path)}") if hash.nil?
|
139
142
|
# Convert keys to symbols
|
140
143
|
hash = keys_to_symbols(hash)
|
141
144
|
end
|
@@ -170,7 +173,7 @@ module Gym
|
|
170
173
|
# xcodebuild will not use provisioning profiles
|
171
174
|
# if we don't specify signingStyle as manual
|
172
175
|
if Helper.xcode_at_least?("9.0") && hash[:provisioningProfiles]
|
173
|
-
hash[:signingStyle] =
|
176
|
+
hash[:signingStyle] = 'manual'
|
174
177
|
end
|
175
178
|
|
176
179
|
hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
|
@@ -191,8 +191,8 @@ module Spaceship
|
|
191
191
|
# Certificate.factory(attrs)
|
192
192
|
# #=> #<PushCertificate ... >
|
193
193
|
#
|
194
|
-
def factory(attrs)
|
195
|
-
self.new(attrs)
|
194
|
+
def factory(attrs, existing_client = nil)
|
195
|
+
self.new(attrs, existing_client)
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
@@ -210,12 +210,12 @@ module Spaceship
|
|
210
210
|
# attributes that are defined by `attr_mapping`
|
211
211
|
#
|
212
212
|
# Do not override `initialize` in your own models.
|
213
|
-
def initialize(attrs = {})
|
213
|
+
def initialize(attrs = {}, existing_client = nil)
|
214
214
|
attrs.each do |key, val|
|
215
215
|
self.send("#{key}=", val) if respond_to?("#{key}=")
|
216
216
|
end
|
217
217
|
self.raw_data = DataHash.new(attrs)
|
218
|
-
@client = self.class.client
|
218
|
+
@client = existing_client || self.class.client
|
219
219
|
self.setup
|
220
220
|
end
|
221
221
|
|
@@ -81,7 +81,7 @@ module Spaceship
|
|
81
81
|
}
|
82
82
|
end
|
83
83
|
|
84
|
-
raw_data.set(["versions"], [{ reviewNotes: { value: @review_notes }, contentHosting
|
84
|
+
raw_data.set(["versions"], [{ reviewNotes: { value: @review_notes }, "contentHosting" => raw_data['versions'].first['contentHosting'], "details" => { "value" => new_versions }, "id" => raw_data["versions"].first["id"], "reviewScreenshot" => { "value" => review_screenshot } }])
|
85
85
|
end
|
86
86
|
|
87
87
|
# transforms user-set intervals to iTC ones
|
@@ -133,6 +133,12 @@ module Spaceship
|
|
133
133
|
Tunes::IAPStatus.get_from_string(raw_data["versions"].first["status"])
|
134
134
|
end
|
135
135
|
|
136
|
+
# @return (Hash) Hash containing existing review screenshot data
|
137
|
+
def review_screenshot
|
138
|
+
return nil unless raw_data && raw_data["versions"] && raw_data["versions"].first && raw_data["versions"].first["reviewScreenshot"] && raw_data['versions'].first["reviewScreenshot"]["value"]
|
139
|
+
raw_data['versions'].first['reviewScreenshot']['value']
|
140
|
+
end
|
141
|
+
|
136
142
|
# Saves the current In-App-Purchase
|
137
143
|
def save!
|
138
144
|
# Transform localization versions back to original format.
|
@@ -147,7 +153,7 @@ module Spaceship
|
|
147
153
|
}
|
148
154
|
end
|
149
155
|
|
150
|
-
raw_data.set(["versions"], [{ reviewNotes: { value: @review_notes }, contentHosting: raw_data['versions'].first[
|
156
|
+
raw_data.set(["versions"], [{ reviewNotes: { value: @review_notes }, contentHosting: raw_data['versions'].first['contentHosting'], "details" => { "value" => versions_array }, id: raw_data["versions"].first["id"], reviewScreenshot: { "value" => review_screenshot } }])
|
151
157
|
|
152
158
|
# transform pricingDetails
|
153
159
|
intervals_array = []
|
@@ -753,7 +753,7 @@ module Spaceship
|
|
753
753
|
# so we cache it
|
754
754
|
# @return [UserDetail] the response
|
755
755
|
def user_detail_data
|
756
|
-
@_cached_user_detail_data ||= Spaceship::Tunes::UserDetail.factory(user_details_data)
|
756
|
+
@_cached_user_detail_data ||= Spaceship::Tunes::UserDetail.factory(user_details_data, self)
|
757
757
|
end
|
758
758
|
|
759
759
|
#####################################################
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.69.0.beta.
|
4
|
+
version: 2.69.0.beta.20171205010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-12-
|
18
|
+
date: 2017-12-05 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|