Sha256: c7ef5040459edd175899868ce715f23c01d79145a1a68dc8936336eb7eda8fd1
Contents?: true
Size: 300 Bytes
Versions: 15
Compression:
Stored size: 300 Bytes
Contents
module Clerk module Resources class SingularResource def initialize(client, resource_path) @client = client @resource_path = resource_path end def update(changes = {}) @client.request(:patch, @resource_path, body: changes) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems