-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
31 lines (24 loc) · 716 Bytes
/
Rakefile
File metadata and controls
31 lines (24 loc) · 716 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
28
29
30
31
# -*- ruby -*-
require 'rubygems'
require 'hoe'
# Hoe.plugin :compiler
# Hoe.plugin :gem_prelude_sucks
# Hoe.plugin :inline
# Hoe.plugin :minitest
# Hoe.plugin :racc
# Hoe.plugin :rcov
# Hoe.plugin :rubyforge
load "lib/devnull.rb"
Hoe.spec 'devnull' do
# HEY! If you fill these out in ~/.hoe_template/Rakefile.erb then
# you'll never have to touch them again!
# (delete this comment too, of course)
self.author = 'H.Hiro (maraigue)'
self.email = 'main@hhiro.net'
self.name = 'devnull'
self.version = DevNull::VERSION
self.readme_file = "README.md"
self.licenses = "MIT"
# self.rubyforge_name = 'devnullx' # if different than 'devnull'
end
# vim: syntax=ruby