bundler 2.3.9 → 2.3.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.3.9".freeze
4
+ VERSION = "2.3.12".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
data/lib/bundler.rb CHANGED
@@ -370,7 +370,7 @@ EOF
370
370
 
371
371
  if env.key?("RUBYLIB")
372
372
  rubylib = env["RUBYLIB"].split(File::PATH_SEPARATOR)
373
- rubylib.delete(File.expand_path("..", __FILE__))
373
+ rubylib.delete(__dir__)
374
374
  env["RUBYLIB"] = rubylib.join(File::PATH_SEPARATOR)
375
375
  end
376
376
 
@@ -561,7 +561,7 @@ EOF
561
561
 
562
562
  def load_marshal(data)
563
563
  Marshal.load(data)
564
- rescue StandardError => e
564
+ rescue TypeError => e
565
565
  raise MarshalError, "#{e.class}: #{e.message}"
566
566
  end
567
567
 
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.3.9
4
+ version: 2.3.12
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: 2022-03-09 00:00:00.000000000 Z
25
+ date: 2022-04-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
@@ -369,7 +369,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
369
369
  - !ruby/object:Gem::Version
370
370
  version: 2.5.2
371
371
  requirements: []
372
- rubygems_version: 3.3.9
372
+ rubygems_version: 3.3.12
373
373
  signing_key:
374
374
  specification_version: 4
375
375
  summary: The best way to manage your application's dependencies