Sha256: dde8f843fefdb9b70b1bf365e3a0c6b788407efad69e69d9005b209a9f883543
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# Rakefile for facter begin require 'rake/reductive' rescue LoadError $stderr.puts "You must have the Reductive build library in your RUBYLIB." exit(14) end project = Rake::RedLabProject.new("facter") do |p| p.summary = "Facter collects Operating system facts." p.description = <<-EOF Facter is a module for collecting simple facts about a host Operating system. EOF p.filelist = [ 'install.rb', '[A-Z]*', 'bin/**/*', 'lib/**/*.rb', 'test/**/*.rb', 'doc/**/*', 'etc/*' ] #p.epmhosts = %w{culain} #p.rpmhost = "fedora1" #p.sunpkghost = "sol10b" end project.mkgemtask do |gem| gem.require_path = 'lib' # Use these for libraries. gem.bindir = "bin" # Use these for applications. gem.executables = ["facter"] gem.default_executable = "facter" end if project.has?(:epm) project.mkepmtask do |task| task.bins = FileList.new("bin/facter") task.rubylibs = FileList.new('lib/**/*') end end # $Id$
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facter-1.3.8 | Rakefile |