module JsonApiResource::Clientable

Public Class Methods

wraps(client) click to toggle source
# File lib/json_api_resource/clientable.rb, line 13
def wraps(client)
  self.client_class = client

  # now that we know where to connect to, let's do it
  add_connection Connections::ServerConnection, client: client
end