Sha256: bfb83f600a93ee4801daa5e3806c465d77bbadaef937212e41cf6697df6833e1

Contents?: true

Size: 1.51 KB

Versions: 1

Compression:

Stored size: 1.51 KB

Contents

# WillPaginate::Materialize

This gem integrates the [MaterializeCSS](https://github.com/Dogfalo/materialize) [pagination component](http://materializecss.com/pagination.html) with the [will_paginate](https://github.com/mislav/will_paginate) pagination gem.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'will_paginate-materialize'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install will_paginate-materialize

## Usage

1. Install [Materialize-sass](https://github.com/mkhairi/materialize-sass)
2. Install [will_paginate](https://github.com/mislav/will_paginate)
3. In your view, use the renderer: MaterializePagination::Rails option with the will_paginate helper.
```ruby
<%= will_paginate @collection, renderer: MaterializePagination::Rails %>
```
4. Add the following to your application.scss file
```
.pagination a li.active {
    color: #fff;
}
```
## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/patricklindsay/will_paginate-materialize. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.

### Further works
 * Extend gem so the MaterializePagination renderer is the default renderer
 * Extend gem so that users do not need to add will-paginate in their Gemfile
 * Add specs

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
will_paginate-materialize-0.1.0 README.md