Module: NormalizeAttributes::ActiveRecord

Defined in:
lib/normalize_attributes/active_record.rb

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
# File 'lib/normalize_attributes/active_record.rb', line 3

def self.included(base)
  base.instance_eval do
    extend ClassMethods
    include InstanceMethods
    before_validation :normalize_attributes

    class << self
      attr_accessor :normalize_options
    end
  end
end