public
Description: A simple daemon that polls for updated Twitter statuses, Summize search results, and RSS/Atom feed items and posts them to a Campfire room.
Homepage: http://github.com/bdainton/camptweet
Clone URL: git://github.com/bdainton/camptweet.git
camptweet / Rakefile
100644 26 lines (20 sloc) 0.609 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
# -*- ruby -*-
 
require 'rubygems'
require 'rake/testtask'
require 'echoe'
 
Echoe.new('camptweet') do |p|
  p.author = "Brian Dainton"
  p.summary = "A simple daemon that polls for updated Twitter statuses,
Summize search results, and RSS/Atom feed items and posts
them to a Campfire room."
  p.url = "http://github.com/bdainton/camptweet"
  p.dependencies = ["twitter4r >=0.3.0", "tinder >=0.1.6", "simple-rss"]
end
 
 
task :default => :test
 
desc 'Run all tests'
Rake::TestTask.new('test') do |t|
  t.libs << 'test'
  t.pattern = 'test/*_test.rb'
  t.verbose = true
end
 
# vim: ft=ruby sw=2 ts=2 ai