From 4a41c784378a77bdd66a6c9476b2073ccf302bf4 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sun, 29 Mar 2015 00:11:36 +0900 Subject: [PATCH] Revert "Fix `bundle exec rspec` to work" This reverts commit 1e401c76ef9c653a5acc5ddac3c5de1ee2f25c94. This didn't work when running each spec --- .rspec | 1 - Rakefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.rspec b/.rspec index 5235a91c..83e16f80 100644 --- a/.rspec +++ b/.rspec @@ -1,3 +1,2 @@ --color --require spec_helper ---pattern spec/hamlit/**{,/\*/\*\*\}/\*_spec.rb diff --git a/Rakefile b/Rakefile index 7805666b..b86947b6 100644 --- a/Rakefile +++ b/Rakefile @@ -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