mirror of https://github.com/rails/rails
avoid empty api pages
This commit is contained in:
parent
bcd2269658
commit
b653c29bbe
|
@ -1,5 +1,5 @@
|
||||||
module AbstractController
|
module AbstractController
|
||||||
module AssetPaths
|
module AssetPaths #:nodoc:
|
||||||
extend ActiveSupport::Concern
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
included do
|
included do
|
||||||
|
|
|
@ -5,8 +5,11 @@ require 'active_support/descendants_tracker'
|
||||||
require 'active_support/core_ext/module/anonymous'
|
require 'active_support/core_ext/module/anonymous'
|
||||||
|
|
||||||
module AbstractController
|
module AbstractController
|
||||||
class Error < StandardError; end
|
class Error < StandardError #:nodoc:
|
||||||
class ActionNotFound < StandardError; end
|
end
|
||||||
|
|
||||||
|
class ActionNotFound < StandardError #:nodoc:
|
||||||
|
end
|
||||||
|
|
||||||
# <tt>AbstractController::Base</tt> is a low-level API. Nobody should be
|
# <tt>AbstractController::Base</tt> is a low-level API. Nobody should be
|
||||||
# using it directly, and subclasses (like ActionController::Base) are
|
# using it directly, and subclasses (like ActionController::Base) are
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
require "active_support/benchmarkable"
|
require "active_support/benchmarkable"
|
||||||
|
|
||||||
module AbstractController
|
module AbstractController
|
||||||
module Logger
|
module Logger #:nodoc:
|
||||||
extend ActiveSupport::Concern
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
included do
|
included do
|
||||||
|
|
Loading…
Reference in New Issue