Sha256: c6c987433eea09694849a52de5bbc661e41e6bc982e4f995b53ada530ea34dc5
Contents?: true
Size: 364 Bytes
Versions: 5
Compression:
Stored size: 364 Bytes
Contents
module Mollie module API module Object class Base attr_reader :attributes def initialize(attributes) @attributes = attributes attributes.each do |key, value| if self.respond_to?("#{key}=") public_send("#{key}=", value) end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems