fastlane 1.32.0 → 1.32.1

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: 62cbfc4bc7584f29ddccfd6ed22d3f8fa0f23caa
4
- data.tar.gz: 4c979f77e68daac86b055ec0b9ddb32e75508e4b
3
+ metadata.gz: abd3c0bf13fb26af94569c4c658c603b4f18b011
4
+ data.tar.gz: 133b65b4c37ddad8870acd182c38913bdfc41f35
5
5
  SHA512:
6
- metadata.gz: 437f8bbd28b472da8901eb4e78f81bb3e53d72284f7c975b46d1131c70b39899ed988e1cbdf58766a6dcbf9fe68ac212616464e83f53dead728e6e56ef1322b5
7
- data.tar.gz: fc9a3f1fd49237e8e43b3f1410dc6e4da540842a2b2c780ce4826518e1a11eb0f3f3735cd47a4279dee74764e8405c6e0cb6b9c94e916fb37d6cf24c373b092f
6
+ metadata.gz: 6942857004d3a99433b85c6e7f6ad6a1ff67aa6290ab4d4e000a5823c9f539e44d4569e96f7584c33056d12813776fb4a98233d34dd69e4a03fd890d8a5bf6fb
7
+ data.tar.gz: 9aecebda54550568e3f132ae91e8819aee97472e60dfec551bafcb18d2534caacf83a1c61c862388ed4f0d11848144fdcd75ceb24b30838d6ccf4a053800a9ed
@@ -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 to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
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 to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
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 to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
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 to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html'.yellow
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 PodPushTrunkAction < Action
3
+ class PodPushAction < Action
4
4
  def self.run(params)
5
- command = 'pod trunk push'
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
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.32.0'
2
+ VERSION = '1.32.1'
3
3
  end
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.0
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-06 00:00:00.000000000 Z
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/pod_push_trunk.rb
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