method
underscore
Ruby on Rails latest stable (v2.3.4)
-
0 notes -
Class: ActiveSupport::CoreExtensions::String::Inflections
underscore()
public
The reverse of camelize. Makes an underscored, lowercase form from the expression in the string.
underscore will also change ’::’ to ’/’ to convert namespaces to paths.
"ActiveRecord".underscore # => "active_record" "ActiveRecord::Errors".underscore # => active_record/errors

