bin/respec in respec-0.8.0 vs bin/respec in respec-0.8.1
- old
+ new
@@ -1,13 +1,14 @@
#!/usr/bin/env ruby
ROOT = File.expand_path('..', File.dirname(__FILE__))
$:.unshift "#{ROOT}/lib"
require 'respec'
+require 'shellwords'
app = Respec::App.new(*ARGV)
if app.help_only?
STDERR.puts app.help
else
- STDERR.puts "++ #{app.command.join(' ')}"
+ STDERR.puts "++ #{app.command.shelljoin}"
exec *app.command
end