aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/helper_methods.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/validations/helper_methods.rb')
-rw-r--r--activemodel/lib/active_model/validations/helper_methods.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/validations/helper_methods.rb b/activemodel/lib/active_model/validations/helper_methods.rb
new file mode 100644
index 0000000000..4c709b1fa9
--- /dev/null
+++ b/activemodel/lib/active_model/validations/helper_methods.rb
@@ -0,0 +1,12 @@
+module ActiveModel
+ module Validations
+ module HelperMethods
+ private
+
+ def _merge_attributes(attr_names)
+ options = attr_names.extract_options!
+ options.merge(:attributes => attr_names.flatten)
+ end
+ end
+ end
+end \ No newline at end of file