class Github::Users::Followers

def follow(*args)


github.users.followers.follow user: 'user-name'
github.users.followers.follow 'user-name'
github = Github.new oauth_token: '...'
= Examples

Follow a user
def follow(*args)
  arguments(args, :required => [:user])
  put_request("/user/following/#{user}", arguments.params)
end