forked from grosser/parallel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
19 lines (17 loc) · 673 Bytes
/
Rakefile
File metadata and controls
19 lines (17 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
task :default => :spec
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new {|t| t.spec_opts = ['--color']}
begin
require 'jeweler'
project_name = 'lowang-parallel'
Jeweler::Tasks.new do |gem|
gem.name = project_name
gem.summary = "Run any kind of code in parallel processes"
gem.email = "przemyslaw.wroblewski@gmail.com"
gem.homepage = "http://github.com/lowang/#{project_name}"
gem.authors = ["Michael Grosser", "Przemyslaw Wroblewski"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end