class Github::Activity
def events(options={}, &block)
def events(options={}, &block) @events ||= ApiFactory.new('Activity::Events', current_options.merge(options), &block) end
def notifications(options={}, &block)
def notifications(options={}, &block) @notifications ||= ApiFactory.new('Activity::Notifications', current_options.merge(options), &block) end
def starring(options={}, &block)
def starring(options={}, &block) @starring ||= ApiFactory.new('Activity::Starring', current_options.merge(options), &block) end
def watching(options={}, &block)
def watching(options={}, &block) @watching ||= ApiFactory.new('Activity::Watching', current_options.merge(options), &block) end