summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-04-14 19:42:22 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-04-14 19:42:22 +0900
commit0db9a3ab8b4a328d4ffafe29dcb25b8782475bba (patch)
tree3ac1db19a38d71c75c4be7721e8b86e8c85d45bb
parenta53709556b95a914e874b22ed2116a46b0528852 (diff)
downloadbundler-0db9a3ab8b4a328d4ffafe29dcb25b8782475bba.tar.gz
Added explicitly loading rspec. Because ruby core didn't use rspec cli directly.
-rw-r--r--spec/spec_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 81c222ea6f..e8e7cc9a1f 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -13,6 +13,7 @@ if File.expand_path(__FILE__) =~ %r{([^\w/\.:\-])}
end
require "bundler"
+require "rspec"
Dir["#{File.expand_path("../support", __FILE__)}/*.rb"].each do |file|
file = file.gsub(%r{\A#{Regexp.escape File.expand_path("..", __FILE__)}/}, "")