Sha256: 769950f720953bafab862393055eca5b7601f9de1503e881a4bc312b340b5ff7
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "threaded-rspec" gem.summary = %Q{Threaded rspec runner} gem.description = %Q{An rspec runner intended for use with targets like Selenium Grid that require local parallelization but use minimal local resources.} gem.email = "GICodeWarrior@gmail.com" gem.homepage = "http://github.com/GICodeWarrior/threaded-rspec" gem.authors = ["Rusty Burchfield"] gem.add_development_dependency "rspec" # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs << 'lib' << 'spec' spec.spec_files = FileList['spec/**/*_spec.rb'] end Spec::Rake::SpecTask.new(:rcov) do |spec| spec.libs << 'lib' << 'spec' spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :spec => :check_dependencies task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| if File.exist?('VERSION') version = File.read('VERSION') else version = "" end rdoc.rdoc_dir = 'rdoc' rdoc.title = "threaded-rspec #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
GICodeWarrior-threaded-rspec-0.2.0 | Rakefile |
GICodeWarrior-threaded-rspec-0.3.0 | Rakefile |
GICodeWarrior-threaded-rspec-0.4.0 | Rakefile |
GICodeWarrior-threaded-rspec-0.6.0 | Rakefile |