instance method
dasherize
Ruby on Rails 3.2.22.5
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 149
def dasherize(underscored_word)
underscored_word.gsub(/_/, '-')
end
Defined in activesupport/lib/active_support/inflector/methods.rb line 149
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Inflector