Class: Class
- Inherits:
-
Object
- Object
- Class
- Defined in:
- lib/blogmarks/class_attribute_accessors.rb
Overview
Extends the class object with class and instance accessors for class attributes, just like the native attr* accessors for instance attributes.
Instance Method Summary collapse
- #cattr_accessor(*syms) ⇒ Object
-
#cattr_reader(*syms) ⇒ Object
:nodoc:.
- #cattr_writer(*syms) ⇒ Object
Instance Method Details
#cattr_accessor(*syms) ⇒ Object
63 64 65 66 |
# File 'lib/blogmarks/class_attribute_accessors.rb', line 63 def cattr_accessor(*syms) cattr_reader(*syms) cattr_writer(*syms) end |
#cattr_reader(*syms) ⇒ Object
:nodoc:
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/blogmarks/class_attribute_accessors.rb', line 27 def cattr_reader(*syms) syms.flatten.each do |sym| class_eval(<<-EOS, __FILE__, __LINE__) unless defined? @@#{sym} @@#{sym} = nil end def self.#{sym} @@#{sym} end def #{sym} @@#{sym} end EOS end end |
#cattr_writer(*syms) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/blogmarks/class_attribute_accessors.rb', line 45 def cattr_writer(*syms) 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 EOS end end |