rubygems-requirements-system 0.0.5 → 0.0.6

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: f1a95c58ae60cf968b48daa71ab2b4146ba07dfa75daa50f8f1fd08e7e48bc20
4
- data.tar.gz: '009fe055cec6d0f2e879f4f788474398d1dc2538429d793c6a13b11369d9d1d2'
3
+ metadata.gz: 5a4b8c43dbcc69f96830194f3e5bf219e6e9c22f50eb92368c8f34c7eb5a48ff
4
+ data.tar.gz: 7edab2714073e08a97bf0d9745c48d26591ea3935397a4164a2d6aaef0035547
5
5
  SHA512:
6
- metadata.gz: e245f36cf599ffca1caa6225c00a580acf47808af84a91a97198c9d6bfb86f289fb4b28682c3b702195a70c930dbd134de1ca73b4d16c29477b58420ea891316
7
- data.tar.gz: 2e256c0ffe35964abc048548ffc869e042d496abd3c378408d1d046ca587c7b197827d421665d0fcae663f727b613c321a0dec7a7e77f4bb89ce902218cbd4ac
6
+ metadata.gz: a984d12f51559b26e249791a8fc9f73d6b08cfb3f85d367638c9a2bd938e7906e966b8c22f91288f5683c07c9af6b5d400537c9c5e454d79eb343aac271abe25
7
+ data.tar.gz: 75e3a04f6b53a5a34d4bbc11c1f34261900286f82719a42acc70060147cc4a5cb7e2d9bd17a6df88e1d95b974d1bf6ad9a55ea43ab4e7290ebd40147dc45001f
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 0.0.6 - 2025-03-20
4
+
5
+ ### Fixes
6
+
7
+ * Fixed Bundler integration.
8
+
3
9
  ## 0.0.5 - 2025-03-20
4
10
 
5
11
  ### Improvements
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  module RubyGemsRequirementsSystem
17
- VERSION = "0.0.5"
17
+ VERSION = "0.0.6"
18
18
  end
data/plugins.rb CHANGED
@@ -16,11 +16,11 @@
16
16
  Bundler::Plugin::API.hook(Bundler::Plugin::Events::GEM_BEFORE_INSTALL_ALL) do |dependencies|
17
17
  Gem.pre_install do |gem_installer|
18
18
  # We use RubyGems plugin for non Bundler.
19
- next unless gem_installer.class == Gem::Installer
19
+ next if gem_installer.class == Gem::Installer
20
20
 
21
21
  require_relative "lib/rubygems-requirements-system/installer"
22
22
 
23
- installer = RubyGemsRequirementsSystem::Installer.new(spec_installer.spec)
23
+ installer = RubyGemsRequirementsSystem::Installer.new(gem_installer.spec)
24
24
  installer.install
25
25
  end
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubygems-requirements-system
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sutou Kouhei