class AST::HandleSet

Attributes

handles[R]

Public Class Methods

new(handles) click to toggle source
# File bin/twitter-algebra, line 207
def initialize(handles)
  @handles = handles.map(&:downcase)
end

Public Instance Methods

fetch_data() click to toggle source
# File bin/twitter-algebra, line 215
def fetch_data
  $client.users(handles).map(&:id)
end
key() click to toggle source
# File bin/twitter-algebra, line 211
def key
  "{#{handles.sort.join(",")}}"
end