Class: String

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

Instance Method Summary collapse

Instance Method Details

#quotifyObject



29
30
31
# File 'lib/core_extensions/string.rb', line 29

def quotify
"\"#{self}\""
end

#quotify!Object



33
34
35
# File 'lib/core_extensions/string.rb', line 33

def quotify!
  self.replace self.quotify
end