-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
39 lines (30 loc) · 980 Bytes
/
Rakefile
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
34
35
36
37
38
39
# 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 'ffi-wiiuse'
task :default => 'spec:run'
PROJ.name = 'ffi-wiiuse'
PROJ.authors = 'Andrea Fazzi'
PROJ.email = 'andrea.fazzi@alcacoop.it'
PROJ.url = 'http://github.com/remogatto/ffi-wiiuse/tree/master'
PROJ.version = WiiUseLibrary::VERSION
PROJ.rubyforge.name = 'ffi-wiiuse'
PROJ.readme_file = 'README.rdoc'
PROJ.ann.paragraphs << 'FEATURES' << 'SYNOPSIS' << 'REQUIREMENTS' << 'INSTALL'
PROJ.ann.email[:to] << 'dev@ruby-ffi.kenai.com' << 'users@ruby-ffi.kenai.com'
PROJ.ann.email[:server] = 'smtp.gmail.com'
PROJ.spec.opts << '--color'
PROJ.ruby_opts = []
depend_on 'ffi', '0.3.0'
# EOF