fastlane 2.14.0 → 2.14.1
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/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/helper.rb +3 -3
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +1 -1
- data/spaceship/lib/spaceship/spaceauth_runner.rb +2 -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: 5e04f5f83b61ab071af4311c38c9ce07527a8c5f
|
|
4
|
+
data.tar.gz: c9bd3ec8b52c2812fd8a0274e62df99aaafee68e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0fd20e6e853736fcf55cda1ca8d38ccd3757205c64a6411c756023669a7af0f3766839efd4596cde12320f84cb9c44cb7cdee8abe332f3b79ac4f889b936fc0
|
|
7
|
+
data.tar.gz: a54799c2b5a17ef1ea97e0cec35d9517f8750ecb14170f030cba317bbb826253ca20f66199a05bdbfc3a59d911b407699be425264e0e6b69a36f58784c707d90
|
|
@@ -199,13 +199,13 @@ module FastlaneCore
|
|
|
199
199
|
name
|
|
200
200
|
].map { |path| File.expand_path(path) }
|
|
201
201
|
|
|
202
|
-
# Transforms ["thing"] to ["thing", "thing-db", "thing
|
|
202
|
+
# Transforms ["thing"] to ["thing-db", "thing.keychain-db", "thing", "thing.keychain"]
|
|
203
203
|
keychain_paths = []
|
|
204
204
|
possible_locations.each do |location|
|
|
205
|
-
keychain_paths << location
|
|
206
205
|
keychain_paths << "#{location}-db"
|
|
207
|
-
keychain_paths << "#{location}.keychain"
|
|
208
206
|
keychain_paths << "#{location}.keychain-db"
|
|
207
|
+
keychain_paths << location
|
|
208
|
+
keychain_paths << "#{location}.keychain"
|
|
209
209
|
end
|
|
210
210
|
|
|
211
211
|
keychain_path = keychain_paths.find { |path| File.exist?(path) }
|
|
@@ -50,11 +50,11 @@ module Spaceship
|
|
|
50
50
|
puts "---"
|
|
51
51
|
puts ""
|
|
52
52
|
puts "Pass the following via the FASTLANE_SESSION environment variable:"
|
|
53
|
-
puts yaml.cyan.
|
|
53
|
+
puts yaml.cyan.underlined
|
|
54
54
|
puts ""
|
|
55
55
|
puts ""
|
|
56
56
|
puts "Example:"
|
|
57
|
-
puts "export FASTLANE_SESSION='#{yaml}'".cyan.
|
|
57
|
+
puts "export FASTLANE_SESSION='#{yaml}'".cyan.underlined
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
60
|
end
|
|
@@ -1053,7 +1053,7 @@ module Spaceship
|
|
|
1053
1053
|
end
|
|
1054
1054
|
|
|
1055
1055
|
# returns pricing goal array
|
|
1056
|
-
def iap_subscription_pricing_target(app_id: nil, purchase_id: nil, currency
|
|
1056
|
+
def iap_subscription_pricing_target(app_id: nil, purchase_id: nil, currency: nil, tier: nil)
|
|
1057
1057
|
r = request(:get, "ra/apps/#{app_id}/iaps/#{purchase_id}/pricing/equalize/#{currency}/#{tier}")
|
|
1058
1058
|
parse_response(r, 'data')
|
|
1059
1059
|
end
|
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.14.
|
|
4
|
+
version: 2.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -14,7 +14,7 @@ authors:
|
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
|
-
date: 2017-02-
|
|
17
|
+
date: 2017-02-03 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: slack-notifier
|