fastlane 2.39.2 → 2.40.0.beta.20170616010015
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e7e807d81dae130eb96325be8ff72c6e4921071
|
4
|
+
data.tar.gz: a9f06931fd7b92732039362491963b910070ed5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7de5eaeadd96ae39ea779d8d40deaea075007d1d8d7e6cd8d1442652eda342e66fb420f066b5aba3df11b053786a4da7178082506546e5dd3dec0604707d2a91
|
7
|
+
data.tar.gz: 040af6751daf88fd973a044d6f9d1dd8783ed86eeafcb1f14fa6cdd42a032e3ccf83939b41dc919e925cb633e1d473a853e913a8fdc3ba9c6420c68ed79d7eb2
|
@@ -12,6 +12,10 @@ 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
|
+
|
15
19
|
folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
|
16
20
|
|
17
21
|
command_prefix = [
|
@@ -26,12 +30,6 @@ module Fastlane
|
|
26
30
|
'-'
|
27
31
|
].join(' ')
|
28
32
|
|
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
33
|
command = [
|
36
34
|
command_prefix,
|
37
35
|
'agvtool',
|
@@ -49,8 +47,9 @@ module Fastlane
|
|
49
47
|
|
50
48
|
return Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
|
51
49
|
end
|
52
|
-
rescue
|
53
|
-
UI.
|
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
|
54
53
|
end
|
55
54
|
|
56
55
|
def self.description
|
@@ -18,10 +18,6 @@ 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
|
-
|
25
21
|
Snapshot.config[:output_directory] = File.expand_path(Snapshot.config[:output_directory])
|
26
22
|
|
27
23
|
verify_helper_is_current
|
data/supply/lib/supply/client.rb
CHANGED
@@ -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::
|
72
|
-
Google::Apis::
|
71
|
+
Google::Apis::RequestOptions.default.timeout_sec = 300
|
72
|
+
Google::Apis::RequestOptions.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],
|
4
|
+
FastlaneCore::PrintTable.print_values(config: Supply.config, hide_keys: [:issuer], 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.
|
4
|
+
version: 2.40.0.beta.20170616010015
|
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-
|
18
|
+
date: 2017-06-16 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
|
-
-
|
1379
|
-
-
|
1378
|
+
- screengrab/lib
|
1379
|
+
- snapshot/lib
|
1380
|
+
- pem/lib
|
1380
1381
|
- deliver/lib
|
1382
|
+
- scan/lib
|
1383
|
+
- cert/lib
|
1381
1384
|
- fastlane/lib
|
1382
|
-
- fastlane_core/lib
|
1383
|
-
- frameit/lib
|
1384
|
-
- gym/lib
|
1385
|
-
- match/lib
|
1386
|
-
- pem/lib
|
1387
|
-
- pilot/lib
|
1388
1385
|
- produce/lib
|
1389
|
-
-
|
1390
|
-
-
|
1386
|
+
- supply/lib
|
1387
|
+
- credentials_manager/lib
|
1388
|
+
- match/lib
|
1391
1389
|
- sigh/lib
|
1392
|
-
-
|
1390
|
+
- pilot/lib
|
1393
1391
|
- spaceship/lib
|
1394
|
-
-
|
1392
|
+
- frameit/lib
|
1393
|
+
- fastlane_core/lib
|
1394
|
+
- gym/lib
|
1395
1395
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1396
1396
|
requirements:
|
1397
1397
|
- - ">="
|
@@ -1399,15 +1399,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1399
1399
|
version: 2.0.0
|
1400
1400
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1401
1401
|
requirements:
|
1402
|
-
- - "
|
1402
|
+
- - ">"
|
1403
1403
|
- !ruby/object:Gem::Version
|
1404
|
-
version:
|
1404
|
+
version: 1.3.1
|
1405
1405
|
requirements: []
|
1406
1406
|
rubyforge_project:
|
1407
|
-
rubygems_version: 2.5.2
|
1407
|
+
rubygems_version: 2.4.5.2
|
1408
1408
|
signing_key:
|
1409
1409
|
specification_version: 4
|
1410
1410
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1411
1411
|
Android apps
|
1412
1412
|
test_files: []
|
1413
|
-
has_rdoc:
|