Skip to content

Instantly share code, notes, and snippets.

@tsmango
Created August 31, 2011 01:39
Show Gist options
  • Select an option

  • Save tsmango/1182619 to your computer and use it in GitHub Desktop.

Select an option

Save tsmango/1182619 to your computer and use it in GitHub Desktop.
class Category < ActiveRecord::Base
configure do
option :sort do
default 'alphabetical'
restrict 'alphabetical', 'manual'
end
option :limit do
format 'fixnum'
end
option :price_filter do
format 'float'
modifiers 'eq', 'lt', 'gt', 'lte', 'gte'
multiple true
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment