# File lib/chef/monkey_patches/moneta.rb, line 40
    def raw_get(key)
      if ::File.respond_to?(:binread)
        data = ::File.binread(path(key))
      else
        data = ::File.open(path(key),"rb") { |f| f.read }
      end
      Marshal.load(data)
    end