Mega Code Archive

 
Categories / Ruby / Reflection
 

Object class_variable_set and get

Object.class_variable_set(:@@x, 1)   # Private in Ruby 1.8 Object.class_variable_get(:@@x)      # Private in Ruby 1.8 Object.class_variable_defined?(:@@x) # => true; Ruby 1.9 and later