fastlane 2.39.1 → 2.39.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2411e22c17c3818313db796d1e55ccb0049e34ad
4
- data.tar.gz: a87e4a541a5e43b010d08b18008a53df2df48f22
3
+ metadata.gz: 45f09be9a41bbef15063861ee392e918ef212892
4
+ data.tar.gz: 563b6f415ed26fab3362790d875ed0a2406532ba
5
5
  SHA512:
6
- metadata.gz: 6bd8c05ba9152f254dc2c63dfd7bb6c2031318705a00ae9a4438839c449e97ea21875cef1ae410758b867d21ce62775e8cd216e2ea85f5495540245d02551929
7
- data.tar.gz: d9634e57836fb72ca524c4a1ea7300565ae9fdc5423a2f45c81db011fa3e79353ff44f437eac10add3c287437ea7b25d10096e40cd5dac77f0afab7c53e08bab
6
+ metadata.gz: c2fbe5e8471232924404a666e9f208739a595ce5a62c10dfcdc1e7661ce8878f5f9f90c0970ac06444a8ce23550f697eaab415ef29dfde4dd50b809eec48c63d
7
+ data.tar.gz: 014be20450569d53d95f3c810276adda71db8b700fc085154b498db4fbcce12f88aec0007b4e13dfdfe25f098a1fc503f8b53ebc02bf174051f6e1034aea8c3d
@@ -12,12 +12,6 @@ module Fastlane
12
12
  end
13
13
 
14
14
  def self.run(params)
15
- # More information about how to set up your project and how it works:
16
- # https://developer.apple.com/library/ios/qa/qa1827/_index.html
17
- # Attention: This is NOT the version number - but the build number
18
- agv_enabled = system('agvtool what-version')
19
- raise "Apple Generic Versioning is not enabled." unless Helper.test? || agv_enabled
20
-
21
15
  folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
22
16
 
23
17
  command_prefix = [
@@ -32,6 +26,12 @@ module Fastlane
32
26
  '-'
33
27
  ].join(' ')
34
28
 
29
+ # More information about how to set up your project and how it works:
30
+ # https://developer.apple.com/library/ios/qa/qa1827/_index.html
31
+ # Attention: This is NOT the version number - but the build number
32
+ agv_enabled = system([command_prefix, 'agvtool what-version', command_suffix].join(' '))
33
+ raise "Apple Generic Versioning is not enabled." unless Helper.test? || agv_enabled
34
+
35
35
  command = [
36
36
  command_prefix,
37
37
  'agvtool',
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.39.1'.freeze
2
+ VERSION = '2.39.2'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -18,6 +18,10 @@ module Snapshot
18
18
  sleep 3 # to be sure the user sees this, as compiling clears the screen
19
19
  end
20
20
 
21
+ if Helper.xcode_at_least?("9")
22
+ UI.user_error!("snapshot currently doesn't work with Xcode 9, we're working on implementing the new screenshots API to offer the best experience 🚀\nYou can change the Xcode version to use using `sudo xcode-select -s /Applications/Xcode...app`")
23
+ end
24
+
21
25
  Snapshot.config[:output_directory] = File.expand_path(Snapshot.config[:output_directory])
22
26
 
23
27
  verify_helper_is_current
@@ -1,7 +1,7 @@
1
1
  module Supply
2
2
  class Uploader
3
3
  def perform_upload
4
- FastlaneCore::PrintTable.print_values(config: Supply.config, hide_keys: [:issuer], title: "Summary for supply #{Fastlane::VERSION}")
4
+ FastlaneCore::PrintTable.print_values(config: Supply.config, hide_keys: [:issuer], mask_keys: [:json_key_data], title: "Summary for supply #{Fastlane::VERSION}")
5
5
 
6
6
  client.begin_edit(package_name: Supply.config[:package_name])
7
7
 
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.39.1
4
+ version: 2.39.2
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-06-16 00:00:00.000000000 Z
18
+ date: 2017-06-19 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -1082,7 +1082,6 @@ files:
1082
1082
  - fastlane_core/README.md
1083
1083
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1084
1084
  - fastlane_core/lib/fastlane_core.rb
1085
- - fastlane_core/lib/fastlane_core/.DS_Store
1086
1085
  - fastlane_core/lib/fastlane_core/build_watcher.rb
1087
1086
  - fastlane_core/lib/fastlane_core/cert_checker.rb
1088
1087
  - fastlane_core/lib/fastlane_core/command_executor.rb