-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrue_url.gemspec
22 lines (18 loc) · 905 Bytes
/
true_url.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require File.expand_path('../lib/true_url/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'true_url'
spec.version = TrueURL::VERSION
spec.authors = ['Jonathan Wong']
spec.email = ['[email protected]']
spec.summary = 'A multi-strategy approach to find the absolutely cleanest and most likely canonical URL of any given URL.'
spec.homepage = 'https://github.com/armchairtheorist/true_url'
spec.license = 'MIT'
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {spec}/*`.split("\n")
spec.require_paths = ['lib']
spec.add_development_dependency 'rspec', '~> 0'
spec.add_development_dependency 'rake', '~> 0'
spec.add_runtime_dependency 'addressable', '>= 2.4.0'
spec.add_runtime_dependency 'http', '>= 2.1.0'
spec.add_runtime_dependency 'nokogiri', '>= 1.6.8'
end