Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/Olib/core/container.rb
Instance Method Summary collapse
Instance Method Details
#is_a_defined_class? ⇒ Boolean
12 13 14 15 16 |
# File 'lib/Olib/core/container.rb', line 12 def is_a_defined_class? true if self.to_class rescue NameError false end |
#to_class ⇒ Object
6 7 8 9 10 |
# File 'lib/Olib/core/container.rb', line 6 def to_class Kernel.const_get self rescue NameError nil end |