aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/format.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-06-08 20:32:08 -0500
committerJoshua Peek <josh@joshpeek.com>2009-06-08 20:32:08 -0500
commit28f36279cd484dc66b8b0ca2f0c3d75fd9ac631c (patch)
tree12a75c1f70aa1962bb0ba415562ac29ca76c6404 /activemodel/lib/active_model/validations/format.rb
parent01515f8ecd90150320c7edf1df23850f2a4fdf07 (diff)
downloadrails-28f36279cd484dc66b8b0ca2f0c3d75fd9ac631c.tar.gz
rails-28f36279cd484dc66b8b0ca2f0c3d75fd9ac631c.tar.bz2
rails-28f36279cd484dc66b8b0ca2f0c3d75fd9ac631c.zip
Properly require ActiveModel validation dependencies
Diffstat (limited to 'activemodel/lib/active_model/validations/format.rb')
-rw-r--r--activemodel/lib/active_model/validations/format.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/validations/format.rb b/activemodel/lib/active_model/validations/format.rb
index 8efce8ba2b..6f3b668bf0 100644
--- a/activemodel/lib/active_model/validations/format.rb
+++ b/activemodel/lib/active_model/validations/format.rb
@@ -32,10 +32,10 @@ module ActiveModel
validates_each(attr_names, configuration) do |record, attr_name, value|
unless value.to_s =~ configuration[:with]
- record.errors.add(attr_name, :invalid, :default => configuration[:message], :value => value)
+ record.errors.add(attr_name, :invalid, :default => configuration[:message], :value => value)
end
end
end
end
end
-end \ No newline at end of file
+end