bundler-licensed 0.2.1 → 0.2.2
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/.rubocop.yml +3 -0
- data/.travis.yml +2 -1
- data/CHANGELOG.md +6 -1
- data/bundler-licensed.gemspec +4 -10
- data/lib/bundler/licensed/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bc070e6f39d632a5e4863a18cf2c1d45e62dc368bd200d7837048a82e8b346d
|
|
4
|
+
data.tar.gz: d4b5f4b7d51ec7445470a45bb148b258d9219a8500c85378aa8d3432048cf484
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eaced74dfda9007727cd4fda2d46b675620c096187b52c9f890f3e50570a5bc7025171ae81774371d7e1c6fce6195d70428a943da2ab45cd92dcc39b40252d93
|
|
7
|
+
data.tar.gz: 5148662274b9c7dffce1f0fc7c1c555e0788f54a658899b653acf1c1d32bf35c5f7de09bc237ceceb378824e73bc41444f0ac4e9cab6b4e2167985202da13cb3
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.2] - 2021-12-06
|
|
10
|
+
### Changed
|
|
11
|
+
- [Opt-in for RubyGems MFA requirement](https://guides.rubygems.org/mfa-requirement-opt-in/).
|
|
12
|
+
|
|
9
13
|
## [0.2.1] - 2021-08-23
|
|
10
14
|
### Changed
|
|
11
15
|
- A Bundler hook to automatically run `bundle exec licensed cache -s bundler` after running `bundle install` or `bundle update` commands.
|
|
@@ -18,7 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
18
22
|
### Added
|
|
19
23
|
- A Bundler hook to automatically run `licensed cache` after running `bundle install` or `bundle update` commands.
|
|
20
24
|
|
|
21
|
-
[Unreleased]: https://github.com/sergey-alekseev/bundler-licensed/compare/v0.2.
|
|
25
|
+
[Unreleased]: https://github.com/sergey-alekseev/bundler-licensed/compare/v0.2.2...HEAD
|
|
26
|
+
[0.2.2]: https://github.com/sergey-alekseev/bundler-licensed/releases/tag/v0.2.2
|
|
22
27
|
[0.2.1]: https://github.com/sergey-alekseev/bundler-licensed/releases/tag/v0.2.1
|
|
23
28
|
[0.2.0]: https://github.com/sergey-alekseev/bundler-licensed/releases/tag/v0.2.0
|
|
24
29
|
[0.1.0]: https://github.com/sergey-alekseev/bundler-licensed/releases/tag/v0.1.0
|
data/bundler-licensed.gemspec
CHANGED
|
@@ -19,16 +19,10 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.homepage = 'https://github.com/sergey-alekseev/bundler-licensed'
|
|
20
20
|
spec.license = 'MIT'
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
spec.metadata['source_code_uri'] = spec.homepage
|
|
27
|
-
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
28
|
-
else
|
|
29
|
-
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
|
30
|
-
'public gem pushes.'
|
|
31
|
-
end
|
|
22
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
|
23
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
|
24
|
+
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
25
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
32
26
|
|
|
33
27
|
# Specify which files should be added to the gem when it is released.
|
|
34
28
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler-licensed
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Alekseev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -112,6 +112,7 @@ metadata:
|
|
|
112
112
|
homepage_uri: https://github.com/sergey-alekseev/bundler-licensed
|
|
113
113
|
source_code_uri: https://github.com/sergey-alekseev/bundler-licensed
|
|
114
114
|
changelog_uri: https://github.com/sergey-alekseev/bundler-licensed/blob/master/CHANGELOG.md
|
|
115
|
+
rubygems_mfa_required: 'true'
|
|
115
116
|
post_install_message:
|
|
116
117
|
rdoc_options: []
|
|
117
118
|
require_paths:
|