Skip to content

Commit

Permalink
Regenerated gemspec for version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Jul 19, 2009
1 parent 95ad130 commit 82c9740
Showing 1 changed file with 55 additions and 35 deletions.
90 changes: 55 additions & 35 deletions delayed_job.gemspec
@@ -1,41 +1,61 @@
#version = File.read('README.textile').scan(/^\*\s+([\d\.]+)/).flatten
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = "delayed_job"
s.version = "1.7.0"
s.date = "2008-11-28"
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 = "Delated_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.name = %q{delayed_job}
s.version = "1.8.0"

# s.bindir = "bin"
# s.executables = ["delayed_job"]
# s.default_executable = "delayed_job"

s.has_rdoc = false
s.rdoc_options = ["--main", "README.textile"]
s.extra_rdoc_files = ["README.textile"]

# run git ls-files to get an updated list
s.files = %w[
MIT-LICENSE
README.textile
delayed_job.gemspec
init.rb
lib/delayed/job.rb
lib/delayed/message_sending.rb
lib/delayed/performable_method.rb
lib/delayed/worker.rb
lib/delayed_job.rb
tasks/jobs.rake
tasks/tasks.rb
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tobias L\303\274tke"]
s.date = %q{2009-07-19}
s.description = %q{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.email = %q{tobi@leetsoft.com}
s.extra_rdoc_files = [
"README.textile"
]
s.files = [
".gitignore",
"MIT-LICENSE",
"README.textile",
"Rakefile",
"VERSION",
"delayed_job.gemspec",
"generators/delayed_job/delayed_job_generator.rb",
"generators/delayed_job/templates/migration.rb",
"generators/delayed_job/templates/script",
"init.rb",
"lib/delayed/command.rb",
"lib/delayed/job.rb",
"lib/delayed/message_sending.rb",
"lib/delayed/performable_method.rb",
"lib/delayed/worker.rb",
"lib/delayed_job.rb",
"recipes/delayed_job.rb",
"spec/database.rb",
"spec/delayed_method_spec.rb",
"spec/job_spec.rb",
"spec/story_spec.rb",
"tasks/jobs.rake",
"tasks/tasks.rb"
]
s.test_files = %w[
spec/database.rb
spec/delayed_method_spec.rb
spec/job_spec.rb
spec/story_spec.rb
s.homepage = %q{http://github.com/tobi/delayed_job/tree/master}
s.rdoc_options = ["--main", "README.textile", "--inline-source", "--line-numbers"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.3}
s.summary = %q{Database-backed asynchronous priority queue system -- Extracted from Shopify}
s.test_files = [
"spec/database.rb",
"spec/delayed_method_spec.rb",
"spec/job_spec.rb",
"spec/story_spec.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end

0 comments on commit 82c9740

Please sign in to comment.