Class: String

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

Instance Method Summary collapse

Instance Method Details

#constantizeObject



2
3
4
# File 'lib/core_ext/string.rb', line 2

def constantize
  dup.constantize
end

#constantize!Object



6
7
8
# File 'lib/core_ext/string.rb', line 6

def constantize!
  replace(self)  # TODO
end