class Github::Users::Followers

def unfollow(*args)


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

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