From 051d19db49dce2422d06181c5a3b595e3a9b85b3 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Sun, 12 Apr 2009 22:57:43 -0400 Subject: [PATCH] Had two friend_ids functions. Renamed one of them to follower_ids. --- History | 4 ++++ lib/twitter/base.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/History b/History index fea1747cc..04ac6a4da 100644 --- a/History +++ b/History @@ -1,3 +1,7 @@ +0.6.1 - April 12, 2009 +* 1 minor fix + * Had two friend_ids functions. Renamed one of them to follower_ids. + 0.6.0 - April 11, 2009 * 1 feature addition * Added http authentication back in. You can now use oauth or http auth as your client. diff --git a/lib/twitter/base.rb b/lib/twitter/base.rb index 9b43dcc94..1a6054461 100644 --- a/lib/twitter/base.rb +++ b/lib/twitter/base.rb @@ -90,7 +90,7 @@ def friend_ids(query={}) end # Options: id, user_id, screen_name - def friend_ids(query={}) + def follower_ids(query={}) perform_get("/followers/ids.json", :query => query) end