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,45 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"sha": "2097821c7c5aa4dc02a2cc54d5ca51968b373f95",
|
4
|
-
"parents": [
|
5
|
-
{
|
6
|
-
"sha": "9c5d4c76b42f535bc796f46d0bf7a5526b6066bb",
|
7
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/commits/9c5d4c76b42f535bc796f46d0bf7a5526b6066bb"
|
8
|
-
}
|
9
|
-
],
|
10
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/commits/2097821c7c5aa4dc02a2cc54d5ca51968b373f95",
|
11
|
-
"author": {
|
12
|
-
"gravatar_id": "1ce18b10bd8f911566c5577042b6a44c",
|
13
|
-
"login": "koichiro",
|
14
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1ce18b10bd8f911566c5577042b6a44c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
15
|
-
"url": "https://api.github.com/users/koichiro",
|
16
|
-
"id": 9646
|
17
|
-
},
|
18
|
-
"committer": {
|
19
|
-
"gravatar_id": "1ce18b10bd8f911566c5577042b6a44c",
|
20
|
-
"login": "koichiro",
|
21
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1ce18b10bd8f911566c5577042b6a44c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
22
|
-
"url": "https://api.github.com/users/koichiro",
|
23
|
-
"id": 9646
|
24
|
-
},
|
25
|
-
"commit": {
|
26
|
-
"tree": {
|
27
|
-
"sha": "72bebc0a0a87b11b7ce4f1b766d2af375fc4cc24",
|
28
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/git/trees/72bebc0a0a87b11b7ce4f1b766d2af375fc4cc24"
|
29
|
-
},
|
30
|
-
"message": "Added new paramater for github_url\n\nSupport github alternative sites.\nfor example: github:enterprise https://enterprise.github.com/",
|
31
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/git/commits/2097821c7c5aa4dc02a2cc54d5ca51968b373f95",
|
32
|
-
"comment_count": 0,
|
33
|
-
"author": {
|
34
|
-
"date": "2012-01-31T02:47:47-08:00",
|
35
|
-
"email": "koichiro@meadowy.org",
|
36
|
-
"name": "Koichiro Ohba"
|
37
|
-
},
|
38
|
-
"committer": {
|
39
|
-
"date": "2012-01-31T02:47:47-08:00",
|
40
|
-
"email": "koichiro@meadowy.org",
|
41
|
-
"name": "Koichiro Ohba"
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
45
|
-
]
|
@@ -1,35 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"filename": "README.md",
|
4
|
-
"raw_url": "https://github.com/pengwynn/octokit/raw/55b0fffd7e73fc9e098beee486b31e0fba343e40/README.md",
|
5
|
-
"blob_url": "https://github.com/pengwynn/octokit/blob/55b0fffd7e73fc9e098beee486b31e0fba343e40/README.md",
|
6
|
-
"status": "modified",
|
7
|
-
"additions": 28,
|
8
|
-
"sha": "050957c6c397050ac809b4350971d15103cdea54",
|
9
|
-
"patch": "@@ -64,6 +64,34 @@ client = Octokit::Client.new(:login => \"me\", :oauth_token => \"oauth2token\")\n client.follow(\"sferik\")\n ```\n \n+## Rate Limiting and Conditional Requests\n+GitHub limits API requests to 5000 per hour.\n+\n+```ruby\n+client = Octokit::Client.new(:login => \"me\", :oauth_token => \"oauth2token\")\n+client.ratelimit_remaining # 5000\n+client.repositories\n+client.ratelimit_remaining # 4999\n+```\n+\n+You can make conditional requests which will only return data to you if there\n+have been changes since your last request. Pass either the `since` or `etag`\n+option to any API call to perform a conditional request, and immediately after\n+the request is complete the client will have the attributes `last_modified` and\n+`etag` populated to be used for the next identical API call.\n+\n+```ruby\n+client = Octokit::Client(:login => \"me\", :oauth_token => \"oauth2token\")\n+client.ratelimit_remaining # 5000\n+client.repositories # (Returns an array of repositories)\n+client.ratelimit_remaining # 4999\n+repos_last_modified = client.last_modified\n+\n+client.repositories(nil,\n+ :since => repos_last_modified) # nil\n+client.ratelimit_remaining # 4999\n+```\n+\n ## Using with GitHub Enterprise\n \n To use with [GitHub Enterprise](https://enterprise.github.com/), you'll need to",
|
10
|
-
"deletions": 0,
|
11
|
-
"changes": 28
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"filename": "lib/octokit/client.rb",
|
15
|
-
"raw_url": "https://github.com/pengwynn/octokit/raw/55b0fffd7e73fc9e098beee486b31e0fba343e40/lib/octokit/client.rb",
|
16
|
-
"blob_url": "https://github.com/pengwynn/octokit/blob/55b0fffd7e73fc9e098beee486b31e0fba343e40/lib/octokit/client.rb",
|
17
|
-
"status": "modified",
|
18
|
-
"additions": 1,
|
19
|
-
"sha": "feb96c24ec0a8a0bedf8d55289693e1de59cec40",
|
20
|
-
"patch": "@@ -28,6 +28,7 @@\n module Octokit\n class Client\n attr_accessor(*Configuration::VALID_OPTIONS_KEYS)\n+ attr_accessor(:last_modified, :etag)\n \n def initialize(options={})\n options = Octokit.options.merge(options)",
|
21
|
-
"deletions": 0,
|
22
|
-
"changes": 1
|
23
|
-
},
|
24
|
-
{
|
25
|
-
"filename": "lib/octokit/request.rb",
|
26
|
-
"raw_url": "https://github.com/pengwynn/octokit/raw/55b0fffd7e73fc9e098beee486b31e0fba343e40/lib/octokit/request.rb",
|
27
|
-
"blob_url": "https://github.com/pengwynn/octokit/blob/55b0fffd7e73fc9e098beee486b31e0fba343e40/lib/octokit/request.rb",
|
28
|
-
"status": "modified",
|
29
|
-
"additions": 6,
|
30
|
-
"sha": "5af4a1f92333ea52d35475fdea108564f617a7eb",
|
31
|
-
"patch": "@@ -39,6 +39,9 @@ def ratelimit_remaining\n def request(method, path, options, version, authenticate, raw, force_urlencoded)\n path.sub(%r{^/}, '') #leading slash in path fails in github:enterprise\n response = connection(authenticate, raw, version, force_urlencoded).send(method) do |request|\n+ request.headers['If-Modified-Since'] = options.delete(:since) unless options[:since].nil?\n+ request.headers['If-None-Match'] = options.delete(:etag) unless options[:etag].nil?\n+\n case method\n when :delete, :get\n if auto_traversal && per_page.nil?\n@@ -58,6 +61,9 @@ def request(method, path, options, version, authenticate, raw, force_urlencoded)\n request.headers['Host'] = Octokit.request_host if Octokit.request_host\n end\n \n+ self.last_modified = response.headers['Last-Modified']\n+ self.etag = response.headers['ETag'].gsub('\"', '') unless response.headers['ETag'].nil?\n+\n if raw\n response\n elsif auto_traversal && ( next_url = links(response)[\"next\"] )",
|
32
|
-
"deletions": 0,
|
33
|
-
"changes": 6
|
34
|
-
}
|
35
|
-
]
|
@@ -1,187 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"_links": {
|
4
|
-
"comments": {
|
5
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/issues/928/comments"
|
6
|
-
},
|
7
|
-
"html": {
|
8
|
-
"href": "https://github.com/sferik/rails_admin/pull/928"
|
9
|
-
},
|
10
|
-
"review_comments": {
|
11
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/928/comments"
|
12
|
-
},
|
13
|
-
"self": {
|
14
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/928"
|
15
|
-
}
|
16
|
-
},
|
17
|
-
"body": "Without this patch, rails\\_admin skips hidden fields when it's handing out classnames.\r\n\r\n_Bummer._\r\n\r\nBecause, I found a case where I really wanted to hook into classnames on hidden fields, too.\r\n\r\nThe case goes like this: I want to drag-and-drop nested items around, re-order them. So, I hacked together something using the `position` attribute rails\\_admin already favors, and I add `position` to the form as a hidden input.\r\nNext, I have to get jQuery UI's Sortables to _find_ that hidden `position` input. But all I have is a name and an id to work with. So unless I do something ugly like `$(\"input[name$='[position]']\")` I can't find the hidden inputs and add behavior to them.\r\n\r\nIt seemed that if I just had a classname to grab onto, it would make the code much more clear.\r\n\r\nSo, with the code in this pull request, now I get a `hidden_position_field` on the div containing the `position` inputs. Now I can update the position values whenever I drag and drop a nested item around. \r\n\r\n_Totally sweet._\r\n\r\nHow about an example? Well, given a configuration like this:\r\n\r\n config.model Thing do\r\n nested do\r\n field :position, :hidden do\r\n help '' # no caption\r\n end\r\n field :description\r\n end\r\n end\r\n\r\n\u2026 I can setup jQuery UI's Sortables on the nested items like so:\r\n\r\n $(function() {\r\n var sortable_model = 'things';\r\n \r\n var sortable_target = '#' + sortable_model + '_attributes_field';\r\n var sortable_input_field = '.hidden_position_field';\r\n var sortable_items = 'div.fields';\r\n $(sortable_target).sortable({\r\n items: sortable_items,\r\n cursor: 'all-scroll',\r\n tolerance: 'pointer',\r\n scroll: true,\r\n scrollSensitivity: 100,\r\n placeholder: 'ui-state-highlight',\r\n forcePlaceholderSize: true,\r\n forceHelperSize: true,\r\n update: function() {\r\n $.each($(sortable_target).find(sortable_input_field), function(n, obj) {\r\n $(obj).find('input').val(n);\r\n });\r\n }\r\n });\r\n });\r\n",
|
18
|
-
"closed_at": null,
|
19
|
-
"created_at": "2012-01-15T06:53:07Z",
|
20
|
-
"diff_url": "https://github.com/sferik/rails_admin/pull/928.diff",
|
21
|
-
"html_url": "https://github.com/sferik/rails_admin/pull/928",
|
22
|
-
"id": 691424,
|
23
|
-
"issue_url": "https://github.com/sferik/rails_admin/issues/928",
|
24
|
-
"merged_at": null,
|
25
|
-
"number": 928,
|
26
|
-
"patch_url": "https://github.com/sferik/rails_admin/pull/928.patch",
|
27
|
-
"state": "open",
|
28
|
-
"title": "Give hidden input fields a field-specific classname",
|
29
|
-
"updated_at": "2012-01-16T04:09:55Z",
|
30
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/pulls/928",
|
31
|
-
"user": {
|
32
|
-
"avatar_url": "https://secure.gravatar.com/avatar/9c1b01901ef90d3908c63fd3118938c7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
33
|
-
"gravatar_id": "9c1b01901ef90d3908c63fd3118938c7",
|
34
|
-
"id": 23459,
|
35
|
-
"login": "audionerd",
|
36
|
-
"url": "https://api.github.com/users/audionerd"
|
37
|
-
}
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"_links": {
|
41
|
-
"comments": {
|
42
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/issues/833/comments"
|
43
|
-
},
|
44
|
-
"html": {
|
45
|
-
"href": "https://github.com/sferik/rails_admin/pull/833"
|
46
|
-
},
|
47
|
-
"review_comments": {
|
48
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/833/comments"
|
49
|
-
},
|
50
|
-
"self": {
|
51
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/833"
|
52
|
-
}
|
53
|
-
},
|
54
|
-
"body": "Works the same as enum, but use 'multi' keyword to create multi select form.",
|
55
|
-
"closed_at": null,
|
56
|
-
"created_at": "2011-11-15T15:13:44Z",
|
57
|
-
"diff_url": "https://github.com/sferik/rails_admin/pull/833.diff",
|
58
|
-
"html_url": "https://github.com/sferik/rails_admin/pull/833",
|
59
|
-
"id": 496043,
|
60
|
-
"issue_url": "https://github.com/sferik/rails_admin/issues/833",
|
61
|
-
"merged_at": null,
|
62
|
-
"number": 833,
|
63
|
-
"patch_url": "https://github.com/sferik/rails_admin/pull/833.patch",
|
64
|
-
"state": "open",
|
65
|
-
"title": "Added multi select option to enum",
|
66
|
-
"updated_at": "2011-11-23T15:32:23Z",
|
67
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/pulls/833",
|
68
|
-
"user": {
|
69
|
-
"avatar_url": "https://secure.gravatar.com/avatar/150b7dfb3c10c343999c41183f3253cd?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
70
|
-
"gravatar_id": "150b7dfb3c10c343999c41183f3253cd",
|
71
|
-
"id": 548535,
|
72
|
-
"login": "stiller",
|
73
|
-
"url": "https://api.github.com/users/stiller"
|
74
|
-
}
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"_links": {
|
78
|
-
"comments": {
|
79
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/issues/827/comments"
|
80
|
-
},
|
81
|
-
"html": {
|
82
|
-
"href": "https://github.com/sferik/rails_admin/pull/827"
|
83
|
-
},
|
84
|
-
"review_comments": {
|
85
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/827/comments"
|
86
|
-
},
|
87
|
-
"self": {
|
88
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/827"
|
89
|
-
}
|
90
|
-
},
|
91
|
-
"body": "model Event\r\nhas_many :timings\r\nhas_many :placements\r\n\r\nmodel Event::Timing\r\nhas_many :timing_placements\r\nhas_many :placements, :source => :placement, :through => :timing_placements\r\n\r\nmodel Event::Placement\r\n\r\nmodel Event::TimingPlacement\r\nbelongs_to :timing\r\nbelongs_to :placement\r\n\r\nWhen I edit the event and click \"create timing\" I want to see a multiselect with placements for the event\r\n\r\n config.model Event::Timing do\r\n parent Event\r\n\r\n field :placements do\r\n associated_collection_scope do\r\n timing = bindings[:object]\r\n Proc.new { |scope|\r\n scope = scope.where(:event_id => timing.event_id) if timing.present?\r\n scope\r\n }\r\n end\r\n end\r\n end\r\n",
|
92
|
-
"closed_at": null,
|
93
|
-
"created_at": "2011-11-11T08:23:32Z",
|
94
|
-
"diff_url": "https://github.com/sferik/rails_admin/pull/827.diff",
|
95
|
-
"html_url": "https://github.com/sferik/rails_admin/pull/827",
|
96
|
-
"id": 485317,
|
97
|
-
"issue_url": "https://github.com/sferik/rails_admin/issues/827",
|
98
|
-
"merged_at": null,
|
99
|
-
"number": 827,
|
100
|
-
"patch_url": "https://github.com/sferik/rails_admin/pull/827.patch",
|
101
|
-
"state": "open",
|
102
|
-
"title": "added associations to new object",
|
103
|
-
"updated_at": "2011-11-23T15:32:23Z",
|
104
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/pulls/827",
|
105
|
-
"user": {
|
106
|
-
"avatar_url": "https://secure.gravatar.com/avatar/104200ed9f8e87411934cba84d04fa95?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
107
|
-
"gravatar_id": "104200ed9f8e87411934cba84d04fa95",
|
108
|
-
"id": 308430,
|
109
|
-
"login": "mokevnin",
|
110
|
-
"url": "https://api.github.com/users/mokevnin"
|
111
|
-
}
|
112
|
-
},
|
113
|
-
{
|
114
|
-
"_links": {
|
115
|
-
"comments": {
|
116
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/issues/561/comments"
|
117
|
-
},
|
118
|
-
"html": {
|
119
|
-
"href": "https://github.com/sferik/rails_admin/pull/561"
|
120
|
-
},
|
121
|
-
"review_comments": {
|
122
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/561/comments"
|
123
|
-
},
|
124
|
-
"self": {
|
125
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/561"
|
126
|
-
}
|
127
|
-
},
|
128
|
-
"body": "In a couple of my projects, I used rails_admin as my application framework. It covers 80% of what I needed and I only had to implement a few home made controllers to handle the 20% left.\r\n\r\nNote that to accomplish this I used the following technique: https://gist.github.com/1086055 which allows to reuse the awesome Activo theme of Rails Admin for my whole application.\r\n\r\nNow, I needed to insert some additional links to my home made controllers into the Rails Admin navigation.\r\n\r\nAnother use case would be if I wanted to have a permanent link always in the navigation: for instance, let's say I have a customer model, and I want to always see a link to \"Add new customer\" in my navigation (from every admin pages). I could use the feature as well.\r\n\r\nThis pull request is a first stab at it, which I think is not ideal:\r\n1) I don't like the configuration syntax that much\r\n2) It's missing tests and docs (to be fixed of course)\r\n\r\nThe syntax currently looks like this\r\n\r\n``` ruby\r\nRailsAdmin.config do |config|\r\n config.nav_before_models = {\r\n 'foo' => {\r\n 'label' => 'Foo',\r\n 'url' => 'foo/foo',\r\n },\r\n 'bar' => {\r\n 'label' => 'Bar',\r\n 'url' => 'bar/bar'\r\n }\r\n }\r\n config.nav_after_models = {\r\n 'stuff' => {\r\n 'label' => 'More stuff',\r\n 'url' => 'more/stuff'\r\n }\r\n }\r\nend\r\n```\r\n\r\nIdeally, I wanted to use the RailsAdmin::Config::Navigation class, but it's being deprecated. The syntax could have looked like this:\r\n\r\n``` ruby\r\nRailsAdmin.config do |config|\r\n config.navigation.before_models do\r\n link :foo do\r\n label 'Foo'\r\n url 'foo/foo'\r\n end\r\n link :bar do\r\n label 'Bar'\r\n url 'bar/bar'\r\n end\r\n end\r\n config.navigation.after_models do end\r\n link :stuff do\r\n label 'More stuff'\r\n url 'more/stuff'\r\n end\r\n end\r\nend\r\n```\r\n\r\n\r\nWhat do you think? Any suggestion on what would be the best approach?\r\n",
|
129
|
-
"closed_at": null,
|
130
|
-
"created_at": "2011-07-16T06:03:23Z",
|
131
|
-
"diff_url": "https://github.com/sferik/rails_admin/pull/561.diff",
|
132
|
-
"html_url": "https://github.com/sferik/rails_admin/pull/561",
|
133
|
-
"id": 226217,
|
134
|
-
"issue_url": "https://github.com/sferik/rails_admin/issues/561",
|
135
|
-
"merged_at": null,
|
136
|
-
"number": 561,
|
137
|
-
"patch_url": "https://github.com/sferik/rails_admin/pull/561.patch",
|
138
|
-
"state": "open",
|
139
|
-
"title": "Additional navigation proposal",
|
140
|
-
"updated_at": "2011-11-23T15:32:23Z",
|
141
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/pulls/561",
|
142
|
-
"user": {
|
143
|
-
"avatar_url": "https://secure.gravatar.com/avatar/c1cb39f9320d1b293114a6dc447b7873?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
144
|
-
"gravatar_id": "c1cb39f9320d1b293114a6dc447b7873",
|
145
|
-
"id": 100218,
|
146
|
-
"login": "jphpsf",
|
147
|
-
"url": "https://api.github.com/users/jphpsf"
|
148
|
-
}
|
149
|
-
},
|
150
|
-
{
|
151
|
-
"_links": {
|
152
|
-
"comments": {
|
153
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/issues/560/comments"
|
154
|
-
},
|
155
|
-
"html": {
|
156
|
-
"href": "https://github.com/sferik/rails_admin/pull/560"
|
157
|
-
},
|
158
|
-
"review_comments": {
|
159
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/560/comments"
|
160
|
-
},
|
161
|
-
"self": {
|
162
|
-
"href": "https://api.github.com/repos/sferik/rails_admin/pulls/560"
|
163
|
-
}
|
164
|
-
},
|
165
|
-
"body": "This is a simple change to allow to customize the text in the footer of Rails Admin. ",
|
166
|
-
"closed_at": null,
|
167
|
-
"created_at": "2011-07-16T04:24:26Z",
|
168
|
-
"diff_url": "https://github.com/sferik/rails_admin/pull/560.diff",
|
169
|
-
"html_url": "https://github.com/sferik/rails_admin/pull/560",
|
170
|
-
"id": 226194,
|
171
|
-
"issue_url": "https://github.com/sferik/rails_admin/issues/560",
|
172
|
-
"merged_at": null,
|
173
|
-
"number": 560,
|
174
|
-
"patch_url": "https://github.com/sferik/rails_admin/pull/560.patch",
|
175
|
-
"state": "open",
|
176
|
-
"title": "Make the footer customizable",
|
177
|
-
"updated_at": "2011-11-23T15:32:23Z",
|
178
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/pulls/560",
|
179
|
-
"user": {
|
180
|
-
"avatar_url": "https://secure.gravatar.com/avatar/c1cb39f9320d1b293114a6dc447b7873?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
181
|
-
"gravatar_id": "c1cb39f9320d1b293114a6dc447b7873",
|
182
|
-
"id": 100218,
|
183
|
-
"login": "jphpsf",
|
184
|
-
"url": "https://api.github.com/users/jphpsf"
|
185
|
-
}
|
186
|
-
}
|
187
|
-
]
|
@@ -1,82 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"created_at": "2011-08-28T23:35:50Z",
|
4
|
-
"original_commit_id": "472ae972b0180136c4745df19bbb045a5c6efa38",
|
5
|
-
"body": "Please remove this.",
|
6
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/pulls/comments/104862",
|
7
|
-
"path": "lib/octokit/client/repositories.rb",
|
8
|
-
"commit_id": "3ae33359b5135c9c5e43f6eda6623465aa36427f",
|
9
|
-
"user": {
|
10
|
-
"type": "User",
|
11
|
-
"subscriptions_url": "https://api.github.com/users/sferik/subscriptions",
|
12
|
-
"url": "https://api.github.com/users/sferik",
|
13
|
-
"starred_url": "https://api.github.com/users/sferik/starred{/owner}{/repo}",
|
14
|
-
"repos_url": "https://api.github.com/users/sferik/repos",
|
15
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
16
|
-
"gists_url": "https://api.github.com/users/sferik/gists{/gist_id}",
|
17
|
-
"events_url": "https://api.github.com/users/sferik/events{/privacy}",
|
18
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
19
|
-
"login": "sferik",
|
20
|
-
"organizations_url": "https://api.github.com/users/sferik/orgs",
|
21
|
-
"received_events_url": "https://api.github.com/users/sferik/received_events",
|
22
|
-
"followers_url": "https://api.github.com/users/sferik/followers",
|
23
|
-
"id": 10308,
|
24
|
-
"following_url": "https://api.github.com/users/sferik/following"
|
25
|
-
},
|
26
|
-
"updated_at": "2011-08-28T23:42:45Z",
|
27
|
-
"_links": {
|
28
|
-
"html": {
|
29
|
-
"href": "https://github.com/pengwynn/octokit/pull/52#discussion_r104862"
|
30
|
-
},
|
31
|
-
"self": {
|
32
|
-
"href": "https://api.github.com/repos/pengwynn/octokit/pulls/comments/104862"
|
33
|
-
},
|
34
|
-
"pull_request": {
|
35
|
-
"href": "https://api.github.com/repos/pengwynn/octokit/pulls/52"
|
36
|
-
}
|
37
|
-
},
|
38
|
-
"original_position": 2,
|
39
|
-
"position": null,
|
40
|
-
"id": 104862
|
41
|
-
},
|
42
|
-
{
|
43
|
-
"created_at": "2011-08-28T23:43:30Z",
|
44
|
-
"original_commit_id": "472ae972b0180136c4745df19bbb045a5c6efa38",
|
45
|
-
"body": "Whoops. Fixed now.",
|
46
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/pulls/comments/104864",
|
47
|
-
"path": "lib/octokit/client/repositories.rb",
|
48
|
-
"commit_id": "3ae33359b5135c9c5e43f6eda6623465aa36427f",
|
49
|
-
"user": {
|
50
|
-
"type": "User",
|
51
|
-
"subscriptions_url": "https://api.github.com/users/alexkwolfe/subscriptions",
|
52
|
-
"url": "https://api.github.com/users/alexkwolfe",
|
53
|
-
"starred_url": "https://api.github.com/users/alexkwolfe/starred{/owner}{/repo}",
|
54
|
-
"repos_url": "https://api.github.com/users/alexkwolfe/repos",
|
55
|
-
"avatar_url": "https://secure.gravatar.com/avatar/72d403ad3c243379dfdb5da3e6179c05?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
56
|
-
"gists_url": "https://api.github.com/users/alexkwolfe/gists{/gist_id}",
|
57
|
-
"events_url": "https://api.github.com/users/alexkwolfe/events{/privacy}",
|
58
|
-
"gravatar_id": "72d403ad3c243379dfdb5da3e6179c05",
|
59
|
-
"login": "alexkwolfe",
|
60
|
-
"organizations_url": "https://api.github.com/users/alexkwolfe/orgs",
|
61
|
-
"received_events_url": "https://api.github.com/users/alexkwolfe/received_events",
|
62
|
-
"followers_url": "https://api.github.com/users/alexkwolfe/followers",
|
63
|
-
"id": 569,
|
64
|
-
"following_url": "https://api.github.com/users/alexkwolfe/following"
|
65
|
-
},
|
66
|
-
"updated_at": "2011-08-28T23:43:30Z",
|
67
|
-
"_links": {
|
68
|
-
"html": {
|
69
|
-
"href": "https://github.com/pengwynn/octokit/pull/52#discussion_r104864"
|
70
|
-
},
|
71
|
-
"self": {
|
72
|
-
"href": "https://api.github.com/repos/pengwynn/octokit/pulls/comments/104864"
|
73
|
-
},
|
74
|
-
"pull_request": {
|
75
|
-
"href": "https://api.github.com/repos/pengwynn/octokit/pulls/52"
|
76
|
-
}
|
77
|
-
},
|
78
|
-
"original_position": 2,
|
79
|
-
"position": null,
|
80
|
-
"id": 104864
|
81
|
-
}
|
82
|
-
]
|
@@ -1,138 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_links": {
|
3
|
-
"comments": {
|
4
|
-
"href": "https://api.github.com/repos/ctshryock/octokit/issues/15/comments"
|
5
|
-
},
|
6
|
-
"html": {
|
7
|
-
"href": "https://github.com/ctshryock/octokit/pull/15"
|
8
|
-
},
|
9
|
-
"review_comments": {
|
10
|
-
"href": "https://api.github.com/repos/ctshryock/octokit/pulls/15/comments"
|
11
|
-
},
|
12
|
-
"self": {
|
13
|
-
"href": "https://api.github.com/repos/ctshryock/octokit/pulls/15"
|
14
|
-
}
|
15
|
-
},
|
16
|
-
"additions": 5015,
|
17
|
-
"base": {
|
18
|
-
"label": "ctshryock:master",
|
19
|
-
"ref": "master",
|
20
|
-
"repo": {
|
21
|
-
"clone_url": "https://github.com/ctshryock/octokit.git",
|
22
|
-
"created_at": "2011-04-29T18:43:10Z",
|
23
|
-
"description": "Simple Ruby wrapper for the GitHub v2 API and feeds",
|
24
|
-
"fork": true,
|
25
|
-
"forks": 0,
|
26
|
-
"git_url": "git://github.com/ctshryock/octokit.git",
|
27
|
-
"has_downloads": true,
|
28
|
-
"has_issues": true,
|
29
|
-
"has_wiki": true,
|
30
|
-
"homepage": "",
|
31
|
-
"html_url": "https://github.com/ctshryock/octokit",
|
32
|
-
"id": 1682040,
|
33
|
-
"language": "Ruby",
|
34
|
-
"master_branch": null,
|
35
|
-
"mirror_url": null,
|
36
|
-
"name": "octokit",
|
37
|
-
"open_issues": 1,
|
38
|
-
"owner": {
|
39
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
40
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
41
|
-
"id": 61721,
|
42
|
-
"login": "ctshryock",
|
43
|
-
"url": "https://api.github.com/users/ctshryock"
|
44
|
-
},
|
45
|
-
"private": false,
|
46
|
-
"pushed_at": "2012-02-11T16:06:32Z",
|
47
|
-
"size": 140,
|
48
|
-
"ssh_url": "git@github.com:ctshryock/octokit.git",
|
49
|
-
"svn_url": "https://github.com/ctshryock/octokit",
|
50
|
-
"updated_at": "2012-02-11T16:06:34Z",
|
51
|
-
"url": "https://api.github.com/repos/ctshryock/octokit",
|
52
|
-
"watchers": 1
|
53
|
-
},
|
54
|
-
"sha": "89e255143524b71bd91f51d2ca31b7e8c90f398c",
|
55
|
-
"user": {
|
56
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
57
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
58
|
-
"id": 61721,
|
59
|
-
"login": "ctshryock",
|
60
|
-
"url": "https://api.github.com/users/ctshryock"
|
61
|
-
}
|
62
|
-
},
|
63
|
-
"body": "Updated body",
|
64
|
-
"changed_files": 15,
|
65
|
-
"closed_at": null,
|
66
|
-
"comments": 0,
|
67
|
-
"commits": 19,
|
68
|
-
"created_at": "2012-02-11T16:12:31Z",
|
69
|
-
"deletions": 112,
|
70
|
-
"diff_url": "https://github.com/ctshryock/octokit/pull/15.diff",
|
71
|
-
"head": {
|
72
|
-
"label": "ctshryock:api-version-3",
|
73
|
-
"ref": "api-version-3",
|
74
|
-
"repo": {
|
75
|
-
"clone_url": "https://github.com/ctshryock/octokit.git",
|
76
|
-
"created_at": "2011-04-29T18:43:10Z",
|
77
|
-
"description": "Simple Ruby wrapper for the GitHub v2 API and feeds",
|
78
|
-
"fork": true,
|
79
|
-
"forks": 0,
|
80
|
-
"git_url": "git://github.com/ctshryock/octokit.git",
|
81
|
-
"has_downloads": true,
|
82
|
-
"has_issues": true,
|
83
|
-
"has_wiki": true,
|
84
|
-
"homepage": "",
|
85
|
-
"html_url": "https://github.com/ctshryock/octokit",
|
86
|
-
"id": 1682040,
|
87
|
-
"language": "Ruby",
|
88
|
-
"master_branch": null,
|
89
|
-
"mirror_url": null,
|
90
|
-
"name": "octokit",
|
91
|
-
"open_issues": 1,
|
92
|
-
"owner": {
|
93
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
94
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
95
|
-
"id": 61721,
|
96
|
-
"login": "ctshryock",
|
97
|
-
"url": "https://api.github.com/users/ctshryock"
|
98
|
-
},
|
99
|
-
"private": false,
|
100
|
-
"pushed_at": "2012-02-11T16:06:32Z",
|
101
|
-
"size": 140,
|
102
|
-
"ssh_url": "git@github.com:ctshryock/octokit.git",
|
103
|
-
"svn_url": "https://github.com/ctshryock/octokit",
|
104
|
-
"updated_at": "2012-02-11T16:06:34Z",
|
105
|
-
"url": "https://api.github.com/repos/ctshryock/octokit",
|
106
|
-
"watchers": 1
|
107
|
-
},
|
108
|
-
"sha": "3a3a3ca7ca0ca0026fca1bccfb090b4113a7e754",
|
109
|
-
"user": {
|
110
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
111
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
112
|
-
"id": 61721,
|
113
|
-
"login": "ctshryock",
|
114
|
-
"url": "https://api.github.com/users/ctshryock"
|
115
|
-
}
|
116
|
-
},
|
117
|
-
"html_url": "https://github.com/ctshryock/octokit/pull/15",
|
118
|
-
"id": 815669,
|
119
|
-
"issue_url": "https://github.com/ctshryock/octokit/issues/15",
|
120
|
-
"mergeable": null,
|
121
|
-
"merged": false,
|
122
|
-
"merged_at": null,
|
123
|
-
"merged_by": null,
|
124
|
-
"number": 15,
|
125
|
-
"patch_url": "https://github.com/ctshryock/octokit/pull/15.patch",
|
126
|
-
"review_comments": 0,
|
127
|
-
"state": "closed",
|
128
|
-
"title": "New title",
|
129
|
-
"updated_at": "2012-02-11T16:12:31Z",
|
130
|
-
"url": "https://api.github.com/repos/ctshryock/octokit/pulls/15",
|
131
|
-
"user": {
|
132
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
133
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
134
|
-
"id": 61721,
|
135
|
-
"login": "ctshryock",
|
136
|
-
"url": "https://api.github.com/users/ctshryock"
|
137
|
-
}
|
138
|
-
}
|