bundler 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4cc0a71e765b27ffb15501a912f2c5d44c78a978da6b7bdf59a863fa401c4ecf
4
- data.tar.gz: 3458392859f76d896ec97b3f45ca2dc68ffb2a7512fa7a8498557a3c9f4a81f5
3
+ metadata.gz: 843e4286044cdb233de4175677bc39b0e942bf7530dfc102b513f0f813ebe628
4
+ data.tar.gz: f8c96b7117f2b17f8c6e7286575a972168a4ac0a4f8611d33d2ebe07e8e9a624
5
5
  SHA512:
6
- metadata.gz: 5ad6af5ddd2da1be83fd0df6e50e3808fb4eb73bba4e94bbfc4690bcb2a566bfc29af77a5bcffdc047f900138b3b1b88074bd6ea0d9a052ca1aa9e7ee7fb4680
7
- data.tar.gz: 16d9d4a621cb5857157a7362182d269ad87b8a902eece6f88fa00024eb502463872d507d4ddf0e95b035ed1497bccb10f2d8d201f954fa438a3fb29e1a6a28fa
6
+ metadata.gz: 58b2638c69639e4e1ee65cbb9eb803fcf07055fcd2fb51b123c04cff7f756c0900c8147d73bd8f8f3005972dc7d6ade1defa6febcc930e53683d5f8953d6354e
7
+ data.tar.gz: e8e0bd8f0da1f426f47f8ecb051d92874b2c32a2494c4979d26d2c318cb742b17bc7ce9b7ea8d0303111a9045ede19bcbdb25d3e611d7ec71ab523692af58bf5
@@ -1,3 +1,9 @@
1
+ ## 2.1.2 (December 20, 2019)
2
+
3
+ Bugfixes:
4
+
5
+ - Restore an explicit `require "rubygems"` on top `rubygems_integration.rb` to avoid some missing constant errors under some convoluted setups [#7505](https://github.com/bundler/bundler/pull/7505)
6
+
1
7
  ## 2.1.1 (December 17, 2019)
2
8
 
3
9
  Bugfixes:
@@ -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 = "2019-12-18".freeze
8
- @git_commit_sha = "8bd21aa0f5".freeze
7
+ @built_at = "2019-12-20".freeze
8
+ @git_commit_sha = "4da3289ebd".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rubygems"
4
+
3
5
  module Bundler
4
6
  class RubygemsIntegration
5
7
  if defined?(Gem::Ext::Builder::CHDIR_MONITOR)
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.1.1".freeze
4
+ VERSION = "2.1.2".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
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.1.1
4
+ version: 2.1.2
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: 2019-12-18 00:00:00.000000000 Z
25
+ date: 2019-12-20 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