forked from copiousfreetime/launchy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (21 loc) · 929 Bytes
/
Rakefile
File metadata and controls
27 lines (21 loc) · 929 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
# 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_development_dependency( 'rake' , '~> 13.0')
spec.add_development_dependency( 'minitest' , '~> 5.14' )
spec.add_development_dependency( 'rdoc' , '~> 6.2' )
spec.add_development_dependency( 'simplecov', '~> 0.17' )
spec.licenses = ['ISC']
spec.metadata = {
"bug_tracker_uri" => "https://github.com/copiousfreetime/launchy/issues",
"changelog_uri" => "https://github.com/copiousfreetime/launchy/blob/master/README.md",
"homepage_uri" => "https://github.com/copiousfreetime/launchy",
"source_code_uri" => "https://github.com/copiousfreetime/launchy",
}
end
load 'tasks/default.rake'