README.md in admin-panel-0.1.2 vs README.md in admin-panel-0.1.3

- old
+ new

@@ -7,14 +7,15 @@ ------------ Start with adding these gems to your Gemfile: ```ruby -gem 'admin-panel', '~> 0.1.1' +gem 'admin-panel', '~> 0.1.3' gem 'devise', '~> 3.2' gem 'simple_form', '3.1.0.rc1' gem 'bootstrap-sass', '~> 3.1' +gem 'kaminari', '~> 0.16.1' ``` Then do `bundle install` and run the installer: ```bash @@ -38,18 +39,21 @@ Thanks ------ This gem was based mostly on two different pieces of software: [bootstrap-generators](https://github.com/decioferreira/bootstrap-generators) and [rails-admin-scaffold](https://github.com/dhampik/rails-admin-scaffold) +I also took the liberty of copying kaminari bootstrap templates from [kaminari-bootstrap](https://github.com/mcasimir/kaminari-bootstrap) + TODO ---- Currently this gem is pretty much one-evening project, I'm not sure if I'll continue it's development past this point. Things that'd be nice to have: - support for anything more than Active Record -- support for anything more than Erb (haml, slim) +- ~~support for anything more than Erb (haml)~~ +- support for slim - namespace change support and more configuration options -- kaminari/will_paginate support +- ~~kaminari/will_paginate support~~ - I liked the idea of copying the files to your project during install at first but now it just seems silly; I should probably rewrite everything from scratch to work more similarly to Devise, including the ability to extend default controllers where necessary - I was also supposed to add Carrierwave support too but ran out of time