validates_cnpj 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ (The MIT License)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ 'Software'), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc CHANGED
@@ -29,4 +29,8 @@ You should use validates_as_cnpj(:attribute) just like any other shoulda matcher
29
29
 
30
30
  == Goal
31
31
 
32
- This project is based on brcpfcnpj gem and his intention it to mantain a cleaner code to validate CNPJ and easy matchers to test it.
32
+ This project is based on brcpfcnpj gem and his intention it to mantain a cleaner code to validate CNPJ and easy matchers to test it.
33
+
34
+ == Contribute
35
+
36
+ Fork the project and send me a Pull Request. =D
@@ -1,3 +1,3 @@
1
1
  module ValidatesCnpj
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validates_cnpj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
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: 2012-02-21 00:00:00.000000000 Z
12
+ date: 2012-02-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
16
- requirement: &6438480 !ruby/object:Gem::Requirement
16
+ requirement: &12750240 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *6438480
24
+ version_requirements: *12750240
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rake
27
- requirement: &6436800 !ruby/object:Gem::Requirement
27
+ requirement: &12748560 !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: *6436800
35
+ version_requirements: *12748560
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rspec
38
- requirement: &6436260 !ruby/object:Gem::Requirement
38
+ requirement: &12748020 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 2.0.0
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *6436260
46
+ version_requirements: *12748020
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: shoulda-matchers
49
- requirement: &6435740 !ruby/object:Gem::Requirement
49
+ requirement: &12747500 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: 1.0.0
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *6435740
57
+ version_requirements: *12747500
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: remarkable_activerecord
60
- requirement: &6435180 !ruby/object:Gem::Requirement
60
+ requirement: &12746940 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - =
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: 4.0.0.alpha4
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *6435180
68
+ version_requirements: *12746940
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: sqlite3
71
- requirement: &6434760 !ruby/object:Gem::Requirement
71
+ requirement: &12746500 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,7 +76,7 @@ dependencies:
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *6434760
79
+ version_requirements: *12746500
80
80
  description: Validates CNPJ and test it with matchers in a simple way.
81
81
  email: plribeiro3000@gmail.com
82
82
  executables: []
@@ -87,12 +87,13 @@ files:
87
87
  - .rspec
88
88
  - .rvmrc
89
89
  - Gemfile
90
+ - LICENSE
90
91
  - README.rdoc
91
92
  - Rakefile
92
- - lib/remarkable/validate_as_cnpj_matcher.rb
93
- - lib/shoulda-matchers/validate_as_cnpj_matcher.rb
94
93
  - lib/validates_cnpj.rb
95
94
  - lib/validates_cnpj/cnpj.rb
95
+ - lib/validates_cnpj/remarkable/validate_as_cnpj_matcher.rb
96
+ - lib/validates_cnpj/shoulda-matchers/validate_as_cnpj_matcher.rb
96
97
  - lib/validates_cnpj/version.rb
97
98
  - spec/fake_app/admin.rb
98
99
  - spec/fake_app/company.rb