2013-01-31 17:42:19 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
lib = File.expand_path(File.join('..', 'lib'), __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'sidetiq/version'
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = "sidetiq"
|
|
|
|
gem.version = Sidetiq::VERSION::STRING
|
|
|
|
gem.authors = ["Tobias Svensson"]
|
|
|
|
gem.email = ["tob@tobiassvensson.co.uk"]
|
2013-02-06 11:18:48 +00:00
|
|
|
gem.description = "Recurring jobs for Sidekiq"
|
2013-01-31 17:42:19 +00:00
|
|
|
gem.summary = gem.description
|
|
|
|
gem.homepage = "http://github.com/tobiassvn/sidetiq"
|
|
|
|
gem.license = "MIT"
|
|
|
|
|
|
|
|
gem.files = `git ls-files`.split($/)
|
|
|
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
|
|
gem.require_paths = ["lib"]
|
|
|
|
gem.extensions = ['ext/sidetiq_ext/extconf.rb']
|
|
|
|
|
2013-06-19 11:30:51 -07:00
|
|
|
gem.add_dependency 'sidekiq', '~> 2.12.0'
|
2013-06-20 10:29:17 +01:00
|
|
|
gem.add_dependency 'ice_cube', '~> 0.11.0'
|
2013-01-31 17:42:19 +00:00
|
|
|
end
|