Sha256: 40f969a5e55d0bb62a22cc19e80c97d34d107590bfc3d05b054b4c4fbc6541f5
Contents?: true
Size: 724 Bytes
Versions: 28
Compression:
Stored size: 724 Bytes
Contents
module Acfs::Model # Initialization drop-in for pre-4.0 ActiveModel. # module Initialization # @api public # # Initializes a new model with the given `params`. # # @example # class User # include Acfs::Model # attribute :name # attribute :email, default: -> { "#{name}@dom.tld" } # attribute :age, :integer, default: 18 # end # # user = User.new(name: 'bob') # user.name # => "bob" # user.email # => "bob@dom.tld" # user.age # => 18 # # @param [ Hash{ Symbol => Object } ] params Attributes to set on resource. # def initialize(params = {}) self.write_attributes params if params end end end
Version data entries
28 entries across 28 versions & 1 rubygems