Replaces underscores with dashes in the string.
Example
"puni_puni" #=> "puni-puni"
# File active_support/inflector.rb, line 187 def dasherize(underscored_word) underscored_word.gsub(/_/, '-') end
<code/>
<pre/>
<code/>and<pre/>for code samples.