Sha256: 835730e69853eb08a53028b54e6d23c3c689bbdbfa875d5b65432ccc58d65f5e

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

module ActiveModel
  # Handle default conversions: to_model, to_key and to_param.
  #
  # == Example
  #
  # Let's take for example this non persisted object.
  #
  #   class ContactMessage
  #     include ActiveModel::Conversion
  #
  #     # ContactMessage are never persisted in the DB
  #     def persisted?
  #       false
  #     end
  #   end
  #
  #   cm = ContactMessage.new
  #   cm.to_model == self #=> true
  #   cm.to_key           #=> nil
  #   cm.to_param         #=> nil
  #
  module Conversion
    # If your object is already designed to implement all of the Active Model you can use
    # the default to_model implementation, which simply returns self.
    # 
    # If your model does not act like an Active Model object, then you should define
    # <tt>:to_model</tt> yourself returning a proxy object that wraps your object
    # with Active Model compliant methods.
    def to_model
      self
    end

    # Returns an Enumerable of all (primary) key attributes or nil if persisted? is fakse
    def to_key
      persisted? ? [id] : nil
    end

    # Returns a string representing the object's key suitable for use in URLs,
    # or nil if persisted? is false
    def to_param
      to_key ? to_key.join('-') : nil
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activemodel-3.0.0.beta4 lib/active_model/conversion.rb
activemodel-3.0.0.beta3 lib/active_model/conversion.rb
activemodel-3.0.0.beta2 lib/active_model/conversion.rb