-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathRakefile
More file actions
30 lines (25 loc) · 721 Bytes
/
Rakefile
File metadata and controls
30 lines (25 loc) · 721 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
require 'rubygems'
require 'hoe'
$: << "lib"
require 'feed-normalizer'
Hoe.spec("feed-normalizer") do |s|
s.version = "1.5.2"
s.author = "Andrew A. Smith"
s.email = "andy@tinnedfruit.org"
s.url = "http://github.com/aasmith/feed-normalizer"
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