Flowdock
Ruby on Rails latest stable (v6.1.7.7) - 0 notes

Module deprecated or moved

This module is deprecated or moved on the latest stable version. The last existing version (v1.2.6) is shown here.

Web service invocation scaffolding provides a way to quickly invoke web service methods in a controller. The generated scaffold actions have default views to let you enter the method parameters and view the results.

Example:

  class ApiController < ActionController
    web_service_scaffold :invoke
  end

This example generates an invoke action in the ApiController that you can navigate to from your browser, select the API method, enter its parameters, and perform the invocation.

If you want to customize the default views, create the following views in "app/views":

  • action_name/methods.rhtml
  • action_name/parameters.rhtml
  • action_name/result.rhtml
  • action_name/layout.rhtml

Where action_name is the name of the action you gave to ClassMethods#web_service_scaffold.

You can use the default views in RAILS_DIR/lib/action_web_service/templates/scaffolds as a guide.

Show files where this module is defined (1 file)
Register or log in to add new notes.