Sha256: 05e661c9a482ccda8fd2c841487549c223848971f81607e5f65df547cc19cf9f
Contents?: true
Size: 1.76 KB
Versions: 5
Compression:
Stored size: 1.76 KB
Contents
# 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', 'x86-mswin32'].inject({}) { |hash, spec_platform| $platform = spec_platform hash.update(spec_platform=>Gem::Specification.load('buildrdeb.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
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
buildrdeb-1.0.1 | Rakefile |
buildrdeb-1.0.0 | Rakefile |
buildrdeb-0.0.3 | Rakefile |
buildrdeb-0.0.2 | Rakefile |
buildrdeb-0.0.1 | Rakefile |