diff options
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..1fb8520 --- /dev/null +++ b/Rakefile @@ -0,0 +1,10 @@ +require 'rspec/core/rake_task' + +ROOT = File.expand_path(File.dirname(__FILE__)) + +desc "Run all specs in spec directory" +RSpec::Core::RakeTask.new(:spec) do |t| + t.pattern = FileList['spec/**/*_spec.rb'] +end + +task :default => :spec
\ No newline at end of file |