-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathRakefile
26 lines (20 loc) · 804 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
# frozen_string_literal: true
# vim: syntax=ruby
load "tasks/this.rb"
This.name = "launchy"
This.author = "Jeremy Hinegardner"
This.email = "jeremy@copiousfreetime.org"
This.homepage = "https://github.com/copiousfreetime/#{This.name}"
This.ruby_gemspec do |spec|
spec.add_dependency("addressable", "~> 2.8")
spec.add_dependency("childprocess", "~> 5.0")
spec.add_dependency("logger", "~> 1.6")
spec.licenses = ["ISC"]
spec.metadata = {
"bug_tracker_uri" => "https://github.com/copiousfreetime/launchy/issues",
"changelog_uri" => "https://github.com/copiousfreetime/launchy/blob/master/HISTORY.md",
"homepage_uri" => "https://github.com/copiousfreetime/launchy",
"source_code_uri" => "https://github.com/copiousfreetime/launchy",
}
end
load "tasks/default.rake"