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

Fix bundle exec rspec to work

This commit is contained in:
Takashi Kokubun 2015-03-28 23:40:13 +09:00
parent 8fa9700455
commit 1e401c76ef
2 changed files with 2 additions and 1 deletions

1
.rspec
View file

@ -1,2 +1,3 @@
--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 --pattern spec/hamlit/**{,/\*/\*\*\}/\*_spec.rb')
system('bundle exec rspec')
end
namespace :rails do