forked from aasmith/feed-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
25 lines (21 loc) · 645 Bytes
/
Rakefile
File metadata and controls
25 lines (21 loc) · 645 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
require 'hoe'
Hoe.new("feed-normalizer", "1.5.1") do |s|
s.author = "Andrew A. Smith"
s.email = "andy@tinnedfruit.org"
s.url = "http://feed-normalizer.rubyforge.org/"
s.summary = "Extensible Ruby wrapper for Atom and RSS parsers"
s.description = s.paragraphs_of('README.txt', 1..2).join("\n\n")
s.changes = s.paragraphs_of('History.txt', 0..1).join("\n\n")
s.extra_deps << ["simple-rss", ">= 1.1"]
s.extra_deps << ["hpricot", ">= 0.6"]
s.need_zip = true
s.need_tar = false
end
begin
require 'rcov/rcovtask'
Rcov::RcovTask.new("rcov") do |t|
t.test_files = Dir['test/test_all.rb']
end
rescue LoadError
nil
end