Sha256: b238373f989edf204af350639eea435f63153f71aabb09e6998ba27d06b91b30

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

module Authlogic
  module Session
    # Authlogic looks like ActiveRecord, sounds like ActiveRecord, but its not ActiveRecord. That's the goal here.
    # This is useful for the various rails helper methods such as form_for, error_messages_for, or any method that
    # expects an ActiveRecord object. The point is to disguise the object as an ActiveRecord object so we can take
    # advantage of the many ActiveRecord tools.
    module ActiveRecordTrickery
      def self.included(klass)
        klass.extend ClassMethods
        klass.send(:include, InstanceMethods)
      end
      
      module ClassMethods
        def human_attribute_name(*args)
          klass.human_attribute_name(*args)
        end
        
        def human_name(*args)
          klass.human_name(*args)
        end
        
        # For rails < 2.3, mispelled
        def self_and_descendents_from_active_record
          [self]
        end
        
        # For Rails >2.3, fix mispelling
        def self_and_descendants_from_active_record
          [self]
        end
      end
      
      module InstanceMethods
        def new_record?
          new_session?
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
authlogic-2.0.1 lib/authlogic/session/active_record_trickery.rb
authlogic-2.0.2 lib/authlogic/session/active_record_trickery.rb