fastlane 2.49.0 → 2.50.0.beta.20170727010003
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: 6411d523ade042f52954052b7b507a45552af78e
|
4
|
+
data.tar.gz: 55c0040f5ec5d9a7dc38f1153a1d2d7b667eef62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f5cc092c57c3955bf4c52eaaf8e167763e1dfb2540d95e7eb0f03f8b82d5634572b77ebecf670a9002dd57565024f2b4dfa6c5e45729997058ce7c087bbc9d9
|
7
|
+
data.tar.gz: 037b07e35d05425dea04d65e96725a0f7ba773547523232f392a808dd80bf9db71f01efdd3d91f7e652b41e48e0af254145f908deecda569086a5a89cca9258d
|
@@ -29,16 +29,7 @@ module Fastlane
|
|
29
29
|
[
|
30
30
|
FastlaneCore::ConfigItem.new(key: :path,
|
31
31
|
description: "The file you want to commit",
|
32
|
-
is_string: false,
|
33
|
-
verify_block: proc do |value|
|
34
|
-
if value.kind_of?(String)
|
35
|
-
UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value)
|
36
|
-
else
|
37
|
-
value.each do |x|
|
38
|
-
UI.user_error!("Couldn't find file at path '#{x}'") unless File.exist?(x)
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end),
|
32
|
+
is_string: false),
|
42
33
|
FastlaneCore::ConfigItem.new(key: :message,
|
43
34
|
description: "The commit message that should be used")
|
44
35
|
]
|
@@ -62,7 +53,8 @@ module Fastlane
|
|
62
53
|
def self.example_code
|
63
54
|
[
|
64
55
|
'git_commit(path: "./version.txt", message: "Version Bump")',
|
65
|
-
'git_commit(path: ["./version.txt", "./changelog.txt"], message: "Version Bump")'
|
56
|
+
'git_commit(path: ["./version.txt", "./changelog.txt"], message: "Version Bump")',
|
57
|
+
'git_commit(path: ["./*.txt", "./*.md"], message: "Update documentation")'
|
66
58
|
]
|
67
59
|
end
|
68
60
|
|
@@ -54,7 +54,7 @@ module Fastlane
|
|
54
54
|
command = []
|
55
55
|
command << File.expand_path(params[:binary_path]).shellescape
|
56
56
|
command << "-a #{params[:api_token]}"
|
57
|
-
command << "-p #{params[:platform]}"
|
57
|
+
command << "-p #{params[:platform] == 'appletvos' ? 'tvos' : params[:platform]}"
|
58
58
|
command << File.expand_path(path).shellescape
|
59
59
|
begin
|
60
60
|
Actions.sh(command.join(" "), log: false)
|
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.50.0.beta.20170727010003
|
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-07-
|
18
|
+
date: 2017-07-27 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1398,24 +1398,24 @@ metadata:
|
|
1398
1398
|
post_install_message:
|
1399
1399
|
rdoc_options: []
|
1400
1400
|
require_paths:
|
1401
|
-
-
|
1402
|
-
-
|
1403
|
-
-
|
1401
|
+
- spaceship/lib
|
1402
|
+
- scan/lib
|
1403
|
+
- sigh/lib
|
1404
|
+
- snapshot/lib
|
1405
|
+
- screengrab/lib
|
1404
1406
|
- fastlane/lib
|
1405
|
-
-
|
1406
|
-
-
|
1407
|
+
- cert/lib
|
1408
|
+
- pem/lib
|
1407
1409
|
- gym/lib
|
1410
|
+
- produce/lib
|
1411
|
+
- deliver/lib
|
1412
|
+
- supply/lib
|
1408
1413
|
- match/lib
|
1409
|
-
-
|
1414
|
+
- frameit/lib
|
1415
|
+
- credentials_manager/lib
|
1410
1416
|
- pilot/lib
|
1411
1417
|
- precheck/lib
|
1412
|
-
-
|
1413
|
-
- scan/lib
|
1414
|
-
- screengrab/lib
|
1415
|
-
- sigh/lib
|
1416
|
-
- snapshot/lib
|
1417
|
-
- spaceship/lib
|
1418
|
-
- supply/lib
|
1418
|
+
- fastlane_core/lib
|
1419
1419
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1420
1420
|
requirements:
|
1421
1421
|
- - ">="
|
@@ -1423,15 +1423,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1423
1423
|
version: 2.0.0
|
1424
1424
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1425
1425
|
requirements:
|
1426
|
-
- - "
|
1426
|
+
- - ">"
|
1427
1427
|
- !ruby/object:Gem::Version
|
1428
|
-
version:
|
1428
|
+
version: 1.3.1
|
1429
1429
|
requirements: []
|
1430
1430
|
rubyforge_project:
|
1431
|
-
rubygems_version: 2.
|
1431
|
+
rubygems_version: 2.4.5.1
|
1432
1432
|
signing_key:
|
1433
1433
|
specification_version: 4
|
1434
1434
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1435
1435
|
Android apps
|
1436
1436
|
test_files: []
|
1437
|
-
has_rdoc:
|