Sha256: de970bd8f2bf3a97d25c6180846b674e1676dec3e407b0546e6329a64cc75796

Contents?: true

Size: 1.25 KB

Versions: 42

Compression:

Stored size: 1.25 KB

Contents

# Extends the module object with module and instance accessors for class attributes, 
# just like the native attr* accessors for instance attributes.
#
#  module AppConfiguration
#    mattr_accessor :google_api_key
#    self.google_api_key = "123456789"
#
#    mattr_accessor :paypal_url
#    self.paypal_url = "www.sandbox.paypal.com"
#  end
#
#  AppConfiguration.google_api_key = "overriding the api key!"
class Module
  def mattr_reader(*syms)
    syms.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 mattr_writer(*syms)
    options = syms.extract_options!
    syms.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 mattr_accessor(*syms)
    mattr_reader(*syms)
    mattr_writer(*syms)
  end
end

Version data entries

42 entries across 41 versions & 15 rubygems

Version Path
radiant-0.7.2 vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
vibes-bj-1.2.2 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
vibes-bj-1.2.1 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
nbudin-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/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/module/attribute_accessors.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
activeobject-0.0.3 ./lib/active_support/core_ext/module/attribute_accessors.rb
activeobject-0.0.4 ./lib/active_support/core_ext/module/attribute_accessors.rb
activesupport-2.2.3 lib/active_support/core_ext/module/attribute_accessors.rb
ant-mapper-0.0.2 ./lib/ant_support/core_ext/module/attribute_accessors.rb
activesupport-2.1.0 lib/active_support/core_ext/module/attribute_accessors.rb
activesupport-2.1.1 lib/active_support/core_ext/module/attribute_accessors.rb
activesupport-2.1.2 lib/active_support/core_ext/module/attribute_accessors.rb
activesupport-2.2.2 lib/active_support/core_ext/module/attribute_accessors.rb
antfarm-0.3.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
antfarm-0.4.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attribute_accessors.rb
mack-facets-0.8.3 lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attribute_accessors.rb
mack-facets-0.8.3.1 lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attribute_accessors.rb