Guardfile in rspreadsheet-0.2.15 vs Guardfile in rspreadsheet-0.3
- old
+ new
@@ -11,16 +11,16 @@
end
# classical part
scope group: :normal
-group :normal do
- guard 'rspec' do watch_all end
+group :normal, cmd: "bundle exec rspec" do
+ guard 'rspec', cmd: 'bundle exec rspec' do watch_all end
end
# see http://stackoverflow.com/questions/18501471/guard-how-to-run-specific-tags-from-w-in-guards-console
group :focus do
- guard 'rspec', cli: '--tag focus' do watch_all end
+ guard 'rspec', cmd: 'bundle exec rspec --tag focus' do watch_all end
end
#group :f do
# guard 'rspec', cli: '--tag focus' do watch_all end
#end
\ No newline at end of file