mirror of
https://github.com/plashchynski/crono.git
synced 2026-05-10 01:44:06 +02:00
22 lines
805 B
Ruby
22 lines
805 B
Ruby
require_relative 'lib/crono/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = 'crono'
|
|
spec.version = Crono::VERSION
|
|
spec.authors = ['Dzmitry Plashchynski']
|
|
spec.email = ['plashchynski@gmail.com']
|
|
|
|
spec.summary = 'Job scheduler for Rails'
|
|
spec.description = 'A time-based background job scheduler daemon (just like Cron) for Rails'
|
|
spec.homepage = 'https://github.com/plashchynski/crono'
|
|
spec.license = 'Apache-2.0'
|
|
|
|
spec.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'Rakefile', 'README.rdoc']
|
|
spec.bindir = 'exe' # http://bundler.io/blog/2015/03/20/moving-bins-to-exe.html
|
|
spec.executables = ['crono']
|
|
spec.require_paths = ['lib']
|
|
spec.test_files = Dir['spec/**/*']
|
|
|
|
spec.add_dependency 'rails', '>= 4.0'
|
|
end
|