module TwitterWithAutoPagination::REST::Extension::Unfollowing

Public Instance Methods

removed(past_me, cur_me)
removing(past_me, cur_me)
unfollowed(past_me, cur_me)
unfollowing(past_me, cur_me)
users_which_you_removed(past_me, cur_me) click to toggle source
# File lib/twitter_with_auto_pagination/rest/extension/unfollowing.rb, line 9
def users_which_you_removed(past_me, cur_me)
  instrument(__method__, nil) do
    past_friends, cur_friends = _retrieve_friends(past_me, cur_me)
    past_friends.to_a - cur_friends.to_a
  end
end
Also aliased as: removing, unfollowing
users_who_removed_you(past_me, cur_me) click to toggle source
# File lib/twitter_with_auto_pagination/rest/extension/unfollowing.rb, line 19
def users_who_removed_you(past_me, cur_me)
  instrument(__method__, nil) do
    past_followers, cur_followers = _retrieve_followers(past_me, cur_me)
    past_followers.to_a - cur_followers.to_a
  end
end
Also aliased as: removed, unfollowed