Sha256: 75f495bae15a266f4f57910216088746ede1c2b8f3594e55b56afbfa8a93e800
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
# Madmin ### 🛠 A robust Admin Interface for Ruby on Rails apps [![Build Status](https://github.com/excid3/madmin/workflows/Tests/badge.svg)](https://github.com/excid3/madmin/actions) [![Gem Version](https://badge.fury.io/rb/madmin.svg)](https://badge.fury.io/rb/madmin) Why another Ruby on Rails admin? We wanted an admin that was: * Familiar and customizable like Rails scaffolds (less DSL) * Supports all the Rails features out of the box (ActionText, ActionMailbox, etc) * Stimulus / Turbolinks / Hotwire ready ## Installation Add `madmin` to your application's Gemfile: ```bash bundle add madmin ``` Then run the madmin generator: ```bash rails g madmin:install ``` This will install Madmin and generate resources for each of the models it finds. ## Resources Madmin uses `Resource` classes to add models to the admin area. ### Generate a Resource To generate a resource for a model, you can run: ```bash rails g madmin:resource ActionText::RichText ``` ## 🙏 Contributing This project uses Standard for formatting Ruby code. Please make sure to run standardrb before submitting pull requests. ## 📝 License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
madmin-1.0.0.beta2 | README.md |
madmin-1.0.0.beta1 | README.md |