Sha256: f2cbaeb47102596e4c17645a9eb18194beca35fbec7989fff63d5611b99475d2
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# kashiwamochi [![Build Status](https://secure.travis-ci.org/mashiro/kashiwamochi.png)](http://travis-ci.org/mashiro/kashiwamochi) Kashiwamochi is a minimal searching extension for Rails 3. ## Installation ```ruby gem 'kashiwamochi' # gem 'kashiwamochi', :git => 'git://github.com/mashiro/kashiwamochi.git' ``` ## Getting started ### In your controllers #### Build query ```ruby # use before_filter. before_filter :build_query!, :only => [:index] # or write directly. def index @q = Kashiwamochi.build(params[:q]) end ``` #### Use query ```ruby # basic @users = User.where(:name => @q.name) .order(@q.sorts(:age)) # mapped order @users = User.where(:name => @q.name) .order(@q.sorts(:age => 'years')) ``` ### In your views ```ruby # _search.html.haml = search_form_for @q do |f| = f.text_field :name = f.submit # _list.html.haml %table %thead %tr %th= sort_link_to @q, :name, 'User name' %tbody ... ``` #### With simple_form ```ruby = search_form_for @q, :form_method => :simple_form_for do |f| = f.input :name = f.button :submit ``` ### CSS ```css /* Show the sort direction. */ .sort_link.asc:after { content: " \25b2"; } .sort_link.desc:after { content: " \25bc"; } ``` ## Copyright Copyright (c) 2011 mashiro
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kashiwamochi-0.6.0 | README.md |
kashiwamochi-0.5.0 | README.md |