module Jekyll::Utils::Platforms

def proc_version

def proc_version
  @proc_version ||= \
    begin
      File.read("/proc/version").downcase
    rescue Errno::ENOENT, Errno::EACCES
      ""
    end
end