instance method
dasherize
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
dasherize()
Replaces underscores with dashes in the string.
"puni_puni" # => "puni-puni"
Source
# File activesupport/lib/active_support/core_ext/string/inflections.rb, line 78
def dasherize
Inflector.dasherize(self)
end
Defined in activesupport/lib/active_support/core_ext/string/inflections.rb line 78
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::CoreExtensions::String::Inflections