sensortoy/www/libs/bluebird/docs/helpers.rb

17 lines
374 B
Ruby
Raw Normal View History

2016-05-20 16:10:40 +00:00
require "sanitize"
class Helpers
def self.clean(input)
return Sanitize.fragment(input)
.downcase
.gsub(/\s+/, "-")
.gsub(/^([A-Za-z0-9\-_.:]+).*?$/, "\\1")
.gsub(/^\./, "")
.gsub(/\.$/, "")
.gsub(/[^A-Za-z0-9\-_.]/, "")
.sub(/^-+/, "")
.sub(/-+$/, "")
end
end