fastlane 2.51.0.beta.20170802010003 → 2.51.0.beta.20170803010003

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: d3c4eeb547d4bd42e764519acd26d33190d62516
4
- data.tar.gz: 8d31fa1a5751940302476c94cc32d262471f9947
3
+ metadata.gz: c7eb3d1f5b7173b762d88c234a42d78eeaab29fb
4
+ data.tar.gz: 078a7a46c41474ed143d894f25f00e7a8f92f643
5
5
  SHA512:
6
- metadata.gz: 7ee950b2bce11f0f5eb8e491c9c1e31a657060f1ad3bde428e8055bd48c0bf690dc587b24159d92841661e938220b8b5270ae05d3ac99e1356ec4d6a64b40929
7
- data.tar.gz: 34f401b36b46c44e88c7d9b925ccac9d8703ceca1f1fa549c7e85dfc263407002eb878ebfe02cafbb8ce101ab02abb4134d963bfee17cbd9fae0460f671ee95c
6
+ metadata.gz: f068283205f2b0ac1ad4bc1d5ab14f54aa05f2af660489922296327b713044d5b3b8ccbe0195f089745698fcdc4abe5134bfe538119d53092b575c5f2898b69b
7
+ data.tar.gz: 67544595863559674c2b10ad5366060ae9cfd2c1739796ecac7c4f62b26afeb646dbfbd48511efeb0eedfb5779f582735f8629339613b66c3dce694c66b17025
@@ -34,7 +34,7 @@ module Fastlane
34
34
  UI.success("Successfully created pull request ##{number}. You can see it at '#{html_url}'")
35
35
 
36
36
  Actions.lane_context[SharedValues::CREATE_PULL_REQUEST_HTML_URL] = html_url
37
- return json
37
+ return html_url
38
38
  end
39
39
  end
40
40
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.51.0.beta.20170802010003'.freeze
2
+ VERSION = '2.51.0.beta.20170803010003'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  end
@@ -16,7 +16,7 @@ module FastlaneCore
16
16
  end
17
17
 
18
18
  def self.captured_output?
19
- @capture_output && @captured_output.length > 0
19
+ @capture_output && @captured_output.to_s.length > 0
20
20
  end
21
21
 
22
22
  def self.verbose?
@@ -34,6 +34,7 @@ class String
34
34
 
35
35
  # Base taken from: https://www.ruby-forum.com/topic/57805
36
36
  def wordwrap(length = 80)
37
+ return [] if length == 0
37
38
  self.gsub!(/(\S{#{length}})(?=\S)/, '\1 ')
38
39
  self.scan(/.{1,#{length}}(?:\s+|$)/)
39
40
  end
@@ -235,7 +235,7 @@ module Gym
235
235
 
236
236
  selected_provisioning_profiles.each do |current_bundle_identifier, current_profile_name|
237
237
  available_export_types.each do |current_to_try, matching_type|
238
- next unless current_profile_name.downcase.include?(current_to_try.downcase)
238
+ next unless current_profile_name.to_s.downcase.include?(current_to_try.to_s.downcase)
239
239
 
240
240
  # Check if there is a mismatch between the name and the selected export method
241
241
  # Example
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.51.0.beta.20170802010003
4
+ version: 2.51.0.beta.20170803010003
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-08-02 00:00:00.000000000 Z
18
+ date: 2017-08-03 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier