File: Rakefile

package info (click to toggle)
ruby-path-expander 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 116 kB
  • sloc: ruby: 218; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 521 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
26
27
28
29
30
# -*- ruby -*-

require "rubygems"
require "hoe"

Hoe.plugin :isolate
Hoe.plugin :seattlerb
Hoe.plugin :rdoc

# Hoe.plugin :compiler
# Hoe.plugin :doofus
# Hoe.plugin :email
# Hoe.plugin :gem_prelude_sucks
# Hoe.plugin :history
# Hoe.plugin :inline
# Hoe.plugin :isolate
# Hoe.plugin :minitest
# Hoe.plugin :perforce
# Hoe.plugin :racc
# Hoe.plugin :rcov
# Hoe.plugin :rdoc
# Hoe.plugin :seattlerb

Hoe.spec "path_expander" do
  developer "Ryan Davis", "ryand-ruby@zenspider.com"

  license "MIT"
end

# vim: syntax=ruby