class Github::Repos::Hooks

def edit(*args)


}
"token" => "abc123"
"room" => "Commits",
"subdomain" => "github",
"config" => {
"active" => true,
"name" => "campfire",
github.repos.hooks.edit 'user-name', 'repo-name', 'hook-id',
github = Github.new
= Examples

* :active - Optional boolean - Determines whether the hook is actually triggered on pushes.
* :remove_events - Optional array - Determines a list of events to be removed from the list of events that the Hook triggers for.
* :add_events - Optional array - Determines a list of events to be added to the list of events that the Hook triggers for.
* :events - Optional array - Determines what events the hook is triggered for. This replaces the entire array of events. Default: ["push"].
* :config - Required hash - A Hash containing key/value pairs to provide settings for this hook.
* :name - Required string - the name of the service that is being called.
= Inputs

Edit a hook
def edit(*args)
  arguments(args, :required => [:user, :repo, :id]) do
    sift VALID_HOOK_PARAM_NAMES, :recursive => false
    assert_required REQUIRED_PARAMS
  end
  patch_request("/repos/#{user}/#{repo}/hooks/#{id}", arguments.params)
end