forked from grosser/parallel_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
21 lines (19 loc) · 633 Bytes
/
Rakefile
File metadata and controls
21 lines (19 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
task :default => :spec
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = '--backtrace --color'
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "parallel_tests"
gem.summary = "Run tests / specs / features in parallel"
gem.email = "grosser.michael@gmail.com"
gem.homepage = "http://github.com/grosser/#{gem.name}"
gem.authors = "Michael Grosser"
gem.add_dependency "parallel"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end