-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrono.gemspec
More file actions
36 lines (30 loc) · 897 Bytes
/
crono.gemspec
File metadata and controls
36 lines (30 loc) · 897 Bytes
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
# frozen_string_literal: true
require_relative 'lib/crono/version'
Gem::Specification.new do |s|
s.name = 'crono'
s.version = Crono::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.authors = ['Dzmitry Plashchynski']
s.email = ['plashchynski@gmail.com']
s.homepage = 'https://github.com/plashchynski/crono'
s.summary = 'Job scheduler for Rails'
s.description = 'A time-based background job scheduler daemon (just like Cron) for Rails'
s.license = 'Apache-2.0'
s.required_ruby_version = '>= 3.2.0'
s.files = Dir[
'README.md',
'CHANGELOG.md',
'LICENSE',
'lib/**/*.rb',
'lib/**/*.erb',
'lib/**/*.rake',
'exe/*',
'app/**/*.rb',
'app/**/*.erb'
]
s.bindir = 'exe'
s.executables = ['crono']
s.add_dependency 'optparse'
s.add_dependency 'rails', '>= 7.0'
s.add_dependency 'zeitwerk'
end