class Berkshelf::RidleyCompat

RidleyCompat is the ServerAPI, but we inherit from Chef::HTTP::Simple and then include all our middlewares and then need to include our own CompatAPI. The end result is a ridley-esque way of talking to a chef server.

Public Class Methods

new(**opts) click to toggle source
Calls superclass method Berkshelf::RidleyCompatAPI::new
# File lib/berkshelf/ridley_compat.rb, line 103
def initialize(**opts)
  opts[:version_class] = Chef::CookbookManifestVersions
  super(**opts)
end