url_parser 0.4.0 → 0.5.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.
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = UrlParser::VERSION
9
9
  spec.authors = ["Matt Solt"]
10
10
  spec.email = ["mattsolt@gmail.com"]
11
- spec.summary = %q{Combine PostRank-URI, Domainatrix, and other Ruby url parsing libraries into a common interface.}
12
- spec.description = %q{Uses PostRank-URI to clean, Addressable to break into components, and Domainatrix to determine domain and subdomain.}
11
+ spec.summary = %q{Extended URI capabilities built on top of Addressable::URI. Extract, parse, unescape, normalize, canonicalize, and clean URIs and URLs.}
12
+ spec.description = %q{Extended URI capabilities built on top of Addressable::URI. Extract, parse, unescape, normalize, canonicalize, and clean URIs and URLs.}
13
13
  spec.homepage = "https://github.com/activefx/url_parser"
14
14
  spec.license = "MIT"
15
15
 
@@ -22,9 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake", "~> 10"
23
23
  spec.add_development_dependency "rspec", "~> 3.0"
24
24
  spec.add_development_dependency "guard-rspec"
25
- spec.add_development_dependency "pry"
26
25
 
27
- spec.add_dependency "domainatrix", ">= 0.0.11"
28
- spec.add_dependency "postrank-uri", "~> 1.0"
29
- spec.add_dependency "addressable", "~> 2.3"
26
+ spec.add_dependency "gem_config", "~> 0.3"
27
+ spec.add_dependency "public_suffix", "~> 1.0"
28
+ spec.add_dependency "addressable", "~> 2.0"
30
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: url_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Solt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-10 00:00:00.000000000 Z
11
+ date: 2016-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,35 +67,21 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: pry
70
+ name: gem_config
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: domainatrix
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
73
+ - - "~>"
88
74
  - !ruby/object:Gem::Version
89
- version: 0.0.11
75
+ version: '0.3'
90
76
  type: :runtime
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
- - - ">="
80
+ - - "~>"
95
81
  - !ruby/object:Gem::Version
96
- version: 0.0.11
82
+ version: '0.3'
97
83
  - !ruby/object:Gem::Dependency
98
- name: postrank-uri
84
+ name: public_suffix
99
85
  requirement: !ruby/object:Gem::Requirement
100
86
  requirements:
101
87
  - - "~>"
@@ -114,16 +100,16 @@ dependencies:
114
100
  requirements:
115
101
  - - "~>"
116
102
  - !ruby/object:Gem::Version
117
- version: '2.3'
103
+ version: '2.0'
118
104
  type: :runtime
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
107
  requirements:
122
108
  - - "~>"
123
109
  - !ruby/object:Gem::Version
124
- version: '2.3'
125
- description: Uses PostRank-URI to clean, Addressable to break into components, and
126
- Domainatrix to determine domain and subdomain.
110
+ version: '2.0'
111
+ description: Extended URI capabilities built on top of Addressable::URI. Extract,
112
+ parse, unescape, normalize, canonicalize, and clean URIs and URLs.
127
113
  email:
128
114
  - mattsolt@gmail.com
129
115
  executables: []
@@ -132,14 +118,31 @@ extra_rdoc_files: []
132
118
  files:
133
119
  - ".gitignore"
134
120
  - ".rspec"
121
+ - ".ruby-gemset"
122
+ - ".ruby-version"
123
+ - ".travis.yml"
124
+ - CHANGELOG.md
135
125
  - Gemfile
136
126
  - Guardfile
137
127
  - LICENSE.txt
138
128
  - README.md
139
129
  - Rakefile
140
130
  - lib/url_parser.rb
131
+ - lib/url_parser/db.yml
132
+ - lib/url_parser/domain.rb
133
+ - lib/url_parser/model.rb
134
+ - lib/url_parser/option_setter.rb
135
+ - lib/url_parser/parser.rb
136
+ - lib/url_parser/uri.rb
141
137
  - lib/url_parser/version.rb
142
138
  - spec/spec_helper.rb
139
+ - spec/support/.gitkeep
140
+ - spec/support/helpers.rb
141
+ - spec/url_parser/domain_spec.rb
142
+ - spec/url_parser/model_spec.rb
143
+ - spec/url_parser/option_setter_spec.rb
144
+ - spec/url_parser/parser_spec.rb
145
+ - spec/url_parser/uri_spec.rb
143
146
  - spec/url_parser_spec.rb
144
147
  - url_parser.gemspec
145
148
  homepage: https://github.com/activefx/url_parser
@@ -162,11 +165,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
165
  version: '0'
163
166
  requirements: []
164
167
  rubyforge_project:
165
- rubygems_version: 2.2.2
168
+ rubygems_version: 2.5.2
166
169
  signing_key:
167
170
  specification_version: 4
168
- summary: Combine PostRank-URI, Domainatrix, and other Ruby url parsing libraries into
169
- a common interface.
171
+ summary: Extended URI capabilities built on top of Addressable::URI. Extract, parse,
172
+ unescape, normalize, canonicalize, and clean URIs and URLs.
170
173
  test_files:
171
174
  - spec/spec_helper.rb
175
+ - spec/support/.gitkeep
176
+ - spec/support/helpers.rb
177
+ - spec/url_parser/domain_spec.rb
178
+ - spec/url_parser/model_spec.rb
179
+ - spec/url_parser/option_setter_spec.rb
180
+ - spec/url_parser/parser_spec.rb
181
+ - spec/url_parser/uri_spec.rb
172
182
  - spec/url_parser_spec.rb