validates_formatting_of 0.3.2 → 0.3.3
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.
data/README.markdown
CHANGED
@@ -86,6 +86,12 @@ You can still add the following options when using `validates_formatting_of`:
|
|
86
86
|
class User < ActiveRecord::Base
|
87
87
|
validates_formatting_of :ssn, :using => :ssn
|
88
88
|
end
|
89
|
+
|
90
|
+
### Hex Colors
|
91
|
+
|
92
|
+
class Color < ActiveRecord::Base
|
93
|
+
validates_formatting_of :color, :using => :hex_color
|
94
|
+
end
|
89
95
|
|
90
96
|
# Customizable
|
91
97
|
|
@@ -127,6 +127,22 @@ describe ValidatesFormattingOf::ModelAdditions do
|
|
127
127
|
AnotherPerson.new(:ssn => "23498.7234").should_not be_valid
|
128
128
|
end
|
129
129
|
end
|
130
|
+
describe "hex_color" do
|
131
|
+
class Color < SuperModel::Base
|
132
|
+
validates_formatting_of :color, :using => :hex_color
|
133
|
+
end
|
134
|
+
it "validates that the social security number provided is valid" do
|
135
|
+
Color.new(:color => "efefef").should be_valid
|
136
|
+
Color.new(:color => "98de89").should be_valid
|
137
|
+
Color.new(:color => "000011").should be_valid
|
138
|
+
Color.new(:color => "132").should be_valid
|
139
|
+
Color.new(:color => "eef").should be_valid
|
140
|
+
Color.new(:color => "efefe").should_not be_valid
|
141
|
+
Color.new(:color => "zsdfsd").should_not be_valid
|
142
|
+
Color.new(:color => "p98hul;").should_not be_valid
|
143
|
+
Color.new(:color => "sdfsdfsf").should_not be_valid
|
144
|
+
end
|
145
|
+
end
|
130
146
|
describe "custom messages" do
|
131
147
|
|
132
148
|
class Message < SuperModel::Base
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: validates_formatting_of
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-12-
|
12
|
+
date: 2011-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70102167212440 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70102167212440
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rake
|
27
|
-
requirement: &
|
27
|
+
requirement: &70102167210840 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70102167210840
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: rspec
|
38
|
-
requirement: &
|
38
|
+
requirement: &70102167209720 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70102167209720
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: supermodel
|
49
|
-
requirement: &
|
49
|
+
requirement: &70102167208440 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
version: '0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70102167208440
|
58
58
|
description: Common Rails validations wrapped in a gem.
|
59
59
|
email:
|
60
60
|
- mbridges.91@gmail.com
|