public
Description: Simple framework for creating Twitter bots, inspired by Sinatra
Homepage:
Clone URL: git://github.com/cjohansen/twibot.git
twibot / Rakefile
100644 31 lines (25 sloc) 0.737 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
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end
 
ensure_in_path 'lib'
require 'twibot'
 
task :default => 'test:run'
 
PROJ.name = 'twibot'
PROJ.authors = 'Christian Johansen'
PROJ.email = 'christian@cjohansen.no'
PROJ.url = 'http://github.com/bjeanes/twibot/'
PROJ.version = Twibot::VERSION
PROJ.rubyforge.name = 'twibot'
PROJ.readme_file = 'Readme.rdoc'
PROJ.rdoc.remote_dir = 'twibot'
 
depend_on "mbbx6spp-twitter4r", "0.3.1"