Sha256: 679f845b22541fb3e6dfc181037789fcb6963abef3e022db68db0d435e6714e7
Contents?: true
Size: 995 Bytes
Versions: 1
Compression:
Stored size: 995 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "resque-heroku-signals" spec.version = '2.2.1' spec.authors = ["Michael Bianco"] spec.email = ["mike@mikebian.co"] spec.summary = "Patch resque to be compatible with the Heroku platform" spec.homepage = "https://github.com/resque/resque-heroku-signals" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] # strict resque dependency is intentional spec.add_dependency "resque", "2.2.1" spec.add_development_dependency "bundler", "~> 2.2" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.10" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
resque-heroku-signals-2.2.1 | resque-heroku-signals.gemspec |