desc 'Run all the tests' task :default => :spec require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.rspec_opts = ['-c', '-f progress', '-r ./spec/spec_helper.rb'] t.pattern = 'spec/**/*_spec.rb' end