File: Rakefile

package info (click to toggle)
ruby-net-http-digest-auth 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 124 kB
  • sloc: ruby: 232; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 532 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
23
24
25
# -*- ruby -*-

require 'rubygems'
require 'hoe'

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

Hoe.spec 'net-http-digest_auth' do
  developer 'Eric Hodel', 'drbrain@segment7.net'

  rdoc_locations <<
    'docs.seattlerb.org:/data/www/docs.seattlerb.org/net-http-digest_auth/'
  rdoc_locations <<
    'rubyforge.org:/var/www/gforge-projects/seattlerb/net-http-digest_auth/'

  license 'MIT'

  dependency 'minitest', '~> 5.0', :development

  self.spec_extras[:required_ruby_version] = '>= 1.8.7'
end

# vim: syntax=Ruby