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
40
41
42
43
44
45
46
47
|
# File 'lib/language_installer.rb', line 9
def install
my_bindir = CONFIG['bindir']
unless File.writable? my_bindir
my_bindir = [ENV['HOME'], '.gem', 'ruby', CONFIG["MAJOR"]+"."+CONFIG["MINOR"], 'bin'].join(File::SEPARATOR)
end
my_gems_path = [CONFIG['libdir'], 'ruby', 'gems'].join(File::SEPARATOR)
unless File.writable? my_gems_path
my_gems_path = [ENV['HOME'], '.gem', 'ruby'].join(File::SEPARATOR)
end
buildr = File.join my_bindir, 'buildr'
buildr << '.bat' if CONFIG['host_os'] =~ /mswin/i
old_ext = ENV['EXT']
ENV['EXT'] = ARGV[1]
buildfile = File.join(File.dirname(__FILE__), 'buildfile')
ARGV.shift
ARGV.shift
ARGV.insert 0, buildfile
ARGV.insert 0, '-f'
require 'rubygems'
require 'buildr'
Buildr.application.run
ENV['EXT'] = old_ext
end
|