Skip to content

Commit

Permalink
Merge 430d83b into 263724b
Browse files Browse the repository at this point in the history
  • Loading branch information
endoze committed Jun 16, 2013
2 parents 263724b + 430d83b commit 364b99d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require "bundler/gem_tasks"
require 'rspec/core/rake_task'

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

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
Expand All @@ -14,3 +14,8 @@ RSpec::Core::RakeTask.new(:coverage) do |t|
t.rcov = true
t.rcov_opts = ['--exclude', 'spec']
end

desc "Run all tests"
task :test do
Rake::Task[:spec].execute
end

0 comments on commit 364b99d

Please sign in to comment.