module Doing::SymbolNormalize

Symbol helpers

Public Instance Methods

normalize_age(default = :newest) click to toggle source
# File lib/doing/normalize.rb, line 205
def normalize_age(default = :newest)
  to_s.normalize_age(default)
end
normalize_bool(default = :and) click to toggle source
# File lib/doing/normalize.rb, line 201
def normalize_bool(default = :and)
  to_s.normalize_bool(default)
end
normalize_case(default = :smart) click to toggle source
# File lib/doing/normalize.rb, line 213
def normalize_case(default = :smart)
  to_s.normalize_case(default)
end
normalize_matching(default = :pattern) click to toggle source
# File lib/doing/normalize.rb, line 217
def normalize_matching(default = :pattern)
  to_s.normalize_matching(default)
end
normalize_order(default = :asc) click to toggle source
# File lib/doing/normalize.rb, line 209
def normalize_order(default = :asc)
  to_s.normalize_order(default)
end
normalize_tag_sort(default = :name) click to toggle source
# File lib/doing/normalize.rb, line 197
def normalize_tag_sort(default = :name)
  to_s.normalize_tag_sort
end