ip_format_validator 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/ip_format_validator.gemspec +2 -2
- data/lib/ip_format_validator/version.rb +1 -1
- data/pkg/ip_format_validator-0.0.1.gem +0 -0
- data/pkg/ip_format_validator-0.0.2.gem +0 -0
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f0ffba80deb5c467b2ce4cdb0f9cf456e532437
|
|
4
|
+
data.tar.gz: 4cb94763afb560b5d74dda68ac45cfa17868e97b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0dc6b0711215702c04b34983a4a278d32687ae6fc3677260f3236ed4493c9aabfa4b6e7a20dd0d1cb3c4233c3430501e0094cd24d017acbccfc07552e92f31e9
|
|
7
|
+
data.tar.gz: d27c4ea4d9979d405be1efa6c89335fef512214b1ca94f05fe06cb23be232e89ba9ef94331a873bf07f64ae56bbae96baa8214f574e185da81e1490e7e9b762e
|
data/Gemfile.lock
CHANGED
data/ip_format_validator.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = IpFormatValidator::VERSION
|
|
9
9
|
spec.authors = ["Payaam Emami", "Asim Shakour"]
|
|
10
10
|
spec.email = ["payaamemami@gmail.com", "shakourasim@gmail.com"]
|
|
11
|
-
spec.summary = %q{This gem checks the format of an IP address}
|
|
12
|
-
spec.description = %q{The two requirements for the format of the IP address: Must either be IPv4 or IPv6 format and Must be a public IP address.}
|
|
11
|
+
spec.summary = %q{This gem checks the format of an IP address.}
|
|
12
|
+
spec.description = %q{Rails custom validator that checks format for an IP address. The two requirements for the format of the IP address: Must either be IPv4 or IPv6 format and Must be a public IP address.}
|
|
13
13
|
spec.homepage = ""
|
|
14
14
|
spec.license = "GNU GPLv3"
|
|
15
15
|
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ip_format_validator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Payaam Emami
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-08-
|
|
12
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activemodel
|
|
@@ -53,8 +53,9 @@ dependencies:
|
|
|
53
53
|
- - ">="
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
|
-
description: '
|
|
57
|
-
|
|
56
|
+
description: 'Rails custom validator that checks format for an IP address. The two
|
|
57
|
+
requirements for the format of the IP address: Must either be IPv4 or IPv6 format
|
|
58
|
+
and Must be a public IP address.'
|
|
58
59
|
email:
|
|
59
60
|
- payaamemami@gmail.com
|
|
60
61
|
- shakourasim@gmail.com
|
|
@@ -72,6 +73,8 @@ files:
|
|
|
72
73
|
- lib/active_model/validations/ip_format_validator.rb
|
|
73
74
|
- lib/ip_format_validator.rb
|
|
74
75
|
- lib/ip_format_validator/version.rb
|
|
76
|
+
- pkg/ip_format_validator-0.0.1.gem
|
|
77
|
+
- pkg/ip_format_validator-0.0.2.gem
|
|
75
78
|
- test/ip_format_validator_test.rb
|
|
76
79
|
- test/test_helper.rb
|
|
77
80
|
homepage: ''
|
|
@@ -97,7 +100,7 @@ rubyforge_project:
|
|
|
97
100
|
rubygems_version: 2.2.2
|
|
98
101
|
signing_key:
|
|
99
102
|
specification_version: 4
|
|
100
|
-
summary: This gem checks the format of an IP address
|
|
103
|
+
summary: This gem checks the format of an IP address.
|
|
101
104
|
test_files:
|
|
102
105
|
- test/ip_format_validator_test.rb
|
|
103
106
|
- test/test_helper.rb
|