Sha256: 866003efee86f5a04ef33fb59e00f3635708c9b4f4be6a84939bb1bbd8fd806c

Contents?: true

Size: 1021 Bytes

Versions: 10

Compression:

Stored size: 1021 Bytes

Contents

module Braintree
  # A SuccessfulResult will be returned from non-bang methods when
  # validations pass. It will provide access to the created resource.
  # For example, when creating a customer, SuccessfulResult will
  # respond to +customer+ like so:
  #
  #   result = Customer.create(:first_name => "John")
  #   if result.success?
  #     # have a SuccessfulResult
  #     puts "Created customer #{result.customer.id}
  #   else
  #     # have an ErrorResult
  #   end
  class SuccessfulResult
    include BaseModule

    def initialize(attributes = {}) # :nodoc:
      @attrs = attributes.keys
      singleton_class.class_eval do
        attributes.each do |key, value|
          define_method key do
            value
          end
        end
      end
    end

    def inspect # :nodoc:
      inspected_attributes = @attrs.map { |attr| "#{attr}:#{send(attr).inspect}" }
      "#<#{self.class} #{inspected_attributes.join(" ")}>"
    end

    # Always returns true.
    def success?
      true
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
braintree-2.4.0 lib/braintree/successful_result.rb
braintree-2.3.1 lib/braintree/successful_result.rb
braintree-2.2.0 lib/braintree/successful_result.rb
braintree-2.1.0 lib/braintree/successful_result.rb
braintree-2.0.0 lib/braintree/successful_result.rb
braintree-1.2.1 lib/braintree/successful_result.rb
braintree-1.2.0 lib/braintree/successful_result.rb
braintree-1.1.3 lib/braintree/successful_result.rb
braintree-1.1.2 lib/braintree/successful_result.rb
braintree-1.1.1 lib/braintree/successful_result.rb