licensed 2.12.0 → 2.12.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 +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/licensed/commands/command.rb +4 -4
- data/lib/licensed/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ded370a92e5b5803bd2f3d66ba36c71cedb9cf39a239741e9aea2558cb467bd8
|
|
4
|
+
data.tar.gz: 17fb752e1b0dbc91f6315bef7827631c1369f1ea806f7822becb13e0e8cd7436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6213da918c6f1c0087f160ca981f75bc6039df5f46d02d063771b81a36b626991ec1e5dc88e188f4e0fe08a1f47496922607806217db125773ffb2114d2d7095
|
|
7
|
+
data.tar.gz: 34e21de95290897b3cbce5af7f08dea696a245b5becf0115457e1fe9cc547e56381c93ee9b4ff4b2e0820c255ae42cfa77899fac29bceeecf952900201b7f7d4
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## 2.12.1
|
|
10
|
+
2020-06-30
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `licensed` no longer exits an error code when using the `--sources` CLI argument(https://github.com/github/licensed/pull/290)
|
|
14
|
+
|
|
9
15
|
## 2.12.0
|
|
10
16
|
2020-06-19
|
|
11
17
|
|
|
@@ -327,4 +333,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
327
333
|
|
|
328
334
|
Initial release :tada:
|
|
329
335
|
|
|
330
|
-
[Unreleased]: https://github.com/github/licensed/compare/2.
|
|
336
|
+
[Unreleased]: https://github.com/github/licensed/compare/2.12.1...HEAD
|
|
@@ -22,7 +22,7 @@ module Licensed
|
|
|
22
22
|
result = reporter.report_run(self) do |report|
|
|
23
23
|
# allow additional report data to be given by commands
|
|
24
24
|
if block_given?
|
|
25
|
-
next if (yield report) == :skip
|
|
25
|
+
next true if (yield report) == :skip
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
config.apps.sort_by { |app| app["name"] }
|
|
@@ -60,7 +60,7 @@ module Licensed
|
|
|
60
60
|
begin
|
|
61
61
|
# allow additional report data to be given by commands
|
|
62
62
|
if block_given?
|
|
63
|
-
next if (yield report) == :skip
|
|
63
|
+
next true if (yield report) == :skip
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
app.sources.select(&:enabled?)
|
|
@@ -86,7 +86,7 @@ module Licensed
|
|
|
86
86
|
begin
|
|
87
87
|
# allow additional report data to be given by commands
|
|
88
88
|
if block_given?
|
|
89
|
-
next if (yield report) == :skip
|
|
89
|
+
next true if (yield report) == :skip
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
source.dependencies.sort_by { |dependency| dependency.name }
|
|
@@ -121,7 +121,7 @@ module Licensed
|
|
|
121
121
|
begin
|
|
122
122
|
# allow additional report data to be given by commands
|
|
123
123
|
if block_given?
|
|
124
|
-
next if (yield report) == :skip
|
|
124
|
+
next true if (yield report) == :skip
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
evaluate_dependency(app, source, dependency, report)
|
data/lib/licensed/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: licensed
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.12.
|
|
4
|
+
version: 2.12.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitHub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: licensee
|