My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Links

Rails CRUD Actions Plugin

http://code.google.com/p/rails-crud-actions/

Usage

Model

  class Node < ActiveRecord::Base
  end

Controller

  class NodeController < ApplicationController
    include CrudActions
  end

Views

See example views in example/app/views/node.
  • app/views/node/new.rhtml Should contain a form that submits to :action => 'create'
  • app/views/node/show.rhtml
  • app/views/node/edit.rhtml Should contain a form that submits to :action => 'update'
  • app/views/node/list.rhtml
Powered by Google Project Hosting