fastlane 2.121.0.beta.20190416200048 → 2.121.0.beta.20190417200018
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: 8753ed98b3063d3d37588b11af584e2f57829cc1
|
4
|
+
data.tar.gz: a3feb4b9f29dc484afff1c6309bac68a1f3a06fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f737a10a7d5855cfaa40ae196cad8fcb132af664af7cc022fce43c999d5ed7847db4e7847c2510fe6090c6ea8f0f2e3b7997b9d3c621d5998cde2d6a8935684
|
7
|
+
data.tar.gz: 1f3b82b628c58986565d4651b809584d4e1ac62d9838b5b76497db43e3148574a68488c20cea6a10152fa490e123c2f5e5debe5828d3ed2866546f9cd8860842
|
@@ -37,7 +37,7 @@ module Fastlane
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def self.connect_to_artifactory(params)
|
40
|
-
config_keys = [:endpoint, :username, :password, :ssl_pem_file, :ssl_verify, :proxy_username, :proxy_password, :proxy_address, :proxy_port]
|
40
|
+
config_keys = [:endpoint, :username, :password, :ssl_pem_file, :ssl_verify, :proxy_username, :proxy_password, :proxy_address, :proxy_port, :read_timeout]
|
41
41
|
config = params.values.select do |key|
|
42
42
|
config_keys.include?(key)
|
43
43
|
end
|
@@ -144,6 +144,11 @@ module Fastlane
|
|
144
144
|
env_name: "FL_ARTIFACTORY_PROXY_PORT",
|
145
145
|
description: "Proxy port",
|
146
146
|
default_value: nil,
|
147
|
+
optional: true),
|
148
|
+
FastlaneCore::ConfigItem.new(key: :read_timeout,
|
149
|
+
env_name: "FL_ARTIFACTORY_READ_TIMEOUT",
|
150
|
+
description: "Read timeout",
|
151
|
+
default_value: nil,
|
147
152
|
optional: true)
|
148
153
|
]
|
149
154
|
end
|
@@ -19,6 +19,14 @@ module Fastlane
|
|
19
19
|
command << "--sources='#{sources}'"
|
20
20
|
end
|
21
21
|
|
22
|
+
if params[:include_podspecs]
|
23
|
+
command << "--include-podspecs='#{params[:include_podspecs]}'"
|
24
|
+
end
|
25
|
+
|
26
|
+
if params[:external_podspecs]
|
27
|
+
command << "--external-podspecs='#{params[:external_podspecs]}'"
|
28
|
+
end
|
29
|
+
|
22
30
|
if params[:swift_version]
|
23
31
|
swift_version = params[:swift_version]
|
24
32
|
command << "--swift-version=#{swift_version}"
|
@@ -76,6 +84,15 @@ module Fastlane
|
|
76
84
|
verify_block: proc do |value|
|
77
85
|
UI.user_error!("Sources must be an array.") unless value.kind_of?(Array)
|
78
86
|
end),
|
87
|
+
FastlaneCore::ConfigItem.new(key: :include_podspecs,
|
88
|
+
description: "A Glob of additional ancillary podspecs which are used for linting via :path (available since cocoapods >= 1.7)",
|
89
|
+
optional: true,
|
90
|
+
is_string: true),
|
91
|
+
FastlaneCore::ConfigItem.new(key: :external_podspecs,
|
92
|
+
description: "A Glob of additional ancillary podspecs which are used for linting via :podspec. If there"\
|
93
|
+
" are --include-podspecs, then these are removed from them (available since cocoapods >= 1.7)",
|
94
|
+
optional: true,
|
95
|
+
is_string: true),
|
79
96
|
FastlaneCore::ConfigItem.new(key: :swift_version,
|
80
97
|
description: "The SWIFT_VERSION that should be used to lint the spec. This takes precedence over a .swift-version file",
|
81
98
|
optional: true,
|
@@ -20,6 +20,7 @@ module Fastlane
|
|
20
20
|
sonar_scanner_args << "-Dsonar.sourceEncoding=\"#{params[:source_encoding]}\"" if params[:source_encoding]
|
21
21
|
sonar_scanner_args << "-Dsonar.login=\"#{params[:sonar_login]}\"" if params[:sonar_login]
|
22
22
|
sonar_scanner_args << "-Dsonar.host.url=\"#{params[:sonar_url]}\"" if params[:sonar_url]
|
23
|
+
sonar_scanner_args << "-Dsonar.branch.name=\"#{params[:branch_name]}\"" if params[:branch_name]
|
23
24
|
sonar_scanner_args << params[:sonar_runner_args] if params[:sonar_runner_args]
|
24
25
|
|
25
26
|
command = [
|
@@ -97,6 +98,11 @@ module Fastlane
|
|
97
98
|
env_name: "FL_SONAR_URL",
|
98
99
|
description: "Pass the url of the Sonar server",
|
99
100
|
optional: true,
|
101
|
+
is_string: true),
|
102
|
+
FastlaneCore::ConfigItem.new(key: :branch_name,
|
103
|
+
env_name: "FL_SONAR_RUNNER_BRANCH_NAME",
|
104
|
+
description: "Pass the branch name which is getting scanned",
|
105
|
+
optional: true,
|
100
106
|
is_string: true)
|
101
107
|
]
|
102
108
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.121.0.beta.
|
2
|
+
VERSION = '2.121.0.beta.20190417200018'.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
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
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.121.0.beta.
|
4
|
+
version: 2.121.0.beta.20190417200018
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kohki Miki
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-04-
|
30
|
+
date: 2019-04-17 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1689,23 +1689,23 @@ post_install_message:
|
|
1689
1689
|
rdoc_options: []
|
1690
1690
|
require_paths:
|
1691
1691
|
- frameit/lib
|
1692
|
-
-
|
1693
|
-
- spaceship/lib
|
1694
|
-
- fastlane/lib
|
1695
|
-
- pilot/lib
|
1696
|
-
- deliver/lib
|
1697
|
-
- precheck/lib
|
1698
|
-
- credentials_manager/lib
|
1692
|
+
- fastlane_core/lib
|
1699
1693
|
- screengrab/lib
|
1694
|
+
- cert/lib
|
1695
|
+
- deliver/lib
|
1696
|
+
- sigh/lib
|
1700
1697
|
- match/lib
|
1701
|
-
-
|
1702
|
-
-
|
1698
|
+
- precheck/lib
|
1699
|
+
- spaceship/lib
|
1703
1700
|
- pem/lib
|
1704
|
-
- sigh/lib
|
1705
|
-
- fastlane_core/lib
|
1706
|
-
- supply/lib
|
1707
1701
|
- gym/lib
|
1708
|
-
-
|
1702
|
+
- supply/lib
|
1703
|
+
- fastlane/lib
|
1704
|
+
- credentials_manager/lib
|
1705
|
+
- scan/lib
|
1706
|
+
- pilot/lib
|
1707
|
+
- produce/lib
|
1708
|
+
- snapshot/lib
|
1709
1709
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1710
1710
|
requirements:
|
1711
1711
|
- - ">="
|