Class: String

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

Overview

Created on 2017-03-17

@author: Nikolay Moskvin <[email protected]>

Instance Method Summary collapse

Instance Method Details

#underscoreObject



10
11
12
13
14
15
16
# File 'lib/string.rb', line 10

def underscore
  self.gsub(/::/, '/').
  gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
  gsub(/([a-z\d])([A-Z])/,'\1_\2').
  tr("-", "_").
  downcase
end