Sha256: 6f5db5e865acfd3187ac3d6d1319dd855d2aed3dc11a1a05ca6361fa5f69184d

Contents?: true

Size: 1.8 KB

Versions: 24

Compression:

Stored size: 1.8 KB

Contents

require 'active_support/core_ext/kernel/singleton_class'
require 'active_support/core_ext/module/remove_method'

class Class
  # Declare a class-level attribute whose value is inheritable and
  # overwritable by subclasses:
  #
  #   class Base
  #     class_attribute :setting
  #   end
  #
  #   class Subclass < Base
  #   end
  #
  #   Base.setting = true
  #   Subclass.setting            # => true
  #   Subclass.setting = false
  #   Subclass.setting            # => false
  #   Base.setting                # => true
  #
  # This matches normal Ruby method inheritance: think of writing an attribute
  # on a subclass as overriding the reader method.
  #
  # For convenience, a query method is defined as well:
  #
  #   Subclass.setting?           # => false
  #
  # Instances may overwrite the class value in the same way:
  #
  #   Base.setting = true
  #   object = Base.new
  #   object.setting          # => true
  #   object.setting = false
  #   object.setting          # => false
  #   Base.setting            # => true
  #
  # To opt out of the instance writer method, pass :instance_writer => false.
  #
  #   object.setting = false  # => NoMethodError
  def class_attribute(*attrs)
    instance_writer = !attrs.last.is_a?(Hash) || attrs.pop[:instance_writer]

    attrs.each do |name|
      class_eval <<-RUBY, __FILE__, __LINE__ + 1
        def self.#{name}() nil end
        def self.#{name}?() !!#{name} end

        def self.#{name}=(val)
          singleton_class.class_eval do
            remove_possible_method(:#{name})
            define_method(:#{name}) { val }
          end
        end

        def #{name}
          defined?(@#{name}) ? @#{name} : singleton_class.#{name}
        end

        def #{name}?
          !!#{name}
        end
      RUBY

      attr_writer name if instance_writer
    end
  end
end

Version data entries

24 entries across 24 versions & 5 rubygems

Version Path
activesupport-2.3.18 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.17 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.16 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.15 lib/active_support/core_ext/class/attribute.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/core_ext/class/attribute.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/activesupport-2.3.12/lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.14 lib/active_support/core_ext/class/attribute.rb
kajam-1.0.3.rc2 vendor/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.12 lib/active_support/core_ext/class/attribute.rb
radiant-1.0.0.rc2 vendor/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
radiant-1.0.0.rc1 vendor/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.11 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.10 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.9 lib/active_support/core_ext/class/attribute.rb
activesupport-2.3.9.pre lib/active_support/core_ext/class/attribute.rb
activesupport-3.0.0.rc lib/active_support/core_ext/class/attribute.rb
csd-0.1.5 lib/active_support/core_ext/class/attribute.rb
csd-0.1.4 lib/active_support/core_ext/class/attribute.rb
csd-0.1.3 lib/active_support/core_ext/class/attribute.rb
csd-0.1.2 lib/active_support/core_ext/class/attribute.rb