Skip to content

Commit

Permalink
Explicitly require Bundler within Rakefile
Browse files Browse the repository at this point in the history
Closes #3021. It fixes an error related to the Rakefile, where rake
tasks which use `Bundler` constant, such as `rake sandbox`, fail if
`bundler` is not explicitly required.
  • Loading branch information
mdesantis committed Jan 4, 2019
1 parent 942ec5c commit f2bd96f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'bundler'

task default: :spec

def print_title(gem_name = '')
Expand Down

0 comments on commit f2bd96f

Please sign in to comment.