diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-06-22 16:29:59 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-06-22 16:29:59 -0500 |
commit | bc7ac33846274a0d2c93741bf6df441d4853e4e9 (patch) | |
tree | fcad86f85494f96fcc667073d8a97e1229ff7222 /actionpack | |
parent | 96ce1f2553f895bfd25e7ca677fb7ed746d04fdd (diff) | |
download | rails-bc7ac33846274a0d2c93741bf6df441d4853e4e9.tar.gz rails-bc7ac33846274a0d2c93741bf6df441d4853e4e9.tar.bz2 rails-bc7ac33846274a0d2c93741bf6df441d4853e4e9.zip |
add :nodoc: to internal implementations [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 028a8d3fba..67c9efc0ab 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -576,7 +576,7 @@ module ActionController # # The exception is stored in the exception accessor for further inspection. module RaiseActionExceptions - def self.included(base) + def self.included(base) #:nodoc: unless base.method_defined?(:exception) && base.method_defined?(:exception=) base.class_eval do attr_accessor :exception |