Sha256: a3f1739d08ddfc6ce95410ccfc6e3b5d45bf381ec541a35be8dc9414a3fd82f5

Contents?: true

Size: 1.3 KB

Versions: 7

Compression:

Stored size: 1.3 KB

Contents

# Extends the class object with class and instance accessors for class attributes, 
# just like the native attr* accessors for instance attributes.
class Class # :nodoc:
  def cattr_reader(*syms)
    syms.select { |sym| sym.respond_to?(:id2name) }.each do |sym|
      class_eval <<-EOS
        if ! defined? @@#{sym.id2name}
          @@#{sym.id2name} = nil
        end
        
        def self.#{sym.id2name}
          @@#{sym}
        end

        def #{sym.id2name}
          @@#{sym}
        end

        def call_#{sym.id2name}
          case @@#{sym.id2name}
            when Symbol then send(@@#{sym})
            when Proc   then @@#{sym}.call(self)
            when String then @@#{sym}
            else nil
          end
        end
      EOS
    end
  end
  
  def cattr_writer(*syms)
    syms.select { |sym| sym.respond_to?(:id2name) }.each do |sym|
      class_eval <<-EOS
        if ! defined? @@#{sym.id2name}
          @@#{sym.id2name} = nil
        end
        
        def self.#{sym.id2name}=(obj)
          @@#{sym.id2name} = obj
        end

        def self.set_#{sym.id2name}(obj)
          @@#{sym.id2name} = obj
        end

        def #{sym.id2name}=(obj)
          @@#{sym} = obj
        end
      EOS
    end
  end
  
  def cattr_accessor(*syms)
    cattr_reader(*syms)
    cattr_writer(*syms)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activesupport-1.1.1 lib/active_support/class_attribute_accessors.rb
activesupport-1.2.3 lib/active_support/class_attribute_accessors.rb
activesupport-1.2.1 lib/active_support/class_attribute_accessors.rb
activesupport-1.1.0 lib/active_support/class_attribute_accessors.rb
activesupport-1.2.2 lib/active_support/class_attribute_accessors.rb
activesupport-1.2.4 lib/active_support/class_attribute_accessors.rb
activesupport-1.2.5 lib/active_support/class_attribute_accessors.rb