-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresque-serializer.gemspec
37 lines (30 loc) · 1.35 KB
/
resque-serializer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require File.expand_path('lib/resque-serializer/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'resque-serializer'
gem.version = Resque::Plugins::Serializer::VERSION
gem.authors = ['Ryan Ringler']
gem.email = ['rringler@gmail.com']
gem.summary = 'Serializes Resque jobs'
gem.description = 'Ensures that only one Resque job with unique arguments is running at a time.'
gem.homepage = 'https://github.com/rringler/resque-serializer'
gem.license = 'MIT'
gem.files = `git ls-files -z`.split("\x0").reject do |file|
file.match(/^(test|spec|features)/)
end
gem.bindir = 'bin'
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency 'activesupport', '~> 4.0'
gem.add_dependency 'resque', '~> 1.0'
gem.add_development_dependency 'bump', '~> 0.7'
gem.add_development_dependency 'bundler', '~> 2.0'
gem.add_development_dependency 'mock_redis'
gem.add_development_dependency 'pry-byebug'
gem.add_development_dependency 'pry-stack_explorer'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'reek'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'rubocop-performance'
end