fastlane-plugin-ad_licenselint 1.0.0 → 1.5.0
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 805a1573d58df4d1def94889595545090a8d2b244461dadccd8881b14e4aa97a
|
4
|
+
data.tar.gz: 59c20c8710106085e20be5c29febf826707bdad5ec90e12cc515987e75a51b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff335ffb447900c98e8f52bac3d8bd52a8e3a5696952d90d58326ed56cab8af73ab794276b7a4814524e505cd16c4eafff29719591e1264289921be7a1a2658c
|
7
|
+
data.tar.gz: 13fad08202a09deef396f96560f95c04ae8fdc8a7e4213ff12882edb1974a722d05ec9c319294415ead362ba703edfc8c301da6178b193505d9d7b37c263f450
|
@@ -14,11 +14,12 @@ module Fastlane
|
|
14
14
|
runner = ADLicenseLint::Runner.new({
|
15
15
|
format: params[:format],
|
16
16
|
path: params[:path],
|
17
|
-
all: params[:all]
|
17
|
+
all: params[:all],
|
18
|
+
only: params[:only]
|
18
19
|
})
|
19
|
-
|
20
|
-
Actions.lane_context[SharedValues::AD_LICENSE_LINT_REPORT] =
|
21
|
-
Actions.lane_context[SharedValues::AD_LICENSE_LINT_SUMMARY] = runner.
|
20
|
+
report = runner.create_report
|
21
|
+
Actions.lane_context[SharedValues::AD_LICENSE_LINT_REPORT] = report.to_hash
|
22
|
+
Actions.lane_context[SharedValues::AD_LICENSE_LINT_SUMMARY] = runner.format(report)
|
22
23
|
end
|
23
24
|
|
24
25
|
def self.description
|
@@ -59,6 +60,11 @@ module Fastlane
|
|
59
60
|
optional: true,
|
60
61
|
default_value: false,
|
61
62
|
is_string: false),
|
63
|
+
FastlaneCore::ConfigItem.new(key: :only,
|
64
|
+
env_name: "AD_LICENSE_LINT_FORMAT",
|
65
|
+
description: "Subset of pods",
|
66
|
+
optional: true,
|
67
|
+
type: Array),
|
62
68
|
]
|
63
69
|
end
|
64
70
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-ad_licenselint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Felgines
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ad_licenselint
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1
|
19
|
+
version: '1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1
|
26
|
+
version: '1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -138,7 +138,7 @@ homepage: https://github.com/faberNovel/ad_licenselint
|
|
138
138
|
licenses:
|
139
139
|
- MIT
|
140
140
|
metadata: {}
|
141
|
-
post_install_message:
|
141
|
+
post_install_message:
|
142
142
|
rdoc_options: []
|
143
143
|
require_paths:
|
144
144
|
- lib
|
@@ -153,8 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
153
|
- !ruby/object:Gem::Version
|
154
154
|
version: '0'
|
155
155
|
requirements: []
|
156
|
-
rubygems_version: 3.
|
157
|
-
signing_key:
|
156
|
+
rubygems_version: 3.3.26
|
157
|
+
signing_key:
|
158
158
|
specification_version: 4
|
159
159
|
summary: Lint the licenses for iOS projects
|
160
160
|
test_files: []
|