briandoll / greatest_common_factor

Privides gcf features on arrays of integers

greatest_common_factor / Rakefile
100644 21 lines (14 sloc) 0.529 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'greatest_common_factor'
 
task :default => 'spec:run'
 
PROJ.name = 'greatest_common_factor'
PROJ.authors = 'FIXME (who is writing this software)'
PROJ.email = 'FIXME (your e-mail)'
PROJ.url = 'FIXME (project homepage)'
PROJ.rubyforge.name = 'greatest_common_factor'
 
PROJ.spec.opts << '--color'
 
# EOF