require "rspec/core/rake_task" task :default => :spec desc "Run all specs" RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = 'spec/**/*_spec.rb' end