forked from cjohansen/twibot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
30 lines (25 loc) · 737 Bytes
/
Rakefile
File metadata and controls
30 lines (25 loc) · 737 Bytes
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
# 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"