1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Update Rakefile to properly run specs (#1700)

Use bundle exec
This commit is contained in:
John Mair 2017-11-14 03:04:47 +01:00 committed by r-obert
parent 6a89f574da
commit a99861f1b1

View file

@ -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"