README.md in forty_facets-0.0.1 vs README.md in forty_facets-0.0.3
- old
+ new
@@ -2,10 +2,12 @@
FortyFacets lets you easily build explorative search interfaces based on fields of your ActiveRecord models.
![demo](demo.gif)
+Try a [working demo](http://forty-facets-demo.herokuapp.com/ "Testinstallation on heroku")!
+
It offers a simple API to create an interactive UI to browse your data by iteratively adding
filter values.
The search is purely done via SQL queries, which are automatically generated via the AR-mappings.
@@ -86,12 +88,18 @@
%li
= link_to genre.name, filter.add(genre).path
%span.count= "(#{facet_value.count})"
```
+## FAQ
+
+### Can I create filter for `has_many` associations ?
+
+No. At the moment only objects directly related via a `belongs_to` can be used as filter.
+
## Contributing
-1. Fork it ( http://github.com/<my-github-username>/forty_facets/fork )
+1. Fork it ( http://github.com/fortytools/forty_facets/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request