Skip to content

Commit

Permalink
Fix require issue, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jules2689 committed Apr 24, 2019
1 parent 2fab644 commit 34711df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
extended_bundler-errors (0.3.1)
extended_bundler-errors (0.3.2)

GEM
remote: https://rubygems.org/
Expand All @@ -23,4 +23,4 @@ DEPENDENCIES
rake (~> 10.0)

BUNDLED WITH
1.16.2
1.17.2
5 changes: 2 additions & 3 deletions lib/extended_bundler/backports.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
require 'bundler/version'
# We need to make sure ParallelInstaller is defined before we can patch it
require 'bundler/installer/parallel_installer'

# In Bundler <= 1.17, we do not have the `after-install` hook, so monkey patch Bundler to include it
if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.17')
# We need to make sure ParallelInstaller is defined before we can patch it
require 'bundler/installer/parallel_installer'

module Bundler
class ParallelInstaller
private
Expand Down
2 changes: 1 addition & 1 deletion lib/extended_bundler/errors/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ExtendedBundler
module Errors
VERSION = "0.3.1"
VERSION = "0.3.2"
HOMEPAGE = "http://github.com/jules2689/extended_bundler-errors"
end
end

0 comments on commit 34711df

Please sign in to comment.