public
Description: A collection of Rails generator scripts to create admin interfaces
Homepage: http://gazer.com.ar/3dg/fancy_admin_dashboard.png
Clone URL: git://github.com/Gazer/fancy-admin-generators.git
commit  ca0e6d7c484e485006a7cf8651245dcf29cfe171
tree    a279e0fd100a159c504c5c1c848c1950e7d7f308
parent  d065d60f2a6a98075cfdfe492fb663c2664ff485
name age message
file README Tue Dec 09 07:19:27 -0800 2008 Include new admin controllers automatically in ... [Gazer]
directory fancy_admin_controller/ Loading commit data...
directory fancy_admin_layout/ Tue Dec 09 07:19:27 -0800 2008 Include new admin controllers automatically in ... [Gazer]
README
Fancy Admin Generators
======================

  This is a collection of Ruby on Rails Generators to speed up the construction
  of simple (and maybe complex) admin interfaces with a clean look.
  
  The style is similar to the Wordpress admin interface reusing many of the CSS
  styles that are provided in the default theme.
  
  You can see some screenshots at :
    * http://www.gazer.com.ar/3dg/fancy_admin_dashboard.png
    * http://www.gazer.com.ar/3dg/fancy_admin_controller.png

Install
=======

  At this moment the best way of using this is putting the generators in your
  $HOME/.rails/generators folders.


Usage
=====

  The first thing you need to run is the Admin Layout generator to create the basic
  structure :
    $ my_rails_app> ./script/generate fancy_admin_layout

  To add a new Admin section just run the Admin Controller generator :
    $ my_rails_app> ./script/generator fancy_admin_controller Games

  The new controller is added automatically to the main bar, but you can add your
  own Tabs. To do this just edit your RAILS_ROOT/app/views/admin.html.erb
  layout file and add in the "adminmenu" list a new entry :
    <li><%%= link_to_section "Games", "games", games_path %></li>
    
Dependencies
============

  Right now this generators create code that rely on RESTful Authentication plugin.
  
  I'll add command line parameters to enabled or disable this feature as soon as posible.