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,61 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"type": "CreateEvent",
|
4
|
-
"created_at": "2013-01-10T01:53:08Z",
|
5
|
-
"actor": {
|
6
|
-
"avatar_url": "https://secure.gravatar.com/avatar/befd819b3fced8c6bd3dba7e633dd068?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
7
|
-
"id": 64050,
|
8
|
-
"login": "gjtorikian",
|
9
|
-
"url": "https://api.github.com/users/gjtorikian",
|
10
|
-
"gravatar_id": "befd819b3fced8c6bd3dba7e633dd068"
|
11
|
-
},
|
12
|
-
"repo": {
|
13
|
-
"id": 1666784,
|
14
|
-
"url": "https://api.github.com/repos/github/developer.github.com",
|
15
|
-
"name": "github/developer.github.com"
|
16
|
-
},
|
17
|
-
"public": true,
|
18
|
-
"org": {
|
19
|
-
"avatar_url": "https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
20
|
-
"id": 9919,
|
21
|
-
"login": "github",
|
22
|
-
"url": "https://api.github.com/orgs/github",
|
23
|
-
"gravatar_id": "61024896f291303615bcd4f7a0dcfb74"
|
24
|
-
},
|
25
|
-
"payload": {
|
26
|
-
"master_branch": "master",
|
27
|
-
"ref_type": "branch",
|
28
|
-
"ref": "task/api-test",
|
29
|
-
"description": "GitHub API documentation"
|
30
|
-
},
|
31
|
-
"id": "1652750175"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"type": "WatchEvent",
|
35
|
-
"created_at": "2013-01-10T01:43:33Z",
|
36
|
-
"actor": {
|
37
|
-
"avatar_url": "https://secure.gravatar.com/avatar/d6e6ca7407972f5d081cd9a867a13ee6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
38
|
-
"login": "winni3",
|
39
|
-
"id": 12026,
|
40
|
-
"url": "https://api.github.com/users/winni3",
|
41
|
-
"gravatar_id": "d6e6ca7407972f5d081cd9a867a13ee6"
|
42
|
-
},
|
43
|
-
"repo": {
|
44
|
-
"id": 667163,
|
45
|
-
"url": "https://api.github.com/repos/github/github-services",
|
46
|
-
"name": "github/github-services"
|
47
|
-
},
|
48
|
-
"public": true,
|
49
|
-
"org": {
|
50
|
-
"avatar_url": "https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
51
|
-
"login": "github",
|
52
|
-
"id": 9919,
|
53
|
-
"url": "https://api.github.com/orgs/github",
|
54
|
-
"gravatar_id": "61024896f291303615bcd4f7a0dcfb74"
|
55
|
-
},
|
56
|
-
"payload": {
|
57
|
-
"action": "started"
|
58
|
-
},
|
59
|
-
"id": "1652746673"
|
60
|
-
}
|
61
|
-
]
|
@@ -1,16 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfb3948650131e4f0385c3328187cfca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
4
|
-
"gravatar_id": "dfb3948650131e4f0385c3328187cfca",
|
5
|
-
"id": 61721,
|
6
|
-
"login": "ctshryock",
|
7
|
-
"url": "https://api.github.com/users/ctshryock"
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"avatar_url": "https://secure.gravatar.com/avatar/f5308d249ed7ff8f96ba888ba707df3f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
11
|
-
"gravatar_id": "f5308d249ed7ff8f96ba888ba707df3f",
|
12
|
-
"id": 45389,
|
13
|
-
"login": "jamescarr",
|
14
|
-
"url": "https://api.github.com/users/jamescarr"
|
15
|
-
}
|
16
|
-
]
|
@@ -1,62 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"clone_url": "https://github.com/CoMoRichWebGroup/GitTalk.git",
|
4
|
-
"created_at": "2011-01-18T13:42:41Z",
|
5
|
-
"description": "Source / Example for my presentation on Git at Como Rich Web Group, Jan 19 2010",
|
6
|
-
"fork": true,
|
7
|
-
"forks": 0,
|
8
|
-
"git_url": "git://github.com/CoMoRichWebGroup/GitTalk.git",
|
9
|
-
"homepage": null,
|
10
|
-
"html_url": "https://github.com/CoMoRichWebGroup/GitTalk",
|
11
|
-
"id": 1267157,
|
12
|
-
"language": null,
|
13
|
-
"master_branch": null,
|
14
|
-
"name": "GitTalk",
|
15
|
-
"open_issues": 0,
|
16
|
-
"owner": {
|
17
|
-
"avatar_url": "https://secure.gravatar.com/avatar/073de5791bd35c95a6eb211ba244df0e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
18
|
-
"gravatar_id": "073de5791bd35c95a6eb211ba244df0e",
|
19
|
-
"id": 570695,
|
20
|
-
"login": "CoMoRichWebGroup",
|
21
|
-
"url": "https://api.github.com/users/CoMoRichWebGroup"
|
22
|
-
},
|
23
|
-
"private": false,
|
24
|
-
"pushed_at": "2011-01-18T01:59:31Z",
|
25
|
-
"size": 9760,
|
26
|
-
"ssh_url": "git@github.com:CoMoRichWebGroup/GitTalk.git",
|
27
|
-
"svn_url": "https://github.com/CoMoRichWebGroup/GitTalk",
|
28
|
-
"updated_at": "2011-10-04T04:58:13Z",
|
29
|
-
"url": "https://api.github.com/repos/CoMoRichWebGroup/GitTalk",
|
30
|
-
"watchers": 1
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"clone_url": "https://github.com/CoMoRichWebGroup/Fabric-Demos.git",
|
34
|
-
"created_at": "2011-08-21T02:55:19Z",
|
35
|
-
"description": "Demos on how to use Fabric -- http://fabfile.org",
|
36
|
-
"fork": false,
|
37
|
-
"forks": 1,
|
38
|
-
"git_url": "git://github.com/CoMoRichWebGroup/Fabric-Demos.git",
|
39
|
-
"homepage": "",
|
40
|
-
"html_url": "https://github.com/CoMoRichWebGroup/Fabric-Demos",
|
41
|
-
"id": 2241958,
|
42
|
-
"language": "Python",
|
43
|
-
"master_branch": null,
|
44
|
-
"name": "Fabric-Demos",
|
45
|
-
"open_issues": 0,
|
46
|
-
"owner": {
|
47
|
-
"avatar_url": "https://secure.gravatar.com/avatar/073de5791bd35c95a6eb211ba244df0e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
48
|
-
"gravatar_id": "073de5791bd35c95a6eb211ba244df0e",
|
49
|
-
"id": 570695,
|
50
|
-
"login": "CoMoRichWebGroup",
|
51
|
-
"url": "https://api.github.com/users/CoMoRichWebGroup"
|
52
|
-
},
|
53
|
-
"private": false,
|
54
|
-
"pushed_at": "2011-08-24T23:26:28Z",
|
55
|
-
"size": 280,
|
56
|
-
"ssh_url": "git@github.com:CoMoRichWebGroup/Fabric-Demos.git",
|
57
|
-
"svn_url": "https://github.com/CoMoRichWebGroup/Fabric-Demos",
|
58
|
-
"updated_at": "2011-10-04T18:17:14Z",
|
59
|
-
"url": "https://api.github.com/repos/CoMoRichWebGroup/Fabric-Demos",
|
60
|
-
"watchers": 1
|
61
|
-
}
|
62
|
-
]
|
@@ -1,44 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"avatar_url": "https://secure.gravatar.com/avatar/7311a263b8ea2513a001539666837ba9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4
|
-
"id": 523168,
|
5
|
-
"login": "Hubcap",
|
6
|
-
"url": "https://api.github.com/orgs/Hubcap"
|
7
|
-
},
|
8
|
-
{
|
9
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
10
|
-
"id": 337792,
|
11
|
-
"login": "codeforamerica",
|
12
|
-
"url": "https://api.github.com/orgs/codeforamerica"
|
13
|
-
},
|
14
|
-
{
|
15
|
-
"avatar_url": "https://secure.gravatar.com/avatar/253768044712357787be0f6a3a53cc66?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
16
|
-
"id": 639823,
|
17
|
-
"login": "travis-ci",
|
18
|
-
"url": "https://api.github.com/orgs/travis-ci"
|
19
|
-
},
|
20
|
-
{
|
21
|
-
"avatar_url": "https://secure.gravatar.com/avatar/d1c067780d4e27fd72212543162c7053?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
22
|
-
"id": 76794,
|
23
|
-
"login": "carlhuda",
|
24
|
-
"url": "https://api.github.com/orgs/carlhuda"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"avatar_url": "https://secure.gravatar.com/avatar/c441db4f3d80951dc3a231f40cdc6340?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
28
|
-
"id": 829908,
|
29
|
-
"login": "hackforchange",
|
30
|
-
"url": "https://api.github.com/orgs/hackforchange"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"avatar_url": "https://secure.gravatar.com/avatar/bf4014334f65ba54fb31d21da71978fb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
34
|
-
"id": 208761,
|
35
|
-
"login": "rubygems",
|
36
|
-
"url": "https://api.github.com/orgs/rubygems"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ae3f4aeecd2b103e1782c6df87211f98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
40
|
-
"id": 100502,
|
41
|
-
"login": "140proof",
|
42
|
-
"url": "https://api.github.com/orgs/140proof"
|
43
|
-
}
|
44
|
-
]
|
@@ -1,110 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"all": [
|
3
|
-
13,
|
4
|
-
34,
|
5
|
-
15,
|
6
|
-
16,
|
7
|
-
17,
|
8
|
-
33,
|
9
|
-
8,
|
10
|
-
25,
|
11
|
-
1,
|
12
|
-
5,
|
13
|
-
1,
|
14
|
-
11,
|
15
|
-
4,
|
16
|
-
10,
|
17
|
-
2,
|
18
|
-
0,
|
19
|
-
5,
|
20
|
-
6,
|
21
|
-
1,
|
22
|
-
11,
|
23
|
-
11,
|
24
|
-
19,
|
25
|
-
29,
|
26
|
-
28,
|
27
|
-
25,
|
28
|
-
12,
|
29
|
-
32,
|
30
|
-
12,
|
31
|
-
29,
|
32
|
-
55,
|
33
|
-
15,
|
34
|
-
8,
|
35
|
-
2,
|
36
|
-
3,
|
37
|
-
4,
|
38
|
-
8,
|
39
|
-
4,
|
40
|
-
4,
|
41
|
-
19,
|
42
|
-
36,
|
43
|
-
5,
|
44
|
-
1,
|
45
|
-
3,
|
46
|
-
3,
|
47
|
-
3,
|
48
|
-
7,
|
49
|
-
2,
|
50
|
-
10,
|
51
|
-
3,
|
52
|
-
7,
|
53
|
-
2,
|
54
|
-
7
|
55
|
-
],
|
56
|
-
"owner": [
|
57
|
-
5,
|
58
|
-
6,
|
59
|
-
2,
|
60
|
-
2,
|
61
|
-
0,
|
62
|
-
24,
|
63
|
-
1,
|
64
|
-
7,
|
65
|
-
1,
|
66
|
-
4,
|
67
|
-
0,
|
68
|
-
4,
|
69
|
-
2,
|
70
|
-
3,
|
71
|
-
0,
|
72
|
-
0,
|
73
|
-
5,
|
74
|
-
3,
|
75
|
-
0,
|
76
|
-
5,
|
77
|
-
3,
|
78
|
-
11,
|
79
|
-
12,
|
80
|
-
0,
|
81
|
-
7,
|
82
|
-
7,
|
83
|
-
21,
|
84
|
-
6,
|
85
|
-
1,
|
86
|
-
20,
|
87
|
-
6,
|
88
|
-
3,
|
89
|
-
2,
|
90
|
-
1,
|
91
|
-
1,
|
92
|
-
2,
|
93
|
-
1,
|
94
|
-
0,
|
95
|
-
4,
|
96
|
-
9,
|
97
|
-
2,
|
98
|
-
0,
|
99
|
-
0,
|
100
|
-
0,
|
101
|
-
0,
|
102
|
-
5,
|
103
|
-
0,
|
104
|
-
7,
|
105
|
-
0,
|
106
|
-
2,
|
107
|
-
0,
|
108
|
-
5
|
109
|
-
]
|
110
|
-
}
|
@@ -1,1104 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"actor": {
|
4
|
-
"gravatar_id": "85e3e38177a24e114f7a204b022a0bc7",
|
5
|
-
"id": 1356659,
|
6
|
-
"login": "Andeling",
|
7
|
-
"url": "https://api.github.com/users/Andeling"
|
8
|
-
},
|
9
|
-
"created_at": "2012-01-21T10:33:50Z",
|
10
|
-
"id": "1513284759",
|
11
|
-
"org": {
|
12
|
-
"url": "https://api.github.com/orgs/"
|
13
|
-
},
|
14
|
-
"payload": {
|
15
|
-
"action": "started"
|
16
|
-
},
|
17
|
-
"public": true,
|
18
|
-
"repo": {
|
19
|
-
"id": 409101,
|
20
|
-
"name": "alex/django-taggit",
|
21
|
-
"url": "https://api.github.com/repos/alex/django-taggit"
|
22
|
-
},
|
23
|
-
"type": "WatchEvent"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"actor": {
|
27
|
-
"gravatar_id": "b8a6200f972e78c73802eb219d9a7472",
|
28
|
-
"id": 470138,
|
29
|
-
"login": "DavidBadura",
|
30
|
-
"url": "https://api.github.com/users/DavidBadura"
|
31
|
-
},
|
32
|
-
"created_at": "2012-01-21T10:33:49Z",
|
33
|
-
"id": "1513284756",
|
34
|
-
"org": {
|
35
|
-
"url": "https://api.github.com/orgs/"
|
36
|
-
},
|
37
|
-
"payload": {
|
38
|
-
"commits": [
|
39
|
-
{
|
40
|
-
"author": {
|
41
|
-
"email": "d.badura@gmx.de",
|
42
|
-
"name": "DavidBadura"
|
43
|
-
},
|
44
|
-
"message": "fix Fixture Type",
|
45
|
-
"sha": "a95d6f9ef79761050fdfabfe42ee4ea3792222f1",
|
46
|
-
"url": "https://api.github.com/repos/DavidBadura/FixturesBundle/commits/a95d6f9ef79761050fdfabfe42ee4ea3792222f1"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"author": {
|
50
|
-
"email": "d.badura@gmx.de",
|
51
|
-
"name": "DavidBadura"
|
52
|
-
},
|
53
|
-
"message": "readme fix yaml configuration",
|
54
|
-
"sha": "fc793c7644537733e4867c86db3aa9d06568b97a",
|
55
|
-
"url": "https://api.github.com/repos/DavidBadura/FixturesBundle/commits/fc793c7644537733e4867c86db3aa9d06568b97a"
|
56
|
-
},
|
57
|
-
{
|
58
|
-
"author": {
|
59
|
-
"email": "d.badura@gmx.de",
|
60
|
-
"name": "DavidBadura"
|
61
|
-
},
|
62
|
-
"message": "fix repository and add tests",
|
63
|
-
"sha": "9bde050b8dcd1b25ba36b25baabf746fc97f2d0f",
|
64
|
-
"url": "https://api.github.com/repos/DavidBadura/FixturesBundle/commits/9bde050b8dcd1b25ba36b25baabf746fc97f2d0f"
|
65
|
-
}
|
66
|
-
],
|
67
|
-
"head": "9bde050b8dcd1b25ba36b25baabf746fc97f2d0f",
|
68
|
-
"push_id": 58526139,
|
69
|
-
"ref": "refs/heads/master",
|
70
|
-
"size": 3
|
71
|
-
},
|
72
|
-
"public": true,
|
73
|
-
"repo": {
|
74
|
-
"id": 3125180,
|
75
|
-
"name": "DavidBadura/FixturesBundle",
|
76
|
-
"url": "https://api.github.com/repos/DavidBadura/FixturesBundle"
|
77
|
-
},
|
78
|
-
"type": "PushEvent"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"actor": {
|
82
|
-
"gravatar_id": "6155f96fe378846ad3ef2101809cf1c8",
|
83
|
-
"id": 1318140,
|
84
|
-
"login": "jlauwers",
|
85
|
-
"url": "https://api.github.com/users/jlauwers"
|
86
|
-
},
|
87
|
-
"created_at": "2012-01-21T10:33:48Z",
|
88
|
-
"id": "1513284754",
|
89
|
-
"org": {
|
90
|
-
"gravatar_id": "bb41fd105456e39e381279b70974b19c",
|
91
|
-
"id": 1321604,
|
92
|
-
"login": "pchtrakt",
|
93
|
-
"url": "https://api.github.com/orgs/"
|
94
|
-
},
|
95
|
-
"payload": {
|
96
|
-
"commits": [
|
97
|
-
{
|
98
|
-
"author": {
|
99
|
-
"email": "jonathan.lauwers@gmail.com",
|
100
|
-
"name": "jlauwers"
|
101
|
-
},
|
102
|
-
"message": "double episode started at 2nd episode",
|
103
|
-
"sha": "1526cd96ccf1e9c94fb99358e16c33f20d0d4d99",
|
104
|
-
"url": "https://api.github.com/repos/pchtrakt/pchtrakt/commits/1526cd96ccf1e9c94fb99358e16c33f20d0d4d99"
|
105
|
-
},
|
106
|
-
{
|
107
|
-
"author": {
|
108
|
-
"email": "jonathan.lauwers@gmail.com",
|
109
|
-
"name": "jlauwers"
|
110
|
-
},
|
111
|
-
"message": "Merge branch 'release-0.1' into dvp",
|
112
|
-
"sha": "a40c1795559ba14f5e201a507b86774712b5003e",
|
113
|
-
"url": "https://api.github.com/repos/pchtrakt/pchtrakt/commits/a40c1795559ba14f5e201a507b86774712b5003e"
|
114
|
-
}
|
115
|
-
],
|
116
|
-
"head": "a40c1795559ba14f5e201a507b86774712b5003e",
|
117
|
-
"push_id": 58526137,
|
118
|
-
"ref": "refs/heads/dvp",
|
119
|
-
"size": 2
|
120
|
-
},
|
121
|
-
"public": true,
|
122
|
-
"repo": {
|
123
|
-
"id": 3164153,
|
124
|
-
"name": "pchtrakt/pchtrakt",
|
125
|
-
"url": "https://api.github.com/repos/pchtrakt/pchtrakt"
|
126
|
-
},
|
127
|
-
"type": "PushEvent"
|
128
|
-
},
|
129
|
-
{
|
130
|
-
"actor": {
|
131
|
-
"gravatar_id": "7bbbe3f7ea02a4223e94e08699085dce",
|
132
|
-
"id": 383821,
|
133
|
-
"login": "renard",
|
134
|
-
"url": "https://api.github.com/users/renard"
|
135
|
-
},
|
136
|
-
"created_at": "2012-01-21T10:33:45Z",
|
137
|
-
"id": "1513284753",
|
138
|
-
"org": {
|
139
|
-
"url": "https://api.github.com/orgs/"
|
140
|
-
},
|
141
|
-
"payload": {
|
142
|
-
"commits": [
|
143
|
-
{
|
144
|
-
"author": {
|
145
|
-
"email": "seb\u2022\u0251\u01ac\u2022chezwam\u2022\u0256\u0275\u0288\u2022org",
|
146
|
-
"name": "S\u00e9bastien Gross"
|
147
|
-
},
|
148
|
-
"message": "Better appearance of debugging page.\n\nSigned-off-by: S\u00e9bastien Gross <seb\u2022\u0251\u01ac\u2022chezwam\u2022\u0256\u0275\u0288\u2022org>",
|
149
|
-
"sha": "db72fcfb1b71d43dc4e11bda5116a4814e981a3d",
|
150
|
-
"url": "https://api.github.com/repos/renard/o-blog/commits/db72fcfb1b71d43dc4e11bda5116a4814e981a3d"
|
151
|
-
}
|
152
|
-
],
|
153
|
-
"head": "db72fcfb1b71d43dc4e11bda5116a4814e981a3d",
|
154
|
-
"push_id": 58526135,
|
155
|
-
"ref": "refs/heads/master",
|
156
|
-
"size": 1
|
157
|
-
},
|
158
|
-
"public": true,
|
159
|
-
"repo": {
|
160
|
-
"id": 3120836,
|
161
|
-
"name": "renard/o-blog",
|
162
|
-
"url": "https://api.github.com/repos/renard/o-blog"
|
163
|
-
},
|
164
|
-
"type": "PushEvent"
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"actor": {
|
168
|
-
"gravatar_id": "1b3f7909784fc5f42f101327cd0b44e0",
|
169
|
-
"id": 795242,
|
170
|
-
"login": "kapkaev",
|
171
|
-
"url": "https://api.github.com/users/kapkaev"
|
172
|
-
},
|
173
|
-
"created_at": "2012-01-21T10:33:44Z",
|
174
|
-
"id": "1513284750",
|
175
|
-
"org": {
|
176
|
-
"url": "https://api.github.com/orgs/"
|
177
|
-
},
|
178
|
-
"payload": {
|
179
|
-
"action": "started"
|
180
|
-
},
|
181
|
-
"public": true,
|
182
|
-
"repo": {
|
183
|
-
"id": 733429,
|
184
|
-
"name": "weixiyen/jquery-filedrop",
|
185
|
-
"url": "https://api.github.com/repos/weixiyen/jquery-filedrop"
|
186
|
-
},
|
187
|
-
"type": "WatchEvent"
|
188
|
-
},
|
189
|
-
{
|
190
|
-
"actor": {
|
191
|
-
"gravatar_id": "a6b38fcda01ad90c1c64aa5370dd2bbe",
|
192
|
-
"id": 394562,
|
193
|
-
"login": "loddit",
|
194
|
-
"url": "https://api.github.com/users/loddit"
|
195
|
-
},
|
196
|
-
"created_at": "2012-01-21T10:33:44Z",
|
197
|
-
"id": "1513284749",
|
198
|
-
"org": {
|
199
|
-
"url": "https://api.github.com/orgs/"
|
200
|
-
},
|
201
|
-
"payload": {
|
202
|
-
"commits": [
|
203
|
-
{
|
204
|
-
"author": {
|
205
|
-
"email": "loddit@gmail.com",
|
206
|
-
"name": "loddit"
|
207
|
-
},
|
208
|
-
"message": "fix update schools bug",
|
209
|
-
"sha": "834e4701ca3ea1484830db7b2b9a57f93965436f",
|
210
|
-
"url": "https://api.github.com/repos/Suave/1kg.org/commits/834e4701ca3ea1484830db7b2b9a57f93965436f"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"author": {
|
214
|
-
"email": "loddit@gmail.com",
|
215
|
-
"name": "loddit"
|
216
|
-
},
|
217
|
-
"message": "fix update schools bug",
|
218
|
-
"sha": "2bdd69a84854f9c560e71384e1e9967ee318b173",
|
219
|
-
"url": "https://api.github.com/repos/Suave/1kg.org/commits/2bdd69a84854f9c560e71384e1e9967ee318b173"
|
220
|
-
}
|
221
|
-
],
|
222
|
-
"head": "2bdd69a84854f9c560e71384e1e9967ee318b173",
|
223
|
-
"push_id": 58526134,
|
224
|
-
"ref": "refs/heads/master",
|
225
|
-
"size": 2
|
226
|
-
},
|
227
|
-
"public": true,
|
228
|
-
"repo": {
|
229
|
-
"id": 43311,
|
230
|
-
"name": "Suave/1kg.org",
|
231
|
-
"url": "https://api.github.com/repos/Suave/1kg.org"
|
232
|
-
},
|
233
|
-
"type": "PushEvent"
|
234
|
-
},
|
235
|
-
{
|
236
|
-
"actor": {
|
237
|
-
"gravatar_id": "dcf005bd01477ac209694f3f909d374c",
|
238
|
-
"id": 867710,
|
239
|
-
"login": "nicolasbinet",
|
240
|
-
"url": "https://api.github.com/users/nicolasbinet"
|
241
|
-
},
|
242
|
-
"created_at": "2012-01-21T10:33:44Z",
|
243
|
-
"id": "1513284748",
|
244
|
-
"org": {
|
245
|
-
"url": "https://api.github.com/orgs/"
|
246
|
-
},
|
247
|
-
"payload": {
|
248
|
-
"action": "started"
|
249
|
-
},
|
250
|
-
"public": true,
|
251
|
-
"repo": {
|
252
|
-
"id": 1195231,
|
253
|
-
"name": "sgruhier/jquery-addresspicker",
|
254
|
-
"url": "https://api.github.com/repos/sgruhier/jquery-addresspicker"
|
255
|
-
},
|
256
|
-
"type": "WatchEvent"
|
257
|
-
},
|
258
|
-
{
|
259
|
-
"actor": {
|
260
|
-
"gravatar_id": "37f3ea777f96500b332a1a89d6027897",
|
261
|
-
"id": 56241,
|
262
|
-
"login": "agentzh",
|
263
|
-
"url": "https://api.github.com/users/agentzh"
|
264
|
-
},
|
265
|
-
"created_at": "2012-01-21T10:33:38Z",
|
266
|
-
"id": "1513284743",
|
267
|
-
"org": {
|
268
|
-
"url": "https://api.github.com/orgs/"
|
269
|
-
},
|
270
|
-
"payload": {
|
271
|
-
"description": "Perl module re::DFA",
|
272
|
-
"master_branch": "master",
|
273
|
-
"ref": "master",
|
274
|
-
"ref_type": "branch"
|
275
|
-
},
|
276
|
-
"public": true,
|
277
|
-
"repo": {
|
278
|
-
"id": 3233207,
|
279
|
-
"name": "agentzh/re-dfa-pm",
|
280
|
-
"url": "https://api.github.com/repos/agentzh/re-dfa-pm"
|
281
|
-
},
|
282
|
-
"type": "CreateEvent"
|
283
|
-
},
|
284
|
-
{
|
285
|
-
"actor": {
|
286
|
-
"gravatar_id": "e643368f07941c3f39d317b7f99876bb",
|
287
|
-
"id": 616169,
|
288
|
-
"login": "ricpelo",
|
289
|
-
"url": "https://api.github.com/users/ricpelo"
|
290
|
-
},
|
291
|
-
"created_at": "2012-01-21T10:33:38Z",
|
292
|
-
"id": "1513284741",
|
293
|
-
"org": {
|
294
|
-
"url": "https://api.github.com/orgs/"
|
295
|
-
},
|
296
|
-
"payload": {
|
297
|
-
"commits": [
|
298
|
-
{
|
299
|
-
"author": {
|
300
|
-
"email": "ricpelo@gmail.com",
|
301
|
-
"name": "Ricardo P\u00e9rez (Sothoth)"
|
302
|
-
},
|
303
|
-
"message": "Ponemos a Madre en todas partes. As\u00ed conseguimos que podamos pedirle que abra las puertas del complejo. Ya no hay que ponerla 'al alcance'",
|
304
|
-
"sha": "cb6123a55664f11ce031d6a6a1186bd73bea8d9c",
|
305
|
-
"url": "https://api.github.com/repos/ricpelo/alien/commits/cb6123a55664f11ce031d6a6a1186bd73bea8d9c"
|
306
|
-
}
|
307
|
-
],
|
308
|
-
"head": "cb6123a55664f11ce031d6a6a1186bd73bea8d9c",
|
309
|
-
"push_id": 58526130,
|
310
|
-
"ref": "refs/heads/deluxe",
|
311
|
-
"size": 1
|
312
|
-
},
|
313
|
-
"public": true,
|
314
|
-
"repo": {
|
315
|
-
"id": 2128181,
|
316
|
-
"name": "ricpelo/alien",
|
317
|
-
"url": "https://api.github.com/repos/ricpelo/alien"
|
318
|
-
},
|
319
|
-
"type": "PushEvent"
|
320
|
-
},
|
321
|
-
{
|
322
|
-
"actor": {
|
323
|
-
"url": "https://api.github.com/users/"
|
324
|
-
},
|
325
|
-
"created_at": "2012-01-21T10:33:32Z",
|
326
|
-
"id": "1513284740",
|
327
|
-
"org": {
|
328
|
-
"url": "https://api.github.com/orgs/"
|
329
|
-
},
|
330
|
-
"payload": {
|
331
|
-
"action": "create",
|
332
|
-
"gist": {
|
333
|
-
"comments": 0,
|
334
|
-
"created_at": "2012-01-21T10:33:31Z",
|
335
|
-
"description": "Export tweets to neo4j via Drupal.",
|
336
|
-
"files": {},
|
337
|
-
"git_pull_url": "git://gist.github.com/1652299.git",
|
338
|
-
"git_push_url": "git@gist.github.com:1652299.git",
|
339
|
-
"html_url": "https://gist.github.com/1652299",
|
340
|
-
"id": "1652299",
|
341
|
-
"public": true,
|
342
|
-
"updated_at": "2012-01-21T10:33:31Z",
|
343
|
-
"url": "https://api.github.com/gists/1652299",
|
344
|
-
"user": null
|
345
|
-
}
|
346
|
-
},
|
347
|
-
"public": true,
|
348
|
-
"repo": {
|
349
|
-
"name": "/",
|
350
|
-
"url": "https://api.github.com/repos//"
|
351
|
-
},
|
352
|
-
"type": "GistEvent"
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"actor": {
|
356
|
-
"gravatar_id": "650831a7c4d902451605758cfd73274f",
|
357
|
-
"id": 320300,
|
358
|
-
"login": "gibbonweb",
|
359
|
-
"url": "https://api.github.com/users/gibbonweb"
|
360
|
-
},
|
361
|
-
"created_at": "2012-01-21T10:33:31Z",
|
362
|
-
"id": "1513284739",
|
363
|
-
"org": {
|
364
|
-
"gravatar_id": "cf734e5aca6265d593a5417924376e8a",
|
365
|
-
"id": 517031,
|
366
|
-
"login": "chyrp",
|
367
|
-
"url": "https://api.github.com/orgs/"
|
368
|
-
},
|
369
|
-
"payload": {
|
370
|
-
"forkee": {
|
371
|
-
"clone_url": "https://github.com/gibbonweb/chyrp.git",
|
372
|
-
"created_at": "2012-01-21T10:33:30Z",
|
373
|
-
"description": "The ultra-lightweight ultra-flexible blogging engine with a fetish for birds and misspellings.",
|
374
|
-
"fork": true,
|
375
|
-
"forks": 0,
|
376
|
-
"git_url": "git://github.com/gibbonweb/chyrp.git",
|
377
|
-
"has_downloads": true,
|
378
|
-
"has_issues": false,
|
379
|
-
"has_wiki": true,
|
380
|
-
"homepage": "http://chyrp.net",
|
381
|
-
"html_url": "https://github.com/gibbonweb/chyrp",
|
382
|
-
"id": 3233211,
|
383
|
-
"language": "PHP",
|
384
|
-
"master_branch": "development",
|
385
|
-
"mirror_url": null,
|
386
|
-
"name": "chyrp",
|
387
|
-
"open_issues": 0,
|
388
|
-
"owner": {
|
389
|
-
"avatar_url": "https://secure.gravatar.com/avatar/650831a7c4d902451605758cfd73274f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
390
|
-
"gravatar_id": "650831a7c4d902451605758cfd73274f",
|
391
|
-
"id": 320300,
|
392
|
-
"login": "gibbonweb",
|
393
|
-
"url": "https://api.github.com/users/gibbonweb"
|
394
|
-
},
|
395
|
-
"private": false,
|
396
|
-
"public": true,
|
397
|
-
"pushed_at": "2012-01-20T03:25:35Z",
|
398
|
-
"size": 140,
|
399
|
-
"ssh_url": "git@github.com:gibbonweb/chyrp.git",
|
400
|
-
"svn_url": "https://github.com/gibbonweb/chyrp",
|
401
|
-
"updated_at": "2012-01-21T10:33:31Z",
|
402
|
-
"url": "https://api.github.com/repos/gibbonweb/chyrp",
|
403
|
-
"watchers": 1
|
404
|
-
}
|
405
|
-
},
|
406
|
-
"public": true,
|
407
|
-
"repo": {
|
408
|
-
"id": 1138553,
|
409
|
-
"name": "chyrp/chyrp",
|
410
|
-
"url": "https://api.github.com/repos/chyrp/chyrp"
|
411
|
-
},
|
412
|
-
"type": "ForkEvent"
|
413
|
-
},
|
414
|
-
{
|
415
|
-
"actor": {
|
416
|
-
"gravatar_id": "e9ea6d5e961250134cdecd1eec841f7b",
|
417
|
-
"id": 856148,
|
418
|
-
"login": "ppymou",
|
419
|
-
"url": "https://api.github.com/users/ppymou"
|
420
|
-
},
|
421
|
-
"created_at": "2012-01-21T10:33:30Z",
|
422
|
-
"id": "1513284738",
|
423
|
-
"org": {
|
424
|
-
"url": "https://api.github.com/orgs/"
|
425
|
-
},
|
426
|
-
"payload": {
|
427
|
-
"commits": [
|
428
|
-
{
|
429
|
-
"author": {
|
430
|
-
"email": "ppymou@gmail.com",
|
431
|
-
"name": "PPYMOU"
|
432
|
-
},
|
433
|
-
"message": "Some Stuff",
|
434
|
-
"sha": "6cb5d376c3d2dcb388f9d1e942ebe3efc2fc8978",
|
435
|
-
"url": "https://api.github.com/repos/DouglasSherk/FaceCollage/commits/6cb5d376c3d2dcb388f9d1e942ebe3efc2fc8978"
|
436
|
-
}
|
437
|
-
],
|
438
|
-
"head": "6cb5d376c3d2dcb388f9d1e942ebe3efc2fc8978",
|
439
|
-
"push_id": 58526129,
|
440
|
-
"ref": "refs/heads/master",
|
441
|
-
"size": 1
|
442
|
-
},
|
443
|
-
"public": true,
|
444
|
-
"repo": {
|
445
|
-
"id": 3230719,
|
446
|
-
"name": "DouglasSherk/FaceCollage",
|
447
|
-
"url": "https://api.github.com/repos/DouglasSherk/FaceCollage"
|
448
|
-
},
|
449
|
-
"type": "PushEvent"
|
450
|
-
},
|
451
|
-
{
|
452
|
-
"actor": {
|
453
|
-
"gravatar_id": "650831a7c4d902451605758cfd73274f",
|
454
|
-
"id": 320300,
|
455
|
-
"login": "gibbonweb",
|
456
|
-
"url": "https://api.github.com/users/gibbonweb"
|
457
|
-
},
|
458
|
-
"created_at": "2012-01-21T10:33:30Z",
|
459
|
-
"id": "1513284737",
|
460
|
-
"org": {
|
461
|
-
"gravatar_id": "cf734e5aca6265d593a5417924376e8a",
|
462
|
-
"id": 517031,
|
463
|
-
"login": "chyrp",
|
464
|
-
"url": "https://api.github.com/orgs/"
|
465
|
-
},
|
466
|
-
"payload": {
|
467
|
-
"action": "started"
|
468
|
-
},
|
469
|
-
"public": true,
|
470
|
-
"repo": {
|
471
|
-
"id": 1138553,
|
472
|
-
"name": "chyrp/chyrp",
|
473
|
-
"url": "https://api.github.com/repos/chyrp/chyrp"
|
474
|
-
},
|
475
|
-
"type": "WatchEvent"
|
476
|
-
},
|
477
|
-
{
|
478
|
-
"actor": {
|
479
|
-
"gravatar_id": "7517408410bb88638c871d0ee63b0bde",
|
480
|
-
"id": 27355,
|
481
|
-
"login": "rafarubert",
|
482
|
-
"url": "https://api.github.com/users/rafarubert"
|
483
|
-
},
|
484
|
-
"created_at": "2012-01-21T10:33:29Z",
|
485
|
-
"id": "1513284736",
|
486
|
-
"org": {
|
487
|
-
"url": "https://api.github.com/orgs/"
|
488
|
-
},
|
489
|
-
"payload": {
|
490
|
-
"description": "",
|
491
|
-
"master_branch": "master",
|
492
|
-
"ref": "gh-pages",
|
493
|
-
"ref_type": "branch"
|
494
|
-
},
|
495
|
-
"public": true,
|
496
|
-
"repo": {
|
497
|
-
"id": 3233192,
|
498
|
-
"name": "rafarubert/henriquejorge",
|
499
|
-
"url": "https://api.github.com/repos/rafarubert/henriquejorge"
|
500
|
-
},
|
501
|
-
"type": "CreateEvent"
|
502
|
-
},
|
503
|
-
{
|
504
|
-
"actor": {
|
505
|
-
"gravatar_id": "cd7f5f616f7d173aa5d4322f652ed15f",
|
506
|
-
"id": 912243,
|
507
|
-
"login": "dsoms",
|
508
|
-
"url": "https://api.github.com/users/dsoms"
|
509
|
-
},
|
510
|
-
"created_at": "2012-01-21T10:33:26Z",
|
511
|
-
"id": "1513284735",
|
512
|
-
"org": {
|
513
|
-
"url": "https://api.github.com/orgs/"
|
514
|
-
},
|
515
|
-
"payload": {
|
516
|
-
"commits": [
|
517
|
-
{
|
518
|
-
"author": {
|
519
|
-
"email": "david.soms@gmail.com",
|
520
|
-
"name": "David Soms"
|
521
|
-
},
|
522
|
-
"message": "Updated catalan translation",
|
523
|
-
"sha": "73666ae5510f124596264a8c2a8b2a4923f084ed",
|
524
|
-
"url": "https://api.github.com/repos/dsoms/SonataAdminBundle/commits/73666ae5510f124596264a8c2a8b2a4923f084ed"
|
525
|
-
}
|
526
|
-
],
|
527
|
-
"head": "73666ae5510f124596264a8c2a8b2a4923f084ed",
|
528
|
-
"push_id": 58526128,
|
529
|
-
"ref": "refs/heads/master",
|
530
|
-
"size": 1
|
531
|
-
},
|
532
|
-
"public": true,
|
533
|
-
"repo": {
|
534
|
-
"id": 2282796,
|
535
|
-
"name": "dsoms/SonataAdminBundle",
|
536
|
-
"url": "https://api.github.com/repos/dsoms/SonataAdminBundle"
|
537
|
-
},
|
538
|
-
"type": "PushEvent"
|
539
|
-
},
|
540
|
-
{
|
541
|
-
"actor": {
|
542
|
-
"gravatar_id": "551694f45f3d00618740c664ef0338d3",
|
543
|
-
"id": 10243,
|
544
|
-
"login": "Dravos",
|
545
|
-
"url": "https://api.github.com/users/Dravos"
|
546
|
-
},
|
547
|
-
"created_at": "2012-01-21T10:33:26Z",
|
548
|
-
"id": "1513284734",
|
549
|
-
"org": {
|
550
|
-
"url": "https://api.github.com/orgs/"
|
551
|
-
},
|
552
|
-
"payload": {
|
553
|
-
"action": "started"
|
554
|
-
},
|
555
|
-
"public": true,
|
556
|
-
"repo": {
|
557
|
-
"id": 214668,
|
558
|
-
"name": "rightjs/rightjs-core",
|
559
|
-
"url": "https://api.github.com/repos/rightjs/rightjs-core"
|
560
|
-
},
|
561
|
-
"type": "WatchEvent"
|
562
|
-
},
|
563
|
-
{
|
564
|
-
"actor": {
|
565
|
-
"gravatar_id": "cbf6ab98ced4f8c4d4656ad726958f13",
|
566
|
-
"id": 309438,
|
567
|
-
"login": "jbee",
|
568
|
-
"url": "https://api.github.com/users/jbee"
|
569
|
-
},
|
570
|
-
"created_at": "2012-01-21T10:33:24Z",
|
571
|
-
"id": "1513284731",
|
572
|
-
"org": {
|
573
|
-
"url": "https://api.github.com/orgs/"
|
574
|
-
},
|
575
|
-
"payload": {
|
576
|
-
"commits": [
|
577
|
-
{
|
578
|
-
"author": {
|
579
|
-
"email": "jan.bernitt@gmx.de",
|
580
|
-
"name": "Jan Bernitt"
|
581
|
-
},
|
582
|
-
"message": "NEW content-model of FLY-documents - draft",
|
583
|
-
"sha": "21279dead8ab749699914729fd97d38d08ae031b",
|
584
|
-
"url": "https://api.github.com/repos/jbee/fly/commits/21279dead8ab749699914729fd97d38d08ae031b"
|
585
|
-
}
|
586
|
-
],
|
587
|
-
"head": "21279dead8ab749699914729fd97d38d08ae031b",
|
588
|
-
"push_id": 58526126,
|
589
|
-
"ref": "refs/heads/master",
|
590
|
-
"size": 1
|
591
|
-
},
|
592
|
-
"public": true,
|
593
|
-
"repo": {
|
594
|
-
"id": 3117691,
|
595
|
-
"name": "jbee/fly",
|
596
|
-
"url": "https://api.github.com/repos/jbee/fly"
|
597
|
-
},
|
598
|
-
"type": "PushEvent"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"actor": {
|
602
|
-
"gravatar_id": "90afc9fcc095a5adb7dea81d074ce3ff",
|
603
|
-
"id": 115899,
|
604
|
-
"login": "chhitz",
|
605
|
-
"url": "https://api.github.com/users/chhitz"
|
606
|
-
},
|
607
|
-
"created_at": "2012-01-21T10:33:24Z",
|
608
|
-
"id": "1513284732",
|
609
|
-
"org": {
|
610
|
-
"url": "https://api.github.com/orgs/"
|
611
|
-
},
|
612
|
-
"payload": {
|
613
|
-
"description": "single-user app for digitalSTROM",
|
614
|
-
"master_branch": "master",
|
615
|
-
"ref": "v0.5.1",
|
616
|
-
"ref_type": "tag"
|
617
|
-
},
|
618
|
-
"public": true,
|
619
|
-
"repo": {
|
620
|
-
"id": 3076161,
|
621
|
-
"name": "chhitz/single-user",
|
622
|
-
"url": "https://api.github.com/repos/chhitz/single-user"
|
623
|
-
},
|
624
|
-
"type": "CreateEvent"
|
625
|
-
},
|
626
|
-
{
|
627
|
-
"actor": {
|
628
|
-
"gravatar_id": "af0ba5eeaf7e5130fd38338ab50a7d1b",
|
629
|
-
"id": 208711,
|
630
|
-
"login": "primalmotion",
|
631
|
-
"url": "https://api.github.com/users/primalmotion"
|
632
|
-
},
|
633
|
-
"created_at": "2012-01-21T10:33:21Z",
|
634
|
-
"id": "1513284730",
|
635
|
-
"org": {
|
636
|
-
"url": "https://api.github.com/orgs/"
|
637
|
-
},
|
638
|
-
"payload": {
|
639
|
-
"commits": [
|
640
|
-
{
|
641
|
-
"author": {
|
642
|
-
"email": "antoine.mercadal@inframonde.eu",
|
643
|
-
"name": "Antoine Mercadal"
|
644
|
-
},
|
645
|
-
"message": "gosh! the DOM Event 3 managment on FF is weird... make it work under FF",
|
646
|
-
"sha": "ca727a170d88f8fdaa367670b837b28b09c99536",
|
647
|
-
"url": "https://api.github.com/repos/primalmotion/strophejs/commits/ca727a170d88f8fdaa367670b837b28b09c99536"
|
648
|
-
},
|
649
|
-
{
|
650
|
-
"author": {
|
651
|
-
"email": "antoine.mercadal@inframonde.eu",
|
652
|
-
"name": "Antoine Mercadal"
|
653
|
-
},
|
654
|
-
"message": "add some error handling logic",
|
655
|
-
"sha": "86be05f8b48fc9a9f5b30e05db5512987086a6a3",
|
656
|
-
"url": "https://api.github.com/repos/primalmotion/strophejs/commits/86be05f8b48fc9a9f5b30e05db5512987086a6a3"
|
657
|
-
}
|
658
|
-
],
|
659
|
-
"head": "86be05f8b48fc9a9f5b30e05db5512987086a6a3",
|
660
|
-
"push_id": 58526125,
|
661
|
-
"ref": "refs/heads/webworker-io",
|
662
|
-
"size": 2
|
663
|
-
},
|
664
|
-
"public": true,
|
665
|
-
"repo": {
|
666
|
-
"id": 1275891,
|
667
|
-
"name": "primalmotion/strophejs",
|
668
|
-
"url": "https://api.github.com/repos/primalmotion/strophejs"
|
669
|
-
},
|
670
|
-
"type": "PushEvent"
|
671
|
-
},
|
672
|
-
{
|
673
|
-
"actor": {
|
674
|
-
"gravatar_id": "419f3d086f62183ae25007e89f187430",
|
675
|
-
"id": 1139562,
|
676
|
-
"login": "oleegholm",
|
677
|
-
"url": "https://api.github.com/users/oleegholm"
|
678
|
-
},
|
679
|
-
"created_at": "2012-01-21T10:33:20Z",
|
680
|
-
"id": "1513284728",
|
681
|
-
"org": {
|
682
|
-
"url": "https://api.github.com/orgs/"
|
683
|
-
},
|
684
|
-
"payload": {
|
685
|
-
"commits": [
|
686
|
-
{
|
687
|
-
"author": {
|
688
|
-
"email": "oep@PC060335.a-aarhus.int",
|
689
|
-
"name": "unknown"
|
690
|
-
},
|
691
|
-
"message": "started refactoring so that all modules that needs a point calls the Point Module",
|
692
|
-
"sha": "254c5827916734aef04478dc6478ef430500f226",
|
693
|
-
"url": "https://api.github.com/repos/Jegp/siigna-modules/commits/254c5827916734aef04478dc6478ef430500f226"
|
694
|
-
}
|
695
|
-
],
|
696
|
-
"head": "254c5827916734aef04478dc6478ef430500f226",
|
697
|
-
"push_id": 58526123,
|
698
|
-
"ref": "refs/heads/OlesEdits",
|
699
|
-
"size": 1
|
700
|
-
},
|
701
|
-
"public": true,
|
702
|
-
"repo": {
|
703
|
-
"id": 2611811,
|
704
|
-
"name": "Jegp/siigna-modules",
|
705
|
-
"url": "https://api.github.com/repos/Jegp/siigna-modules"
|
706
|
-
},
|
707
|
-
"type": "PushEvent"
|
708
|
-
},
|
709
|
-
{
|
710
|
-
"actor": {
|
711
|
-
"gravatar_id": "ec04b1b9b5ee07da5514839de877af79",
|
712
|
-
"id": 976629,
|
713
|
-
"login": "neetumishra26",
|
714
|
-
"url": "https://api.github.com/users/neetumishra26"
|
715
|
-
},
|
716
|
-
"created_at": "2012-01-21T10:33:20Z",
|
717
|
-
"id": "1513284727",
|
718
|
-
"org": {
|
719
|
-
"url": "https://api.github.com/orgs/"
|
720
|
-
},
|
721
|
-
"payload": {
|
722
|
-
"commits": [
|
723
|
-
{
|
724
|
-
"author": {
|
725
|
-
"email": "neetumis@thoughtworks.com",
|
726
|
-
"name": "Neetu Mishra"
|
727
|
-
},
|
728
|
-
"message": "Get user input & show book catalog if user's choice is option 1",
|
729
|
-
"sha": "341882d77940821e01f9e507aa132656853be367",
|
730
|
-
"url": "https://api.github.com/repos/neetumishra26/LibraryMgmtSystem/commits/341882d77940821e01f9e507aa132656853be367"
|
731
|
-
}
|
732
|
-
],
|
733
|
-
"head": "341882d77940821e01f9e507aa132656853be367",
|
734
|
-
"push_id": 58526122,
|
735
|
-
"ref": "refs/heads/master",
|
736
|
-
"size": 1
|
737
|
-
},
|
738
|
-
"public": true,
|
739
|
-
"repo": {
|
740
|
-
"id": 3232008,
|
741
|
-
"name": "neetumishra26/LibraryMgmtSystem",
|
742
|
-
"url": "https://api.github.com/repos/neetumishra26/LibraryMgmtSystem"
|
743
|
-
},
|
744
|
-
"type": "PushEvent"
|
745
|
-
},
|
746
|
-
{
|
747
|
-
"actor": {
|
748
|
-
"gravatar_id": "85570b6623e44f128c08668bf6687f85",
|
749
|
-
"id": 18167,
|
750
|
-
"login": "gaqzi",
|
751
|
-
"url": "https://api.github.com/users/gaqzi"
|
752
|
-
},
|
753
|
-
"created_at": "2012-01-21T10:33:20Z",
|
754
|
-
"id": "1513284725",
|
755
|
-
"org": {
|
756
|
-
"url": "https://api.github.com/orgs/"
|
757
|
-
},
|
758
|
-
"payload": {
|
759
|
-
"target": {
|
760
|
-
"avatar_url": "https://secure.gravatar.com/avatar/4e3e57f91978091ddb9cc0cb1e27dea4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
761
|
-
"bio": null,
|
762
|
-
"blog": null,
|
763
|
-
"company": null,
|
764
|
-
"created_at": "2010-03-15T20:03:25Z",
|
765
|
-
"email": "",
|
766
|
-
"followers": 1,
|
767
|
-
"following": 0,
|
768
|
-
"gravatar_id": "4e3e57f91978091ddb9cc0cb1e27dea4",
|
769
|
-
"hireable": false,
|
770
|
-
"html_url": "https://github.com/dafoe",
|
771
|
-
"id": 223290,
|
772
|
-
"location": "Sweden",
|
773
|
-
"login": "dafoe",
|
774
|
-
"name": null,
|
775
|
-
"public_gists": 0,
|
776
|
-
"public_repos": 5,
|
777
|
-
"type": "User",
|
778
|
-
"url": "https://api.github.com/users/dafoe"
|
779
|
-
}
|
780
|
-
},
|
781
|
-
"public": 0,
|
782
|
-
"repo": {
|
783
|
-
"name": "/",
|
784
|
-
"url": "https://api.github.com/repos//"
|
785
|
-
},
|
786
|
-
"type": "FollowEvent"
|
787
|
-
},
|
788
|
-
{
|
789
|
-
"actor": {
|
790
|
-
"gravatar_id": "d378d6738d1a77e2e941e74699c4ba12",
|
791
|
-
"id": 1319841,
|
792
|
-
"login": "jathis",
|
793
|
-
"url": "https://api.github.com/users/jathis"
|
794
|
-
},
|
795
|
-
"created_at": "2012-01-21T10:33:19Z",
|
796
|
-
"id": "1513284724",
|
797
|
-
"org": {
|
798
|
-
"url": "https://api.github.com/orgs/"
|
799
|
-
},
|
800
|
-
"payload": {
|
801
|
-
"commits": [
|
802
|
-
{
|
803
|
-
"author": {
|
804
|
-
"email": "jonathan.gabris@gmail.com",
|
805
|
-
"name": "Jonathan Gabris"
|
806
|
-
},
|
807
|
-
"message": "Redesigned project structure.\n\nAdded sections of report.",
|
808
|
-
"sha": "4541a55c575ac37302559faa9cfdcf63dd389a16",
|
809
|
-
"url": "https://api.github.com/repos/jathis/final_year_electronics/commits/4541a55c575ac37302559faa9cfdcf63dd389a16"
|
810
|
-
}
|
811
|
-
],
|
812
|
-
"head": "4541a55c575ac37302559faa9cfdcf63dd389a16",
|
813
|
-
"push_id": 58526120,
|
814
|
-
"ref": "refs/heads/master",
|
815
|
-
"size": 1
|
816
|
-
},
|
817
|
-
"public": true,
|
818
|
-
"repo": {
|
819
|
-
"id": 3149188,
|
820
|
-
"name": "jathis/final_year_electronics",
|
821
|
-
"url": "https://api.github.com/repos/jathis/final_year_electronics"
|
822
|
-
},
|
823
|
-
"type": "PushEvent"
|
824
|
-
},
|
825
|
-
{
|
826
|
-
"actor": {
|
827
|
-
"gravatar_id": "78b19da4bb59e741a1aa6b6d510a4c01",
|
828
|
-
"id": 1182046,
|
829
|
-
"login": "olemerdy",
|
830
|
-
"url": "https://api.github.com/users/olemerdy"
|
831
|
-
},
|
832
|
-
"created_at": "2012-01-21T10:33:16Z",
|
833
|
-
"id": "1513284723",
|
834
|
-
"org": {
|
835
|
-
"gravatar_id": "9980a11148b4b1a9fe9fb0211553dd0f",
|
836
|
-
"id": 1182055,
|
837
|
-
"login": "LaFeuille",
|
838
|
-
"url": "https://api.github.com/orgs/"
|
839
|
-
},
|
840
|
-
"payload": {
|
841
|
-
"commits": [
|
842
|
-
{
|
843
|
-
"author": {
|
844
|
-
"email": "olivier.lemerdy@free.fr",
|
845
|
-
"name": "Olivier Le Merdy"
|
846
|
-
},
|
847
|
-
"message": "More URLs allowed",
|
848
|
-
"sha": "7eff9fa71aee7c36146d5e8a73f36b567b2f3c13",
|
849
|
-
"url": "https://api.github.com/repos/LaFeuille/samples-sigma/commits/7eff9fa71aee7c36146d5e8a73f36b567b2f3c13"
|
850
|
-
},
|
851
|
-
{
|
852
|
-
"author": {
|
853
|
-
"email": "olivier.lemerdy@free.fr",
|
854
|
-
"name": "Olivier Le Merdy"
|
855
|
-
},
|
856
|
-
"message": "Getting rid of XML context files for tests",
|
857
|
-
"sha": "2116b9dbc86c1449cdb41ac00eeb70cc2df6dc5a",
|
858
|
-
"url": "https://api.github.com/repos/LaFeuille/samples-sigma/commits/2116b9dbc86c1449cdb41ac00eeb70cc2df6dc5a"
|
859
|
-
}
|
860
|
-
],
|
861
|
-
"head": "2116b9dbc86c1449cdb41ac00eeb70cc2df6dc5a",
|
862
|
-
"push_id": 58526119,
|
863
|
-
"ref": "refs/heads/master",
|
864
|
-
"size": 2
|
865
|
-
},
|
866
|
-
"public": true,
|
867
|
-
"repo": {
|
868
|
-
"id": 2737944,
|
869
|
-
"name": "LaFeuille/samples-sigma",
|
870
|
-
"url": "https://api.github.com/repos/LaFeuille/samples-sigma"
|
871
|
-
},
|
872
|
-
"type": "PushEvent"
|
873
|
-
},
|
874
|
-
{
|
875
|
-
"actor": {
|
876
|
-
"gravatar_id": "23e8d9c545b0a9d603765abaadc3f499",
|
877
|
-
"id": 1083045,
|
878
|
-
"login": "oz123",
|
879
|
-
"url": "https://api.github.com/users/oz123"
|
880
|
-
},
|
881
|
-
"created_at": "2012-01-21T10:33:15Z",
|
882
|
-
"id": "1513284721",
|
883
|
-
"org": {
|
884
|
-
"gravatar_id": "047eec4e27bde9f976e60a3072385af8",
|
885
|
-
"id": 1236121,
|
886
|
-
"login": "mate-desktop",
|
887
|
-
"url": "https://api.github.com/orgs/"
|
888
|
-
},
|
889
|
-
"payload": {
|
890
|
-
"action": "opened",
|
891
|
-
"issue": {
|
892
|
-
"assignee": null,
|
893
|
-
"body": "When installing Mate-DE on debian, we need to include a in the post installation of the package the following command:\r\n``` $update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/mate-terminal 5\r\n```\r\nThis will allow the users (the less technically oriented of them ... ) to choose mate-terminal as the default terminal in the session.\r\n\r\nThis can be done by:\r\n<pre>$ sudo update-alternatives --config x-terminal-emulator\r\nThere are 5 choices for the alternative x-terminal-emulator (providing /usr/bin/x-terminal-emulator).\r\n\r\n Selection Path Priority Status\r\n------------------------------------------------------------\r\n* 0 /usr/bin/lxterm 30 auto mode\r\n 1 /usr/bin/koi8rxterm 20 manual mode\r\n 2 /usr/bin/lxterm 30 manual mode\r\n 3 /usr/bin/mate-terminal 5 manual mode\r\n 4 /usr/bin/uxterm 20 manual mode\r\n 5 /usr/bin/xterm 20 manual mode\r\n\r\nPress enter to keep the current choice[*], or type selection number: 3\r\nupdate-alternatives: using /usr/bin/mate-terminal to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in manual mode.\r\n</pre>\r\nThat last part should be included in the wiki or README file supplied with MATE-TERMINAL for Debian.\r\n\r\nCheers,\r\nOz",
|
894
|
-
"closed_at": null,
|
895
|
-
"comments": 0,
|
896
|
-
"created_at": "2012-01-21T10:33:14Z",
|
897
|
-
"html_url": "https://github.com/mate-desktop/mate-terminal/issues/1",
|
898
|
-
"id": 2920787,
|
899
|
-
"labels": [],
|
900
|
-
"milestone": null,
|
901
|
-
"number": 1,
|
902
|
-
"pull_request": {
|
903
|
-
"diff_url": null,
|
904
|
-
"html_url": null,
|
905
|
-
"patch_url": null
|
906
|
-
},
|
907
|
-
"state": "open",
|
908
|
-
"title": "update debian alternatives",
|
909
|
-
"updated_at": "2012-01-21T10:33:14Z",
|
910
|
-
"url": "https://api.github.com/repos/mate-desktop/mate-terminal/issues/1",
|
911
|
-
"user": {
|
912
|
-
"avatar_url": "https://secure.gravatar.com/avatar/23e8d9c545b0a9d603765abaadc3f499?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
913
|
-
"gravatar_id": "23e8d9c545b0a9d603765abaadc3f499",
|
914
|
-
"id": 1083045,
|
915
|
-
"login": "oz123",
|
916
|
-
"url": "https://api.github.com/users/oz123"
|
917
|
-
}
|
918
|
-
}
|
919
|
-
},
|
920
|
-
"public": true,
|
921
|
-
"repo": {
|
922
|
-
"id": 2727039,
|
923
|
-
"name": "mate-desktop/mate-terminal",
|
924
|
-
"url": "https://api.github.com/repos/mate-desktop/mate-terminal"
|
925
|
-
},
|
926
|
-
"type": "IssuesEvent"
|
927
|
-
},
|
928
|
-
{
|
929
|
-
"actor": {
|
930
|
-
"gravatar_id": "6155f96fe378846ad3ef2101809cf1c8",
|
931
|
-
"id": 1318140,
|
932
|
-
"login": "jlauwers",
|
933
|
-
"url": "https://api.github.com/users/jlauwers"
|
934
|
-
},
|
935
|
-
"created_at": "2012-01-21T10:33:10Z",
|
936
|
-
"id": "1513284720",
|
937
|
-
"org": {
|
938
|
-
"gravatar_id": "bb41fd105456e39e381279b70974b19c",
|
939
|
-
"id": 1321604,
|
940
|
-
"login": "pchtrakt",
|
941
|
-
"url": "https://api.github.com/orgs/"
|
942
|
-
},
|
943
|
-
"payload": {
|
944
|
-
"commits": [
|
945
|
-
{
|
946
|
-
"author": {
|
947
|
-
"email": "jonathan.lauwers@gmail.com",
|
948
|
-
"name": "jlauwers"
|
949
|
-
},
|
950
|
-
"message": "double episode started at 2nd episode",
|
951
|
-
"sha": "1526cd96ccf1e9c94fb99358e16c33f20d0d4d99",
|
952
|
-
"url": "https://api.github.com/repos/pchtrakt/pchtrakt/commits/1526cd96ccf1e9c94fb99358e16c33f20d0d4d99"
|
953
|
-
}
|
954
|
-
],
|
955
|
-
"head": "1526cd96ccf1e9c94fb99358e16c33f20d0d4d99",
|
956
|
-
"push_id": 58526117,
|
957
|
-
"ref": "refs/heads/release-0.1",
|
958
|
-
"size": 1
|
959
|
-
},
|
960
|
-
"public": true,
|
961
|
-
"repo": {
|
962
|
-
"id": 3164153,
|
963
|
-
"name": "pchtrakt/pchtrakt",
|
964
|
-
"url": "https://api.github.com/repos/pchtrakt/pchtrakt"
|
965
|
-
},
|
966
|
-
"type": "PushEvent"
|
967
|
-
},
|
968
|
-
{
|
969
|
-
"actor": {
|
970
|
-
"gravatar_id": "8aa1bd039ccc4539bef97f4529d0d07a",
|
971
|
-
"id": 862627,
|
972
|
-
"login": "DDR0",
|
973
|
-
"url": "https://api.github.com/users/DDR0"
|
974
|
-
},
|
975
|
-
"created_at": "2012-01-21T10:33:10Z",
|
976
|
-
"id": "1513284719",
|
977
|
-
"org": {
|
978
|
-
"gravatar_id": "ff4c4aaee438245de8ff1cf3c45410ca",
|
979
|
-
"id": 863583,
|
980
|
-
"login": "frogatto",
|
981
|
-
"url": "https://api.github.com/orgs/"
|
982
|
-
},
|
983
|
-
"payload": {
|
984
|
-
"commits": [
|
985
|
-
{
|
986
|
-
"author": {
|
987
|
-
"email": "robertsdavidddr@gmail.com",
|
988
|
-
"name": "David D. Roberts"
|
989
|
-
},
|
990
|
-
"message": "Fixed zordering bug with cube trains' raise objects.",
|
991
|
-
"sha": "9b0796c4293a53d8fdb8a999a2a79abbe32700c9",
|
992
|
-
"url": "https://api.github.com/repos/frogatto/frogatto/commits/9b0796c4293a53d8fdb8a999a2a79abbe32700c9"
|
993
|
-
}
|
994
|
-
],
|
995
|
-
"head": "9b0796c4293a53d8fdb8a999a2a79abbe32700c9",
|
996
|
-
"push_id": 58526116,
|
997
|
-
"ref": "refs/heads/master",
|
998
|
-
"size": 1
|
999
|
-
},
|
1000
|
-
"public": true,
|
1001
|
-
"repo": {
|
1002
|
-
"id": 1925520,
|
1003
|
-
"name": "frogatto/frogatto",
|
1004
|
-
"url": "https://api.github.com/repos/frogatto/frogatto"
|
1005
|
-
},
|
1006
|
-
"type": "PushEvent"
|
1007
|
-
},
|
1008
|
-
{
|
1009
|
-
"actor": {
|
1010
|
-
"gravatar_id": "01a49a77b04053bf4eb8b7de10822bdb",
|
1011
|
-
"id": 347161,
|
1012
|
-
"login": "vrx",
|
1013
|
-
"url": "https://api.github.com/users/vrx"
|
1014
|
-
},
|
1015
|
-
"created_at": "2012-01-21T10:33:09Z",
|
1016
|
-
"id": "1513284718",
|
1017
|
-
"org": {
|
1018
|
-
"url": "https://api.github.com/orgs/"
|
1019
|
-
},
|
1020
|
-
"payload": {
|
1021
|
-
"commits": [
|
1022
|
-
{
|
1023
|
-
"author": {
|
1024
|
-
"email": "vincent.rioux@gmail.com",
|
1025
|
-
"name": "Vincent Rioux"
|
1026
|
-
},
|
1027
|
-
"message": "ok",
|
1028
|
-
"sha": "58a52c2ace457b3e4db1659a20a5ac7d9f6d4eff",
|
1029
|
-
"url": "https://api.github.com/repos/vrx/vspy/commits/58a52c2ace457b3e4db1659a20a5ac7d9f6d4eff"
|
1030
|
-
}
|
1031
|
-
],
|
1032
|
-
"head": "58a52c2ace457b3e4db1659a20a5ac7d9f6d4eff",
|
1033
|
-
"push_id": 58526115,
|
1034
|
-
"ref": "refs/heads/master",
|
1035
|
-
"size": 1
|
1036
|
-
},
|
1037
|
-
"public": true,
|
1038
|
-
"repo": {
|
1039
|
-
"id": 803190,
|
1040
|
-
"name": "vrx/vspy",
|
1041
|
-
"url": "https://api.github.com/repos/vrx/vspy"
|
1042
|
-
},
|
1043
|
-
"type": "PushEvent"
|
1044
|
-
},
|
1045
|
-
{
|
1046
|
-
"actor": {
|
1047
|
-
"gravatar_id": "f4fb89db7a31703383f3c97df56c5993",
|
1048
|
-
"id": 1354925,
|
1049
|
-
"login": "sushil7",
|
1050
|
-
"url": "https://api.github.com/users/sushil7"
|
1051
|
-
},
|
1052
|
-
"created_at": "2012-01-21T10:33:09Z",
|
1053
|
-
"id": "1513284717",
|
1054
|
-
"org": {
|
1055
|
-
"url": "https://api.github.com/orgs/"
|
1056
|
-
},
|
1057
|
-
"payload": {
|
1058
|
-
"description": "ROR Demo app",
|
1059
|
-
"master_branch": "master",
|
1060
|
-
"ref": null,
|
1061
|
-
"ref_type": "repository"
|
1062
|
-
},
|
1063
|
-
"public": true,
|
1064
|
-
"repo": {
|
1065
|
-
"id": 3233210,
|
1066
|
-
"name": "sushil7/demo_app",
|
1067
|
-
"url": "https://api.github.com/repos/sushil7/demo_app"
|
1068
|
-
},
|
1069
|
-
"type": "CreateEvent"
|
1070
|
-
},
|
1071
|
-
{
|
1072
|
-
"actor": {
|
1073
|
-
"url": "https://api.github.com/users/"
|
1074
|
-
},
|
1075
|
-
"created_at": "2012-01-21T10:33:09Z",
|
1076
|
-
"id": "1513284716",
|
1077
|
-
"org": {
|
1078
|
-
"url": "https://api.github.com/orgs/"
|
1079
|
-
},
|
1080
|
-
"payload": {
|
1081
|
-
"action": "create",
|
1082
|
-
"gist": {
|
1083
|
-
"comments": 0,
|
1084
|
-
"created_at": "2012-01-21T10:33:08Z",
|
1085
|
-
"description": "ibus engine sample javascript",
|
1086
|
-
"files": {},
|
1087
|
-
"git_pull_url": "git://gist.github.com/1652298.git",
|
1088
|
-
"git_push_url": "git@gist.github.com:1652298.git",
|
1089
|
-
"html_url": "https://gist.github.com/1652298",
|
1090
|
-
"id": "1652298",
|
1091
|
-
"public": true,
|
1092
|
-
"updated_at": "2012-01-21T10:33:08Z",
|
1093
|
-
"url": "https://api.github.com/gists/1652298",
|
1094
|
-
"user": null
|
1095
|
-
}
|
1096
|
-
},
|
1097
|
-
"public": true,
|
1098
|
-
"repo": {
|
1099
|
-
"name": "/",
|
1100
|
-
"url": "https://api.github.com/repos//"
|
1101
|
-
},
|
1102
|
-
"type": "GistEvent"
|
1103
|
-
}
|
1104
|
-
]
|