public
Description: Provide a standard and simplified way to build and package Ruby C and Java extensions using Rake as glue.
Homepage: http://rake-compiler.rubyforge.org
Clone URL: git://github.com/luislavena/rake-compiler.git
rake-compiler / Rakefile
100644 24 lines (20 sloc) 0.417 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
#--
# Copyright (c) 2008 Luis Lavena
#
# This source code is released under the MIT License.
# See LICENSE file for details
#++
 
#
# NOTE: Keep this file clean.
# Add your customizations inside tasks directory.
# Thank You.
#
 
begin
  require 'rake'
rescue LoadError
  require 'rubygems'
  gem 'rake', '~> 0.8.3.1'
  require 'rake'
end
 
# load rakefile extensions (tasks)
Dir['tasks/*.rake'].sort.each { |f| load f }