Sha256: 1477ae3853f55f9993961fdec5102dd61ee6de7d39c3ed9bdbdbcce8f6389a2e
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
# RailsModularAdmin This plugin is designed to quickly generate views for Rails applications in need of dashboard functionality. This includes admin panels and SaaS applications. I found that over the course of my projects, I needed Dashboard pages very often, so by creating this gem, I'm at least saving my self a bunch of time. ## Usage Easiest way is to run the install task: ```bash $ rails g rails_modular_admin:install ``` ## Installation Add this line to your application's Gemfile: ```ruby gem 'rails_modular_admin' ``` And then execute: ```bash $ bundle ``` You will additionally need to install the dependencies, by adding these to your package.json: ``` "animate.css": "^3.5.2", "bootstrap": "^4.0.0", "dropzone": "^5.3.0", "jquery": "^3.0.0", "jquery-flot": "^0.8.3", "jquery-sparkline": "^2.4.0", "jquery-touchswipe": "^1.6.18", "jquery-validation": "^1.17.0", "jquery.browser": "^0.1.0", "jquery.flot.tooltip": "^0.9.0", "jqvmap": "^1.5.1", "metismenu": "^2.7.2", "morris.js": "^0.5.0", "nprogress": "^0.2.0", "opencollective": "^1.0.3", "popper.js": "^1.12.9", "quill": "^1.3.5", "raphael": "^2.2.7", "responsive-toolkit": "^2.6.3", "sortablejs": "^1.7.0", "tether": "^1.4.3", "tinycolor2": "^1.4.1" ``` Then, run: ```bash yarn install ``` Now install through the included generator: ```bash rails g rails_modular_admin:install ``` The install generator copies over the custom theme.scss file, which you can use to include your own color scheme. Finally, add the following line to your application.scss: ```scss @import "rails_modular_admin"; ``` ```javascript //= require rails_modular_admin ``` ## Contributing Write a pull request and I'll get to it as soon as I can. ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). # RailsModularAdmin
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_modular_admin-0.2.0 | README.md |