public
Fork of apache/buildr
Description: Mirror of Apache Buildr
Homepage:
Clone URL: git://github.com/assaf/buildr.git
assaf (author)
Thu Jul 02 10:50:33 -0700 2009
commit  7936d66f95393715d62ef0872c0e946bf45ebd2f
tree    20d9aed9de72969a491e777a0182126df304f7e1
parent  1bfc1a888630c992c1a36b97577a1c01cfed1fff
buildr / Rakefile
100644 46 lines (38 sloc) 1.787 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with this
# work for additional information regarding copyright ownership. The ASF
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
 
 
# We need JAVA_HOME for most things (setup, spec, etc).
unless ENV['JAVA_HOME']
  if RUBY_PLATFORM[/java/]
    ENV['JAVA_HOME'] = java.lang.System.getProperty('java.home')
  elsif RUBY_PLATFORM[/darwin/]
    ENV['JAVA_HOME'] = '/System/Library/Frameworks/JavaVM.framework/Home'
  else
    fail "Please set JAVA_HOME first (set JAVA_HOME=... or env JAVA_HOME=... rake ...)"
  end
end
 
 
# Load the Gem specification for the current platform (Ruby or JRuby).
def spec(platform = RUBY_PLATFORM[/java/] || 'ruby')
  @specs ||= ['ruby', 'java'].inject({}) { |hash, spec_platform|
    $platform = spec_platform
    hash.update(spec_platform=>Gem::Specification.load('buildr.gemspec'))
  }
  @specs[platform]
end
 
# Tell us if we need sudo for various commands.
def sudo_needed?
  Config::CONFIG['host_os'] !~ /windows|cygwin|bccwin|cygwin|djgpp|mingw|mswin|wince/i && !ENV['GEM_HOME']
end
 
 
desc 'Clean up all temporary directories used for running tests, creating documentation, packaging, etc.'
task :clobber