public
Fork of drnic/tweet-tail
Description: Get the latest search results streaming to your console
Homepage:
Clone URL: git://github.com/gaustin/tweet-tail.git
tweet-tail / Rakefile
100644 33 lines (28 sloc) 1.195 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
27
28
29
30
31
32
33
require 'rubygems' unless ENV['NO_RUBYGEMS']
%w[rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/tweet-tail'
 
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('tweettail', TweetTail::VERSION) do |p|
  p.developer('Dr Nic', 'drnicwilliams@gmail.com')
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.rubyforge_name = 'drnicutilities'
  p.extra_deps = [
    ['json']
  ]
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"],
    ['fakeweb', '>= 1.2.2'],
    ['mocha', '>= 0.9.5'],
    ['cucumber', '>= 0.3.2'],
    ['rspec', '>= 1.2.5']
  ]
  
  p.clean_globs |= %w[**/.DS_Store tmp *.log]
  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
  p.rsync_args = '-av --delete --ignore-errors'
end
 
require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }
 
# TODO - want other tests/tasks run by default? Add them to the list
task :default => [:features]