1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] Hide internal docs from root AS module

We have a bunch of documentation in
lib/active_support/core_ext/object/json.rb which is currently appearing
as documentation for the top-level ActiveSupport module.  We hide it
from rdoc here.

Signed-off-by: Ashe Connor <ashe@kivikakk.ee>
This commit is contained in:
Ashe Connor 2018-03-07 14:06:03 +11:00 committed by Jeremy Daer
parent e126078a0e
commit b5aa0266d0

View file

@ -14,6 +14,7 @@ require "active_support/core_ext/time/conversions"
require "active_support/core_ext/date_time/conversions" require "active_support/core_ext/date_time/conversions"
require "active_support/core_ext/date/conversions" require "active_support/core_ext/date/conversions"
#--
# The JSON gem adds a few modules to Ruby core classes containing :to_json definition, overwriting # The JSON gem adds a few modules to Ruby core classes containing :to_json definition, overwriting
# their default behavior. That said, we need to define the basic to_json method in all of them, # their default behavior. That said, we need to define the basic to_json method in all of them,
# otherwise they will always use to_json gem implementation, which is backwards incompatible in # otherwise they will always use to_json gem implementation, which is backwards incompatible in