diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-22 14:13:50 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-22 14:13:50 -0300 |
commit | ccdefa0e230dac72ae35e41791ec5fa53117e91e (patch) | |
tree | c88a44b696b3b1f1ca881a0704100af6fcacef68 /activemodel/lib | |
parent | d8458df97f76477c8623c05c5ff3954017218815 (diff) | |
parent | 5b36015830fcd8233aac60af5cc9a9492ea12012 (diff) | |
download | rails-ccdefa0e230dac72ae35e41791ec5fa53117e91e.tar.gz rails-ccdefa0e230dac72ae35e41791ec5fa53117e91e.tar.bz2 rails-ccdefa0e230dac72ae35e41791ec5fa53117e91e.zip |
Merge pull request #20665 from vngrs/add_nodoc_to_validations_helpers
Add nodoc to the Validations::Helpers [ci skip]
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/validations/helper_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/helper_methods.rb b/activemodel/lib/active_model/validations/helper_methods.rb index 5a22b699d8..2176115334 100644 --- a/activemodel/lib/active_model/validations/helper_methods.rb +++ b/activemodel/lib/active_model/validations/helper_methods.rb @@ -1,6 +1,6 @@ module ActiveModel module Validations - module HelperMethods + module HelperMethods # :nodoc: private def _merge_attributes(attr_names) options = attr_names.extract_options!.symbolize_keys |