Sha256: 37e6a4a56e49b4fd681790d367a8656dc43469e820830b6a16e6d3fc67b94e1f

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'resque/plugins/concurrent_restriction/version'


Gem::Specification.new do |s|
  s.name        = "resque-concurrent-restriction"
  s.version     = Resque::Plugins::ConcurrentRestriction::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Matt Conway"]
  s.email       = ["matt@conwaysplace.com"]
  s.homepage    = "http://github.com/wr0ngway/resque-concurrent-restriction"
  s.summary     = %q{A resque plugin for limiting how many of a specific job can run concurrently}
  s.description = %q{A resque plugin for limiting how many of a specific job can run concurrently}

  s.rubyforge_project = "resque-concurrent-restriction"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency("resque", '~> 1.10')
  s.add_development_dependency('rspec', '~> 2.5')
  s.add_development_dependency('awesome_print')

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
resque-concurrent-restriction-0.5.4 resque-concurrent-restriction.gemspec
resque-concurrent-restriction-0.5.2 resque-concurrent-restriction.gemspec
resque-concurrent-restriction-0.5.1 resque-concurrent-restriction.gemspec
resque-concurrent-restriction-0.5.0 resque-concurrent-restriction.gemspec