-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaddressabler.gemspec
47 lines (42 loc) · 1.88 KB
/
addressabler.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: addressabler 0.1.2 ruby lib
Gem::Specification.new do |s|
s.name = "addressabler"
s.version = "0.1.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Flip Sasser"]
s.date = "2015-01-08"
s.description = "\n Addressabler extends the Addressable::URI class to provide information about, and manipulation of, specific parts of URI strings. It adds a `tld' method, a `domain' method,\n and a `subdomain' method.\n\nIt also allows users to easily modify the URL's query values as a hash.\n "
s.email = "flip@x451.com"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"CHANGELOG.md",
"LICENSE",
"lib/addressabler.rb",
"lib/addressabler/query.rb",
"lib/addressabler/uri.rb",
"lib/addressabler/uri_deprecation.rb",
"lib/tlds"
]
s.homepage = "http://github.com/flipsasser/addressabler"
s.rubygems_version = "2.0.3"
s.summary = "An Addressable::URI extension adding support for TLDs and query part editing"
s.test_files = ["spec/addressable", "spec/addressable/idna_spec.rb", "spec/addressable/net_http_compat_spec.rb", "spec/addressable/template_spec.rb", "spec/addressable/uri_spec.rb", "spec/addressabler", "spec/addressabler/uri_deprecation_spec.rb", "spec/addressabler/uri_spec.rb", "spec/addressabler_spec.rb", "spec/spec_helper.rb"]
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<addressable>, [">= 2.3"])
else
s.add_dependency(%q<addressable>, [">= 2.3"])
end
else
s.add_dependency(%q<addressable>, [">= 2.3"])
end
end