module Nori::CoreExt::String

Public Instance Methods

snakecase() click to toggle source

Returns the String in snake_case.

# File lib/nori/core_ext/string.rb, line 6
def snakecase
  str = dup
  str.gsub!(/::/, '/')
  str.gsub!(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
  str.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
  str.tr! ".", "_"
  str.tr! "-", "_"
  str.downcase!
  str
end