-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclockwork_web.gemspec
More file actions
28 lines (22 loc) · 1.07 KB
/
clockwork_web.gemspec
File metadata and controls
28 lines (22 loc) · 1.07 KB
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
require_relative "lib/clockwork_web_plus/version"
Gem::Specification.new do |spec|
spec.name = "clockwork_web_plus"
spec.version = ClockworkWebPlus::VERSION
spec.summary = "A modern web interface for Clockwork with search, run-now & health checks"
spec.homepage = "https://github.com/chaadow/clockwork_web_plus"
spec.license = "MIT"
spec.authors = ["Andrew Kane", "Chedli Bourguiba"]
spec.email = ["bourguiba.chedli@gmail.com"]
spec.files = Dir["*.{md,txt}", "{app,config,lib}/**/*"]
spec.require_path = "lib"
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/chaadow/clockwork_web_plus/issues',
'changelog_uri' => 'https://github.com/chaadow/clockwork_web_plus/blob/master/CHANGELOG.md',
'homepage_uri' => spec.homepage,
'source_code_uri' => 'https://github.com/chaadow/clockwork_web_plus',
}
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "clockwork", ">= 3"
spec.add_dependency "safely_block", ">= 0.4"
spec.add_dependency "railties", ">= 6.1"
end