A Rails backend application system the rails way.
Run in the console
gem install rails_backend --pre
Or add in yout gemfile
gem 'rails_backend'
For the last version, rails 4
gem 'rails_backend', github: 'bluelemons/rails_backend'
For rails 3
gem 'rails_backend', git: 'git://github.com/olvap/rails_backend.git', branch: 'rails3'
Run the install generator
rails g rails_backend:install
This will generate the application and asset files necesary for rails backend.
Register a new resource for Rails Backend
rails g rails_backend:register [resource]
# i.e
rails g rails_backend:register blogs
This will asume you already have a model for this resource, like Blog
Then you should be able to see all the backend of the resource in /backend/resource
Is you need some customization over the views, you can run this command
rails g rails_backend:views [resource]
# i.e
rails g rails_backend:views blogs
It's going to generate some view files under, views/backend/controller_name/
Cooming soon
Cooming soon
This project uses the AGPLv3 licence.