Skip to content

Commit

Permalink
Added default task to rake for travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chendo committed Nov 25, 2011
1 parent 8727be4 commit 1286bd7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -1 +1,12 @@
require 'bundler/gem_tasks' require 'bundler/gem_tasks'

require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
# Put spec opts in a file named .rspec in root
end

0 comments on commit 1286bd7

Please sign in to comment.