avoid empty api pages

This commit is contained in:
Vijay Dev 2012-04-08 01:56:41 +05:30
parent bcd2269658
commit b653c29bbe
3 changed files with 7 additions and 4 deletions

@ -1,5 +1,5 @@
module AbstractController
module AssetPaths
module AssetPaths #:nodoc:
extend ActiveSupport::Concern
included do

@ -5,8 +5,11 @@
require 'active_support/core_ext/module/anonymous'
module AbstractController
class Error < StandardError; end
class ActionNotFound < StandardError; end
class Error < StandardError #:nodoc:
end
class ActionNotFound < StandardError #:nodoc:
end
# <tt>AbstractController::Base</tt> is a low-level API. Nobody should be
# using it directly, and subclasses (like ActionController::Base) are

@ -1,7 +1,7 @@
require "active_support/benchmarkable"
module AbstractController
module Logger
module Logger #:nodoc:
extend ActiveSupport::Concern
included do