method

inherited_with_api

inherited_with_api(child)
private

No documentation available.

# File actionwebservice/lib/action_web_service/container/action_controller_container.rb, line 85
          def inherited_with_api(child)
            inherited_without_api(child)
            begin child.web_service_api(child.controller_path)
            rescue MissingSourceFile => e
              raise unless e.is_missing?("apis/#{child.controller_path}_api")
            end
          end