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: 15df2c35540d2157e97f3c4042cb058c1f4715c34f37dfeb19aeb77165f27b2a
4
- data.tar.gz: 49cfe70d4e36f1c1b4084d49b578c5ba745cdda7a8a25d7fb94d6dfd229ab96e
3
+ metadata.gz: 805a1573d58df4d1def94889595545090a8d2b244461dadccd8881b14e4aa97a
4
+ data.tar.gz: 59c20c8710106085e20be5c29febf826707bdad5ec90e12cc515987e75a51b61
5
5
  SHA512:
6
- metadata.gz: 73442b7328df7e3948f4b268bbbd8a1fb2173c5849d4397d3fb17652a193df5e1e7378e9f9b7ecd683548cfbe5c14374a3e1f93f853160a75d7d6814dbd99296
7
- data.tar.gz: 6ca8594f3db09b052ba86456b5100d34e6383671ddb1a67fc5630baadba0c3577a90bf7281a7d21f506eb1e38cfd2d665444d2d31e6fce62d60cb80a6633af91
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] = runner.create_report.to_hash
21
- Actions.lane_context[SharedValues::AD_LICENSE_LINT_SUMMARY] = runner.run
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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AdLicenselint
3
- VERSION = "1.0.0"
3
+ VERSION = "1.5.0"
4
4
  end
5
5
  end
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.0.0
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: 2020-08-05 00:00:00.000000000 Z
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.0.0
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.0.0
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.0.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: []