Sha256: ded2292ffbb23c7c456d6bee2da01e023afc9c1cd4d2f5f0196a7751bc764fbe

Contents?: true

Size: 1.73 KB

Versions: 11

Compression:

Stored size: 1.73 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "resque-throttle"
    gem.summary = %Q{resque-throttle is an extension to the resque queue system that restricts the frequency in which certain jobs are run.}
    gem.description = %Q{resque-throttle is an extension to the resque queue system that restricts the frequency in which certain jobs are run. Add more description here.}
    gem.email = "tamosunas@gmail.com"
    gem.homepage = "http://github.com/scotttam/resque-throttle"
    gem.authors = ["Scott J. Tamosunas"]
    gem.add_dependency "resque", ">=1.4.0"
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_development_dependency "mocha", ">=0.9.8"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "resque-throttle #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
resque-throttle-0.2.14 Rakefile
resque-throttle-0.2.13 Rakefile
resque-throttle-0.2.12 Rakefile
resque-throttle-0.2.11 Rakefile
resque-throttle-0.2.10 Rakefile
resque-throttle-0.2.9 Rakefile
resque-throttle-0.2.8 Rakefile
resque-throttle-0.2.7 Rakefile
resque-throttle-0.2.6 Rakefile
resque-throttle-0.2.4 Rakefile
resque-throttle-0.2.3 Rakefile