-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
31 lines (24 loc) · 995 Bytes
/
Rakefile
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
# frozen_string_literal: true
# vim: syntax=ruby
load "tasks/this.rb"
This.name = "heel"
This.author = "Jeremy Hinegardner"
This.email = "jeremy@copiousfreetime.org"
This.homepage = "http://github.com/copiousfreetime/#{This.name}"
This.ruby_gemspec do |spec|
spec.add_runtime_dependency("rack", "~> 3.0")
spec.add_runtime_dependency("rackup", "~> 2.1")
spec.add_runtime_dependency("puma", "~> 6.0")
spec.add_runtime_dependency("marcel", "~> 1.0")
spec.add_runtime_dependency("launchy", "~> 2.5")
spec.add_runtime_dependency("rouge", "~> 4.0")
spec.license = "BSD-3-Clause"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/copiousfreetime/heel/issues",
"changelog_uri" => "https://github.com/copiousfreetime/heel/blob/master/README.md",
"homepage_uri" => "https://github.com/copiousfreetime/heel",
"source_code_uri" => "https://github.com/copiousfreetime/heel",
}
spec.required_ruby_version = ">= 3.0.0"
end
load "tasks/default.rake"