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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd0379bf0cffbaf14dcf3006b9730ebd1b1c1332
4
- data.tar.gz: 1bc901f30c3e6b574b05c34bcd1ba9a082052fc3
3
+ metadata.gz: 4ca1f6d22826fd25e8de3cf15d46ac45fc97f424
4
+ data.tar.gz: 2c00e85cb6720263025f0c978f74b074ab397018
5
5
  SHA512:
6
- metadata.gz: 62d3caed3da3692ea0d37db18f8079aebfd6a64fdc31b22acd1824eb6a43d51850a8b81a1bfc59597fecf6a5f9d3246440fbe5e2a85b2ec7aa67f9ed9eb24d2d
7
- data.tar.gz: 13573bc251f0356604e1409e4da30365ddfa3b31e0d2c0968b87ec171ffedef0e62a9726ba63c736093e9195cec6f15103fa4fed3c8490787f6036fa03ee43b0
6
+ metadata.gz: 2710446c3252a91add0f4209b18193901cb88bde27ed53c656e02b219f2a26e3fef6567e844565c74bc3d6a8a52df3fd6090448d62004f002f7231298fc53ece
7
+ data.tar.gz: 3271ed6b627adaa208f0ba5aa7674fcdde0cef20600e51df96d908c8ab42410b60e8584733d3d46ad41ba09470080fab80a56d043b8ff63caf31f644b4ae0998
data/.travis.yml CHANGED
@@ -2,7 +2,6 @@ language: ruby
2
2
  rvm:
3
3
  - 1.8.7
4
4
  - ree
5
- - 1.9.2
6
5
  - 1.9.3
7
6
  - 2.0.0
8
7
  - ruby-head
@@ -13,5 +12,6 @@ rvm:
13
12
  - rbx-19mode
14
13
  matrix:
15
14
  allow_failures:
15
+ - rvm: ruby-head
16
16
  - rvm: rbx-18mode
17
17
  - rvm: rbx-19mode
@@ -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-06-06T23:00:56Z'
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,
@@ -1,3 +1,3 @@
1
1
  class DomainName
2
- VERSION = "0.5.12"
2
+ VERSION = "0.5.13"
3
3
  end
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.12
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-06-07 00:00:00.000000000 Z
11
+ date: 2013-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unf