fastlane 1.41.0 → 1.41.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ac8eab8459e399b217fc98ce414d44a8e107648
|
4
|
+
data.tar.gz: 0d04d8cdb3a58b53cb6e0962a8c15bcce8347780
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ca07e7e7b7f4619e2e8ca114052f0ce603c99c105226e11070e44a64f0d41049f45e925a71012f7927fd0cf627787fae7f4513ed58a32857b2cf053c75684a4
|
7
|
+
data.tar.gz: 486fa8706e770f48057248e9bfc20cd9083b12114bb957bf8e9435bfbce364ae270a17539d82731b96c1613a3ca2d671b8dd4aeeb531dee548e6d6ff5cad59d1
|
@@ -60,12 +60,11 @@ module Fastlane
|
|
60
60
|
verify_block: proc do |value|
|
61
61
|
raise "Couldn't find apk file at path '#{value}'".red unless File.exist?(value)
|
62
62
|
end),
|
63
|
-
|
64
63
|
# General
|
65
64
|
FastlaneCore::ConfigItem.new(key: :crashlytics_path,
|
66
65
|
env_name: "CRASHLYTICS_FRAMEWORK_PATH",
|
67
66
|
description: "Path to the submit binary in the Crashlytics bundle (iOS) or `crashlytics-devtools.jar` file (Android)",
|
68
|
-
default_value: Dir["./Pods/Crashlytics/Crashlytics.framework"].last || Dir["./**/Crashlytics.framework"].last,
|
67
|
+
default_value: Dir["./Pods/iOS/Crashlytics/Crashlytics.framework"].last || Dir["./**/Crashlytics.framework"].last,
|
69
68
|
optional: true,
|
70
69
|
verify_block: proc do |value|
|
71
70
|
raise "Couldn't find crashlytics at path '#{File.expand_path(value)}'`".red unless File.exist?(File.expand_path(value))
|
@@ -2,7 +2,9 @@ module Fastlane
|
|
2
2
|
module Actions
|
3
3
|
class SwiftlintAction < Action
|
4
4
|
def self.run(params)
|
5
|
-
|
5
|
+
if `which swiftlint`.to_s.length == 0 and !Helper.test?
|
6
|
+
raise "You have to install swiftlint using `brew install swiftlint`".red
|
7
|
+
end
|
6
8
|
Actions.sh("swiftlint")
|
7
9
|
end
|
8
10
|
|
@@ -4,10 +4,12 @@ module Fastlane
|
|
4
4
|
class << self
|
5
5
|
def generate_ios_command(params)
|
6
6
|
raise "No value found for 'crashlytics_path'" unless params[:crashlytics_path]
|
7
|
-
|
7
|
+
submit_binary = Dir[File.join(params[:crashlytics_path], '**', 'submit')].last
|
8
|
+
submit_binary ||= "Crashlytics.framework/submit" if Helper.test?
|
9
|
+
raise "Could not find submit binary in crashlytics bundle at path '#{params[:crashlytics_path]}'" unless submit_binary
|
8
10
|
|
9
11
|
command = []
|
10
|
-
command <<
|
12
|
+
command << submit_binary
|
11
13
|
command << params[:api_token]
|
12
14
|
command << params[:build_secret]
|
13
15
|
command << "-ipaPath '#{params[:ipa_path]}'"
|
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.41.
|
4
|
+
version: 1.41.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-11-
|
11
|
+
date: 2015-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: krausefx-shenzhen
|
@@ -723,7 +723,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
723
723
|
version: '0'
|
724
724
|
requirements: []
|
725
725
|
rubyforge_project:
|
726
|
-
rubygems_version: 2.4.
|
726
|
+
rubygems_version: 2.4.6
|
727
727
|
signing_key:
|
728
728
|
specification_version: 4
|
729
729
|
summary: Connect all iOS deployment tools into one streamlined workflow
|