stripe-ruby/lib/stripe/source.rb
Brandur cb198baaa3 Remove Rubocop TODO around guard clauses
Removes Rubocop TODO around guard clauses and fixes the outstanding
offenses.

This is starting to get into territory that feels of more dubious value
to me, but at least it did get me writing a couple more tests, so let's
see how it goes by keeping this on.
2017-09-28 09:32:44 -07:00

27 lines
937 B
Ruby

module Stripe
class Source < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Save
OBJECT_NAME = "source".freeze
def delete(params = {}, opts = {})
if !respond_to?(:customer) || customer.nil? || customer.empty?
raise NotImplementedError,
"Source objects cannot be deleted, they can only be detached " \
"from customer objects. This source object does not appear to " \
"be currently attached to a customer object."
end
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
resp, opts = request(:delete, url, params, Util.normalize_opts(opts))
initialize_from(resp.data, opts)
end
def verify(params = {}, opts = {})
resp, opts = request(:post, resource_url + "/verify", params, Util.normalize_opts(opts))
initialize_from(resp.data, opts)
end
end
end