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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 334405ee7b8d7e8277e8fa070f048725e8189f20
4
- data.tar.gz: 579a6efbb98841f92c49775fd4902551407303d7
3
+ metadata.gz: 3a8f76ec843641a5df169a0a33fa864c3ba55742
4
+ data.tar.gz: db413762a175cef98af33b7ef90f1cd5350f0b7f
5
5
  SHA512:
6
- metadata.gz: fbb201ea872a5a481285ff39da33a7b7db6fb75064970e1931edd60f0a55bf30341b65c19534bd82b902b486fd30d8f9a8ef7370b6f28c51394e6a2ecb09b185
7
- data.tar.gz: 51e3c96b16b6dec39ca0817ad050489bcb982985b74a34f9a7212f84897ccdd3e1b0190ad4e4c83576ad73c58dfdf29e718b1e5e535fad6330b885081863d1de
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.3"
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
@@ -130,6 +130,7 @@ gov.to
130
130
  gov.tt
131
131
  gov.tw
132
132
  gov.ua
133
+ gov.uk
133
134
  gov.vc
134
135
  gov.ve
135
136
  gov.vn
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter