Method: Jets::Router::Util#underscore

Defined in:
lib/jets/router/util.rb

#underscore(str) ⇒ Object



9
10
11
12
# File 'lib/jets/router/util.rb', line 9

def underscore(str)
  return unless str
  str.to_s.gsub(/[^a-zA-Z0-9]/,'_')
end