gman 0.0.3 → 0.0.4
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/gman.gemspec +1 -1
- data/lib/domains.txt +1 -0
- data/test/test_gman.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a8f76ec843641a5df169a0a33fa864c3ba55742
|
4
|
+
data.tar.gz: db413762a175cef98af33b7ef90f1cd5350f0b7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dec43b4d8daf3346a860f6ec4eadb2a3279837f38174e589a2ff0cda3cea61a75fb6c3ff9c4ce09672d8241fb4edd489ae86505eafa60080d00a8a890c4d37f2
|
7
|
+
data.tar.gz: ed364046a75764138d4b34e931690fc3f701f20ab73e149967a0c42a93d6bc075a189deb277775be5e3ad6f267ed2d534cdedb5af2761e3fccd2715acaf9a4af
|
data/gman.gemspec
CHANGED
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
|
|
2
2
|
s.name = "gman"
|
3
3
|
s.summary = "Check if a given domain or email address belong to a governemnt entity"
|
4
4
|
s.description = "A ruby gem to check if the owner of a given email address is working for THE MAN."
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.4"
|
6
6
|
s.authors = ["Ben Balter"]
|
7
7
|
s.date = "2013-09-30"
|
8
8
|
s.email = "ben.balter@github.com"
|
data/lib/domains.txt
CHANGED
data/test/test_gman.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'helper'
|
2
2
|
|
3
|
-
VALID = ["foo.gov", "http://foo.mil", "foo@bar.gc.ca", "foo.gov.au", "http://www.foo.gouv.fr", "foo@ci.champaign.il.us", "foo.bar.baz.gov.au"]
|
3
|
+
VALID = ["foo.gov", "http://foo.mil", "foo@bar.gc.ca", "foo.gov.au", "http://www.foo.gouv.fr", "foo@ci.champaign.il.us", "foo.bar.baz.gov.au", "foo@bar.gov.uk"]
|
4
4
|
INVALID = ["foo.bar.com", "bar@foo.biz", "http://www.foo.biz", "foo.uk", "gov", "foo@k12.champaign.il.us"]
|
5
5
|
|
6
6
|
class TestGman < Test::Unit::TestCase
|