Sha256: 5b6eafb00978d9e53ec5df3ff23d780de8ff3578c7d05928ea36d08422e347d1
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
# frozen_string_literal: true require File.expand_path('lib/resque/unique_by_arity/version', __dir__) Gem::Specification.new do |spec| spec.name = 'resque-unique_by_arity' spec.version = Resque::UniqueByArity::VERSION spec.authors = ['Peter H. Boling'] spec.email = ['peter.boling@gmail.com'] spec.license = 'MIT' spec.summary = 'Configure resque-unique_in_queue and resque-unique_at_runtime uniqueness by arity of perform method' spec.description = 'Configure resque-unique_in_queue and resque-unique_at_runtime uniqueness by arity of perform method, with automated cleanup tools' spec.homepage = 'https://github.com/pboling/resque-unique_by_arity' spec.required_ruby_version = '>= 2.3.0' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.require_paths = ['lib'] spec.add_runtime_dependency 'colorize', '~> 0.8' spec.add_runtime_dependency 'resque', '>= 1.2' spec.add_runtime_dependency 'resque-unique_in_queue', '~> 1.0' spec.add_runtime_dependency 'resque-unique_at_runtime', '~> 3.0' spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'byebug', '~> 10.0' spec.add_development_dependency 'pry', '~> 0.11' spec.add_development_dependency 'pry-byebug', '~> 3.6' spec.add_development_dependency 'rake', '~> 12.3' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rspec-block_is_expected', '~> 1.0' spec.add_development_dependency 'rspec-stubbed_env', '~> 1.0' spec.add_development_dependency 'rubocop', '~> 0.60' spec.add_development_dependency 'rubocop-rspec', '~> 1.30' end
Version data entries
4 entries across 4 versions & 1 rubygems