Low commit activity in last 3 years
No release in over a year
Use just one Controller to CRUD all your resources instead of having lots of scaffold controllers
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 4.0.4
 Project Readme

Generic Resources Gem Version

This gem adds an easy way to provide CRUD functionality for your models without the need to create a scaffold for every of them or even create on single controller!

How to use

First of all, to use this plugin, you actually have to do a little bit of coding yourself. This applies to the views. As your layout is not predictable for the gem, it is requiered to create the ways manually in order to fit your needs best. See view folder for examples

In the model

Add acts_as_generic_resource to your model to register it as GenericResource and make it available to the GenericResourcesController

Todo

  • Write this README file
  • Write Specs / Create Dummy App