validatable2 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. data/lib/validatable/errors.rb +7 -2
  2. metadata +2 -2
@@ -1,7 +1,12 @@
1
1
  module Validatable
2
2
  class Errors < Hash
3
- def add attribute, message
4
- (self[attribute] ||= []).push *Array(message)
3
+ def initialize
4
+ super([])
5
+ end
6
+
7
+ def add attribute, message
8
+ self[attribute] = [] unless self.include? attribute
9
+ self[attribute].push *Array(message)
5
10
  end
6
11
  end
7
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validatable2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-15 00:00:00.000000000Z
12
+ date: 2011-09-17 00:00:00.000000000Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: