url_canonicalize.gemspec in url_canonicalize-0.1.5 vs url_canonicalize.gemspec in url_canonicalize-0.1.9
- old
+ new
@@ -5,16 +5,16 @@
Gem::Specification.new do |s|
s.name = 'url_canonicalize'
s.version = URLCanonicalize::VERSION
s.authors = ['Dominic Sayers']
- s.email = ['developers@xenapto.com']
+ s.email = ['dominic@sayers.cc']
s.summary = 'Finds the canonical version of a URL'
s.description = 'Rubygem that finds the canonical version of a URL by '\
'providing #canonicalize methods for the String, URI::HTTP'\
', URI::HTTPS and Addressable::URI classes'
- s.homepage = 'https://github.com/Xenapto/url_canonicalize'
+ s.homepage = 'https://github.com/dominicsayers/url_canonicalize'
s.license = 'MIT'
s.files = `git ls-files`.split($RS).reject do |file|
file =~ /^spec\//
end
@@ -22,7 +22,7 @@
s.test_files = []
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'addressable', '~> 2' # To normalize URLs
- s.add_dependency 'nokogiri', '~> 1' # To look for <link rel="canonical" ...> in HTML
+ s.add_dependency 'nokogiri', '>= 1.6.8' # To look for <link rel="canonical" ...> in HTML
end