File: Rakefile

package info (click to toggle)
ruby-growl 4.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 224 kB
  • sloc: ruby: 1,807; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 507 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
require 'rubygems'
require 'hoe'

Hoe.plugin :git
Hoe.plugin :minitest
Hoe.plugin :travis

Hoe.spec 'ruby-growl' do
  developer 'Eric Hodel', 'drbrain@segment7.net'

  spec_extras['required_ruby_version'] = '>= 1.9.2'

  rdoc_locations << 'docs.seattlerb.org:/data/www/docs.seattlerb.org/ruby-growl/'
  rdoc_locations << 'drbrain@rubyforge.org:/var/www/gforge-projects/ruby-growl/'

  license 'BSD 3-clause'

  extra_deps << ['uuid', '~> 2.3', '>= 2.3.5']
  dependency 'minitest', '~> 5.0', :developer
end