class Github::Client::Users::Followers

def unfollow(*args)


github.users.followers.unfollow username: 'user-name'
github.users.followers.unfollow 'user-name'
github = Github.new oauth_token: '...'
@example

Unfollow a user
def unfollow(*args)
  arguments(args, required: [:username])
  delete_request("/user/following/#{arguments.username}", arguments.params)
end