summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 1fb852030908593cb51b53548179c8a50ff6070a (plain)
1
2
3
4
5
6
7
8
9
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