cblunt / blog-complex_search_filters_with_rails
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Jun 18 05:07:34 -0700 2009 | |
| |
MIT-LICENCE | Sat Jun 20 01:23:43 -0700 2009 | |
| |
README | Sat Jun 20 01:40:53 -0700 2009 | |
| |
Rakefile | Thu Jun 18 04:46:03 -0700 2009 | |
| |
app/ | Fri Jun 19 00:32:57 -0700 2009 | |
| |
config/ | Sat Jun 20 01:44:11 -0700 2009 | |
| |
db/ | Thu Jun 18 05:12:57 -0700 2009 | |
| |
doc/ | Thu Jun 18 04:46:03 -0700 2009 | |
| |
lib/ | Thu Jun 18 04:58:39 -0700 2009 | |
| |
public/ | Thu Jun 18 04:46:03 -0700 2009 | |
| |
script/ | Sat Jun 20 01:32:46 -0700 2009 | |
| |
test/ | Thu Jun 18 04:46:44 -0700 2009 |
README
== Installation The easiest way to obtain a copy of this code is to use git: git clone git://github.com/cblunt/blog-complex_search_filters_with_rails.git You might need to install some gems: rake gems:install After cloning, install the ez_where (http://opensvn.csie.org/ezra/rails/plugins/dev/ez_where) plugin into your local copy: ruby script/plugin install http://opensvn.csie.org/ezra/rails/plugins/dev/ez_where Set up a local config/database.yml file, e.g # config/database.yml development: adapter: sqlite3 database: db/development.sqlite3 pool: 5 timeout: 5000 Finally, migrate and populate your database with: rake db:migrate rake db:populate:users == More info For further information, please refer to the blog posts at http://chrisblunt.com/blog/2009/05/12/rails-building-complex-search-filters-with-activerecord-and-ez_where/
