aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/CHANGELOG
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/CHANGELOG')
-rw-r--r--activemodel/CHANGELOG11
1 files changed, 11 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG b/activemodel/CHANGELOG
new file mode 100644
index 0000000000..26500568ee
--- /dev/null
+++ b/activemodel/CHANGELOG
@@ -0,0 +1,11 @@
+*Edge*
+
+* Add validates_format_of :without => /regexp/ option. #430 [Elliot Winkler, Peer Allan]
+
+ Example :
+
+ validates_format_of :subdomain, :without => /www|admin|mail/
+
+* Introduce validates_with to encapsulate attribute validations in a class. #2630 [Jeff Dean]
+
+* Extracted from Active Record and Active Resource.