fastlane 2.14.0 → 2.14.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 070a2e3ea852f83722a3a732f385c6d998b4a91f
4
- data.tar.gz: 6b4a9022927123cece1c49d6a1b691c61ed37f3a
3
+ metadata.gz: 5e04f5f83b61ab071af4311c38c9ce07527a8c5f
4
+ data.tar.gz: c9bd3ec8b52c2812fd8a0274e62df99aaafee68e
5
5
  SHA512:
6
- metadata.gz: adf527daf42b09341b84cba7ccd8029de0ffe3303946cce19c89ed6822400dc94223d527fcadad63a75a892351c145d73c1191683f1b12b9ce282841edc8c0a9
7
- data.tar.gz: 268b99f8538e136d11764042be7d43ecda6f2caffee580413cc25e813ab0ef4fc3abed4f00bc61abb54605a17e6b1b1da77d033e4d1e9ef18215f217e21e97e1
6
+ metadata.gz: b0fd20e6e853736fcf55cda1ca8d38ccd3757205c64a6411c756023669a7af0f3766839efd4596cde12320f84cb9c44cb7cdee8abe332f3b79ac4f889b936fc0
7
+ data.tar.gz: a54799c2b5a17ef1ea97e0cec35d9517f8750ecb14170f030cba317bbb826253ca20f66199a05bdbfc3a59d911b407699be425264e0e6b69a36f58784c707d90
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.14.0'.freeze
2
+ VERSION = '2.14.1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -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.keychain", "thing.keychain-db"]
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) }
@@ -56,7 +56,7 @@ module FastlaneCore
56
56
  end
57
57
 
58
58
  def command(message)
59
- log.info("$ #{message}".cyan.underline)
59
+ log.info("$ #{message}".cyan.underlined)
60
60
  end
61
61
 
62
62
  def command_output(message)
@@ -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.underline
53
+ puts yaml.cyan.underlined
54
54
  puts ""
55
55
  puts ""
56
56
  puts "Example:"
57
- puts "export FASTLANE_SESSION='#{yaml}'".cyan.underline
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:, tier:)
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.0
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-02 00:00:00.000000000 Z
17
+ date: 2017-02-03 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier