Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anykeyh/rails_powergrid
Powergrid, the fastest way to manage ressources in a grid!
https://github.com/anykeyh/rails_powergrid
Last synced: 11 days ago
JSON representation
Powergrid, the fastest way to manage ressources in a grid!
- Host: GitHub
- URL: https://github.com/anykeyh/rails_powergrid
- Owner: anykeyh
- License: mit
- Created: 2015-09-14T08:09:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-14T12:34:49.000Z (over 8 years ago)
- Last Synced: 2024-10-25T01:31:40.416Z (about 2 months ago)
- Language: HTML
- Homepage:
- Size: 279 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# RailsPowergrid
![Travis CI](https://travis-ci.org/anykeyh/rails_powergrid.svg)
Create grids into your rails application with no pain.
Easily customizable, built-in with filtering, sorting, cell-edition, infinite-scrolling etc...
# Demo
TODO. You can checkout the [demo](https://github.com/anykeyh/demo_powergrid).
# Installation
1 - Add theses lines to your gemfile:
```ruby
gem "rails_powergrid", github: "anykeyh/rails_powergrid", branch: "master"
gem "compass-rails", github: "Compass/compass-rails", branch: "master"
```2 - Route the controller
In `config/routes.rb`
```ruby
Rails.application.routes.draw do
#...
rails_powergrid
#...
end
```3 - Includes the assets
In `app/assets/javascript/application.js`
```javascript
//= require rails_powergrid
```In `app/assets/stylesheets/application.css`
```css
/*= require powergrid */
```(Note: You can use `@import "powergrid"` if your file is in scss)
# Usage
TODO
##What's the dependencies?
Mostly ReactJS and Compass. Compass dependency will be removed in a near future.