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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4d58e4fed69675cea1d69dbec117f2c7951e288133f27e84f4f44fdfc55176a
4
- data.tar.gz: 27c0cafd2e42fe8cbdbfe56b9956302fbb9d0c76ffc36536086e7fdec85c284a
3
+ metadata.gz: 9bc070e6f39d632a5e4863a18cf2c1d45e62dc368bd200d7837048a82e8b346d
4
+ data.tar.gz: d4b5f4b7d51ec7445470a45bb148b258d9219a8500c85378aa8d3432048cf484
5
5
  SHA512:
6
- metadata.gz: c86b7bc8ed77a9695bd45a1eb75166c1db11c6cd0aa8fb1113e1c53823e3aea25c35fe98af759ba4276405ade10a44e18f22bcbeaac6f241d61bfae9c84bd64f
7
- data.tar.gz: ba4411f6fcd2ba7fc201fe169d28b25a338c679d0a409a9e6cb5e4bf749646a5fb42244e73359faeb89fc660a9c7607fa673a1c8f944d6cb2b385d7295e484e4
6
+ metadata.gz: eaced74dfda9007727cd4fda2d46b675620c096187b52c9f890f3e50570a5bc7025171ae81774371d7e1c6fce6195d70428a943da2ab45cd92dcc39b40252d93
7
+ data.tar.gz: 5148662274b9c7dffce1f0fc7c1c555e0788f54a658899b653acf1c1d32bf35c5f7de09bc237ceceb378824e73bc41444f0ac4e9cab6b4e2167985202da13cb3
data/.rubocop.yml CHANGED
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ NewCops: enable
3
+
1
4
  Layout/LineLength:
2
5
  Max: 100
3
6
 
data/.travis.yml CHANGED
@@ -6,4 +6,5 @@ rvm:
6
6
  - 2.5
7
7
  - 2.6
8
8
  - 2.7
9
- before_install: gem install bundler -v 2.1.4
9
+ - 3.0
10
+ before_install: gem install bundler -v 2.2.18
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.1...HEAD
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
@@ -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
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
23
- # to allow pushing to a single host or delete this section to allow pushing to any host.
24
- if spec.respond_to?(:metadata)
25
- spec.metadata['homepage_uri'] = spec.homepage
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.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bundler
4
4
  module Licensed
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.2'
6
6
  end
7
7
  end
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.1
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-08-23 00:00:00.000000000 Z
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: