Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 677 Bytes

README.rdoc

File metadata and controls

26 lines (16 loc) · 677 Bytes

Picky ActiveModel Integration

Usage

TODO

  1. Define a client instance, and save it (as an example) in a constant:

    BookSearch = Picky::Client.new :host => 'some_host', :port => 1234, :path => '/path/to/search'

  2. Use it in your controllers to search:

    result = BookSearch.search :query => 'some query', :offset => 123, :ids => 20 # This gets you a hash

  3. Then, to make access easier (if needed):

    result.extend Picky::Convenience

  4. This gets you the following methods on result:

    • empty?

    • ids(limit=20)

    • clear_ids

    • allocations

    • allocations_size

    • total