Sha256: ed793ed73b77dd4768f93bbcc1a0ac5d4920db139c64f48d13434c4774394d2a

Contents?: true

Size: 387 Bytes

Versions: 10

Compression:

Stored size: 387 Bytes

Contents

require 'rocket_fuel/operating_system'

module RocketFuel
  module SystemDetails
    SUPPORTED_OSX_MINORS = ['10.10', '10.9', '10.8', '10.7']

    class << self
      def os_version
        os.version
      end

      def os
        @os ||= RocketFuel::OperatingSystem.new
      end

      def platform_family?(platform)
        os.platform_family?(platform)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rocket_fuel-0.2.0 lib/rocket_fuel/system_details.rb
rocket_fuel-0.1.0 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.8 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.7 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.6 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.5 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.4 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.3 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.2 lib/rocket_fuel/system_details.rb
rocket_fuel-0.0.1 lib/rocket_fuel/system_details.rb