Changeset 8528
- Timestamp:
- 01/02/08 19:27:21 (5 months ago)
- Files:
-
- trunk/activeresource/CHANGELOG (modified) (1 diff)
- trunk/activeresource/lib/active_resource/base.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activeresource/CHANGELOG
r8525 r8528 1 1 *SVN* 2 3 * Fix small documentation typo. Closes #10670 [l.guidi] 2 4 3 5 * find_or_create_resource_for handles module nesting. #10646 [xavier] trunk/activeresource/lib/active_resource/base.rb
r8525 r8528 48 48 # Since simple CRUD/lifecycle methods can't accomplish every task, Active Resource also supports 49 49 # defining your own custom REST methods. To invoke them, Active Resource provides the <tt>get</tt>, 50 # <tt>post</tt>, <tt>p ost</tt> and <tt>put</tt> methods where you can specify a custom REST method50 # <tt>post</tt>, <tt>put</tt> and <tt>delete</tt> methods where you can specify a custom REST method 51 51 # name to invoke. 52 52 #