No commit activity in last 3 years
No release in over 3 years
Integration between neo4j.rb and will_paginate.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 2.0.0.alpha.2
 Project Readme

Integration for Neo4j.rb and will_paginate

This gem is just a simple integration of will_paginate and neo4j. Build Status

Installation

  1. Add neo4j-will_paginate to your Gemfile.
  2. require 'neo4j-will_paginate' somewhere from your code.

Using

Please see the will_paginate and neo4j.rb for details.

But here is simple example:

# Probably in the Rails controller:

def index
  @people = Person.all.paginate(:page => 2, :per_page => 20) # :per_page is optional
end

# Then in the view:
paginate @people

License

MIT by Dmytrii Nagirniak and Andreas Ronge