File: Rakefile

package info (click to toggle)
ruby-hitimes 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ruby: 1,385; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 682 bytes parent folder | download
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"