class AST::Following

Attributes

handle[R]

Public Class Methods

new(handle) click to toggle source
# File bin/twitter-algebra, line 189
def initialize(handle)
  @handle = handle
end

Public Instance Methods

fetch_data() click to toggle source
# File bin/twitter-algebra, line 193
def fetch_data
  $client.friend_ids(handle).to_a
end
key() click to toggle source
# File bin/twitter-algebra, line 197
def key
  "#{handle}.following"
end