Class: Class

Inherits:
Object
  • Object
show all
Defined in:
lib/class_ext.rb

Overview

Borrowed from Rails

Instance Method Summary collapse

Instance Method Details

#cattr_accessor(*syms) ⇒ Object



36
37
38
39
# File 'lib/class_ext.rb', line 36

def cattr_accessor(*syms)
  cattr_reader(*syms)
  cattr_writer(*syms)
end

#cattr_reader(*syms) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/class_ext.rb', line 3

def cattr_reader(*syms)
  syms.flatten.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

#cattr_writer(*syms) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/class_ext.rb', line 22

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
    EOS
  end
end