Sha256: 39f8acda27522374bdc97278e3749e113dc505dd7b6ce62c7415d451f4a61691
Contents?: true
Size: 338 Bytes
Versions: 44
Compression:
Stored size: 338 Bytes
Contents
class Quandl::Client::Base module Attributes extend ActiveSupport::Concern def write_attribute(attribute, value) self.send(:"#{attribute}_will_change!") if @attributes[:"#{attribute}"] != value @attributes[:"#{attribute}"] = value end def read_attribute(attribute) @attributes[:"#{attribute}"] end end end
Version data entries
44 entries across 44 versions & 1 rubygems