This mixing provides REST operations for a given resource. When the mixin is included, the ClassMethods module is added to the class that includes it.

Methods
Classes and Modules
Module RESTOperations::ClassMethods
Public Class methods
included(base)

React to the event of this mixin being included. The including (base) class will be extended with the methods defined in the ClassMethod module.

   # File app/controllers/restful_controller.rb, line 7
7:   def self.included(base)
8:     base.extend(ClassMethods)
9:   end