instance method
dasherize
Ruby on Rails 3.1.12
Since v2.2.3Signature
dasherize(underscored_word)
Replaces underscores with dashes in the string.
Example:
"puni_puni" # => "puni-puni"
Parameters
-
underscored_wordreq
Source
# File activesupport/lib/active_support/inflector/methods.rb, line 62
def dasherize(underscored_word)
underscored_word.gsub(/_/, '-')
end
Defined in activesupport/lib/active_support/inflector/methods.rb line 62
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Inflector