File: Rakefile

package info (click to toggle)
ruby-eim-xml 0.0.4-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 192 kB
  • ctags: 171
  • sloc: ruby: 1,993; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 500 bytes parent folder | download | duplicates (4)
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
load "Rakefile.utirake"
VER = "0.0.4"

UtiRake.setup do
	rdoc do |t|
		t.title = "Easy IMplemented XML"
		t.main = "README"
		t.rdoc_files.include(FileList["lib/**/*.rb", "README"])
	end

	gemspec do |s|
		s.name = "eim_xml"
		s.summary = "Easy IMplemented XML"
		s.author = "KURODA Hiraku"
		s.email = "hiraku@hinet.mydns.jp"
		s.homepage = "http://eimxml.rubyforge.org/"
		s.rubyforge_project = "eimxml"
		s.version = VER
	end

	publish("eimxml", "hiraku")

	alias_task
end

task :default => :spec