Sha256: 54503f2c86bf27d437e5a49654a68e27ae004d388a2002e309b752acb8ef93bc

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

# -*- encoding: utf-8 -*-
begin
  require 'jeweler'

  Jeweler::Tasks.new do |s|
    s.name     = "delayed_job"
    s.summary  = "Database-backed asynchronous priority queue system -- Extracted from Shopify"
    s.email    = "tobi@leetsoft.com"
    s.homepage = "http://github.com/tobi/delayed_job/tree/master"
    s.description = "Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks."
    s.authors  = ["Tobias Lütke"]
    
    s.has_rdoc = true
    s.rdoc_options = ["--main", "README.textile", "--inline-source", "--line-numbers"]
    s.extra_rdoc_files = ["README.textile"]
    
    s.test_files = Dir['spec/**/*']
  end

rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
  exit 1
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 :default => :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
blaxter-delayed_job-1.7.99 Rakefile
blaxter-delayed_job-2.0.0 Rakefile
blaxter-delayed_job-2.0.1 Rakefile