forked from moomerman/twitter_oauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
twitter_oauth.gemspec
39 lines (35 loc) · 1.9 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{twitter_oauth}
s.version = "0.1.20"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Richard Taylor", "Hemant Khemani"]
s.date = %q{2009-03-20}
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", "lib/twitter_oauth.rb", "lib/twitter_oauth/client.rb", "lib/twitter_oauth/account.rb", "lib/twitter_oauth/statuses.rb", "lib/twitter_oauth/direct_messages.rb", "lib/twitter_oauth/search.rb", "lib/twitter_oauth/blocks.rb" , "lib/twitter_oauth/friendships.rb", "lib/twitter_oauth/notifications.rb", "lib/twitter_oauth/user.rb", "lib/twitter_oauth/favorites.rb", "lib/twitter_oauth/utils.rb"]
s.has_rdoc = false
s.homepage = %q{http://github.com/contacthrk/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.1"])
s.add_runtime_dependency(%q<json>, [">= 1.1.2"])
s.add_runtime_dependency(%q<mime-types>, [">= 1.15"])
else
s.add_dependency(%q<oauth>, [">= 0.3.1"])
s.add_dependency(%q<json>, [">= 1.1.2"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
end
else
s.add_dependency(%q<oauth>, [">= 0.3.1"])
s.add_dependency(%q<json>, [">= 1.1.2"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
end
end