summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2017-11-14 03:04:47 +0100
committerr-obert <r-obert@users.noreply.github.com>2017-11-14 03:04:47 +0100
commita99861f1b1cea84d044c458ec5fba401d88c6802 (patch)
tree5cefe4941bc968c3bcff3f9e9e656e9d40054df8 /Rakefile
parent6a89f574dac2b83d300c19a177acfb5c1e8dd3ca (diff)
downloadpry-a99861f1b1cea84d044c458ec5fba401d88c6802.tar.gz
Update Rakefile to properly run specs (#1700)
Use bundle exec
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 47176a4b..4b0bc787 100644
--- a/Rakefile
+++ b/Rakefile
@@ -12,7 +12,7 @@ task :default => [:test]
def run_specs paths
format = ENV['VERBOSE'] ? '--format documentation ' : ''
- sh "rspec -w #{format}#{paths.join ' '}"
+ sh "bundle exec rspec #{format}#{paths.join ' '}"
end
desc "Run tests"