module Wings

Constants

VERSION

Public Class Methods

to_underscore(string) click to toggle source
# File lib/wings/util.rb, line 2
def self.to_underscore(string)
  string
    .gsub(/::/, '/')
    .gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
    .gsub(/([a-z\d])([A-Z])/, '\1_\2')
    .tr('-', '_')
    .downcase
end