tld 0.6.4 → 0.7.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 53c5e9e950a03cdcaa55781149faa1d5f5812280
4
+ data.tar.gz: ba14629d41691b5ba9a8e20a6b20defe915ab354
5
+ SHA512:
6
+ metadata.gz: e313997b5b81d8d9336bd10755889a8d4b93d17f38fdd87f35dc2df391a7041e8830e98c29096274f3da462627e0b59f9b34949574d2fb67e6b27278e9751baf
7
+ data.tar.gz: f882b90d74d659b035dcf5930b0529b6faad02eb8d7ee1b19260082fbeb55184a37e9bbe920fcfb199b7329f30f84cce50111d633858139f49e1d9b5b8daea48
data/.gitignore CHANGED
@@ -1 +1 @@
1
- pkg
1
+ Gemfile.lock
data/.travis.yml ADDED
@@ -0,0 +1,18 @@
1
+ language: ruby
2
+ bundler_args: --without development
3
+ rvm:
4
+ - 2.0.0
5
+ - 1.9.3
6
+ - ruby-head
7
+ - ree
8
+ - jruby-19mode
9
+ - jruby-head
10
+ - rbx-19mode
11
+ matrix:
12
+ allow_failures:
13
+ - rvm: ruby-head
14
+ - rvm: jruby-head
15
+ - rvm: ree
16
+ notifications:
17
+ recipients:
18
+ - alexrabarts@gmail.com
data/Gemfile CHANGED
@@ -3,10 +3,14 @@ source 'https://rubygems.org'
3
3
  gem 'rake'
4
4
  gem 'rdoc'
5
5
 
6
+ gemspec
7
+
6
8
  group :development do
7
9
  gem 'nokogiri'
8
10
  gem 'erubis'
9
- gem 'addressable'
10
11
  end
11
12
 
12
- gemspec
13
+ group :test do
14
+ gem 'minitest'
15
+ gem 'shoulda'
16
+ end
data/History.txt CHANGED
@@ -1,3 +1,11 @@
1
+ === 0.7.0 / 2014-11-27
2
+
3
+ * IANA is now the authority source of TLDs instead of Wikipedia
4
+ * Updated TLDs
5
+ * Added `TLD#sponsoring_organization` method
6
+ * All TLD subclasses now start with 'TLD' in order to accommodate non-ASCII TLDs
7
+ * `TLD::UnknownTldError` has been renamed `UnknownTLDError`
8
+
1
9
  === 0.6.4 / 2013-04-03
2
10
 
3
11
  * Fixed a gem dependency issue
data/README.rdoc CHANGED
@@ -1,4 +1,5 @@
1
1
  = TLD
2
+ {<img src="https://travis-ci.org/alexrabarts/tld.png?branch=master" alt="Build Status" />}[https://travis-ci.org/alexrabarts/tld]
2
3
 
3
4
  == DESCRIPTION:
4
5
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.4
1
+ 0.7.0