bundler 2.2.8 → 2.2.9
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 +10 -0
- data/lib/bundler.rb +1 -1
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/definition.rb +1 -5
- data/lib/bundler/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c062fbdfa8bcfdfde2356db8e25d771f26a63ce52bd1e91d38bfee9fda101fca
|
|
4
|
+
data.tar.gz: 8f2bb42b3a04e2a24facdc2a859e30ab36d21607b75b828fc46f610a8da3b1fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6db82f66c50024072fbc6fd5bebcca674790cf62108b6f914a6515e77526af70a71c95546e7286f7dd78919bf2f2ef100a3ef6fb07a0bcc5e94a43211bfbbf10
|
|
7
|
+
data.tar.gz: a6a7a66879e0998817aaba8ee923c4aed56db5f3393fc94d6d607015f8bf2b752b1d07f0ba1b2a42cba066781e1a013fb8642a890388663566a3eb83d55b51b4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# 2.2.9 (February 8, 2021)
|
|
2
|
+
|
|
3
|
+
## Enhancements:
|
|
4
|
+
|
|
5
|
+
- Stop removing existing platforms when force_ruby_platform is true [#4336](https://github.com/rubygems/rubygems/pull/4336)
|
|
6
|
+
|
|
7
|
+
## Bug fixes:
|
|
8
|
+
|
|
9
|
+
- Don't install platform specific gems on truffleruby [#4333](https://github.com/rubygems/rubygems/pull/4333)
|
|
10
|
+
|
|
1
11
|
# 2.2.8 (February 2, 2021)
|
|
2
12
|
|
|
3
13
|
## Enhancements:
|
data/lib/bundler.rb
CHANGED
|
@@ -4,8 +4,8 @@ module Bundler
|
|
|
4
4
|
# Represents metadata from when the Bundler gem was built.
|
|
5
5
|
module BuildMetadata
|
|
6
6
|
# begin ivars
|
|
7
|
-
@built_at = "2021-02-
|
|
8
|
-
@git_commit_sha = "
|
|
7
|
+
@built_at = "2021-02-08".freeze
|
|
8
|
+
@git_commit_sha = "30e740c073".freeze
|
|
9
9
|
@release = true
|
|
10
10
|
# end ivars
|
|
11
11
|
|
data/lib/bundler/definition.rb
CHANGED
|
@@ -82,11 +82,7 @@ module Bundler
|
|
|
82
82
|
@lockfile_contents = Bundler.read_file(lockfile)
|
|
83
83
|
@locked_gems = LockfileParser.new(@lockfile_contents)
|
|
84
84
|
@locked_platforms = @locked_gems.platforms
|
|
85
|
-
|
|
86
|
-
@platforms = [Gem::Platform::RUBY]
|
|
87
|
-
else
|
|
88
|
-
@platforms = @locked_platforms.dup
|
|
89
|
-
end
|
|
85
|
+
@platforms = @locked_platforms.dup
|
|
90
86
|
@locked_bundler_version = @locked_gems.bundler_version
|
|
91
87
|
@locked_ruby_version = @locked_gems.ruby_version
|
|
92
88
|
|
data/lib/bundler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- André Arko
|
|
@@ -22,7 +22,7 @@ authors:
|
|
|
22
22
|
autorequire:
|
|
23
23
|
bindir: exe
|
|
24
24
|
cert_chain: []
|
|
25
|
-
date: 2021-02-
|
|
25
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
|
26
26
|
dependencies: []
|
|
27
27
|
description: Bundler manages an application's dependencies through its entire life,
|
|
28
28
|
across many machines, systematically and repeatably
|
|
@@ -352,7 +352,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
352
352
|
- !ruby/object:Gem::Version
|
|
353
353
|
version: 2.5.2
|
|
354
354
|
requirements: []
|
|
355
|
-
rubygems_version: 3.2.
|
|
355
|
+
rubygems_version: 3.2.9
|
|
356
356
|
signing_key:
|
|
357
357
|
specification_version: 4
|
|
358
358
|
summary: The best way to manage your application's dependencies
|