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

Revert "Fix bundle exec rspec to work"

This reverts commit 1e401c76ef.

This didn't work when running each spec
This commit is contained in:
Takashi Kokubun 2015-03-29 00:11:36 +09:00
parent fe4974f77c
commit 4a41c78437
2 changed files with 1 additions and 2 deletions

1
.rspec
View file

@ -1,3 +1,2 @@
--color
--require spec_helper
--pattern spec/hamlit/**{,/\*/\*\*\}/\*_spec.rb

View file

@ -7,7 +7,7 @@ end
desc 'Run RSpec code examples'
task :spec do
system('bundle exec rspec')
system('bundle exec rspec --pattern spec/hamlit/**{,/\*/\*\*\}/\*_spec.rb')
end
namespace :rails do