public
Description: Extensible Ruby wrapper for Atom and RSS parsers
Homepage: http://feed-normalizer.rubyforge.org/
Clone URL: git://github.com/aasmith/feed-normalizer.git
Adam Fields (author)
Tue Oct 27 10:47:11 -0700 2009
aasmith (committer)
Tue Oct 27 13:35:03 -0700 2009
feed-normalizer / Rakefile
100644 26 lines (21 sloc) 0.645 kb
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
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