public
Description: Ruby Library for the Yahoo! GeoPlanet API
Homepage: http://developer.yahoo.com/geo/
Clone URL: git://github.com/mattt/yahoo-geoplanet.git
Click here to lend your support to: yahoo-geoplanet and make a donation at www.pledgie.com !
Tom Taylor (author)
Sat Jan 24 11:13:48 -0800 2009
commit  6c073d969191e1f03e7d5523713f742849443d11
tree    fdee5ffcb069cb41f9fd946e9c92ce8dd12a6446
parent  d70f80f4554fe30c92bcbe06584addba06f65065
yahoo-geoplanet / yahoo-geoplanet.gemspec
100644 27 lines (24 sloc) 0.843 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
Gem::Specification.new do |s|
  s.name = "yahoo-geoplanet"
  s.version = "0.2.0"
  s.date = "2008-11-13"
  s.summary = "A Ruby wrapper for the Yahoo! GeoPlanet API."
  s.email = "mail@matttthompson.com"
  s.homepage = "http://github.com/mattt/yahoo-geoplanet/"
  s.description = "A Ruby wrapper for the Yahoo! GeoPlanet API.
See http://developer.yahoo.com/geo/ for more information about the API."
  s.authors = ["Mattt Thompson"]
  
  s.files = [
"README",
"yahoo-geoplanet.gemspec",
"lib/yahoo-geoplanet.rb",
"lib/rest.rb",
"lib/yahoo-geoplanet/base.rb",
"lib/yahoo-geoplanet/place.rb",
"lib/yahoo-geoplanet/version.rb"
]
  
  s.add_dependency("hpricot", ["> 0.6"])
  s.add_dependency("activesupport", ["> 2.1.0"])
  
  s.has_rdoc = false
  s.rdoc_options = ["--main", "README"]
end