Sha256: c5bfbae3cf9e1609f489ee097a24e383aae5c17512d2d8dfec8cbb13e5c576b7

Contents?: true

Size: 1.27 KB

Versions: 14

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module ActiveModel
  # == Active \Model \Basic \Model
  #
  # Allows implementing models similar to <tt>ActiveRecord::Base</tt>.
  # Includes <tt>ActiveModel::API</tt> for the required interface for an
  # object to interact with Action Pack and Action View, but can be
  # extended with other functionalities.
  #
  # A minimal implementation could be:
  #
  #   class Person
  #     include ActiveModel::Model
  #     attr_accessor :name, :age
  #   end
  #
  #   person = Person.new(name: 'bob', age: '18')
  #   person.name # => "bob"
  #   person.age  # => "18"
  #
  # If for some reason you need to run code on <tt>initialize</tt>, make
  # sure you call +super+ if you want the attributes hash initialization to
  # happen.
  #
  #   class Person
  #     include ActiveModel::Model
  #     attr_accessor :id, :name, :omg
  #
  #     def initialize(attributes={})
  #       super
  #       @omg ||= true
  #     end
  #   end
  #
  #   person = Person.new(id: 1, name: 'bob')
  #   person.omg # => true
  #
  # For more detailed information on other functionalities available, please
  # refer to the specific modules included in <tt>ActiveModel::Model</tt>
  # (see below).
  module Model
    extend ActiveSupport::Concern
    include ActiveModel::API
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-7.0.2.3/lib/active_model/model.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activemodel-7.0.2.3/lib/active_model/model.rb
activemodel-7.0.2.4 lib/active_model/model.rb
activemodel-7.0.2.3 lib/active_model/model.rb
activemodel-7.0.2.2 lib/active_model/model.rb
activemodel-7.0.2.1 lib/active_model/model.rb
activemodel-7.0.2 lib/active_model/model.rb
activemodel-7.0.1 lib/active_model/model.rb
activemodel-7.0.0 lib/active_model/model.rb
activemodel-7.0.0.rc3 lib/active_model/model.rb
activemodel-7.0.0.rc2 lib/active_model/model.rb
activemodel-7.0.0.rc1 lib/active_model/model.rb
activemodel-7.0.0.alpha2 lib/active_model/model.rb
activemodel-7.0.0.alpha1 lib/active_model/model.rb