This repository was archived by the owner on Nov 7, 2024. It is now read-only.
forked from sporkmonger/addressable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddressable.gemspec
More file actions
43 lines (39 loc) · 2.27 KB
/
addressable.gemspec
File metadata and controls
43 lines (39 loc) · 2.27 KB
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
# -*- encoding: utf-8 -*-
# stub: addressable 2.3.6 ruby lib
Gem::Specification.new do |s|
s.name = "addressable"
s.version = "2.3.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Bob Aman"]
s.date = "2014-08-12"
s.description = "Addressable is a replacement for the URI implementation that is part of\nRuby's standard library. It more closely conforms to the relevant RFCs and\nadds support for IRIs and URI templates.\n"
s.email = "bob@sporkmonger.com"
s.extra_rdoc_files = ["README.md"]
s.files = ["CHANGELOG.md", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "data/unicode.data", "lib/addressable", "lib/addressable/idna", "lib/addressable/idna.rb", "lib/addressable/idna/native.rb", "lib/addressable/idna/pure.rb", "lib/addressable/template.rb", "lib/addressable/uri.rb", "lib/addressable/version.rb", "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/spec_helper.rb", "tasks/clobber.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/metrics.rake", "tasks/rspec.rake", "tasks/rubyforge.rake", "tasks/yard.rake", "website/index.html"]
s.homepage = "http://addressable.rubyforge.org/"
s.licenses = ["Apache License 2.0"]
s.rdoc_options = ["--main", "README.md"]
s.rubyforge_project = "addressable"
s.rubygems_version = "2.2.2"
s.summary = "URI Implementation"
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_development_dependency(%q<rake>, [">= 0.7.3"])
s.add_development_dependency(%q<rspec>, [">= 3.0"])
s.add_development_dependency(%q<rspec-its>, ["~> 1.1"])
s.add_development_dependency(%q<launchy>, [">= 0.3.2"])
else
s.add_dependency(%q<rake>, [">= 0.7.3"])
s.add_dependency(%q<rspec>, [">= 3.0"])
s.add_dependency(%q<rspec-its>, ["~> 1.1"])
s.add_dependency(%q<launchy>, [">= 0.3.2"])
end
else
s.add_dependency(%q<rake>, [">= 0.7.3"])
s.add_dependency(%q<rspec>, [">= 3.0"])
s.add_dependency(%q<rspec-its>, ["~> 1.1"])
s.add_dependency(%q<launchy>, [">= 0.3.2"])
end
end