-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathRakefile
More file actions
22 lines (17 loc) · 682 Bytes
/
Rakefile
File metadata and controls
22 lines (17 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
# vim: syntax=ruby
load "tasks/this.rb"
This.name = "hitimes"
This.author = "Jeremy Hinegardner"
This.email = "jeremy@copiousfreetime.org"
This.homepage = "http://github.com/copiousfreetime/#{This.name}"
This.ruby_gemspec do |spec|
spec.metadata = {
"bug_tracker_uri" => "https://github.com/copiousfreetime/#{This.name}/issues",
"changelog_uri" => "https://github.com/copiousfreetime/#{This.name}/blob/master/HISTORY.md",
"homepage_uri" => "https://github.com/copiousfreetime/#{This.name}",
"source_code_uri" => "https://github.com/copiousfreetime/#{This.name}",
}
spec.license = "ISC"
end
load "tasks/default.rake"