Module: StringHelpers

Defined in:
lib/psu_identity/string_helpers.rb

Class Method Summary collapse

Class Method Details

.underscore(str) ⇒ Object



4
5
6
7
8
9
10
11
12
# File 'lib/psu_identity/string_helpers.rb', line 4

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