class Github::Activity::Starring

def star(*args)


github.activity.starring.star 'user-name', 'repo-name'
github = Github.new
= Examples

You need to be authenticated to star a repository

Star a repository
def star(*args)
  arguments(args, :required => [:user, :repo])
  put_request("/user/starred/#{user}/#{repo}", arguments.params)
end