Sha256: 36d423e1c819f078bd1928bbf22a5531ad94272f6921a6b92732ac83cd035b49

Contents?: true

Size: 597 Bytes

Versions: 64

Compression:

Stored size: 597 Bytes

Contents

#!/usr/bin/env ruby

# For security reasons, ensure that '.' is not on the load path
# This is primarily for 1.8.7 since 1.9.2+ doesn't put '.' on the load path
$LOAD_PATH.delete '.'

# Bundler and rubygems maintain a set of directories from which to
# load gems. If Bundler is loaded, let it determine what can be
# loaded. If it's not loaded, then use rubygems. But do this before
# loading any facter code, so that our gem loading system is sane.
if not defined? ::Bundler
  begin
    require 'rubygems'
  rescue LoadError
  end
end

require 'facter/application'

Facter::Application.run(ARGV)

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
facter-2.5.7 bin/facter
facter-2.5.7-x86-mingw32 bin/facter
facter-2.5.7-x64-mingw32 bin/facter
facter-2.5.7-universal-darwin bin/facter
facter-2.5.6-x86-mingw32 bin/facter
facter-2.5.6-x64-mingw32 bin/facter
facter-2.5.6-universal-darwin bin/facter
facter-2.5.6 bin/facter
facter-2.5.5-x86-mingw32 bin/facter
facter-2.5.5-x64-mingw32 bin/facter
facter-2.5.5-universal-darwin bin/facter
facter-2.5.5 bin/facter
facter-2.5.4-x86-mingw32 bin/facter
facter-2.5.4-x64-mingw32 bin/facter
facter-2.5.4-universal-darwin bin/facter
facter-2.5.4 bin/facter
facter-2.5.1 bin/facter
facter-2.5.1-x86-mingw32 bin/facter
facter-2.5.1-x64-mingw32 bin/facter
facter-2.5.1-universal-darwin bin/facter