fastlane 2.123.0.beta.20190508200056 → 2.123.0.beta.20190509200030
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: dcce6e84f769e079de53350bf924c33651f13718
|
4
|
+
data.tar.gz: b2902a3909cbeac67b05c6b8ed268bdf727ae1ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffe30122b61ba1d2aa01953eb5b44b216f439ed40dee9ae057c64581412db5575e466ce465a9c1af1853c5afbf2bd9ab1d89fb9f591d115c227a2a0216dc4ad4
|
7
|
+
data.tar.gz: 11efd701f968a8722624aabf444751e5fec22aa9d271c8e7d0a7c4b1edc17341d1ad38c6e19499b6df55658f507b6f999f79eab08207a59f8b51efd246b435cb
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'shellwords'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module Actions
|
5
|
+
class InstallProvisioningProfileAction < Action
|
6
|
+
def self.run(params)
|
7
|
+
absolute_path = File.expand_path(params[:path])
|
8
|
+
FastlaneCore::ProvisioningProfile.install(absolute_path)
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.description
|
12
|
+
"Install provisioning profile from path"
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.details
|
16
|
+
"Install provisioning profile from path for current user"
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.authors
|
20
|
+
["SofteqDG"]
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.category
|
24
|
+
:code_signing
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.is_supported?(platform)
|
28
|
+
[:ios, :mac].include?(platform)
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.available_options
|
32
|
+
[
|
33
|
+
FastlaneCore::ConfigItem.new(key: :path,
|
34
|
+
env_name: "FL_INSTALL_PROVISIONING_PROFILE_PATH",
|
35
|
+
description: "Path to provisioning profile",
|
36
|
+
optional: false,
|
37
|
+
type: String,
|
38
|
+
verify_block: proc do |value|
|
39
|
+
absolute_path = File.expand_path(value)
|
40
|
+
unless File.exist?(absolute_path)
|
41
|
+
UI.user_error!("Could not find provisioning profile at path: '#{value}'")
|
42
|
+
end
|
43
|
+
end)
|
44
|
+
]
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.return_value
|
48
|
+
"The absolute path to the installed provisioning profile"
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.example_code
|
52
|
+
[
|
53
|
+
'install_provisioning_profile(path: "profiles/profile.mobileprovision")'
|
54
|
+
]
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Fastlane
|
2
2
|
module Actions
|
3
3
|
class PodLibLintAction < Action
|
4
|
+
# rubocop:disable Metrics/PerceivedComplexity
|
4
5
|
def self.run(params)
|
5
6
|
command = []
|
6
7
|
|
@@ -20,6 +21,11 @@ module Fastlane
|
|
20
21
|
command << "--fail-fast" if params[:fail_fast]
|
21
22
|
command << "--private" if params[:private]
|
22
23
|
command << "--quick" if params[:quick]
|
24
|
+
command << "--no-clean" if params[:no_clean]
|
25
|
+
command << "--no-subspecs" if params[:no_subspecs]
|
26
|
+
command << "--platforms=#{params[:platforms]}" if params[:platforms]
|
27
|
+
command << "--skip-import-validation" if params[:skip_import_validation]
|
28
|
+
command << "--skip-tests" if params[:skip_tests]
|
23
29
|
|
24
30
|
result = Actions.sh(command.join(' '))
|
25
31
|
UI.success("Pod lib lint Successfully ⬆️ ")
|
@@ -95,7 +101,7 @@ module Fastlane
|
|
95
101
|
default_value: false,
|
96
102
|
env_name: "FL_POD_LIB_LINT_USE_LIBRARIES"),
|
97
103
|
FastlaneCore::ConfigItem.new(key: :use_modular_headers,
|
98
|
-
description: "Lint using modular libraries",
|
104
|
+
description: "Lint using modular libraries (available since cocoapods >= 1.6)",
|
99
105
|
type: Boolean,
|
100
106
|
default_value: false,
|
101
107
|
env_name: "FL_POD_LIB_LINT_USE_MODULAR_HEADERS"),
|
@@ -113,7 +119,32 @@ module Fastlane
|
|
113
119
|
description: "Lint skips checks that would require to download and build the spec",
|
114
120
|
type: Boolean,
|
115
121
|
default_value: false,
|
116
|
-
env_name: "FL_POD_LIB_LINT_QUICK")
|
122
|
+
env_name: "FL_POD_LIB_LINT_QUICK"),
|
123
|
+
FastlaneCore::ConfigItem.new(key: :no_clean,
|
124
|
+
description: "Lint leaves the build directory intact for inspection",
|
125
|
+
type: Boolean,
|
126
|
+
default_value: false,
|
127
|
+
env_name: "FL_POD_LIB_LINT_NO_CLEAN"),
|
128
|
+
FastlaneCore::ConfigItem.new(key: :no_subspecs,
|
129
|
+
description: "Lint skips validation of subspecs",
|
130
|
+
type: Boolean,
|
131
|
+
default_value: false,
|
132
|
+
env_name: "FL_POD_LIB_LINT_NO_SUBSPECS"),
|
133
|
+
FastlaneCore::ConfigItem.new(key: :platforms,
|
134
|
+
description: "Lint against specific platforms (defaults to all platforms supported by "\
|
135
|
+
"the podspec). Multiple platforms must be comma-delimited (available since cocoapods >= 1.6)",
|
136
|
+
optional: true,
|
137
|
+
env_name: "FL_POD_LIB_LINT_PLATFORMS"),
|
138
|
+
FastlaneCore::ConfigItem.new(key: :skip_import_validation,
|
139
|
+
description: "Lint skips validating that the pod can be imported (available since cocoapods >= 1.3)",
|
140
|
+
type: Boolean,
|
141
|
+
default_value: false,
|
142
|
+
env_name: "FL_POD_LIB_LINT_SKIP_IMPORT_VALIDATION"),
|
143
|
+
FastlaneCore::ConfigItem.new(key: :skip_tests,
|
144
|
+
description: "Lint skips building and running tests during validation (available since cocoapods >= 1.3)",
|
145
|
+
type: Boolean,
|
146
|
+
default_value: false,
|
147
|
+
env_name: "FL_POD_LIB_LINT_SKIP_TESTS")
|
117
148
|
]
|
118
149
|
end
|
119
150
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.123.0.beta.
|
2
|
+
VERSION = '2.123.0.beta.20190509200030'.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.123.0.beta.
|
4
|
+
version: 2.123.0.beta.20190509200030
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Dee
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-05-
|
30
|
+
date: 2019-05-09 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1098,6 +1098,7 @@ files:
|
|
1098
1098
|
- fastlane/lib/fastlane/actions/increment_build_number.rb
|
1099
1099
|
- fastlane/lib/fastlane/actions/increment_version_number.rb
|
1100
1100
|
- fastlane/lib/fastlane/actions/install_on_device.rb
|
1101
|
+
- fastlane/lib/fastlane/actions/install_provisioning_profile.rb
|
1101
1102
|
- fastlane/lib/fastlane/actions/install_xcode_plugin.rb
|
1102
1103
|
- fastlane/lib/fastlane/actions/installr.rb
|
1103
1104
|
- fastlane/lib/fastlane/actions/ipa.rb
|
@@ -1706,24 +1707,24 @@ metadata:
|
|
1706
1707
|
post_install_message:
|
1707
1708
|
rdoc_options: []
|
1708
1709
|
require_paths:
|
1709
|
-
-
|
1710
|
-
-
|
1710
|
+
- gym/lib
|
1711
|
+
- match/lib
|
1712
|
+
- fastlane_core/lib
|
1711
1713
|
- supply/lib
|
1714
|
+
- spaceship/lib
|
1715
|
+
- pem/lib
|
1712
1716
|
- pilot/lib
|
1713
1717
|
- precheck/lib
|
1714
|
-
- scan/lib
|
1715
1718
|
- credentials_manager/lib
|
1719
|
+
- screengrab/lib
|
1720
|
+
- deliver/lib
|
1721
|
+
- sigh/lib
|
1716
1722
|
- frameit/lib
|
1717
|
-
-
|
1718
|
-
- snapshot/lib
|
1723
|
+
- scan/lib
|
1719
1724
|
- cert/lib
|
1720
1725
|
- produce/lib
|
1721
1726
|
- fastlane/lib
|
1722
|
-
-
|
1723
|
-
- pem/lib
|
1724
|
-
- gym/lib
|
1725
|
-
- spaceship/lib
|
1726
|
-
- fastlane_core/lib
|
1727
|
+
- snapshot/lib
|
1727
1728
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1728
1729
|
requirements:
|
1729
1730
|
- - ">="
|