summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorVictor Koronen <koronen@kth.se>2015-08-13 20:09:53 +0200
committerVictor Koronen <koronen@kth.se>2015-08-13 20:09:53 +0200
commit122518fb89d97628589782e0fdac72f716496d18 (patch)
tree8e3fa08278c610e03629fa47c8a00f6df19c8685 /spec/spec_helper.rb
parent6fdbc5d2ac7d794df8044dc7e3c1ce99922e3ff1 (diff)
downloadbundler-122518fb89d97628589782e0fdac72f716496d18.tar.gz
Fix Style/RegexpLiteral
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 8b5649040e..ede6ffaf53 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -30,7 +30,7 @@ else
end
Dir["#{File.expand_path("../support", __FILE__)}/*.rb"].each do |file|
- require file unless file =~ /fakeweb\/.*\.rb/
+ require file unless file =~ %r{fakeweb/.*\.rb}
end
$debug = false