-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
24 lines (22 loc) · 990 Bytes
/
Rakefile
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 'rake'
require 'rubygems'
require 'spec/rake/spectask'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "birdfeed"
s.summary = %Q{BirdFeed is a well tested RSS parsing library that uses the Nokogiri XML parser in an attempt to normalize the concept of an Atom and RSS feed. We wrote this library to solve the problem ofconsuming several different feed types for a moderation tool.}
s.email = "[email protected]"
s.homepage = "http://github.com/bradgessler/crapapp"
s.description = "An RSS/Atom reader based on the Nokogiri XML parser for Ruby"
s.authors = ["Brad Gessler"]
s.add_dependency 'nokogiri', ['>= 1.1.1']
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
desc "Run specs"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_files = FileList['spec/specs/*.rb', 'spec/specs/format/*.rb']
t.spec_opts = ['--colour', '--format', 'specdoc']
end