forked from maca/scruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
28 lines (24 loc) · 780 Bytes
/
Rakefile
File metadata and controls
28 lines (24 loc) · 780 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
require 'rubygems'
gem 'hoe', '>= 2.1.0'
require 'hoe'
require 'fileutils'
require './lib/scruby'
Hoe.plugin :newgem
# Hoe.plugin :website
# Hoe.plugin :cucumberfeatures
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.spec 'scruby' do
self.developer 'Macario Ortega', 'macarui@gmail.com'
self.summary = %q{SuperCollider client for Ruby}
self.rubyforge_name = self.name
self.extra_deps = [
['maca-arguments', '>= 0.6'],
['maca-ruby-osc', '>= 0.3.1']
]
end
require 'newgem/tasks'
Dir['tasks/**/*.rake'].each { |t| load t }
# TODO - want other tests/tasks run by default? Add them to the list
# remove_task :default
task :default => [:spec]