Skip to content

Commit

Permalink
Changed the Jeweler task configuration to depended on resque-igo in…
Browse files Browse the repository at this point in the history
…stead of `resque`
  • Loading branch information
GertThiel committed Mar 3, 2011
1 parent abaa540 commit b94053d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 28 deletions.
23 changes: 11 additions & 12 deletions Gemfile.lock
Expand Up @@ -2,33 +2,34 @@ PATH
remote: .
specs:
resque_spec (0.2.1)
resque (>= 1.6.0)
resque-igo (~> 1.12.8)
resque_spec
rspec (~> 1.3.0)

GEM
remote: http://rubygems.org/
specs:
bson (1.2.4)
git (1.2.5)
jeweler (1.5.1)
jeweler (1.5.2)
bundler (~> 1.0.0)
git (>= 1.2.5)
rake
json (1.4.6)
mongo (1.2.4)
bson (>= 1.2.4)
rack (1.2.1)
rake (0.8.7)
redis (2.1.1)
redis-namespace (0.8.0)
redis (< 3.0.0)
resque (1.10.0)
resque-igo (1.12.8)
json (~> 1.4.6)
redis-namespace (~> 0.8.0)
mongo (~> 1.2.0)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
rspec (1.3.1)
sinatra (1.1.0)
sinatra (1.1.3)
rack (~> 1.1)
tilt (~> 1.1)
tilt (1.1)
tilt (>= 1.2.2, < 2.0)
tilt (1.2.2)
vegas (0.1.8)
rack (>= 1.0.0)

Expand All @@ -37,6 +38,4 @@ PLATFORMS

DEPENDENCIES
jeweler (>= 1.4.0)
resque (>= 1.6.0)
resque_spec!
rspec (~> 1.3.0)
12 changes: 6 additions & 6 deletions Rakefile
Expand Up @@ -5,12 +5,12 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "resque_spec"
gem.summary = %Q{RSpec matchers for Resque}
gem.description = %Q{RSpec matchers for Resque}
gem.email = "leshill@gmail.com"
gem.homepage = "http://github.com/leshill/resque_spec"
gem.authors = ["Les Hill"]
gem.add_dependency "resque", ">= 1.6.0"
gem.summary = %Q{RSpec matchers for Resque (resque-igo, MongoDB)}
gem.description = %Q{RSpec matchers for Resque (resque-igo, MongoDB)}
gem.email = "GertThiel@gmx.net"
gem.homepage = "https://github.com/GertThiel/resque_spec"
gem.authors = ["Gert Thiel"]
gem.add_dependency "resque-igo", "~> 1.12.8"
gem.add_dependency "rspec", "~> 1.3.0"
gem.add_development_dependency "jeweler", ">= 1.4.0"
end
Expand Down
19 changes: 9 additions & 10 deletions resque_spec.gemspec
Expand Up @@ -8,17 +8,16 @@ Gem::Specification.new do |s|
s.version = "0.2.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Les Hill"]
s.date = %q{2010-11-24}
s.description = %q{RSpec matchers for Resque}
s.email = %q{leshill@gmail.com}
s.authors = ["Gert Thiel"]
s.date = %q{2011-03-03}
s.description = %q{RSpec matchers for Resque (resque-igo, MongoDB)}
s.email = %q{GertThiel@gmx.net}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
".document",
".rvmrc",
"Gemfile",
"Gemfile.lock",
"LICENSE",
Expand All @@ -37,10 +36,10 @@ Gem::Specification.new do |s|
"spec/support/address.rb",
"spec/support/person.rb"
]
s.homepage = %q{http://github.com/leshill/resque_spec}
s.homepage = %q{https://github.com/GertThiel/resque_spec}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{RSpec matchers for Resque}
s.summary = %q{RSpec matchers for Resque (resque-igo, MongoDB)}
s.test_files = [
"spec/resque_scheduler_spec_spec.rb",
"spec/resque_spec_spec.rb",
Expand All @@ -55,16 +54,16 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<resque>, [">= 1.6.0"])
s.add_runtime_dependency(%q<resque-igo>, ["~> 1.12.8"])
s.add_runtime_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_development_dependency(%q<jeweler>, [">= 1.4.0"])
else
s.add_dependency(%q<resque>, [">= 1.6.0"])
s.add_dependency(%q<resque-igo>, ["~> 1.12.8"])
s.add_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_dependency(%q<jeweler>, [">= 1.4.0"])
end
else
s.add_dependency(%q<resque>, [">= 1.6.0"])
s.add_dependency(%q<resque-igo>, ["~> 1.12.8"])
s.add_dependency(%q<rspec>, ["~> 1.3.0"])
s.add_dependency(%q<jeweler>, [">= 1.4.0"])
end
Expand Down

0 comments on commit b94053d

Please sign in to comment.