module CloudPayments
Constants
- VERSION
Public Instance Methods
client()
click to toggle source
# File lib/cloud_payments.rb, line 32 def client @client ||= Client.new end
client=(value)
click to toggle source
# File lib/cloud_payments.rb, line 28 def client=(value) @client = value end
config()
click to toggle source
# File lib/cloud_payments.rb, line 20 def config @config ||= Config.new end
config=(value)
click to toggle source
# File lib/cloud_payments.rb, line 16 def config=(value) @config = value end
configure() { |config| ... }
click to toggle source
# File lib/cloud_payments.rb, line 24 def configure yield config end
webhooks()
click to toggle source
# File lib/cloud_payments.rb, line 36 def webhooks @webhooks ||= Webhooks.new end