foursquare 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +4 -4
  2. data/Rakefile +1 -1
  3. metadata +2 -2
@@ -35,8 +35,8 @@ A simple Ruby Gem wrapper for the Foursquare API. With OAuth authentication.
35
35
 
36
36
  foursquare.test
37
37
 
38
- foursquare.venues :geolat => geolat, :geolong => geolong, :limit => 10, :q => 'pizza'
39
- foursquare.tips :geolat => geolat, :geolong => geolong, :limit => 10
38
+ foursquare.venues :geolat => geolat, :geolong => geolong, :l => 10, :q => 'pizza'
39
+ foursquare.tips :geolat => geolat, :geolong => geolong, :l => 10
40
40
  foursquare.checkins :geolat => geolat, :geolong => geolong
41
41
 
42
42
  checkin = {
@@ -67,8 +67,8 @@ A simple Ruby Gem wrapper for the Foursquare API. With OAuth authentication.
67
67
  new_checkin
68
68
  => {:checkin => {...}}
69
69
 
70
- foursquare.history :limit => 10
71
- foursquare.api(:history, :limit => 10).checkins
70
+ foursquare.history :l => 10
71
+ foursquare.api(:history, :l => 10).checkins
72
72
  foursquare.user :uid => user_id :badges => 0
73
73
  foursquare.user # currently authenticated user
74
74
  foursquare.friends :uid => 99999
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'spec/rake/spectask'
6
6
 
7
7
  spec = Gem::Specification.new do |s|
8
8
  s.name = "foursquare"
9
- s.version = "0.3.0"
9
+ s.version = "0.3.1"
10
10
  s.authors = ['Jeremy Welch', 'Thomas Hanley', 'Elise Wood']
11
11
  s.email = "hello@jeremyrwelch.com"
12
12
  s.homepage = "http://foursquare.rubyforge.org"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foursquare
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Welch
@@ -11,7 +11,7 @@ autorequire: foursquare
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2010-03-13 00:00:00 -05:00
14
+ date: 2010-04-29 00:00:00 -07:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency