0.0
No commit activity in last 3 years
No release in over 3 years
A customizable backend admin system for Ruby on Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Version     Dependencies Code Climate Build Status Coverage    License

RailsBackend

A Rails backend application system the rails way.

Install

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.

Usage

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

Customize

Customize resource views

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/

Customize layout

Cooming soon

Contribute

Cooming soon

Licence

This project uses the AGPLv3 licence.