This repository has been archived by the owner on Jan 13, 2019. It is now read-only.
forked from moomerman/twitter_oauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
twitter_oauth.gemspec
42 lines (38 loc) · 1.66 KB
/
twitter_oauth.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{twitter_oauth}
s.version = "0.3.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Richard Taylor"]
s.date = %q{2010-04-30}
s.description = %q{twitter_oauth is a Ruby library for talking to twitter using the new oauth method.}
s.email = %q{[email protected]}
s.files = ["README.textile","lib/twitter_oauth.rb"] + Dir.glob('lib/twitter_oauth/*.rb')
s.has_rdoc = false
s.homepage = %q{http://github.com/moomerman/twitter_oauth}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{twitter_oauth}
s.rubygems_version = %q{1.3.1}
s.summary = %q{twitter_oauth is a Ruby library for talking to twitter using the new oauth method.}
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<oauth>, [">= 0.3.6"])
s.add_runtime_dependency(%q<json>, [">= 1.1.9", "<= 1.2.4"])
s.add_runtime_dependency(%q<mime-types>, [">= 1.16"])
%w(shoulda mocha).each do |dep|
s.add_development_dependency dep
end
else
s.add_dependency(%q<oauth>, [">= 0.3.6"])
s.add_dependency(%q<json>, [">= 1.1.9", "<= 1.2.4"])
s.add_dependency(%q<mime-types>, [">= 1.16"])
end
else
s.add_dependency(%q<oauth>, [">= 0.3.6"])
s.add_dependency(%q<json>, [">= 1.1.9", "<= 1.2.4"])
s.add_dependency(%q<mime-types>, [">= 1.16"])
end
end