Sha256: 7dc506b15362055d2b5dcd5bae3ca24dae20dbdaa97c4f1bcf27de24c48903d3

Contents?: true

Size: 1.1 KB

Versions: 44

Compression:

Stored size: 1.1 KB

Contents

# Extends the class object with class and instance accessors for class attributes,
# just like the native attr* accessors for instance attributes.
#
#  class Person
#    cattr_accessor :hair_colors
#  end
#
#  Person.hair_colors = [:brown, :black, :blonde, :red]
class Class
  def cattr_reader(*syms)
    syms.flatten.each do |sym|
      next if sym.is_a?(Hash)
      class_eval(<<-EOS, __FILE__, __LINE__)
        unless defined? @@#{sym}
          @@#{sym} = nil
        end

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

        def #{sym}
          @@#{sym}
        end
      EOS
    end
  end

  def cattr_writer(*syms)
    options = syms.extract_options!
    syms.flatten.each do |sym|
      class_eval(<<-EOS, __FILE__, __LINE__)
        unless defined? @@#{sym}
          @@#{sym} = nil
        end

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

        #{"
        def #{sym}=(obj)
          @@#{sym} = obj
        end
        " unless options[:instance_writer] == false }
      EOS
    end
  end

  def cattr_accessor(*syms)
    cattr_reader(*syms)
    cattr_writer(*syms)
  end
end

Version data entries

44 entries across 43 versions & 17 rubygems

Version Path
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
radiant-0.7.2 vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
vibes-bj-1.2.2 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
vibes-bj-1.2.1 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
nbudin-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.2.2/lib/active_support/core_ext/class/attribute_accessors.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
activeobject-0.0.3 ./lib/active_support/core_ext/class/attribute_accessors.rb
activeobject-0.0.4 ./lib/active_support/core_ext/class/attribute_accessors.rb
activesupport-2.2.3 lib/active_support/core_ext/class/attribute_accessors.rb
ant-mapper-0.0.2 ./lib/ant_support/core_ext/class/attribute_accessors.rb
activesupport-2.1.2 lib/active_support/core_ext/class/attribute_accessors.rb
activesupport-2.2.2 lib/active_support/core_ext/class/attribute_accessors.rb
activesupport-2.1.0 lib/active_support/core_ext/class/attribute_accessors.rb
activesupport-2.1.1 lib/active_support/core_ext/class/attribute_accessors.rb
antfarm-0.3.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
antfarm-0.4.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
coinage-0.2.0 lib/coinage/core_ext/class.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class/attribute_accessors.rb