vaguerent/lib/vagrant/util/platform.rb
2010-04-15 02:36:46 -07:00

12 lines
240 B
Ruby

module Vagrant
module Util
# This class just contains some platform checking code.
class Platform
class <<self
def leopard?
RUBY_PLATFORM.downcase.include?("darwin9")
end
end
end
end
end