提交 a0ca3d10 编写于 作者: X Xavier Noria

Merge remote branch 'docrails/master'

...@@ -28,7 +28,7 @@ module ClassMethods ...@@ -28,7 +28,7 @@ module ClassMethods
# class EmailValidator < ActiveModel::EachValidator # class EmailValidator < ActiveModel::EachValidator
# def validate_each(record, attribute, value) # def validate_each(record, attribute, value)
# record.errors[attribute] << (options[:message] || "is not an email") unless # record.errors[attribute] << (options[:message] || "is not an email") unless
# value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i # value =~ /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
# end # end
# end # end
# #
...@@ -48,7 +48,7 @@ module ClassMethods ...@@ -48,7 +48,7 @@ module ClassMethods
# #
# class TitleValidator < ActiveModel::EachValidator # class TitleValidator < ActiveModel::EachValidator
# def validate_each(record, attribute, value) # def validate_each(record, attribute, value)
# record.errors[attribute] << "must start with 'the'" unless =~ /^the/i # record.errors[attribute] << "must start with 'the'" unless value =~ /\Athe/i
# end # end
# end # end
# #
......
...@@ -735,7 +735,7 @@ You don't need to set up and run your tests by hand on a test-by-test basis. Rai ...@@ -735,7 +735,7 @@ You don't need to set up and run your tests by hand on a test-by-test basis. Rai
|+rake test:plugins+ |Run all the plugin tests from +vendor/plugins/*/**/test+ (or specify with +PLUGIN=_name_+)| |+rake test:plugins+ |Run all the plugin tests from +vendor/plugins/*/**/test+ (or specify with +PLUGIN=_name_+)|
|+rake test:profile+ |Profile the performance tests| |+rake test:profile+ |Profile the performance tests|
|+rake test:recent+ |Tests recent changes| |+rake test:recent+ |Tests recent changes|
|+rake test:uncommitted+ |Runs all the tests which are uncommitted. Only supports Subversion| |+rake test:uncommitted+ |Runs all the tests which are uncommitted. Supports Subversion and Git|
|+rake test:units+ |Runs all the unit tests from +test/unit+| |+rake test:units+ |Runs all the unit tests from +test/unit+|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册