domain_name 0.5.12 → 0.5.13
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/.travis.yml +1 -1
- data/data/effective_tld_names.dat +18 -0
- data/domain_name.gemspec +6 -1
- data/lib/domain_name/etld_data.rb +10 -1
- data/lib/domain_name/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ca1f6d22826fd25e8de3cf15d46ac45fc97f424
|
|
4
|
+
data.tar.gz: 2c00e85cb6720263025f0c978f74b074ab397018
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2710446c3252a91add0f4209b18193901cb88bde27ed53c656e02b219f2a26e3fef6567e844565c74bc3d6a8a52df3fd6090448d62004f002f7231298fc53ece
|
|
7
|
+
data.tar.gz: 3271ed6b627adaa208f0ba5aa7674fcdde0cef20600e51df96d908c8ab42410b60e8584733d3d46ad41ba09470080fab80a56d043b8ff63caf31f644b4ae0998
|
data/.travis.yml
CHANGED
|
@@ -221,6 +221,7 @@ edu.au
|
|
|
221
221
|
gov.au
|
|
222
222
|
asn.au
|
|
223
223
|
id.au
|
|
224
|
+
csiro.au
|
|
224
225
|
// Historic 2LDs (closed to new registration, but sites still exist)
|
|
225
226
|
info.au
|
|
226
227
|
conf.au
|
|
@@ -6644,6 +6645,11 @@ za.com
|
|
|
6644
6645
|
// c.la : http://www.c.la/
|
|
6645
6646
|
c.la
|
|
6646
6647
|
|
|
6648
|
+
// cloudControl : https://www.cloudcontrol.com/
|
|
6649
|
+
// Requested by Tobias Wilken <tw@cloudcontrol.com> 2013-07-23
|
|
6650
|
+
cloudcontrolled.com
|
|
6651
|
+
cloudcontrolapp.com
|
|
6652
|
+
|
|
6647
6653
|
// co.ca : http://registry.co.ca/
|
|
6648
6654
|
co.ca
|
|
6649
6655
|
|
|
@@ -6936,10 +6942,22 @@ webhop.org
|
|
|
6936
6942
|
worse-than.tv
|
|
6937
6943
|
writesthisblog.com
|
|
6938
6944
|
|
|
6945
|
+
// Fastly Inc. http://www.fastly.com/
|
|
6946
|
+
// Requested by Vladimir Vuksan <vladimir@fastly.com> 2013-05-31
|
|
6947
|
+
a.ssl.fastly.net
|
|
6948
|
+
b.ssl.fastly.net
|
|
6949
|
+
global.ssl.fastly.net
|
|
6950
|
+
a.prod.fastly.net
|
|
6951
|
+
global.prod.fastly.net
|
|
6952
|
+
|
|
6939
6953
|
// GitHub, Inc.
|
|
6940
6954
|
// Requested by Ben Toews <btoews@github.com> 2013-04-18
|
|
6941
6955
|
github.io
|
|
6942
6956
|
|
|
6957
|
+
// GlobeHosting, Inc.
|
|
6958
|
+
// Requested by Zoltan Egresi <egresi@globehosting.com> 2013-07-12
|
|
6959
|
+
ro.com
|
|
6960
|
+
|
|
6943
6961
|
// Google, Inc.
|
|
6944
6962
|
// Requested by Eduardo Vela <evn@google.com> 2012-10-24
|
|
6945
6963
|
appspot.com
|
data/domain_name.gemspec
CHANGED
|
@@ -29,7 +29,12 @@ Suffix List.
|
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
gem.add_runtime_dependency("unf", ["< 1.0.0", ">= 0.0.5"])
|
|
32
|
-
gem.add_development_dependency("shoulda", [">= 0"])
|
|
32
|
+
gem.add_development_dependency("shoulda", [RUBY_VERSION < "1.9" ? "< 3.5.0" : ">= 0"])
|
|
33
|
+
if RUBY_VERSION < "1.9"
|
|
34
|
+
# Cap dependency on activesupport with < 4.0 on behalf of
|
|
35
|
+
# shoulda-matchers to satisfy bundler.
|
|
36
|
+
gem.add_development_dependency("activesupport", ["< 4.0"])
|
|
37
|
+
end
|
|
33
38
|
gem.add_development_dependency("bundler", [">= 1.2.0"])
|
|
34
39
|
gem.add_development_dependency("rake", [">= 0.9.2.2"])
|
|
35
40
|
gem.add_development_dependency("rdoc", [">= 2.4.2"])
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
class DomainName
|
|
2
|
-
ETLD_DATA_DATE = '2013-
|
|
2
|
+
ETLD_DATA_DATE = '2013-08-15T11:01:26Z'
|
|
3
3
|
|
|
4
4
|
ETLD_DATA = {
|
|
5
5
|
"ac" => 0,
|
|
@@ -180,6 +180,7 @@ class DomainName
|
|
|
180
180
|
"gov.au" => 0,
|
|
181
181
|
"asn.au" => 0,
|
|
182
182
|
"id.au" => 0,
|
|
183
|
+
"csiro.au" => 0,
|
|
183
184
|
"info.au" => 0,
|
|
184
185
|
"conf.au" => 0,
|
|
185
186
|
"oz.au" => 0,
|
|
@@ -5780,6 +5781,8 @@ class DomainName
|
|
|
5780
5781
|
"uy.com" => 0,
|
|
5781
5782
|
"za.com" => 0,
|
|
5782
5783
|
"c.la" => 0,
|
|
5784
|
+
"cloudcontrolled.com" => 0,
|
|
5785
|
+
"cloudcontrolapp.com" => 0,
|
|
5783
5786
|
"co.ca" => 0,
|
|
5784
5787
|
"co.nl" => 0,
|
|
5785
5788
|
"co.no" => 0,
|
|
@@ -6063,7 +6066,13 @@ class DomainName
|
|
|
6063
6066
|
"webhop.org" => 0,
|
|
6064
6067
|
"worse-than.tv" => 0,
|
|
6065
6068
|
"writesthisblog.com" => 0,
|
|
6069
|
+
"a.ssl.fastly.net" => 0,
|
|
6070
|
+
"b.ssl.fastly.net" => 0,
|
|
6071
|
+
"global.ssl.fastly.net" => 0,
|
|
6072
|
+
"a.prod.fastly.net" => 0,
|
|
6073
|
+
"global.prod.fastly.net" => 0,
|
|
6066
6074
|
"github.io" => 0,
|
|
6075
|
+
"ro.com" => 0,
|
|
6067
6076
|
"appspot.com" => 0,
|
|
6068
6077
|
"blogspot.be" => 0,
|
|
6069
6078
|
"blogspot.bj" => 0,
|
data/lib/domain_name/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: domain_name
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Akinori MUSHA
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: unf
|