This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/lib/slug.rb

14 lines
413 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
# encoding: utf-8
2013-03-06 08:52:24 +01:00
# Generates a slug. This is annoying because it's duplicating what the javascript
2013-02-05 14:16:51 -05:00
# 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)
slug = string.parameterize.gsub("_", "-")
slug =~ /[^\d]/ ? slug : '' # Reject slugs that only contain numbers, because they would be indistinguishable from id's.
2013-02-05 14:16:51 -05:00
end
end