Add query benefit for exposed decent_exsposure values ## Installation
Add this line to your application’s Gemfile:
gem 'expose_query'
And then execute:
$ bundle
Usage
Add module to paticular controller:
``` class PhotosController < ApplicationController include ExposeQuery::ControllerDsl expose(:photos)
expose_query PhotoQuery end ``` And define query class: ``` class PhotoQuery < ExposeQuery::BaseQuery
def apply source_scope
source_scope.where(image_processing: [nil, false])
end end ```
Contributing
- Fork it ( https://github.com/[my-github-username]/expose_query/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
