forked from jeremyrwelch/Foursquare
-
Notifications
You must be signed in to change notification settings - Fork 1
/
foursquare.gemspec
33 lines (29 loc) · 1.45 KB
/
foursquare.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{foursquare}
s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jeremy Welch", "Thomas Hanley", "Elise Wood"]
s.autorequire = %q{foursquare}
s.date = %q{2010-03-13}
s.description = %q{A simple Ruby wrapper for the Foursquare API}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.rdoc", "History"]
s.files = ["README.rdoc", "Rakefile", "History", "lib/foursquare.rb", "spec/foursquare_spec.rb", "spec/spec_helper.rb", "script/destroy", "script/generate"]
s.homepage = %q{http://foursquare.rubyforge.org}
s.post_install_message = %q{NOTE: This version of the Foursquare Gem has added OAuth support. Basic Auth has been deprecated. Also significant changes have bee made to the way methods are called. Please review the examples in the README.}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{A simple Ruby wrapper for the Foursquare API}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, ["= 0.4.3"])
else
s.add_dependency(%q<httparty>, ["= 0.4.3"])
end
else
s.add_dependency(%q<httparty>, ["= 0.4.3"])
end
end