Module Resourceful
In: lib/resourceful/response.rb
lib/resourceful/maker.rb
lib/resourceful/builder.rb
lib/resourceful/serialize.rb
lib/resourceful/base.rb
lib/resourceful/default/callbacks.rb
lib/resourceful/default/actions.rb
lib/resourceful/default/responses.rb
lib/resourceful/default/accessors.rb
lib/resourceful/default/urls.rb

The module containing all the code for make_resourceful.

For methods available in the make_resourceful block, see Resourceful::Builder.

For helper methods and methods you can override to customize the behavior of your actions, see Resourceful::Default::Accessors and Resourceful::Default::URLs.

Classes and Modules

Module Resourceful::Base
Module Resourceful::Default
Module Resourceful::Maker
Module Resourceful::Serialize
Class Resourceful::Builder

Constants

ACTIONS = [:index, :show, :edit, :update, :create, :new, :destroy]   The default actions generated by make_resourceful.
MODIFYING_ACTIONS = [:update, :create, :destroy]   The actions that modify the database.
PLURAL_ACTIONS = [:index]   The actions that act on multiple records.
SINGULAR_ACTIONS = ACTIONS - PLURAL_ACTIONS   The actions that act on just one record.

[Validate]