fastlane 2.40.0.beta.20170616010015 → 2.40.0.beta.20170617010037

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: 6e7e807d81dae130eb96325be8ff72c6e4921071
4
- data.tar.gz: a9f06931fd7b92732039362491963b910070ed5a
3
+ metadata.gz: 6564ac2e489f73f7dcc34a9f66e4e5e0d0746965
4
+ data.tar.gz: 147508a16b8c6c5ac0ee3e0fecf824a7a417b059
5
5
  SHA512:
6
- metadata.gz: 7de5eaeadd96ae39ea779d8d40deaea075007d1d8d7e6cd8d1442652eda342e66fb420f066b5aba3df11b053786a4da7178082506546e5dd3dec0604707d2a91
7
- data.tar.gz: 040af6751daf88fd973a044d6f9d1dd8783ed86eeafcb1f14fa6cdd42a032e3ccf83939b41dc919e925cb633e1d473a853e913a8fdc3ba9c6420c68ed79d7eb2
6
+ metadata.gz: 7c22a6243ee67518aee35d093ce3f36a056840c3ae3d175b608d990ab6649e208eb62c5b9599bdd8fa91ea4a402d2848d2e9992992644422f8d9d78f13c2be31
7
+ data.tar.gz: 76f1098bbeba94fcfa4d6e7d24b0e08bb37b523926dad50d531d4bd5db8e1f2a636ed0be97ab7cf701d58bc8f5f0f2f2e9e53f5cec4b8ac17f6132d3c6379186
@@ -12,10 +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
-
19
15
  folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
20
16
 
21
17
  command_prefix = [
@@ -30,6 +26,12 @@ module Fastlane
30
26
  '-'
31
27
  ].join(' ')
32
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
+
33
35
  command = [
34
36
  command_prefix,
35
37
  'agvtool',
@@ -47,9 +49,8 @@ module Fastlane
47
49
 
48
50
  return Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
49
51
  end
50
- rescue => ex
51
- UI.error('Before being able to increment and read the version number from your Xcode project, you first need to setup your project properly. Please follow the guide at https://developer.apple.com/library/content/qa/qa1827/_index.html')
52
- raise ex
52
+ rescue
53
+ UI.user_error!("Apple Generic Versioning is not enabled in this project.\nBefore being able to increment and read the version number from your Xcode project, you first need to setup your project properly. Please follow the guide at https://developer.apple.com/library/content/qa/qa1827/_index.html")
53
54
  end
54
55
 
55
56
  def self.description
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.40.0.beta.20170616010015'.freeze
2
+ VERSION = '2.40.0.beta.20170617010037'.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
@@ -68,8 +68,8 @@ module Supply
68
68
 
69
69
  Google::Apis::ClientOptions.default.application_name = "fastlane - supply"
70
70
  Google::Apis::ClientOptions.default.application_version = Fastlane::VERSION
71
- Google::Apis::RequestOptions.default.timeout_sec = 300
72
- Google::Apis::RequestOptions.default.open_timeout_sec = 300
71
+ Google::Apis::ClientOptions.default.read_timeout_sec = 300
72
+ Google::Apis::ClientOptions.default.open_timeout_sec = 300
73
73
  Google::Apis::RequestOptions.default.retries = 5
74
74
 
75
75
  self.android_publisher = Androidpublisher::AndroidPublisherService.new
@@ -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.40.0.beta.20170616010015
4
+ version: 2.40.0.beta.20170617010037
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-17 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -1375,23 +1375,23 @@ metadata:
1375
1375
  post_install_message:
1376
1376
  rdoc_options: []
1377
1377
  require_paths:
1378
- - screengrab/lib
1379
- - snapshot/lib
1380
- - pem/lib
1381
- - deliver/lib
1378
+ - gym/lib
1379
+ - sigh/lib
1382
1380
  - scan/lib
1383
- - cert/lib
1381
+ - frameit/lib
1384
1382
  - fastlane/lib
1385
- - produce/lib
1386
- - supply/lib
1387
- - credentials_manager/lib
1388
- - match/lib
1389
- - sigh/lib
1390
- - pilot/lib
1391
1383
  - spaceship/lib
1392
- - frameit/lib
1384
+ - pilot/lib
1385
+ - cert/lib
1386
+ - pem/lib
1387
+ - match/lib
1393
1388
  - fastlane_core/lib
1394
- - gym/lib
1389
+ - deliver/lib
1390
+ - credentials_manager/lib
1391
+ - supply/lib
1392
+ - snapshot/lib
1393
+ - screengrab/lib
1394
+ - produce/lib
1395
1395
  required_ruby_version: !ruby/object:Gem::Requirement
1396
1396
  requirements:
1397
1397
  - - ">="