Class: Class
- Inherits:
-
Object
- Object
- Class
- Defined in:
- lib/rets4r/core_ext/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.
class Person cattr_accessor :hair_colors end
Person.hair_colors = [:brown, :black, :blonde, :red]
Instance Method Summary collapse
Instance Method Details
#cattr_accessor(*syms, &blk) ⇒ Object
54 55 56 57 |
# File 'lib/rets4r/core_ext/class/attribute_accessors.rb', line 54 def cattr_accessor(*syms, &blk) cattr_reader(*syms) cattr_writer(*syms, &blk) end |
#cattr_reader(*syms) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/rets4r/core_ext/class/attribute_accessors.rb', line 13 def cattr_reader(*syms) syms.flatten.each do |sym| next if sym.is_a?(Hash) class_eval(" unless defined? @@\#{sym} # unless defined? @@hair_colors\n @@\#{sym} = nil # @@hair_colors = nil\n end # end\n #\n def self.\#{sym} # def self.hair_colors\n @@\#{sym} # @@hair_colors\n end # end\n #\n def \#{sym} # def hair_colors\n @@\#{sym} # @@hair_colors\n end # end\n EOS\n end\nend\n", __FILE__, __LINE__ + 1) |
#cattr_writer(*syms) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/rets4r/core_ext/class/attribute_accessors.rb', line 32 def cattr_writer(*syms) = syms. syms.flatten.each do |sym| class_eval(" unless defined? @@\#{sym} # unless defined? @@hair_colors\n @@\#{sym} = nil # @@hair_colors = nil\n end # end\n #\n def self.\#{sym}=(obj) # def self.hair_colors=(obj)\n @@\#{sym} = obj # @@hair_colors = obj\n end # end\n #\n \#{\" #\n def \#{sym}=(obj) # def hair_colors=(obj)\n @@\#{sym} = obj # @@hair_colors = obj\n end # end\n \" unless options[:instance_writer] == false } # # instance writer above is generated unless options[:instance_writer] == false\n EOS\n self.send(\"\#{sym}=\", yield) if block_given?\n end\nend\n", __FILE__, __LINE__ + 1) |