licensed 1.3.0 → 1.3.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 +5 -1
- data/lib/licensed/source/bundler.rb +1 -1
- data/lib/licensed/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99d4424d324ded01c5f13692ae1b5a9734b9416d
|
|
4
|
+
data.tar.gz: dd71bfbd16503bdf6546b6288df73fe17553fbc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 960f003a12c192fef141896c3e7e2e65c50c3adc4c5805f531575da15e56408c278e86abb099974c7b1f595664ad2fd16dcf44345d048be6c4f82124af035b7b
|
|
7
|
+
data.tar.gz: d7876610c8d0f856b71a10d7693cb5585500a0ee4e9543472857faeac2e3923c27cf04a17d3ad5d901ee7d105e5f6481528d195ffb9b51dc41eb6e9126da1305
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## 1.3.1 - 2018-08-01
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed regression finding ruby gems by path
|
|
12
|
+
|
|
9
13
|
## 1.3.0 - 2018-07-25
|
|
10
14
|
### Added
|
|
11
15
|
- Manifests for the manifest dependency source can be specified using glob patterns in the configuration
|
|
@@ -60,4 +64,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
60
64
|
|
|
61
65
|
Initial release :tada:
|
|
62
66
|
|
|
63
|
-
[Unreleased]: https://github.com/github/licensed/compare/1.3.
|
|
67
|
+
[Unreleased]: https://github.com/github/licensed/compare/1.3.1...HEAD
|
|
@@ -90,7 +90,7 @@ module Licensed
|
|
|
90
90
|
|
|
91
91
|
# if the specification is coming from a gemspec source,
|
|
92
92
|
# we can get a non-lazy specification straight from the source
|
|
93
|
-
if spec.source.is_a?(::Bundler::Source::Gemspec)
|
|
93
|
+
if spec.source.is_a?(::Bundler::Source::Gemspec) || spec.source.is_a?(::Bundler::Source::Path)
|
|
94
94
|
return spec.source.specs.first
|
|
95
95
|
end
|
|
96
96
|
|
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: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitHub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: licensee
|