-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathurl_shortener.gemspec
63 lines (61 loc) · 2.72 KB
/
url_shortener.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Gem::Specification.new do |s|
s.name = %q{url_shortener}
s.version = "0.0.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Nasir Jamal"]
s.date = %q{2009-11-26}
s.description = %q{Url Shortener is a Ruby library / gem and API wrapper for bit.ly to shorten/expand the urls and retrieve other information about them.}
s.extra_rdoc_files = ["README.rdoc"]
s.files = ["History.txt",
"Manifest.txt",
"README.rdoc",
"lib/url_shortener.rb",
"lib/url_shortener/authorize.rb",
"lib/url_shortener/client.rb",
"lib/url_shortener/error.rb",
"lib/url_shortener/interface.rb",
"lib/url_shortener/response.rb",
"lib/url_shortener/response/shorten.rb",
"lib/url_shortener/response/expand.rb",
"lib/url_shortener/response/stats.rb",
"lib/url_shortener/response/info.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/nas/url_shortener}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.0}
s.summary = %q{Url Shortener is a Ruby library / gem and API wrapper for bit.ly}
s.test_files = ["spec/spec_helper.rb",
"spec/url_shortener/authorize_spec.rb",
"spec/url_shortener/client_spec.rb",
"spec/url_shortener/interface_spec.rb",
"spec/url_shortener/response_spec.rb",
"spec/url_shortener/response/shorten_spec.rb",
"spec/url_shortener/response/expand_spec.rb",
"spec/url_shortener/response/stats_spec.rb",
"spec/url_shortener/response/info_spec.rb",
"features/api_calls.feature",
"features/request_failure.feature",
"features/support/env.rb",
"features/step_definitions/request_failure_steps.rb",
"features/step_definitions/api_call_steps.rb"
]
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>=1.8'
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, ["~> 0.13.7"])
s.add_runtime_dependency(%q<hashie>, ["~> 1.2.0"])
else
s.add_dependency(%q<httparty>, ["~> 0.13.7"])
s.add_dependency(%q<hashie>, ["~> 1.2.0"])
end
else
s.add_dependency(%q<httparty>, ["~> 0.13.7"])
s.add_dependency(%q<hashie>, ["~> 1.2.0"])
end
end