module Turboslugs::ClassMethods

Public Instance Methods

restricted_slugs() click to toggle source
# File lib/turboslugs.rb, line 72
def restricted_slugs
  @@restricted_slugs
end
restricted_slugs=(other) click to toggle source
# File lib/turboslugs.rb, line 68
def restricted_slugs= other
  @@restricted_slugs = other
end
slug_base() click to toggle source
# File lib/turboslugs.rb, line 64
def slug_base
  @@slug_base
end
slug_from(base_attribute) click to toggle source
# File lib/turboslugs.rb, line 60
def slug_from base_attribute
  @@slug_base = base_attribute
end