aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/module_attribute_accessors.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-29 21:03:21 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-29 21:03:21 +0000
commitbd323b3c99437cf1a50d7b4c23a64f296859c56a (patch)
tree943347b52f12f8df492c0864e7ba61318e459f63 /activesupport/lib/module_attribute_accessors.rb
parent1b0da48fe98abc67b56bc76f2af59a90198b21cc (diff)
downloadrails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.tar.gz
rails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.tar.bz2
rails-bd323b3c99437cf1a50d7b4c23a64f296859c56a.zip
Moved support from both Action Pack and Active Record into a separate module called Active Support that can be included using svn:externals in both
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@273 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/module_attribute_accessors.rb')
-rw-r--r--activesupport/lib/module_attribute_accessors.rb57
1 files changed, 57 insertions, 0 deletions
diff --git a/activesupport/lib/module_attribute_accessors.rb b/activesupport/lib/module_attribute_accessors.rb
new file mode 100644
index 0000000000..3d466e4493
--- /dev/null
+++ b/activesupport/lib/module_attribute_accessors.rb
@@ -0,0 +1,57 @@
+# Extends the module object with module and instance accessors for class attributes,
+# just like the native attr* accessors for instance attributes.
+class Module # :nodoc:
+ def mattr_reader(*syms)
+ syms.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 mattr_writer(*syms)
+ syms.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 mattr_accessor(*syms)
+ mattr_reader(*syms)
+ mattr_writer(*syms)
+ end
+end \ No newline at end of file