# File lib/active_support/inflector/methods.rb, line 62
    def dasherize(underscored_word)
      underscored_word.gsub(/_/, '-')
    end