Sha256: 9d5dc8f8a5c9266bb088e3bb449ba4c89fe94431f7a39db8b97dbd9e855c0d56

Contents?: true

Size: 1.56 KB

Versions: 2

Compression:

Stored size: 1.56 KB

Contents

= shopify-kaminari

Extends ShopifyAPI with support for paginating the resources via the Kaminari gem.

== Install

To install, just add the gem to your Gemfile:

    gem 'shopify-kaminari'

And run bundle:

    $ bundle

== Examples

View code:

    ul
      - @products.each do |product|
        li= product.title
    
    = paginate @products

To paginate all the products:

    @products = ShopifyAPI::Product.paginate per: 25,
                                             page: params[:page]

To pass some parameters:

    @products = ShopifyAPI::Product.paginate per: 25,
                                             page: 1,
                                             params: {published_status: 'published'}

== Default values

Both the :per and :page params are optional, and default to:

    :per  => 25
    :page => 1

== Contributing to shopify-kaminari

* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2011 Travis Haynes. See LICENSE.txt for further details.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shopify-kaminari-0.1.0 README.rdoc
shopify-kaminari-0.0.2 README.rdoc