README.md in searchjoy-0.2.0 vs README.md in searchjoy-0.2.1

- old
+ new

@@ -1,10 +1,10 @@ # Searchjoy Search analytics made easy -[See it in action](http://searchjoy.herokuapp.com/) +[See it in action](https://searchjoy.herokuapp.com/) - view searches in real-time - track conversions week over week - monitor the performance of top searches @@ -117,10 +117,16 @@ ```ruby Searchjoy.top_searches = 500 # defaults to 100 ``` -Add additional info to the query in the live stream. [master] +Link to the search results [master] + +```ruby +Searchjoy.query_url = -> (search) { Rails.application.routes.url_helpers.items_path(q: search.query) } +``` + +Add additional info to the query in the live stream. ```ruby Searchjoy.query_name = -> (search) { "#{search.query} #{search.city}" } ```