Class: Class
Overview
COSMOS specific additions to the Ruby Class class
Instance Method Summary collapse
- #instance_attr_accessor(*args) ⇒ Object
-
#instance_attr_reader(*args) ⇒ Object
Creates instance variables in the class which have corresponding class method accessors.
Instance Method Details
#instance_attr_accessor(*args) ⇒ Object
43 44 45 46 47 48 49 50 |
# File 'lib/cosmos/core_ext/class.rb', line 43 def instance_attr_accessor(*args) args.each do |arg| self.class_eval("def #{arg};@#{arg};end") self.instance_eval("def #{arg};self.instance.#{arg};end") self.class_eval("def #{arg}=(arg);@#{arg} = arg;end") self.instance_eval("def #{arg}=(arg);self.instance.#{arg} = arg;end") end end |
#instance_attr_reader(*args) ⇒ Object
Creates instance variables in the class which have corresponding class method accessors. NOTE: You must define self.instance for this to work.
For example:
class MyClass
instance_attr_reader :test
@@instance = nil
def self.instance
@@instance ||= self.new
return @@instance
end
def initialize
@test = "Test"
@@instance = self
end
Will allow the following:
my = MyClass.new
my.test # returns "Test"
MyClass.test # returns "Test"
36 37 38 39 40 41 |
# File 'lib/cosmos/core_ext/class.rb', line 36 def instance_attr_reader(*args) args.each do |arg| self.class_eval("def #{arg};@#{arg};end") self.instance_eval("def #{arg};self.instance.#{arg};end") end end |