class Github::Activity

def events(options = {})

Access to Activity::Events API
def events(options = {})
  @events ||= ApiFactory.new 'Activity::Events', options
end

def initialize(options = {})

Create new Activity API
def initialize(options = {})
  super(options)
end

def notifications

Access to Activity::Notifications API
def notifications
  @notifications ||= ApiFactory.new 'Activity::Notifications'
end

def starring

Access to Activity::Starring API
def starring
  @starring ||= ApiFactory.new 'Activity::Starring'
end

def watching

Access to Activity::Watching API
def watching
  @watching ||= ApiFactory.new 'Activity::Watching'
end