diff options
author | John Mair <jrmair@gmail.com> | 2017-11-14 00:09:06 +0100 |
---|---|---|
committer | John Mair <jrmair@gmail.com> | 2017-11-14 00:09:06 +0100 |
commit | ed46714b6f077c7877026c57d9b7aa94cdfd5dea (patch) | |
tree | 5cefe4941bc968c3bcff3f9e9e656e9d40054df8 | |
parent | 6a89f574dac2b83d300c19a177acfb5c1e8dd3ca (diff) | |
download | pry-use-bundle-exec-in-rakefile.tar.gz |
Update Rakefile to properly run specsuse-bundle-exec-in-rakefile
Use bundle exec
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |