This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/slug.rb
2013-02-14 17:04:30 -06:00

13 lines
282 B
Ruby

# encoding: utf-8
# Generates a slug. This is annoying beacuse it's duplicating what the javascript
# does, but on the other hand slugs are never matched so it's okay if they differ
# a little.
module Slug
def self.for(string)
string.parameterize.gsub("_", "-")
end
end