aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/inclusion.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2012-06-12 02:29:21 +0900
committerAkira Matsuda <ronnie@dio.jp>2012-06-12 02:29:21 +0900
commit588bb6b987bd3f10b97ce27263e8d7702605a187 (patch)
treec4ca382eb4a641e39c178cdae677dbecdc7a3e1c /activemodel/lib/active_model/validations/inclusion.rb
parenta6e4c0f3e4d835c84ba2b504648181e0670cff40 (diff)
downloadrails-588bb6b987bd3f10b97ce27263e8d7702605a187.tar.gz
rails-588bb6b987bd3f10b97ce27263e8d7702605a187.tar.bz2
rails-588bb6b987bd3f10b97ce27263e8d7702605a187.zip
Range#cover? is not implemented in AS now
Diffstat (limited to 'activemodel/lib/active_model/validations/inclusion.rb')
-rw-r--r--activemodel/lib/active_model/validations/inclusion.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/validations/inclusion.rb b/activemodel/lib/active_model/validations/inclusion.rb
index ffdbed0fc1..8810f2a3c1 100644
--- a/activemodel/lib/active_model/validations/inclusion.rb
+++ b/activemodel/lib/active_model/validations/inclusion.rb
@@ -28,8 +28,8 @@ module ActiveModel
# Configuration options:
# * <tt>:in</tt> - An enumerable object of available items. This can be
# supplied as a proc or lambda which returns an enumerable. If the enumerable
- # is a range the test is performed with <tt>Range#cover?</tt>
- # (backported in Active Support for 1.8), otherwise with <tt>include?</tt>.
+ # is a range the test is performed with <tt>Range#cover?</tt>, otherwise with
+ # <tt>include?</tt>.
# * <tt>:message</tt> - Specifies a custom error message (default is: "is not
# included in the list").
# * <tt>:allow_nil</tt> - If set to true, skips this validation if the attribute