class AST::Followers

Attributes

handle[R]

Public Class Methods

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

Public Instance Methods

fetch_data() click to toggle source
# File bin/twitter-algebra, line 175
def fetch_data
  $client.follower_ids(handle).to_a
end
key() click to toggle source
# File bin/twitter-algebra, line 179
def key
  "#{handle}.followers"
end