octokit 1.25.0 → 2.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +10 -7
- data/lib/octokit.rb +22 -15
- data/lib/octokit/arguments.rb +14 -0
- data/lib/octokit/authentication.rb +48 -25
- data/lib/octokit/client.rb +245 -44
- data/lib/octokit/client/authorizations.rb +36 -10
- data/lib/octokit/client/commit_comments.rb +96 -0
- data/lib/octokit/client/commits.rb +152 -94
- data/lib/octokit/client/contents.rb +32 -24
- data/lib/octokit/client/downloads.rb +11 -7
- data/lib/octokit/client/emojis.rb +3 -1
- data/lib/octokit/client/events.rb +62 -18
- data/lib/octokit/client/gists.rb +27 -26
- data/lib/octokit/client/gitignore.rb +7 -3
- data/lib/octokit/client/issues.rb +43 -71
- data/lib/octokit/client/labels.rb +24 -20
- data/lib/octokit/client/legacy_search.rb +78 -0
- data/lib/octokit/client/markdown.rb +6 -1
- data/lib/octokit/client/meta.rb +21 -0
- data/lib/octokit/client/milestones.rb +13 -9
- data/lib/octokit/client/notifications.rb +24 -64
- data/lib/octokit/client/objects.rb +17 -12
- data/lib/octokit/client/organizations.rb +43 -52
- data/lib/octokit/client/pub_sub_hubbub.rb +68 -8
- data/lib/octokit/client/{pulls.rb → pull_requests.rb} +65 -41
- data/lib/octokit/client/rate_limit.rb +42 -8
- data/lib/octokit/client/refs.rb +16 -10
- data/lib/octokit/client/repositories.rb +73 -124
- data/lib/octokit/client/say.rb +7 -1
- data/lib/octokit/client/service_status.rb +39 -0
- data/lib/octokit/client/stats.rb +12 -6
- data/lib/octokit/client/statuses.rb +8 -29
- data/lib/octokit/client/users.rb +56 -75
- data/lib/octokit/configurable.rb +117 -0
- data/lib/octokit/default.rb +140 -0
- data/lib/octokit/error.rb +6 -5
- data/lib/octokit/gist.rb +11 -0
- data/lib/octokit/rate_limit.rb +22 -0
- data/lib/octokit/repo_arguments.rb +19 -0
- data/lib/octokit/repository.rb +11 -4
- data/lib/octokit/response/raise_error.rb +35 -0
- data/lib/octokit/version.rb +5 -1
- data/octokit.gemspec +4 -9
- data/spec/cassettes/Octokit_Client/_get/handles_query_params.json +1 -0
- data/spec/cassettes/Octokit_Client/_head/handles_query_params.json +1 -0
- data/spec/cassettes/Octokit_Client/_last_response/caches_the_last_agent_response.json +1 -0
- data/spec/cassettes/Octokit_Client/authentication/when_token_authenticated/fetches_and_memoizes_login.json +1 -0
- data/spec/cassettes/Octokit_Client/auto_pagination/fetches_all_the_pages.json +1 -0
- data/spec/cassettes/Octokit_Client/error_handling/raises_on_404.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_authorization/returns_a_single_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_authorizations/lists_existing_authorizations.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_create_authorization/creates_a_new_authorization_with_options.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_create_authorization/creates_an_API_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_scopes/checks_the_scopes_on_a_one-off_token.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_scopes/checks_the_scopes_on_the_current_token.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_update_authorization/updates_and_existing_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_commit_comment/returns_a_single_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_commit_comments/returns_a_list_of_comments_for_a_specific_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_create_commit_comment/creates_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_delete_commit_comment/deletes_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_list_commit_comments/returns_a_list_of_all_commit_comments.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_update_commit_comment/updates_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commit/returns_a_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/returns_all_commits.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/returns_all_commits_until_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/returns_all_commits_until_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/returns_all_commits_on_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/returns_all_commits_since_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_compare/returns_a_comparison.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_create_commit/creates_a_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_merge/merges_a_branch_into_another.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_archive_link/returns_the_headers_of_the_request.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_contents/returns_the_contents_of_a_file.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_contents_from_File_object.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_contents_from_file_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_delete_contents/deletes_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_readme/returns_the_default_readme.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_update_contents/updates_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/_download/gets_a_single_download.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/_downloads/lists_available_downloads.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_create_download/creates_a_download_resource.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_create_download/posts_to_an_S3_url.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_delete_download/deletes_a_download.json +1 -0
- data/spec/cassettes/Octokit_Client_Emojis/_emojis/returns_all_github_emojis.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_issue_event/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_issue_events/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_organization_events/returns_all_events_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_organization_public_events/returns_an_organization_s_public_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_public_events/returns_all_public_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_received_events/returns_all_user_received_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_received_public_events/returns_public_user_received_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repo_issue_events/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repository_events/returns_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repository_network_events/returns_events_for_a_repository_s_network.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_user_events/returns_all_user_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_user_public_events/returns_public_events_performed_by_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gist/returns_the_gist_by_ID.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gists/with_username_passed/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gists/without_a_username_passed/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_public_gists/returns_public_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_create_gist/creates_a_new_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_create_gist_comment/creates_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_delete_gist/deletes_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_delete_gist_comment/deletes_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_edit_gist/edit_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_fork_gist/forks_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_comment/returns_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_comments/returns_the_list_of_gist_comments.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_starred_/is_not_starred.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_starred_/is_starred.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gists/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_star_gist/stars_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_starred_gists/returns_the_user_s_starred_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_unstar_gist/unstars_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_update_gist_comment/updates_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gitignore/_gitignore_template/returns_the_ruby_gitignore_template.json +1 -0
- data/spec/cassettes/Octokit_Client_Gitignore/_gitignore_templates/returns_all_gitignore_templates.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue_with_delimited_labels.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue_with_labels_array.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_issue_comment/returns_a_single_comment_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_issue_comments/returns_comments_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_list_issues/returns_dashboard_issues_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_list_issues/returns_issues_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_org_issues/returns_issues_for_the_organization_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_repository_issues_comments/returns_comments_for_all_issues_in_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_user_issues/returns_issues_for_the_authenticated_user_for_owned_and_member_repos.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_add_comment/adds_a_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_close_issue/closes_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_issue/returns_a_full_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_issue/returns_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_reopen_issue/reopens_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_update_issue/updates_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/methods_requiring_a_new_issue_comment/_delete_comment/deletes_an_existing_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/methods_requiring_a_new_issue_comment/_update_comment/updates_an_existing_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_add_label/adds_a_label_with_a_color.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_add_label/adds_a_label_with_default_color.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_delete_label_/deletes_a_label_from_the_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_label/returns_a_single_label.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_labels/returns_labels.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_lables_for_milestone/returns_all_labels_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_add_labels_to_an_issue/adds_labels_to_a_given_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_labels_for_issue/returns_all_labels_for_a_given_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_remove_all_labels/removes_all_labels_from_the_specified_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_remove_label/removes_a_label_from_the_specified_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_replace_all_labels/replaces_all_labels_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_label/_update_label/updates_a_label_with_a_new_color.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_issues/returns_matching_issues.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_repos/returns_matching_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_users/returns_matching_username.json +1 -0
- data/spec/cassettes/Octokit_Client_Markdown/_markdown/renders_markdown.json +1 -0
- data/spec/cassettes/Octokit_Client_Meta/_github_meta/returns_meta_information_about_github.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/_list_milestones/lists_milestones_belonging_to_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_create_milestone/creates_a_milestone.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_delete_milestone/deletes_a_milestone_from_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_milestone/gets_a_single_milestone_belonging_to_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_update_milestone/updates_a_milestone.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_mark_notifications_as_read/returns_true_when_notifications_are_marked_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_mark_repository_notifications_as_read/returns_true_when_notifications_for_a_repo_are_marked_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_notifications/lists_the_notifications_for_the_current_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_repository_notifications/lists_all_notifications_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_delete_thread_subscription/returns_true_with_successful_thread_deletion.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_mark_thread_as_read/marks_a_thread_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_thread_notifications/returns_notifications_for_a_specific_thread.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_thread_subscription/returns_a_thread_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_update_thread_subscription/updates_a_thread_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_blob/returns_a_blob.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_blob/creates_a_blob.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_tag/creates_a_tag.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_tree/creates_a_tree.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tag/returns_a_tag.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tree/gets_a_tree.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tree/gets_a_tree_recursively.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization/returns_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_member_/checks_organization_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_members/returns_all_public_members_of_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_public_member_/checks_publicized_org_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_repositories/returns_all_public_repositories_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_teams/returns_all_teams_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organizations/returns_all_organizations_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organizations/returns_all_organizations_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_update_organization/updates_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_add_team_member/adds_a_team_member.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_add_team_repository/adds_a_team_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_create_team/creates_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_delete_team/deletes_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_publicize_membership/publicizes_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_remove_team_member/removes_a_team_member.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_remove_team_repository/removes_a_team_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team/returns_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_member_/checks_if_a_user_is_member_of_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_members/returns_team_members.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_repositories/returns_team_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_unpublicize_membership/unpublicizes_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_update_team/updates_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe/raises_an_error_when_topic_is_not_recognized.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe/subscribes_to_pull_events.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe_service_hook/subscribes_to_pull_events_on_specified_topic.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_unsubscribe/unsubscribes_from_pull_events.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/unsubscribe_service_hook/unsubscribes_to_stop_receiving_events_on_specified_topic.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_create_pull_request_for_issue/creates_a_pull_request_and_attach_it_to_an_existing_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_comment/returns_a_comment_on_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_comments/returns_the_comments_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_commits/returns_the_commits_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_files/lists_files_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_requests/returns_all_pull_requests.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_requests_comments/returns_all_comments_on_all_pull_requests.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_close_pull_request/closes_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_create_pull_request/creates_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_merge_pull_request/merges_the_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_pull_merged_/returns_whether_the_pull_request_has_been_merged.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_pull_request/returns_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_update_pull_request/updates_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_create_pull_request_comment/creates_a_new_comment_on_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_create_pull_request_comment_reply/creates_a_new_reply_to_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_delete_pull_request_comment/deletes_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_update_pull_request_comment/updates_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_ref/returns_a_tags_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_refs/returns_all_refs.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_refs/returns_all_tag_refs.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_create_ref/creates_a_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_delete_ref/deletes_an_existing_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_update_ref/updates_a_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_all_repositories/returns_all_repositories_on_github.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_assignees/lists_all_the_available_assignees_owner_collaborators_.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_branches/returns_a_repository_s_branches.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_branches/returns_a_single_branch.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_check_assignee/checks_to_see_if_a_particular_user_is_an_assignee_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_collaborators/returns_a_repository_s_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_contributors/returns_repository_contributors.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_contributors/returns_repository_contributors_excluding_anonymous.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_create_repository/creates_a_repository_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_delete_subscription/returns_true_when_repo_subscription_deleted.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_fork/forks_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_languages/returns_a_repository_s_languages.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_network/returns_a_repository_s_network.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repositories/returns_a_user_s_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repositories/returns_authenticated_user_s_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository/returns_the_matching_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository_/returns_false_if_the_repository_doesn_t_exist.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository_/returns_true_if_the_repository_exists.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_star/stars_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_stargazers/returns_all_repository_stargazers.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_subscribers/lists_all_the_users_watching_the_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_subscription/returns_a_repository_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_tags/returns_a_repository_s_tags.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_unstar/unstars_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_unwatch/unwatches_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_update_subscription/updates_a_repository_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_watch/watches_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_watchers/returns_all_repository_watchers.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_add_collaborator/adds_a_repository_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_create_repository/creates_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_delete_repository/deletes_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_deploy_keys/returns_a_repository_s_deploy_keys.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_hooks/returns_a_repository_s_hooks.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_remove_collaborator/removes_a_repository_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_repository_teams/returns_all_repository_teams.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_update_repository/updates_the_matching_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_requiring_an_existing_deploy_key/_add_deploy_key/adds_a_repository_deploy_keys.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_create_hook/creates_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_edit_hook/edits_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_hook/returns_a_repository_s_single_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_remove_hook/removes_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_test_hook/tests_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Say/_say/returns_an_ASCII_octocat.json +1 -0
- data/spec/cassettes/Octokit_Client_Say/_say/returns_an_ASCII_octocat_with_custom_text.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status/returns_the_current_system_status.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status/returns_the_most_recent_status_messages.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status_last_message/returns_the_last_human_message.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_code_frequency_stats/returns_the_code_frequency_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_commit_activity_stats/returns_the_commit_activity_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_contributors_stats/returns_contributors_and_their_contribution_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_participation_stats/returns_the_owner_and_contributor_participation_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_punch_card_stats/returns_commit_count_by_hour_punch_card_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Statuses/_create_status/creates_status.json +1 -0
- data/spec/cassettes/Octokit_Client_Statuses/_statuses/lists_commit_statuses.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_add_email/adds_an_email_address.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_all_users/returns_all_GitHub_users.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_emails/returns_email_addresses.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_follow/follows_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_followers/returns_followers_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_followers/returns_the_authenticated_user_s_followers.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_following/returns_following_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_following/returns_the_authenticated_user_s_following.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_follows_/checks_if_the_authenticated_user_follows_another.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_keys/returns_public_keys_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_remove_email/removes_an_email_address.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred/returns_starred_repositories_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred/returns_starred_repositories_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred_/checks_if_the_authenticated_user_has_starred_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_subscriptions/returns_the_repositories_a_user_watches_for_notifications.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_subscriptions/returns_the_repositories_the_authenticated_user_watches_for_notifications.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_unfollow/unfollows_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_update_user/updates_a_user_profile.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user/returns_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user/returns_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user_keys/returns_public_keys_for_another_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_validate_credentials/validates_username_and_password.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_add_key/adds_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_key/returns_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_remove_key/removes_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_update_key/updates_a_public_key.json +1 -0
- data/spec/cassettes/delete_authorization.json +1 -0
- data/spec/cassettes/rate_limit.json +1 -0
- data/spec/cassettes/root.json +1 -0
- data/spec/fixtures/user.json +29 -18
- data/spec/fixtures/{user_token.json → web_flow_token.json} +0 -0
- data/spec/helper.rb +49 -22
- data/spec/octokit/client/authorizations_spec.rb +69 -80
- data/spec/octokit/client/commit_comments_spec.rb +62 -0
- data/spec/octokit/client/commits_spec.rb +93 -226
- data/spec/octokit/client/contents_spec.rb +64 -119
- data/spec/octokit/client/downloads_spec.rb +34 -38
- data/spec/octokit/client/emojis_spec.rb +5 -11
- data/spec/octokit/client/events_spec.rb +67 -51
- data/spec/octokit/client/gists_spec.rb +148 -142
- data/spec/octokit/client/gitignore_spec.rb +11 -14
- data/spec/octokit/client/issues_spec.rb +129 -161
- data/spec/octokit/client/labels_spec.rb +81 -114
- data/spec/octokit/client/legacy_search_spec.rb +42 -0
- data/spec/octokit/client/markdown_spec.rb +9 -12
- data/spec/octokit/client/meta_spec.rb +14 -0
- data/spec/octokit/client/milestones_spec.rb +40 -48
- data/spec/octokit/client/notifications_spec.rb +57 -113
- data/spec/octokit/client/objects_spec.rb +36 -74
- data/spec/octokit/client/organizations_spec.rb +140 -262
- data/spec/octokit/client/pub_sub_hubbub_spec.rb +58 -49
- data/spec/octokit/client/pull_requests_spec.rb +186 -0
- data/spec/octokit/client/rate_limit_spec.rb +40 -0
- data/spec/octokit/client/refs_spec.rb +47 -56
- data/spec/octokit/client/repositories_spec.rb +301 -438
- data/spec/octokit/client/say_spec.rb +8 -22
- data/spec/octokit/client/service_status_spec.rb +37 -0
- data/spec/octokit/client/stats_spec.rb +82 -32
- data/spec/octokit/client/statuses_spec.rb +11 -51
- data/spec/octokit/client/users_spec.rb +144 -348
- data/spec/octokit/client_spec.rb +345 -195
- data/spec/octokit/rate_limit_spec.rb +25 -0
- data/spec/octokit_spec.rb +31 -15
- metadata +585 -387
- data/lib/faraday/response/raise_octokit_error.rb +0 -25
- data/lib/octokit/client/github.rb +0 -19
- data/lib/octokit/client/pub_sub_hubbub/service_hooks.rb +0 -37
- data/lib/octokit/configuration.rb +0 -77
- data/lib/octokit/connection.rb +0 -53
- data/lib/octokit/request.rb +0 -110
- data/spec/faraday/response_spec.rb +0 -63
- data/spec/fixtures/all_repositories.json +0 -122
- data/spec/fixtures/all_users.json +0 -34
- data/spec/fixtures/authorization.json +0 -16
- data/spec/fixtures/authorizations.json +0 -66
- data/spec/fixtures/blob.json +0 -7
- data/spec/fixtures/blob_create.json +0 -3
- data/spec/fixtures/branches.json +0 -16
- data/spec/fixtures/code_frequency_stats.json +0 -897
- data/spec/fixtures/collaborators.json +0 -62
- data/spec/fixtures/comment.json +0 -14
- data/spec/fixtures/comments.json +0 -44
- data/spec/fixtures/commit.json +0 -50
- data/spec/fixtures/commit_activity_stats.json +0 -678
- data/spec/fixtures/commit_comment.json +0 -19
- data/spec/fixtures/commit_comment_create.json +0 -19
- data/spec/fixtures/commit_comment_update.json +0 -19
- data/spec/fixtures/commit_comments.json +0 -78
- data/spec/fixtures/commit_create.json +0 -25
- data/spec/fixtures/commits.json +0 -1414
- data/spec/fixtures/compare.json +0 -98
- data/spec/fixtures/contents.json +0 -14
- data/spec/fixtures/contributor_stats.json +0 -2196
- data/spec/fixtures/contributors.json +0 -891
- data/spec/fixtures/create_content.json +0 -44
- data/spec/fixtures/delete_content.json +0 -30
- data/spec/fixtures/download.json +0 -11
- data/spec/fixtures/download_create.json +0 -21
- data/spec/fixtures/downloads.json +0 -35
- data/spec/fixtures/emails.json +0 -4
- data/spec/fixtures/emojis.json +0 -500
- data/spec/fixtures/followers.json +0 -212
- data/spec/fixtures/following.json +0 -209
- data/spec/fixtures/forks.json +0 -872
- data/spec/fixtures/gist.json +0 -51
- data/spec/fixtures/gist_comment.json +0 -19
- data/spec/fixtures/gist_comment_create.json +0 -19
- data/spec/fixtures/gist_comment_update.json +0 -19
- data/spec/fixtures/gist_comments.json +0 -40
- data/spec/fixtures/gists.json +0 -548
- data/spec/fixtures/github_meta.json +0 -9
- data/spec/fixtures/github_status.json +0 -4
- data/spec/fixtures/github_status_last_message.json +0 -5
- data/spec/fixtures/github_status_messages.json +0 -12
- data/spec/fixtures/gitignore_template_ruby.json +0 -4
- data/spec/fixtures/gitignore_templates.json +0 -78
- data/spec/fixtures/hook.json +0 -18
- data/spec/fixtures/hooks.json +0 -70
- data/spec/fixtures/issue.json +0 -35
- data/spec/fixtures/issue_closed.json +0 -35
- data/spec/fixtures/issue_event.json +0 -42
- data/spec/fixtures/issue_events.json +0 -72
- data/spec/fixtures/issue_full.json +0 -38
- data/spec/fixtures/issues.json +0 -1562
- data/spec/fixtures/label.json +0 -5
- data/spec/fixtures/labels.json +0 -17
- data/spec/fixtures/languages.json +0 -5
- data/spec/fixtures/legacy/issues.json +0 -49
- data/spec/fixtures/legacy/repositories.json +0 -173
- data/spec/fixtures/legacy/users.json +0 -24
- data/spec/fixtures/list_commit_comments.json +0 -572
- data/spec/fixtures/markdown_gfm +0 -1
- data/spec/fixtures/merge.json +0 -47
- data/spec/fixtures/milestone.json +0 -11
- data/spec/fixtures/milestones.json +0 -28
- data/spec/fixtures/not_found.json +0 -3
- data/spec/fixtures/notification_thread.json +0 -32
- data/spec/fixtures/notifications.json +0 -32
- data/spec/fixtures/org_issues.json +0 -710
- data/spec/fixtures/organization-repositories.json +0 -4292
- data/spec/fixtures/organization-repository.json +0 -42
- data/spec/fixtures/organization.json +0 -18
- data/spec/fixtures/organization_events.json +0 -61
- data/spec/fixtures/organization_members.json +0 -576
- data/spec/fixtures/organization_public_events.json +0 -61
- data/spec/fixtures/organization_team_members.json +0 -16
- data/spec/fixtures/organization_team_repos.json +0 -62
- data/spec/fixtures/organizations.json +0 -44
- data/spec/fixtures/participation_stats.json +0 -110
- data/spec/fixtures/public_events.json +0 -1104
- data/spec/fixtures/public_gists.json +0 -968
- data/spec/fixtures/public_key.json +0 -5
- data/spec/fixtures/public_key_update.json +0 -5
- data/spec/fixtures/public_keys.json +0 -7
- data/spec/fixtures/pull_created.json +0 -138
- data/spec/fixtures/pull_request.json +0 -138
- data/spec/fixtures/pull_request_comment.json +0 -35
- data/spec/fixtures/pull_request_comment_create.json +0 -35
- data/spec/fixtures/pull_request_comment_reply.json +0 -35
- data/spec/fixtures/pull_request_comment_update.json +0 -35
- data/spec/fixtures/pull_request_comments.json +0 -35
- data/spec/fixtures/pull_request_commits.json +0 -45
- data/spec/fixtures/pull_request_files.json +0 -35
- data/spec/fixtures/pull_request_merged.json +0 -5
- data/spec/fixtures/pull_requests.json +0 -187
- data/spec/fixtures/pull_requests_comments.json +0 -82
- data/spec/fixtures/pull_update.json +0 -138
- data/spec/fixtures/punch_card_stats.json +0 -842
- data/spec/fixtures/readme.json +0 -14
- data/spec/fixtures/ref.json +0 -9
- data/spec/fixtures/ref_create.json +0 -29
- data/spec/fixtures/ref_update.json +0 -11
- data/spec/fixtures/refs.json +0 -38
- data/spec/fixtures/refs_tags.json +0 -29
- data/spec/fixtures/repo_assignees.json +0 -30
- data/spec/fixtures/repo_events.json +0 -1652
- data/spec/fixtures/repo_issues_events.json +0 -128
- data/spec/fixtures/repositories.json +0 -872
- data/spec/fixtures/repository.json +0 -34
- data/spec/fixtures/repository_issues_comments.json +0 -52
- data/spec/fixtures/repository_network_events.json +0 -155
- data/spec/fixtures/repository_notifications.json +0 -32
- data/spec/fixtures/say.txt +0 -22
- data/spec/fixtures/say_custom.txt +0 -22
- data/spec/fixtures/stargazers.json +0 -212
- data/spec/fixtures/starred.json +0 -1114
- data/spec/fixtures/starred_gists.json +0 -30
- data/spec/fixtures/status.json +0 -16
- data/spec/fixtures/statuses.json +0 -34
- data/spec/fixtures/subscribers.json +0 -9
- data/spec/fixtures/subscription.json +0 -8
- data/spec/fixtures/subscription_update.json +0 -8
- data/spec/fixtures/subscriptions.json +0 -39
- data/spec/fixtures/tag.json +0 -16
- data/spec/fixtures/tag_create.json +0 -16
- data/spec/fixtures/tags.json +0 -173
- data/spec/fixtures/team.json +0 -8
- data/spec/fixtures/teams.json +0 -12
- data/spec/fixtures/thread_subscription.json +0 -8
- data/spec/fixtures/thread_subscription_update.json +0 -8
- data/spec/fixtures/tree.json +0 -112
- data/spec/fixtures/tree_create.json +0 -14
- data/spec/fixtures/update_content.json +0 -44
- data/spec/fixtures/user_events.json +0 -101
- data/spec/fixtures/user_issues.json +0 -710
- data/spec/fixtures/user_performed_public_events.json +0 -78
- data/spec/fixtures/user_public_events.json +0 -78
- data/spec/fixtures/validation_failed.json +0 -11
- data/spec/fixtures/watched.json +0 -1022
- data/spec/fixtures/watchers.json +0 -182
- data/spec/octokit/client/github_spec.rb +0 -19
- data/spec/octokit/client/issue_events_spec.rb +0 -30
- data/spec/octokit/client/pub_sub_hubbub/service_hooks_spec.rb +0 -48
- data/spec/octokit/client/pulls_spec.rb +0 -210
@@ -1,5 +1,9 @@
|
|
1
1
|
module Octokit
|
2
2
|
class Client
|
3
|
+
|
4
|
+
# Methods for the Gitignore API
|
5
|
+
#
|
6
|
+
# @see http://developer.github.com/v3/gitignore/
|
3
7
|
module Gitignore
|
4
8
|
|
5
9
|
# Listing available gitignore templates.
|
@@ -14,7 +18,7 @@ module Octokit
|
|
14
18
|
# @example Git all the gitignore templates
|
15
19
|
# @client.gitignore_templates
|
16
20
|
def gitignore_templates(options={})
|
17
|
-
get "
|
21
|
+
get "gitignore/templates", options
|
18
22
|
end
|
19
23
|
|
20
24
|
# Get a gitignore template.
|
@@ -28,12 +32,12 @@ module Octokit
|
|
28
32
|
#
|
29
33
|
# @see http://developer.github.com/v3/gitignore/#get-a-single-template
|
30
34
|
#
|
31
|
-
# @return [
|
35
|
+
# @return [Sawyer::Resource] Gitignore template
|
32
36
|
#
|
33
37
|
# @example Get the Ruby gitignore template
|
34
38
|
# @client.gitignore_template('Ruby')
|
35
39
|
def gitignore_template(template_name, options={})
|
36
|
-
get "
|
40
|
+
get "gitignore/templates/#{template_name}", options
|
37
41
|
end
|
38
42
|
|
39
43
|
end
|
@@ -1,23 +1,15 @@
|
|
1
1
|
module Octokit
|
2
2
|
class Client
|
3
|
-
module Issues
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
# @param state [String] :state (open) <tt>open</tt> or <tt>closed</tt>.
|
10
|
-
# @return [Array] A list of issues matching the search term and state
|
11
|
-
# @example Search for 'test' in the open issues for sferik/rails_admin
|
12
|
-
# Octokit.search_issues("sferik/rails_admin", 'test', 'open')
|
13
|
-
def search_issues(repo, search_term, state='open', options={})
|
14
|
-
get("legacy/issues/search/#{Repository.new(repo)}/#{state}/#{search_term}", options)['issues']
|
15
|
-
end
|
4
|
+
# Methods for the Issues API
|
5
|
+
#
|
6
|
+
# @see http://developer.github.com/v3/issues/
|
7
|
+
module Issues
|
16
8
|
|
17
9
|
# List issues for a the authenticated user or repository
|
18
10
|
#
|
19
11
|
# @param repository [String, Repository, Hash] A GitHub repository.
|
20
|
-
# @param options [
|
12
|
+
# @param options [Sawyer::Resource] A customizable set of options.
|
21
13
|
# @option options [Integer] :milestone Milestone number.
|
22
14
|
# @option options [String] :state (open) State: <tt>open</tt> or <tt>closed</tt>.
|
23
15
|
# @option options [String] :assignee User login.
|
@@ -27,7 +19,7 @@ module Octokit
|
|
27
19
|
# @option options [String] :sort (created) Sort: <tt>created</tt>, <tt>updated</tt>, or <tt>comments</tt>.
|
28
20
|
# @option options [String] :direction (desc) Direction: <tt>asc</tt> or <tt>desc</tt>.
|
29
21
|
# @option options [Integer] :page (1) Page number.
|
30
|
-
# @return [Array] A list of issues for a repository.
|
22
|
+
# @return [Array<Sawyer::Resource>] A list of issues for a repository.
|
31
23
|
# @see http://developer.github.com/v3/issues/#list-issues-for-this-repository
|
32
24
|
# @example List issues for a repository
|
33
25
|
# Octokit.list_issues("sferik/rails_admin")
|
@@ -38,13 +30,14 @@ module Octokit
|
|
38
30
|
path = ''
|
39
31
|
path = "repos/#{Repository.new(repository)}" if repository
|
40
32
|
path += "/issues"
|
41
|
-
|
33
|
+
|
34
|
+
paginate path, options
|
42
35
|
end
|
43
36
|
alias :issues :list_issues
|
44
37
|
|
45
38
|
# List all issues across owned and member repositories for the authenticated user
|
46
39
|
#
|
47
|
-
# @param options [
|
40
|
+
# @param options [Sawyer::Resource] A customizable set of options.
|
48
41
|
# @option options [String] :filter (assigned) State: <tt>assigned</tt>, <tt>created</tt>, <tt>mentioned</tt>, <tt>subscribed</tt> or <tt>closed</tt>.
|
49
42
|
# @option options [String] :state (open) State: <tt>open</tt> or <tt>all</tt>.
|
50
43
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
@@ -53,19 +46,19 @@ module Octokit
|
|
53
46
|
# @option options [Integer] :page (1) Page number.
|
54
47
|
# @option options [String] :since Timestamp in ISO 8601
|
55
48
|
# format: YYYY-MM-DDTHH:MM:SSZ
|
56
|
-
# @return [Array] A list of issues for a repository.
|
49
|
+
# @return [Array<Sawyer::Resource>] A list of issues for a repository.
|
57
50
|
# @see http://developer.github.com/v3/issues/#list-issues
|
58
51
|
# @example List issues for the authenticted user across owned and member repositories
|
59
52
|
# @client = Octokit::Client.new(:login => 'foo', :password => 'bar')
|
60
53
|
# @client.user_issues
|
61
54
|
def user_issues(options={})
|
62
|
-
|
55
|
+
paginate 'user/issues', options
|
63
56
|
end
|
64
|
-
|
57
|
+
|
65
58
|
# List all issues for a given organization for the authenticated user
|
66
59
|
#
|
67
60
|
# @param org [String] Organization GitHub username.
|
68
|
-
# @param options [
|
61
|
+
# @param options [Sawyer::Resource] A customizable set of options.
|
69
62
|
# @option options [String] :filter (assigned) State: <tt>assigned</tt>, <tt>created</tt>, <tt>mentioned</tt>, <tt>subscribed</tt> or <tt>closed</tt>.
|
70
63
|
# @option options [String] :state (open) State: <tt>open</tt> or <tt>all</tt>.
|
71
64
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
@@ -74,13 +67,13 @@ module Octokit
|
|
74
67
|
# @option options [Integer] :page (1) Page number.
|
75
68
|
# @option options [String] :since Timestamp in ISO 8601
|
76
69
|
# format: YYYY-MM-DDTHH:MM:SSZ
|
77
|
-
# @return [Array] A list of issues for a repository.
|
70
|
+
# @return [Array<Sawyer::Resource>] A list of issues for a repository.
|
78
71
|
# @see http://developer.github.com/v3/issues/#list-issues
|
79
72
|
# @example List issues for the authenticted user across owned and member repositories
|
80
73
|
# @client = Octokit::Client.new(:login => 'foo', :password => 'bar')
|
81
74
|
# @client.user_issues
|
82
75
|
def org_issues(org, options={})
|
83
|
-
|
76
|
+
paginate "orgs/#{org}/issues", options
|
84
77
|
end
|
85
78
|
|
86
79
|
# Create an issue for a repository
|
@@ -92,12 +85,18 @@ module Octokit
|
|
92
85
|
# @option options [String] :assignee User login.
|
93
86
|
# @option options [Integer] :milestone Milestone number.
|
94
87
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
95
|
-
# @return [
|
88
|
+
# @return [Sawyer::Resource] Your newly created issue
|
96
89
|
# @see http://developer.github.com/v3/issues/#create-an-issue
|
97
90
|
# @example Create a new Issues for a repository
|
98
91
|
# Octokit.create_issue("sferik/rails_admin", 'Updated Docs', 'Added some extra links')
|
99
92
|
def create_issue(repo, title, body, options={})
|
100
|
-
|
93
|
+
options[:labels] = case options[:labels]
|
94
|
+
when String
|
95
|
+
options[:labels].split(",").map(&:strip)
|
96
|
+
when Array
|
97
|
+
options[:labels]
|
98
|
+
end
|
99
|
+
post "repos/#{Repository.new(repo)}/issues", options.merge({:title => title, :body => body})
|
101
100
|
end
|
102
101
|
alias :open_issue :create_issue
|
103
102
|
|
@@ -105,12 +104,12 @@ module Octokit
|
|
105
104
|
#
|
106
105
|
# @param repo [String, Repository, Hash] A GitHub repository
|
107
106
|
# @param number [String] Number ID of the issue
|
108
|
-
# @return [
|
107
|
+
# @return [Sawyer::Resource] The issue you requested, if it exists
|
109
108
|
# @see http://developer.github.com/v3/issues/#get-a-single-issue
|
110
109
|
# @example Get issue #25 from pengwynn/octokit
|
111
110
|
# Octokit.issue("pengwynn/octokit", "25")
|
112
111
|
def issue(repo, number, options={})
|
113
|
-
get
|
112
|
+
get "repos/#{Repository.new(repo)}/issues/#{number}", options
|
114
113
|
end
|
115
114
|
|
116
115
|
# Close an issue
|
@@ -121,12 +120,12 @@ module Octokit
|
|
121
120
|
# @option options [String] :assignee User login.
|
122
121
|
# @option options [Integer] :milestone Milestone number.
|
123
122
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
124
|
-
# @return [
|
123
|
+
# @return [Sawyer::Resource] The updated Issue
|
125
124
|
# @see http://developer.github.com/v3/issues/#edit-an-issue
|
126
125
|
# @example Close Issue #25 from pengwynn/octokit
|
127
126
|
# Octokit.close_issue("pengwynn/octokit", "25")
|
128
127
|
def close_issue(repo, number, options={})
|
129
|
-
patch
|
128
|
+
patch "repos/#{Repository.new(repo)}/issues/#{number}", options.merge({:state => "closed"})
|
130
129
|
end
|
131
130
|
|
132
131
|
# Reopen an issue
|
@@ -137,12 +136,12 @@ module Octokit
|
|
137
136
|
# @option options [String] :assignee User login.
|
138
137
|
# @option options [Integer] :milestone Milestone number.
|
139
138
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
140
|
-
# @return [
|
139
|
+
# @return [Sawyer::Resource] The updated Issue
|
141
140
|
# @see http://developer.github.com/v3/issues/#edit-an-issue
|
142
141
|
# @example Reopen Issue #25 from pengwynn/octokit
|
143
142
|
# Octokit.reopen_issue("pengwynn/octokit", "25")
|
144
143
|
def reopen_issue(repo, number, options={})
|
145
|
-
patch
|
144
|
+
patch "repos/#{Repository.new(repo)}/issues/#{number}", options.merge({:state => "open"})
|
146
145
|
end
|
147
146
|
|
148
147
|
# Update an issue
|
@@ -156,12 +155,12 @@ module Octokit
|
|
156
155
|
# @option options [Integer] :milestone Milestone number.
|
157
156
|
# @option options [String] :labels List of comma separated Label names. Example: <tt>bug,ui,@high</tt>.
|
158
157
|
# @option options [String] :state State of the issue. <tt>open</tt> or <tt>closed</tt>
|
159
|
-
# @return [
|
158
|
+
# @return [Sawyer::Resource] The updated Issue
|
160
159
|
# @see http://developer.github.com/v3/issues/#edit-an-issue
|
161
160
|
# @example Change the title of Issue #25
|
162
161
|
# Octokit.update_issue("pengwynn/octokit", "25", "A new title", "the same body"")
|
163
162
|
def update_issue(repo, number, title, body, options={})
|
164
|
-
patch
|
163
|
+
patch "repos/#{Repository.new(repo)}/issues/#{number}", options.merge({:title => title, :body => body})
|
165
164
|
end
|
166
165
|
|
167
166
|
# Get all comments attached to issues for the repository
|
@@ -176,7 +175,7 @@ module Octokit
|
|
176
175
|
# @option options [String] :since Timestamp in ISO 8601
|
177
176
|
# format: YYYY-MM-DDTHH:MM:SSZ
|
178
177
|
#
|
179
|
-
# @return [Array] List of issues comments.
|
178
|
+
# @return [Array<Sawyer::Resource>] List of issues comments.
|
180
179
|
#
|
181
180
|
# @see http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository
|
182
181
|
#
|
@@ -186,35 +185,35 @@ module Octokit
|
|
186
185
|
# @example Get issues comments, sort by updated descending since a time
|
187
186
|
# @client.issues_comments("pengwynn/octokit", {
|
188
187
|
# :sort => 'desc',
|
189
|
-
# :direction => '
|
188
|
+
# :direction => 'asc',
|
190
189
|
# :since => '2010-05-04T23:45:02Z'
|
191
190
|
# })
|
192
191
|
def issues_comments(repo, options={})
|
193
|
-
|
192
|
+
paginate "repos/#{Repository.new repo}/issues/comments", options
|
194
193
|
end
|
195
194
|
|
196
195
|
# Get all comments attached to an issue
|
197
196
|
#
|
198
197
|
# @param repo [String, Repository, Hash] A GitHub repository
|
199
198
|
# @param number [String] Number ID of the issue
|
200
|
-
# @return [Array] Array of comments that belong to an issue
|
199
|
+
# @return [Array<Sawyer::Resource>] Array of comments that belong to an issue
|
201
200
|
# @see http://developer.github.com/v3/issues/comments
|
202
201
|
# @example Get comments for issue #25 from pengwynn/octokit
|
203
202
|
# Octokit.issue_comments("pengwynn/octokit", "25")
|
204
203
|
def issue_comments(repo, number, options={})
|
205
|
-
|
204
|
+
paginate "repos/#{Repository.new(repo)}/issues/#{number}/comments", options
|
206
205
|
end
|
207
206
|
|
208
207
|
# Get a single comment attached to an issue
|
209
208
|
#
|
210
209
|
# @param repo [String, Repository, Hash] A GitHub repository
|
211
210
|
# @param number [String] Number ID of the comment
|
212
|
-
# @return [
|
211
|
+
# @return [Sawyer::Resource] The specific comment in question
|
213
212
|
# @see http://developer.github.com/v3/issues/comments/#get-a-single-comment
|
214
213
|
# @example Get comment #1194549 from an issue on pengwynn/octokit
|
215
214
|
# Octokit.issue_comments("pengwynn/octokit", 1194549)
|
216
215
|
def issue_comment(repo, number, options={})
|
217
|
-
|
216
|
+
paginate "repos/#{Repository.new(repo)}/issues/comments/#{number}", options
|
218
217
|
end
|
219
218
|
|
220
219
|
# Add a comment to an issue
|
@@ -222,12 +221,12 @@ module Octokit
|
|
222
221
|
# @param repo [String, Repository, Hash] A GitHub repository
|
223
222
|
# @param number [Integer] Issue number
|
224
223
|
# @param comment [String] Comment to be added
|
225
|
-
# @return [
|
224
|
+
# @return [Sawyer::Resource] Comment
|
226
225
|
# @see http://developer.github.com/v3/issues/comments/#create-a-comment
|
227
226
|
# @example Add the comment "Almost to v1" to Issue #23 on pengwynn/octokit
|
228
227
|
# Octokit.add_comment("pengwynn/octokit", 23, "Almost to v1")
|
229
228
|
def add_comment(repo, number, comment, options={})
|
230
|
-
post
|
229
|
+
post "repos/#{Repository.new(repo)}/issues/#{number}/comments", options.merge({:body => comment})
|
231
230
|
end
|
232
231
|
|
233
232
|
# Update a single comment on an issue
|
@@ -235,12 +234,12 @@ module Octokit
|
|
235
234
|
# @param repo [String, Repository, Hash] A GitHub repository
|
236
235
|
# @param number [Integer] Comment number
|
237
236
|
# @param comment [String] Body of the comment which will replace the existing body.
|
238
|
-
# @return [
|
237
|
+
# @return [Sawyer::Resource] Comment
|
239
238
|
# @see http://developer.github.com/v3/issues/comments/#edit-a-comment
|
240
239
|
# @example Update the comment #1194549 with body "I've started this on my 25-issue-comments-v3 fork" on an issue on pengwynn/octokit
|
241
240
|
# Octokit.update_comment("pengwynn/octokit", 1194549, "Almost to v1, added this on my fork")
|
242
241
|
def update_comment(repo, number, comment, options={})
|
243
|
-
patch
|
242
|
+
patch "repos/#{Repository.new(repo)}/issues/comments/#{number}", options.merge({:body => comment})
|
244
243
|
end
|
245
244
|
|
246
245
|
# Delete a single comment
|
@@ -252,35 +251,8 @@ module Octokit
|
|
252
251
|
# @example Delete the comment #1194549 on an issue on pengwynn/octokit
|
253
252
|
# Octokit.delete_comment("pengwynn/octokit", 1194549)
|
254
253
|
def delete_comment(repo, number, options={})
|
255
|
-
boolean_from_response
|
256
|
-
end
|
257
|
-
|
258
|
-
# List events for an Issue
|
259
|
-
#
|
260
|
-
# @param repo [String, Repository, Hash] A GitHub repository
|
261
|
-
# @param number [Integer] Issue number
|
262
|
-
#
|
263
|
-
# @return [Array] Array of events for that issue
|
264
|
-
# @see http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
265
|
-
# @example List all issues events for issue #38 on pengwynn/octokit
|
266
|
-
# Octokit.issue_events("pengwynn/octokit", 38)
|
267
|
-
def issue_events(repo, number, options={})
|
268
|
-
get("repos/#{Repository.new(repo)}/issues/#{number}/events", options)
|
254
|
+
boolean_from_response :delete, "repos/#{Repository.new(repo)}/issues/comments/#{number}", options
|
269
255
|
end
|
270
|
-
|
271
|
-
# Get information on a single Issue Event
|
272
|
-
#
|
273
|
-
# @param repo [String, Repository, Hash] A GitHub repository
|
274
|
-
# @param number [Integer] Event number
|
275
|
-
#
|
276
|
-
# @return [Event] A single Event for an Issue
|
277
|
-
# @see http://developer.github.com/v3/issues/events/#get-a-single-event
|
278
|
-
# @example Get Event information for ID 3094334 (a pull request was closed)
|
279
|
-
# Octokit.issue_event("pengwynn/octokit", 3094334)
|
280
|
-
def issue_event(repo, number, options={})
|
281
|
-
get("repos/#{Repository.new(repo)}/issues/events/#{number}", options)
|
282
|
-
end
|
283
|
-
|
284
256
|
end
|
285
257
|
end
|
286
258
|
end
|
@@ -2,29 +2,33 @@ require 'cgi'
|
|
2
2
|
|
3
3
|
module Octokit
|
4
4
|
class Client
|
5
|
+
|
6
|
+
# Methods for the Issue Labels API
|
7
|
+
#
|
8
|
+
# @see http://developer.github.com/v3/issues/labels/
|
5
9
|
module Labels
|
6
10
|
|
7
11
|
# List available labels for a repository
|
8
12
|
#
|
9
13
|
# @param repo [String, Repository, Hash] A GitHub repository
|
10
|
-
# @return [Array] A list of the labels across the repository
|
14
|
+
# @return [Array<Sawyer::Resource>] A list of the labels across the repository
|
11
15
|
# @see http://developer.github.com/v3/issues/labels/
|
12
16
|
# @example List labels for pengwynn/octokit
|
13
17
|
# Octokit.labels("pengwynn/octokit")
|
14
18
|
def labels(repo, options={})
|
15
|
-
get
|
19
|
+
get "repos/#{Repository.new(repo)}/labels", options
|
16
20
|
end
|
17
21
|
|
18
22
|
# Get single label for a repository
|
19
23
|
#
|
20
24
|
# @param repo [String, Repository, Hash] A GitHub repository
|
21
25
|
# @param name [String] Name of the label
|
22
|
-
# @return [
|
26
|
+
# @return [Sawyer::Resource] A single label from the repository
|
23
27
|
# @see http://developer.github.com/v3/issues/labels/#get-a-single-label
|
24
28
|
# @example Get the "V3 Addition" label from pengwynn/octokit
|
25
29
|
# Octokit.labels("pengwynn/octokit")
|
26
30
|
def label(repo, name, options={})
|
27
|
-
get
|
31
|
+
get "repos/#{Repository.new(repo)}/labels/#{CGI.escape(name)}", options
|
28
32
|
end
|
29
33
|
|
30
34
|
# Add a label to a repository
|
@@ -32,12 +36,12 @@ module Octokit
|
|
32
36
|
# @param repo [String, Repository, Hash] A GitHub repository
|
33
37
|
# @param label [String] A new label
|
34
38
|
# @param color [String] A color, in hex, without the leading #
|
35
|
-
# @return [
|
39
|
+
# @return [Sawyer::Resource] The new label
|
36
40
|
# @see http://developer.github.com/v3/issues/labels/
|
37
41
|
# @example Add a new label "Version 1.0" with color "#cccccc"
|
38
42
|
# Octokit.add_label("pengwynn/octokit", "Version 1.0", "cccccc")
|
39
43
|
def add_label(repo, label, color="ffffff", options={})
|
40
|
-
post
|
44
|
+
post "repos/#{Repository.new(repo)}/labels", options.merge({:name => label, :color => color})
|
41
45
|
end
|
42
46
|
|
43
47
|
# Update a label
|
@@ -47,12 +51,12 @@ module Octokit
|
|
47
51
|
# @param options [Hash] A customizable set of options.
|
48
52
|
# @option options [String] :title An updated label name
|
49
53
|
# @option options [String] :color An updated color value, in hex, without leading #
|
50
|
-
# @return [
|
54
|
+
# @return [Sawyer::Resource] The updated label
|
51
55
|
# @see http://developer.github.com/v3/issues/labels/#update-a-label
|
52
56
|
# @example Update the label "Version 1.0" with new color "#cceeaa"
|
53
57
|
# Octokit.update_label("pengwynn/octokit", "Version 1.0", {:color => "cceeaa"})
|
54
58
|
def update_label(repo, label, options={})
|
55
|
-
patch
|
59
|
+
patch "repos/#{Repository.new(repo)}/labels/#{CGI.escape(label)}", options
|
56
60
|
end
|
57
61
|
|
58
62
|
# Delete a label from a repository.
|
@@ -67,7 +71,7 @@ module Octokit
|
|
67
71
|
# @example Delete the label "Version 1.0" from the repository.
|
68
72
|
# Octokit.delete_label!("pengwynn/octokit", "Version 1.0")
|
69
73
|
def delete_label!(repo, label, options={})
|
70
|
-
boolean_from_response
|
74
|
+
boolean_from_response :delete, "repos/#{Repository.new(repo)}/labels/#{CGI.escape(label)}", options
|
71
75
|
end
|
72
76
|
|
73
77
|
# Remove a label from an Issue
|
@@ -77,13 +81,13 @@ module Octokit
|
|
77
81
|
# @param repo [String, Repository, Hash] A GitHub repository
|
78
82
|
# @param number [String] Number ID of the issue
|
79
83
|
# @param label [String] String name of the label
|
80
|
-
# @return [Array] A list of the labels currently on the issue
|
84
|
+
# @return [Array<Sawyer::Resource>] A list of the labels currently on the issue
|
81
85
|
# @see http://rubydoc.info/gems/faraday/0.5.3/Faraday/Response
|
82
86
|
# @see http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue
|
83
87
|
# @example Remove the label "Version 1.0" from the repository.
|
84
88
|
# Octokit.remove_label("pengwynn/octokit", 23, "Version 1.0")
|
85
89
|
def remove_label(repo, number, label, options={})
|
86
|
-
delete
|
90
|
+
delete "repos/#{Repository.new(repo)}/issues/#{number}/labels/#{CGI.escape(label)}", options
|
87
91
|
end
|
88
92
|
|
89
93
|
# Remove all label from an Issue
|
@@ -97,19 +101,19 @@ module Octokit
|
|
97
101
|
# @example Remove all labels from Issue #23
|
98
102
|
# Octokit.remove_all_labels("pengwynn/octokit", 23)
|
99
103
|
def remove_all_labels(repo, number, options={})
|
100
|
-
boolean_from_response
|
104
|
+
boolean_from_response :delete, "repos/#{Repository.new(repo)}/issues/#{number}/labels", options
|
101
105
|
end
|
102
106
|
|
103
107
|
# List labels for a given issue
|
104
108
|
#
|
105
109
|
# @param repo [String, Repository, Hash] A GitHub repository
|
106
110
|
# @param number [String] Number ID of the issue
|
107
|
-
# @return [Array] A list of the labels currently on the issue
|
111
|
+
# @return [Array<Sawyer::Resource>] A list of the labels currently on the issue
|
108
112
|
# @see http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue
|
109
113
|
# @example List labels for pengwynn/octokit
|
110
114
|
# Octokit.labels("pengwynn/octokit")
|
111
115
|
def labels_for_issue(repo, number, options={})
|
112
|
-
get
|
116
|
+
get "repos/#{Repository.new(repo)}/issues/#{number}/labels", options
|
113
117
|
end
|
114
118
|
|
115
119
|
# Add label(s) to an Issue
|
@@ -117,12 +121,12 @@ module Octokit
|
|
117
121
|
# @param repo [String, Repository, Hash] A Github repository
|
118
122
|
# @param number [String] Number ID of the issue
|
119
123
|
# @param labels [Array] An array of labels to apply to this Issue
|
120
|
-
# @return [Array] A list of the labels currently on the issue
|
124
|
+
# @return [Array<Sawyer::Resource>] A list of the labels currently on the issue
|
121
125
|
# @see http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue
|
122
126
|
# @example Add two labels for pengwynn/octokit
|
123
127
|
# Octokit.add_labels_to_an_issue("pengwynn/octokit", 10, ['V3 Transition', 'Improvement'])
|
124
128
|
def add_labels_to_an_issue(repo, number, labels)
|
125
|
-
post
|
129
|
+
post "repos/#{Repository.new(repo)}/issues/#{number}/labels", labels
|
126
130
|
end
|
127
131
|
|
128
132
|
# Replace all labels on an Issue
|
@@ -130,24 +134,24 @@ module Octokit
|
|
130
134
|
# @param repo [String, Repository, Hash] A Github repository
|
131
135
|
# @param number [String] Number ID of the issue
|
132
136
|
# @param labels [Array] An array of labels to use as replacement
|
133
|
-
# @return [Array] A list of the labels currently on the issue
|
137
|
+
# @return [Array<Sawyer::Resource>] A list of the labels currently on the issue
|
134
138
|
# @see http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue
|
135
139
|
# @example Replace labels for pengwynn/octokit Issue #10
|
136
140
|
# Octokit.replace_all_labels("pengwynn/octokit", 10, ['V3 Transition', 'Improvement'])
|
137
141
|
def replace_all_labels(repo, number, labels, options={})
|
138
|
-
put
|
142
|
+
put "repos/#{Repository.new(repo)}/issues/#{number}/labels", labels
|
139
143
|
end
|
140
144
|
|
141
145
|
# Get labels for every issue in a milestone
|
142
146
|
#
|
143
147
|
# @param repo [String, Repository, Hash] A GitHub repository
|
144
148
|
# @param number [String] Number ID of the milestone
|
145
|
-
# @return [Array] A list of the labels across the milestone
|
149
|
+
# @return [Array<Sawyer::Resource>] A list of the labels across the milestone
|
146
150
|
# @see http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone
|
147
151
|
# @example List all labels for milestone #2 on pengwynn/octokit
|
148
152
|
# Octokit.labels_for_milestone("pengwynn/octokit", 2)
|
149
153
|
def labels_for_milestone(repo, number, options={})
|
150
|
-
get
|
154
|
+
get "repos/#{Repository.new(repo)}/milestones/#{number}/labels", options
|
151
155
|
end
|
152
156
|
|
153
157
|
end
|