Skip to content

Commit 1160c82

Browse files
committedMar 18, 2013
Don't run appraisal in travis
1 parent 1a30d8c commit 1160c82

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed
 

‎Rakefile

+9-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ require 'bundler/gem_tasks'
66
require 'appraisal'
77

88
require 'rspec/core/rake_task'
9-
desc 'Default: run the specs and features.'
10-
task :default do
11-
system("bundle exec rake -s appraisal spec ;")
12-
end
13-
149
RSpec::Core::RakeTask.new
10+
11+
task :default => [:spec]
12+
13+
namespace :spec do
14+
desc 'run the specs and features against every gemset.'
15+
task :all do
16+
system("bundle exec rake -s appraisal spec ;")
17+
end
18+
end

0 commit comments

Comments
 (0)
Please sign in to comment.