-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (18 loc) · 714 Bytes
/
Rakefile
File metadata and controls
24 lines (18 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('rss_parser', '0.1.0') do |p|
p.description = "Simple RSS parser that supports feeds with HTTP Basic Authentication"
p.url = "http://github.com/honza/rss_parser"
p.author = "Jan Kubr"
p.email = "jan.kubr@gmail.com"
p.ignore_pattern = ["tmp/*", "script/*"]
p.runtime_dependencies = ['nokogiri']
p.development_dependencies = ['cucumber', 'rspec', 'mocha', 'simple-rss']
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
require 'cucumber/rake/task'
Cucumber::Rake::Task.new do |t|
t.cucumber_opts = "--format pretty"
end