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(" unless defined? @@\#{sym}\n @@\#{sym} = nil\n end\n\n def self.\#{sym}\n @@\#{sym}\n end\n\n def \#{sym}\n @@\#{sym}\n end\n EOS\n end\nend\n", __FILE__, __LINE__) |
#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(" unless defined? @@\#{sym}\n @@\#{sym} = nil\n end\n\n def self.\#{sym}=(obj)\n @@\#{sym} = obj\n end\n\n def \#{sym}=(obj)\n @@\#{sym} = obj\n end\n EOS\n end\nend\n", __FILE__, __LINE__) |