fastlane 1.32.0 → 1.32.1
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 +4 -4
- data/lib/assets/FastfileTemplate +3 -3
- data/lib/fastlane/actions/get_build_number.rb +1 -1
- data/lib/fastlane/actions/get_version_number.rb +1 -1
- data/lib/fastlane/actions/increment_build_number.rb +1 -1
- data/lib/fastlane/actions/increment_version_number.rb +1 -1
- data/lib/fastlane/actions/{pod_push_trunk.rb → pod_push.rb} +13 -4
- data/lib/fastlane/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abd3c0bf13fb26af94569c4c658c603b4f18b011
|
|
4
|
+
data.tar.gz: 133b65b4c37ddad8870acd182c38913bdfc41f35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6942857004d3a99433b85c6e7f6ad6a1ff67aa6290ab4d4e000a5823c9f539e44d4569e96f7584c33056d12813776fb4a98233d34dd69e4a03fd890d8a5bf6fb
|
|
7
|
+
data.tar.gz: 9aecebda54550568e3f132ae91e8819aee97472e60dfec551bafcb18d2534caacf83a1c61c862388ed4f0d11848144fdcd75ceb24b30838d6ccf4a053800a9ed
|
data/lib/assets/FastfileTemplate
CHANGED
|
@@ -28,8 +28,6 @@ platform :ios do
|
|
|
28
28
|
carthage
|
|
29
29
|
# increment_build_number
|
|
30
30
|
|
|
31
|
-
gym[[SCHEME]] # Build your app - more options available
|
|
32
|
-
|
|
33
31
|
xctool # run the tests of your app
|
|
34
32
|
end
|
|
35
33
|
|
|
@@ -43,6 +41,7 @@ platform :ios do
|
|
|
43
41
|
lane :beta do
|
|
44
42
|
snapshot
|
|
45
43
|
sigh
|
|
44
|
+
gym[[SCHEME]] # Build your app - more options available
|
|
46
45
|
pilot
|
|
47
46
|
|
|
48
47
|
# sh "your_script.sh"
|
|
@@ -50,10 +49,11 @@ platform :ios do
|
|
|
50
49
|
end
|
|
51
50
|
|
|
52
51
|
desc "Deploy a new version to the App Store"
|
|
53
|
-
desc "** Full Markdown** Support: `code`"
|
|
54
52
|
lane :deploy do
|
|
55
53
|
snapshot
|
|
54
|
+
desc "** Full Markdown** Support: `code`"
|
|
56
55
|
sigh
|
|
56
|
+
gym[[SCHEME]] # Build your app - more options available
|
|
57
57
|
deliver(force: true)
|
|
58
58
|
# frameit
|
|
59
59
|
end
|
|
@@ -31,7 +31,7 @@ module Fastlane
|
|
|
31
31
|
Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
|
|
32
32
|
end
|
|
33
33
|
rescue => ex
|
|
34
|
-
Helper.log.error 'Make sure to
|
|
34
|
+
Helper.log.error 'Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
|
|
35
35
|
raise ex
|
|
36
36
|
end
|
|
37
37
|
|
|
@@ -32,7 +32,7 @@ module Fastlane
|
|
|
32
32
|
Actions.lane_context[SharedValues::VERSION_NUMBER] = version_number
|
|
33
33
|
end
|
|
34
34
|
rescue => ex
|
|
35
|
-
Helper.log.error 'Make sure to
|
|
35
|
+
Helper.log.error 'Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
|
|
36
36
|
raise ex
|
|
37
37
|
end
|
|
38
38
|
|
|
@@ -41,7 +41,7 @@ module Fastlane
|
|
|
41
41
|
Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
|
|
42
42
|
end
|
|
43
43
|
rescue => ex
|
|
44
|
-
Helper.log.error 'Make sure to
|
|
44
|
+
Helper.log.error 'Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
|
|
45
45
|
raise ex
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -70,7 +70,7 @@ module Fastlane
|
|
|
70
70
|
|
|
71
71
|
return Actions.lane_context[SharedValues::VERSION_NUMBER]
|
|
72
72
|
rescue => ex
|
|
73
|
-
Helper.log.error 'Make sure to
|
|
73
|
+
Helper.log.error 'Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
|
|
74
74
|
raise ex
|
|
75
75
|
end
|
|
76
76
|
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
module Fastlane
|
|
2
2
|
module Actions
|
|
3
|
-
class
|
|
3
|
+
class PodPushAction < Action
|
|
4
4
|
def self.run(params)
|
|
5
|
-
|
|
5
|
+
if params[:repo]
|
|
6
|
+
repo = params[:repo]
|
|
7
|
+
command = "pod repo push #{repo}"
|
|
8
|
+
else
|
|
9
|
+
command = 'pod trunk push'
|
|
10
|
+
end
|
|
11
|
+
|
|
6
12
|
if params[:path]
|
|
7
13
|
command << " '#{params[:path]}'"
|
|
8
14
|
end
|
|
@@ -17,7 +23,7 @@ module Fastlane
|
|
|
17
23
|
#####################################################
|
|
18
24
|
|
|
19
25
|
def self.description
|
|
20
|
-
"Push a Podspec to Trunk"
|
|
26
|
+
"Push a Podspec to Trunk or a private repository"
|
|
21
27
|
end
|
|
22
28
|
|
|
23
29
|
def self.details
|
|
@@ -32,7 +38,10 @@ module Fastlane
|
|
|
32
38
|
verify_block: proc do |value|
|
|
33
39
|
raise "Couldn't find file at path '#{value}'".red unless File.exist?(value)
|
|
34
40
|
raise "File must be a `.podspec`".red unless value.end_with?(".podspec")
|
|
35
|
-
end)
|
|
41
|
+
end),
|
|
42
|
+
FastlaneCore::ConfigItem.new(key: :repo,
|
|
43
|
+
description: "The repo you want to push. Pushes to Trunk by default",
|
|
44
|
+
optional: true)
|
|
36
45
|
]
|
|
37
46
|
end
|
|
38
47
|
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.32.
|
|
4
|
+
version: 1.32.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -605,7 +605,7 @@ files:
|
|
|
605
605
|
- lib/fastlane/actions/opt_out_usage.rb
|
|
606
606
|
- lib/fastlane/actions/pem.rb
|
|
607
607
|
- lib/fastlane/actions/pilot.rb
|
|
608
|
-
- lib/fastlane/actions/
|
|
608
|
+
- lib/fastlane/actions/pod_push.rb
|
|
609
609
|
- lib/fastlane/actions/produce.rb
|
|
610
610
|
- lib/fastlane/actions/prompt.rb
|
|
611
611
|
- lib/fastlane/actions/push_git_tags.rb
|