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,78 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"type": "PushEvent",
|
4
|
-
"public": true,
|
5
|
-
"actor": {
|
6
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
7
|
-
"id": 10308,
|
8
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
9
|
-
"login": "sferik",
|
10
|
-
"url": "https://api.github.com/users/sferik"
|
11
|
-
},
|
12
|
-
"repo": {
|
13
|
-
"id": 507,
|
14
|
-
"url": "https://api.github.com/repos/sferik/twitter",
|
15
|
-
"name": "sferik/twitter"
|
16
|
-
},
|
17
|
-
"created_at": "2013-01-10T00:27:21Z",
|
18
|
-
"payload": {
|
19
|
-
"commits": [
|
20
|
-
{
|
21
|
-
"distinct": true,
|
22
|
-
"sha": "887f72586c323a9d9750072697edf78b9d4c29ab",
|
23
|
-
"url": "https://api.github.com/repos/sferik/twitter/commits/887f72586c323a9d9750072697edf78b9d4c29ab",
|
24
|
-
"author": {
|
25
|
-
"email": "sferik@gmail.com",
|
26
|
-
"name": "Erik Michaels-Ober"
|
27
|
-
},
|
28
|
-
"message": "Rename YARD tag \"Authentication Required?\" to \"Authentication\""
|
29
|
-
}
|
30
|
-
],
|
31
|
-
"head": "887f72586c323a9d9750072697edf78b9d4c29ab",
|
32
|
-
"distinct_size": 1,
|
33
|
-
"size": 1,
|
34
|
-
"push_id": 134034131,
|
35
|
-
"ref": "refs/heads/master",
|
36
|
-
"before": "b4484cbc74ba598cbeeaebaf25e4534ff5a69950"
|
37
|
-
},
|
38
|
-
"id": "1652715007"
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"type": "PushEvent",
|
42
|
-
"public": true,
|
43
|
-
"actor": {
|
44
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
45
|
-
"id": 10308,
|
46
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
47
|
-
"login": "sferik",
|
48
|
-
"url": "https://api.github.com/users/sferik"
|
49
|
-
},
|
50
|
-
"repo": {
|
51
|
-
"id": 1716295,
|
52
|
-
"url": "https://api.github.com/repos/sferik/sign-in-with-twitter",
|
53
|
-
"name": "sferik/sign-in-with-twitter"
|
54
|
-
},
|
55
|
-
"created_at": "2013-01-10T00:20:14Z",
|
56
|
-
"payload": {
|
57
|
-
"commits": [
|
58
|
-
{
|
59
|
-
"distinct": true,
|
60
|
-
"sha": "131783a5ff0714b34e06b8c1a76d2821b968a349",
|
61
|
-
"url": "https://api.github.com/repos/sferik/sign-in-with-twitter/commits/131783a5ff0714b34e06b8c1a76d2821b968a349",
|
62
|
-
"message": "Update twitter dependency to version 4.4.4",
|
63
|
-
"author": {
|
64
|
-
"email": "sferik@gmail.com",
|
65
|
-
"name": "Erik Michaels-Ober"
|
66
|
-
}
|
67
|
-
}
|
68
|
-
],
|
69
|
-
"head": "131783a5ff0714b34e06b8c1a76d2821b968a349",
|
70
|
-
"distinct_size": 1,
|
71
|
-
"size": 1,
|
72
|
-
"ref": "refs/heads/master",
|
73
|
-
"push_id": 134032306,
|
74
|
-
"before": "b4b2114eea201569406cf0c1c0306cbeab2ac8fa"
|
75
|
-
},
|
76
|
-
"id": "1652711641"
|
77
|
-
}
|
78
|
-
]
|
@@ -1,78 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"type": "CreateEvent",
|
4
|
-
"created_at": "2013-01-10T02:09:19Z",
|
5
|
-
"actor": {
|
6
|
-
"avatar_url": "https://secure.gravatar.com/avatar/efb7c66871043330ce1310a9bdd0aaf6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
7
|
-
"gravatar_id": "efb7c66871043330ce1310a9bdd0aaf6",
|
8
|
-
"url": "https://api.github.com/users/hone",
|
9
|
-
"login": "hone",
|
10
|
-
"id": 16457
|
11
|
-
},
|
12
|
-
"repo": {
|
13
|
-
"url": "https://api.github.com/repos/carlhuda/bundler",
|
14
|
-
"name": "carlhuda/bundler",
|
15
|
-
"id": 488514
|
16
|
-
},
|
17
|
-
"public": true,
|
18
|
-
"org": {
|
19
|
-
"avatar_url": "https://secure.gravatar.com/avatar/2cb8fc28095b45feaadb133a7a96e560?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
20
|
-
"gravatar_id": "2cb8fc28095b45feaadb133a7a96e560",
|
21
|
-
"url": "https://api.github.com/orgs/carlhuda",
|
22
|
-
"login": "carlhuda",
|
23
|
-
"id": 76794
|
24
|
-
},
|
25
|
-
"payload": {
|
26
|
-
"master_branch": "master",
|
27
|
-
"description": "Manage your application's gem dependencies with less pain",
|
28
|
-
"ref": "v1.3.0.pre.5",
|
29
|
-
"ref_type": "tag"
|
30
|
-
},
|
31
|
-
"id": "1652756065"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"type": "PushEvent",
|
35
|
-
"created_at": "2013-01-10T02:09:13Z",
|
36
|
-
"actor": {
|
37
|
-
"avatar_url": "https://secure.gravatar.com/avatar/efb7c66871043330ce1310a9bdd0aaf6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
38
|
-
"gravatar_id": "efb7c66871043330ce1310a9bdd0aaf6",
|
39
|
-
"url": "https://api.github.com/users/hone",
|
40
|
-
"login": "hone",
|
41
|
-
"id": 16457
|
42
|
-
},
|
43
|
-
"repo": {
|
44
|
-
"url": "https://api.github.com/repos/carlhuda/bundler",
|
45
|
-
"name": "carlhuda/bundler",
|
46
|
-
"id": 488514
|
47
|
-
},
|
48
|
-
"public": true,
|
49
|
-
"org": {
|
50
|
-
"avatar_url": "https://secure.gravatar.com/avatar/2cb8fc28095b45feaadb133a7a96e560?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
51
|
-
"gravatar_id": "2cb8fc28095b45feaadb133a7a96e560",
|
52
|
-
"url": "https://api.github.com/orgs/carlhuda",
|
53
|
-
"login": "carlhuda",
|
54
|
-
"id": 76794
|
55
|
-
},
|
56
|
-
"payload": {
|
57
|
-
"head": "b5a7e2e2abe0e7f4fb71cc23fae86e3e84a8a580",
|
58
|
-
"size": 1,
|
59
|
-
"before": "8745b98251ebb424a7e25676e4ab5979137c1c88",
|
60
|
-
"commits": [
|
61
|
-
{
|
62
|
-
"distinct": true,
|
63
|
-
"sha": "b5a7e2e2abe0e7f4fb71cc23fae86e3e84a8a580",
|
64
|
-
"author": {
|
65
|
-
"email": "hone02@gmail.com",
|
66
|
-
"name": "Terence Lee"
|
67
|
-
},
|
68
|
-
"url": "https://api.github.com/repos/carlhuda/bundler/commits/b5a7e2e2abe0e7f4fb71cc23fae86e3e84a8a580",
|
69
|
-
"message": "bump 1.3.0.pre.5"
|
70
|
-
}
|
71
|
-
],
|
72
|
-
"ref": "refs/heads/master",
|
73
|
-
"distinct_size": 1,
|
74
|
-
"push_id": 134055263
|
75
|
-
},
|
76
|
-
"id": "1652756032"
|
77
|
-
}
|
78
|
-
]
|
data/spec/fixtures/watched.json
DELETED
@@ -1,1022 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"clone_url": "https://github.com/mojombo/grit.git",
|
4
|
-
"created_at": "2007-10-29T14:37:16Z",
|
5
|
-
"description": "Grit gives you object oriented read/write access to Git repositories via Ruby.",
|
6
|
-
"fork": false,
|
7
|
-
"forks": 194,
|
8
|
-
"git_url": "git://github.com/mojombo/grit.git",
|
9
|
-
"has_downloads": true,
|
10
|
-
"has_issues": true,
|
11
|
-
"has_wiki": true,
|
12
|
-
"homepage": "http://grit.rubyforge.org/",
|
13
|
-
"html_url": "https://github.com/mojombo/grit",
|
14
|
-
"id": 1,
|
15
|
-
"language": "Ruby",
|
16
|
-
"master_branch": null,
|
17
|
-
"mirror_url": null,
|
18
|
-
"name": "grit",
|
19
|
-
"open_issues": 63,
|
20
|
-
"owner": {
|
21
|
-
"avatar_url": "https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
22
|
-
"gravatar_id": "25c7c18223fb42a4c6ae1c8db6f50f9b",
|
23
|
-
"id": 1,
|
24
|
-
"login": "mojombo",
|
25
|
-
"url": "https://api.github.com/users/mojombo"
|
26
|
-
},
|
27
|
-
"private": false,
|
28
|
-
"pushed_at": "2011-12-29T23:25:44Z",
|
29
|
-
"size": 2502,
|
30
|
-
"ssh_url": "git@github.com:mojombo/grit.git",
|
31
|
-
"svn_url": "https://github.com/mojombo/grit",
|
32
|
-
"updated_at": "2012-01-19T14:17:36Z",
|
33
|
-
"url": "https://api.github.com/repos/mojombo/grit",
|
34
|
-
"watchers": 1203
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"clone_url": "https://github.com/rubinius/rubinius.git",
|
38
|
-
"created_at": "2008-01-12T16:46:52Z",
|
39
|
-
"description": "Rubinius, the Ruby Environment",
|
40
|
-
"fork": false,
|
41
|
-
"forks": 326,
|
42
|
-
"git_url": "git://github.com/rubinius/rubinius.git",
|
43
|
-
"has_downloads": true,
|
44
|
-
"has_issues": true,
|
45
|
-
"has_wiki": true,
|
46
|
-
"homepage": "http://github.com/rubinius/rubinius",
|
47
|
-
"html_url": "https://github.com/rubinius/rubinius",
|
48
|
-
"id": 27,
|
49
|
-
"language": "Ruby",
|
50
|
-
"master_branch": "master",
|
51
|
-
"mirror_url": null,
|
52
|
-
"name": "rubinius",
|
53
|
-
"open_issues": 75,
|
54
|
-
"owner": {
|
55
|
-
"avatar_url": "https://secure.gravatar.com/avatar/8a664b7c5ca834af3e7e49d3a6160082?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
56
|
-
"gravatar_id": "8a664b7c5ca834af3e7e49d3a6160082",
|
57
|
-
"id": 317747,
|
58
|
-
"login": "rubinius",
|
59
|
-
"url": "https://api.github.com/users/rubinius"
|
60
|
-
},
|
61
|
-
"private": false,
|
62
|
-
"pushed_at": "2012-01-19T23:19:48Z",
|
63
|
-
"size": 7216,
|
64
|
-
"ssh_url": "git@github.com:rubinius/rubinius.git",
|
65
|
-
"svn_url": "https://github.com/rubinius/rubinius",
|
66
|
-
"updated_at": "2012-01-19T23:19:48Z",
|
67
|
-
"url": "https://api.github.com/repos/rubinius/rubinius",
|
68
|
-
"watchers": 1357
|
69
|
-
},
|
70
|
-
{
|
71
|
-
"clone_url": "https://github.com/collectiveidea/tinder.git",
|
72
|
-
"created_at": "2008-02-09T18:18:23Z",
|
73
|
-
"description": "Tinder is a Ruby API for interfacing with Campfire, the 37Signals chat application.",
|
74
|
-
"fork": false,
|
75
|
-
"forks": 59,
|
76
|
-
"git_url": "git://github.com/collectiveidea/tinder.git",
|
77
|
-
"has_downloads": true,
|
78
|
-
"has_issues": true,
|
79
|
-
"has_wiki": true,
|
80
|
-
"homepage": "http://tinder.rubyforge.org/",
|
81
|
-
"html_url": "https://github.com/collectiveidea/tinder",
|
82
|
-
"id": 376,
|
83
|
-
"language": "Ruby",
|
84
|
-
"master_branch": null,
|
85
|
-
"mirror_url": null,
|
86
|
-
"name": "tinder",
|
87
|
-
"open_issues": 4,
|
88
|
-
"owner": {
|
89
|
-
"avatar_url": "https://secure.gravatar.com/avatar/13ff8dc8c2bf2a4752816e1e3f201a05?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
90
|
-
"gravatar_id": "13ff8dc8c2bf2a4752816e1e3f201a05",
|
91
|
-
"id": 128,
|
92
|
-
"login": "collectiveidea",
|
93
|
-
"url": "https://api.github.com/users/collectiveidea"
|
94
|
-
},
|
95
|
-
"private": false,
|
96
|
-
"pushed_at": "2011-11-16T14:20:16Z",
|
97
|
-
"size": 460,
|
98
|
-
"ssh_url": "git@github.com:collectiveidea/tinder.git",
|
99
|
-
"svn_url": "https://github.com/collectiveidea/tinder",
|
100
|
-
"updated_at": "2012-01-19T11:21:07Z",
|
101
|
-
"url": "https://api.github.com/repos/collectiveidea/tinder",
|
102
|
-
"watchers": 185
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"clone_url": "https://github.com/jnunemaker/twitter.git",
|
106
|
-
"created_at": "2008-02-14T02:20:50Z",
|
107
|
-
"description": "A Ruby wrapper for the Twitter REST and Search APIs",
|
108
|
-
"fork": false,
|
109
|
-
"forks": 262,
|
110
|
-
"git_url": "git://github.com/jnunemaker/twitter.git",
|
111
|
-
"has_downloads": true,
|
112
|
-
"has_issues": true,
|
113
|
-
"has_wiki": true,
|
114
|
-
"homepage": "http://rdoc.info/gems/twitter",
|
115
|
-
"html_url": "https://github.com/jnunemaker/twitter",
|
116
|
-
"id": 507,
|
117
|
-
"language": "Ruby",
|
118
|
-
"master_branch": null,
|
119
|
-
"mirror_url": null,
|
120
|
-
"name": "twitter",
|
121
|
-
"open_issues": 6,
|
122
|
-
"owner": {
|
123
|
-
"avatar_url": "https://secure.gravatar.com/avatar/e13c31390e0369fcd5972292ce0e7b92?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
124
|
-
"gravatar_id": "e13c31390e0369fcd5972292ce0e7b92",
|
125
|
-
"id": 235,
|
126
|
-
"login": "jnunemaker",
|
127
|
-
"url": "https://api.github.com/users/jnunemaker"
|
128
|
-
},
|
129
|
-
"private": false,
|
130
|
-
"pushed_at": "2012-01-19T08:26:00Z",
|
131
|
-
"size": 240,
|
132
|
-
"ssh_url": "git@github.com:jnunemaker/twitter.git",
|
133
|
-
"svn_url": "https://github.com/jnunemaker/twitter",
|
134
|
-
"updated_at": "2012-01-20T02:26:28Z",
|
135
|
-
"url": "https://api.github.com/repos/jnunemaker/twitter",
|
136
|
-
"watchers": 1536
|
137
|
-
},
|
138
|
-
{
|
139
|
-
"clone_url": "https://github.com/lsegal/yard.git",
|
140
|
-
"created_at": "2008-02-26T00:01:52Z",
|
141
|
-
"description": "YARD is a Ruby Documentation tool. The Y stands for \"Yay!\"",
|
142
|
-
"fork": false,
|
143
|
-
"forks": 72,
|
144
|
-
"git_url": "git://github.com/lsegal/yard.git",
|
145
|
-
"has_downloads": true,
|
146
|
-
"has_issues": true,
|
147
|
-
"has_wiki": true,
|
148
|
-
"homepage": "http://yardoc.org",
|
149
|
-
"html_url": "https://github.com/lsegal/yard",
|
150
|
-
"id": 1252,
|
151
|
-
"language": "Ruby",
|
152
|
-
"master_branch": null,
|
153
|
-
"mirror_url": null,
|
154
|
-
"name": "yard",
|
155
|
-
"open_issues": 43,
|
156
|
-
"owner": {
|
157
|
-
"avatar_url": "https://secure.gravatar.com/avatar/510395998b7e929a8f48dc8cdb087379?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
158
|
-
"gravatar_id": "510395998b7e929a8f48dc8cdb087379",
|
159
|
-
"id": 686,
|
160
|
-
"login": "lsegal",
|
161
|
-
"url": "https://api.github.com/users/lsegal"
|
162
|
-
},
|
163
|
-
"private": false,
|
164
|
-
"pushed_at": "2012-01-19T21:42:59Z",
|
165
|
-
"size": 500,
|
166
|
-
"ssh_url": "git@github.com:lsegal/yard.git",
|
167
|
-
"svn_url": "https://github.com/lsegal/yard",
|
168
|
-
"updated_at": "2012-01-19T22:24:20Z",
|
169
|
-
"url": "https://api.github.com/repos/lsegal/yard",
|
170
|
-
"watchers": 508
|
171
|
-
},
|
172
|
-
{
|
173
|
-
"clone_url": "https://github.com/dchelimsky/rspec.git",
|
174
|
-
"created_at": "2008-02-29T23:32:44Z",
|
175
|
-
"description": "Behaviour Driven Development framework for Ruby",
|
176
|
-
"fork": false,
|
177
|
-
"forks": 154,
|
178
|
-
"git_url": "git://github.com/dchelimsky/rspec.git",
|
179
|
-
"has_downloads": true,
|
180
|
-
"has_issues": true,
|
181
|
-
"has_wiki": true,
|
182
|
-
"homepage": "http://rspec.info",
|
183
|
-
"html_url": "https://github.com/dchelimsky/rspec",
|
184
|
-
"id": 1932,
|
185
|
-
"language": "Ruby",
|
186
|
-
"master_branch": null,
|
187
|
-
"mirror_url": null,
|
188
|
-
"name": "rspec",
|
189
|
-
"open_issues": 10,
|
190
|
-
"owner": {
|
191
|
-
"avatar_url": "https://secure.gravatar.com/avatar/5d38ab152e1e3e219512a9859fcd93af?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
192
|
-
"gravatar_id": "5d38ab152e1e3e219512a9859fcd93af",
|
193
|
-
"id": 1075,
|
194
|
-
"login": "dchelimsky",
|
195
|
-
"url": "https://api.github.com/users/dchelimsky"
|
196
|
-
},
|
197
|
-
"private": false,
|
198
|
-
"pushed_at": "2011-10-28T11:43:55Z",
|
199
|
-
"size": 2712,
|
200
|
-
"ssh_url": "git@github.com:dchelimsky/rspec.git",
|
201
|
-
"svn_url": "https://github.com/dchelimsky/rspec",
|
202
|
-
"updated_at": "2012-01-19T01:08:09Z",
|
203
|
-
"url": "https://api.github.com/repos/dchelimsky/rspec",
|
204
|
-
"watchers": 1695
|
205
|
-
},
|
206
|
-
{
|
207
|
-
"clone_url": "https://github.com/Caged/gitnub.git",
|
208
|
-
"created_at": "2008-03-02T06:22:30Z",
|
209
|
-
"description": "A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.",
|
210
|
-
"fork": false,
|
211
|
-
"forks": 36,
|
212
|
-
"git_url": "git://github.com/Caged/gitnub.git",
|
213
|
-
"has_downloads": true,
|
214
|
-
"has_issues": true,
|
215
|
-
"has_wiki": true,
|
216
|
-
"homepage": "http://alternateidea.com",
|
217
|
-
"html_url": "https://github.com/Caged/gitnub",
|
218
|
-
"id": 2090,
|
219
|
-
"language": "Ruby",
|
220
|
-
"master_branch": null,
|
221
|
-
"mirror_url": null,
|
222
|
-
"name": "gitnub",
|
223
|
-
"open_issues": 5,
|
224
|
-
"owner": {
|
225
|
-
"avatar_url": "https://secure.gravatar.com/avatar/05234d5e970dd3c5f23e16898106062a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
226
|
-
"gravatar_id": "05234d5e970dd3c5f23e16898106062a",
|
227
|
-
"id": 25,
|
228
|
-
"login": "Caged",
|
229
|
-
"url": "https://api.github.com/users/Caged"
|
230
|
-
},
|
231
|
-
"private": false,
|
232
|
-
"pushed_at": "2009-12-17T18:42:45Z",
|
233
|
-
"size": 3379,
|
234
|
-
"ssh_url": "git@github.com:Caged/gitnub.git",
|
235
|
-
"svn_url": "https://github.com/Caged/gitnub",
|
236
|
-
"updated_at": "2012-01-17T19:38:34Z",
|
237
|
-
"url": "https://api.github.com/repos/Caged/gitnub",
|
238
|
-
"watchers": 1117
|
239
|
-
},
|
240
|
-
{
|
241
|
-
"clone_url": "https://github.com/nkallen/arel.git",
|
242
|
-
"created_at": "2008-03-09T05:37:48Z",
|
243
|
-
"description": "A Relational Algebra",
|
244
|
-
"fork": false,
|
245
|
-
"forks": 135,
|
246
|
-
"git_url": "git://github.com/nkallen/arel.git",
|
247
|
-
"has_downloads": true,
|
248
|
-
"has_issues": true,
|
249
|
-
"has_wiki": true,
|
250
|
-
"homepage": "",
|
251
|
-
"html_url": "https://github.com/nkallen/arel",
|
252
|
-
"id": 3160,
|
253
|
-
"language": "Ruby",
|
254
|
-
"master_branch": null,
|
255
|
-
"mirror_url": null,
|
256
|
-
"name": "arel",
|
257
|
-
"open_issues": 4,
|
258
|
-
"owner": {
|
259
|
-
"avatar_url": "https://secure.gravatar.com/avatar/d9914cfbec64060f4053fc221a2a7536?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
260
|
-
"gravatar_id": "d9914cfbec64060f4053fc221a2a7536",
|
261
|
-
"id": 699,
|
262
|
-
"login": "nkallen",
|
263
|
-
"url": "https://api.github.com/users/nkallen"
|
264
|
-
},
|
265
|
-
"private": false,
|
266
|
-
"pushed_at": "2009-05-21T04:06:11Z",
|
267
|
-
"size": 856,
|
268
|
-
"ssh_url": "git@github.com:nkallen/arel.git",
|
269
|
-
"svn_url": "https://github.com/nkallen/arel",
|
270
|
-
"updated_at": "2012-01-14T18:14:14Z",
|
271
|
-
"url": "https://api.github.com/repos/nkallen/arel",
|
272
|
-
"watchers": 194
|
273
|
-
},
|
274
|
-
{
|
275
|
-
"clone_url": "https://github.com/defunkt/cheat.git",
|
276
|
-
"created_at": "2008-03-12T06:09:09Z",
|
277
|
-
"description": "Cheating is fun!",
|
278
|
-
"fork": false,
|
279
|
-
"forks": 29,
|
280
|
-
"git_url": "git://github.com/defunkt/cheat.git",
|
281
|
-
"has_downloads": false,
|
282
|
-
"has_issues": true,
|
283
|
-
"has_wiki": false,
|
284
|
-
"homepage": "http://cheat.errtheblog.com",
|
285
|
-
"html_url": "https://github.com/defunkt/cheat",
|
286
|
-
"id": 3591,
|
287
|
-
"language": "Ruby",
|
288
|
-
"master_branch": null,
|
289
|
-
"mirror_url": null,
|
290
|
-
"name": "cheat",
|
291
|
-
"open_issues": 5,
|
292
|
-
"owner": {
|
293
|
-
"avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
294
|
-
"gravatar_id": "b8dbb1987e8e5318584865f880036796",
|
295
|
-
"id": 2,
|
296
|
-
"login": "defunkt",
|
297
|
-
"url": "https://api.github.com/users/defunkt"
|
298
|
-
},
|
299
|
-
"private": false,
|
300
|
-
"pushed_at": "2010-07-24T21:08:43Z",
|
301
|
-
"size": 488,
|
302
|
-
"ssh_url": "git@github.com:defunkt/cheat.git",
|
303
|
-
"svn_url": "https://github.com/defunkt/cheat",
|
304
|
-
"updated_at": "2012-01-20T01:05:19Z",
|
305
|
-
"url": "https://api.github.com/repos/defunkt/cheat",
|
306
|
-
"watchers": 123
|
307
|
-
},
|
308
|
-
{
|
309
|
-
"clone_url": "https://github.com/al3x/downforeveryoneorjustme.git",
|
310
|
-
"created_at": "2008-03-13T17:53:29Z",
|
311
|
-
"description": "Is it down for everyone, or just me?",
|
312
|
-
"fork": false,
|
313
|
-
"forks": 10,
|
314
|
-
"git_url": "git://github.com/al3x/downforeveryoneorjustme.git",
|
315
|
-
"has_downloads": true,
|
316
|
-
"has_issues": true,
|
317
|
-
"has_wiki": true,
|
318
|
-
"homepage": "http://downforeveryoneorjustme.com",
|
319
|
-
"html_url": "https://github.com/al3x/downforeveryoneorjustme",
|
320
|
-
"id": 3781,
|
321
|
-
"language": "Python",
|
322
|
-
"master_branch": null,
|
323
|
-
"mirror_url": null,
|
324
|
-
"name": "downforeveryoneorjustme",
|
325
|
-
"open_issues": 1,
|
326
|
-
"owner": {
|
327
|
-
"avatar_url": "https://secure.gravatar.com/avatar/3fcb27e39d2ff47357a803e91347fee4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
328
|
-
"gravatar_id": "3fcb27e39d2ff47357a803e91347fee4",
|
329
|
-
"id": 152,
|
330
|
-
"login": "al3x",
|
331
|
-
"url": "https://api.github.com/users/al3x"
|
332
|
-
},
|
333
|
-
"private": false,
|
334
|
-
"pushed_at": "2010-01-11T23:09:40Z",
|
335
|
-
"size": 1126,
|
336
|
-
"ssh_url": "git@github.com:al3x/downforeveryoneorjustme.git",
|
337
|
-
"svn_url": "https://github.com/al3x/downforeveryoneorjustme",
|
338
|
-
"updated_at": "2011-12-05T05:43:51Z",
|
339
|
-
"url": "https://api.github.com/repos/al3x/downforeveryoneorjustme",
|
340
|
-
"watchers": 59
|
341
|
-
},
|
342
|
-
{
|
343
|
-
"clone_url": "https://github.com/FooBarWidget/passenger.git",
|
344
|
-
"created_at": "2008-03-27T23:40:48Z",
|
345
|
-
"description": "Phusion Passenger (mod_rails)",
|
346
|
-
"fork": false,
|
347
|
-
"forks": 139,
|
348
|
-
"git_url": "git://github.com/FooBarWidget/passenger.git",
|
349
|
-
"has_downloads": false,
|
350
|
-
"has_issues": false,
|
351
|
-
"has_wiki": true,
|
352
|
-
"homepage": "http://www.modrails.com/",
|
353
|
-
"html_url": "https://github.com/FooBarWidget/passenger",
|
354
|
-
"id": 5625,
|
355
|
-
"language": "C++",
|
356
|
-
"master_branch": null,
|
357
|
-
"mirror_url": null,
|
358
|
-
"name": "passenger",
|
359
|
-
"open_issues": 15,
|
360
|
-
"owner": {
|
361
|
-
"avatar_url": "https://secure.gravatar.com/avatar/77a628df0bd2917d09828dd225a2c0ce?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
362
|
-
"gravatar_id": "77a628df0bd2917d09828dd225a2c0ce",
|
363
|
-
"id": 819,
|
364
|
-
"login": "FooBarWidget",
|
365
|
-
"url": "https://api.github.com/users/FooBarWidget"
|
366
|
-
},
|
367
|
-
"private": false,
|
368
|
-
"pushed_at": "2012-01-19T11:06:30Z",
|
369
|
-
"size": 764,
|
370
|
-
"ssh_url": "git@github.com:FooBarWidget/passenger.git",
|
371
|
-
"svn_url": "https://github.com/FooBarWidget/passenger",
|
372
|
-
"updated_at": "2012-01-19T11:06:32Z",
|
373
|
-
"url": "https://api.github.com/repos/FooBarWidget/passenger",
|
374
|
-
"watchers": 1205
|
375
|
-
},
|
376
|
-
{
|
377
|
-
"clone_url": "https://github.com/pezra/resourceful.git",
|
378
|
-
"created_at": "2008-04-01T22:17:38Z",
|
379
|
-
"description": "The canonical version of Resourceful is /paul/resourceful now. An HTTP library for Ruby that takes advantage of everything HTTP has to offer.",
|
380
|
-
"fork": false,
|
381
|
-
"forks": 10,
|
382
|
-
"git_url": "git://github.com/pezra/resourceful.git",
|
383
|
-
"has_downloads": false,
|
384
|
-
"has_issues": false,
|
385
|
-
"has_wiki": false,
|
386
|
-
"homepage": "http://absolute-performance.com/open-source/resourceful",
|
387
|
-
"html_url": "https://github.com/pezra/resourceful",
|
388
|
-
"id": 6181,
|
389
|
-
"language": "Ruby",
|
390
|
-
"master_branch": null,
|
391
|
-
"mirror_url": null,
|
392
|
-
"name": "resourceful",
|
393
|
-
"open_issues": 0,
|
394
|
-
"owner": {
|
395
|
-
"avatar_url": "https://secure.gravatar.com/avatar/f38112009dc16547051c8ac246cee443?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
396
|
-
"gravatar_id": "f38112009dc16547051c8ac246cee443",
|
397
|
-
"id": 4122,
|
398
|
-
"login": "pezra",
|
399
|
-
"url": "https://api.github.com/users/pezra"
|
400
|
-
},
|
401
|
-
"private": false,
|
402
|
-
"pushed_at": "2011-05-26T17:12:01Z",
|
403
|
-
"size": 348,
|
404
|
-
"ssh_url": "git@github.com:pezra/resourceful.git",
|
405
|
-
"svn_url": "https://github.com/pezra/resourceful",
|
406
|
-
"updated_at": "2011-12-27T23:56:51Z",
|
407
|
-
"url": "https://api.github.com/repos/pezra/resourceful",
|
408
|
-
"watchers": 18
|
409
|
-
},
|
410
|
-
{
|
411
|
-
"clone_url": "https://github.com/rails/rails.git",
|
412
|
-
"created_at": "2008-04-11T02:19:47Z",
|
413
|
-
"description": "Ruby on Rails",
|
414
|
-
"fork": false,
|
415
|
-
"forks": 2619,
|
416
|
-
"git_url": "git://github.com/rails/rails.git",
|
417
|
-
"has_downloads": true,
|
418
|
-
"has_issues": true,
|
419
|
-
"has_wiki": false,
|
420
|
-
"homepage": "http://rubyonrails.org",
|
421
|
-
"html_url": "https://github.com/rails/rails",
|
422
|
-
"id": 8514,
|
423
|
-
"language": "Ruby",
|
424
|
-
"master_branch": null,
|
425
|
-
"mirror_url": null,
|
426
|
-
"name": "rails",
|
427
|
-
"open_issues": 661,
|
428
|
-
"owner": {
|
429
|
-
"avatar_url": "https://secure.gravatar.com/avatar/30f39a09e233e8369dddf6feb4be0308?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
430
|
-
"gravatar_id": "30f39a09e233e8369dddf6feb4be0308",
|
431
|
-
"id": 4223,
|
432
|
-
"login": "rails",
|
433
|
-
"url": "https://api.github.com/users/rails"
|
434
|
-
},
|
435
|
-
"private": false,
|
436
|
-
"pushed_at": "2012-01-20T02:39:22Z",
|
437
|
-
"size": 100804,
|
438
|
-
"ssh_url": "git@github.com:rails/rails.git",
|
439
|
-
"svn_url": "https://github.com/rails/rails",
|
440
|
-
"updated_at": "2012-01-20T03:20:51Z",
|
441
|
-
"url": "https://api.github.com/repos/rails/rails",
|
442
|
-
"watchers": 12026
|
443
|
-
},
|
444
|
-
{
|
445
|
-
"clone_url": "https://github.com/fesplugas/typus.git",
|
446
|
-
"created_at": "2008-04-17T22:59:41Z",
|
447
|
-
"description": "Ruby on Rails Admin Panel (Engine) to allow trusted users edit structured content.",
|
448
|
-
"fork": false,
|
449
|
-
"forks": 159,
|
450
|
-
"git_url": "git://github.com/fesplugas/typus.git",
|
451
|
-
"has_downloads": true,
|
452
|
-
"has_issues": true,
|
453
|
-
"has_wiki": false,
|
454
|
-
"homepage": "http:/www.typuscmf.com/",
|
455
|
-
"html_url": "https://github.com/fesplugas/typus",
|
456
|
-
"id": 10731,
|
457
|
-
"language": "Ruby",
|
458
|
-
"master_branch": "master",
|
459
|
-
"mirror_url": null,
|
460
|
-
"name": "typus",
|
461
|
-
"open_issues": 26,
|
462
|
-
"owner": {
|
463
|
-
"avatar_url": "https://secure.gravatar.com/avatar/663b9f140ec3c343f75102499cdcece9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
464
|
-
"gravatar_id": "663b9f140ec3c343f75102499cdcece9",
|
465
|
-
"id": 2720,
|
466
|
-
"login": "fesplugas",
|
467
|
-
"url": "https://api.github.com/users/fesplugas"
|
468
|
-
},
|
469
|
-
"private": false,
|
470
|
-
"pushed_at": "2012-01-19T08:21:51Z",
|
471
|
-
"size": 516,
|
472
|
-
"ssh_url": "git@github.com:fesplugas/typus.git",
|
473
|
-
"svn_url": "https://github.com/fesplugas/typus",
|
474
|
-
"updated_at": "2012-01-20T01:00:14Z",
|
475
|
-
"url": "https://api.github.com/repos/fesplugas/typus",
|
476
|
-
"watchers": 860
|
477
|
-
},
|
478
|
-
{
|
479
|
-
"clone_url": "https://github.com/lifo/docrails.git",
|
480
|
-
"created_at": "2008-05-02T10:37:07Z",
|
481
|
-
"description": "PLEASE CHECK http://github.com/lifo/docrails/wikis",
|
482
|
-
"fork": false,
|
483
|
-
"forks": 246,
|
484
|
-
"git_url": "git://github.com/lifo/docrails.git",
|
485
|
-
"has_downloads": true,
|
486
|
-
"has_issues": false,
|
487
|
-
"has_wiki": true,
|
488
|
-
"homepage": "http://weblog.rubyonrails.org/2008/5/2/help-improve-rails-documentation-on-git-branch",
|
489
|
-
"html_url": "https://github.com/lifo/docrails",
|
490
|
-
"id": 13992,
|
491
|
-
"language": "Ruby",
|
492
|
-
"master_branch": null,
|
493
|
-
"mirror_url": null,
|
494
|
-
"name": "docrails",
|
495
|
-
"open_issues": 4,
|
496
|
-
"owner": {
|
497
|
-
"avatar_url": "https://secure.gravatar.com/avatar/a05834e9b5954947eb0ba3b570c47d5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
498
|
-
"gravatar_id": "a05834e9b5954947eb0ba3b570c47d5e",
|
499
|
-
"id": 91,
|
500
|
-
"login": "lifo",
|
501
|
-
"url": "https://api.github.com/users/lifo"
|
502
|
-
},
|
503
|
-
"private": false,
|
504
|
-
"pushed_at": "2012-01-19T16:41:59Z",
|
505
|
-
"size": 3412,
|
506
|
-
"ssh_url": "git@github.com:lifo/docrails.git",
|
507
|
-
"svn_url": "https://github.com/lifo/docrails",
|
508
|
-
"updated_at": "2012-01-19T22:43:28Z",
|
509
|
-
"url": "https://api.github.com/repos/lifo/docrails",
|
510
|
-
"watchers": 611
|
511
|
-
},
|
512
|
-
{
|
513
|
-
"clone_url": "https://github.com/jmhodges/rchardet.git",
|
514
|
-
"created_at": "2008-05-03T00:21:52Z",
|
515
|
-
"description": "Character encoding auto-detection in Ruby. As smart as your browser. Open source.",
|
516
|
-
"fork": false,
|
517
|
-
"forks": 24,
|
518
|
-
"git_url": "git://github.com/jmhodges/rchardet.git",
|
519
|
-
"has_downloads": true,
|
520
|
-
"has_issues": true,
|
521
|
-
"has_wiki": true,
|
522
|
-
"homepage": "http://rubyforge.org/projects/rchardet",
|
523
|
-
"html_url": "https://github.com/jmhodges/rchardet",
|
524
|
-
"id": 14154,
|
525
|
-
"language": "Ruby",
|
526
|
-
"master_branch": null,
|
527
|
-
"mirror_url": null,
|
528
|
-
"name": "rchardet",
|
529
|
-
"open_issues": 4,
|
530
|
-
"owner": {
|
531
|
-
"avatar_url": "https://secure.gravatar.com/avatar/c14d59affdf66fae5a925ee7df2de11a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
532
|
-
"gravatar_id": "c14d59affdf66fae5a925ee7df2de11a",
|
533
|
-
"id": 598,
|
534
|
-
"login": "jmhodges",
|
535
|
-
"url": "https://api.github.com/users/jmhodges"
|
536
|
-
},
|
537
|
-
"private": false,
|
538
|
-
"pushed_at": "2009-09-10T02:55:13Z",
|
539
|
-
"size": 240,
|
540
|
-
"ssh_url": "git@github.com:jmhodges/rchardet.git",
|
541
|
-
"svn_url": "https://github.com/jmhodges/rchardet",
|
542
|
-
"updated_at": "2012-01-01T21:58:08Z",
|
543
|
-
"url": "https://api.github.com/repos/jmhodges/rchardet",
|
544
|
-
"watchers": 64
|
545
|
-
},
|
546
|
-
{
|
547
|
-
"clone_url": "https://github.com/wycats/thor.git",
|
548
|
-
"created_at": "2008-05-07T20:07:31Z",
|
549
|
-
"description": "A scripting framework that replaces rake and sake",
|
550
|
-
"fork": false,
|
551
|
-
"forks": 122,
|
552
|
-
"git_url": "git://github.com/wycats/thor.git",
|
553
|
-
"has_downloads": true,
|
554
|
-
"has_issues": true,
|
555
|
-
"has_wiki": true,
|
556
|
-
"homepage": "http://www.yehudakatz.com",
|
557
|
-
"html_url": "https://github.com/wycats/thor",
|
558
|
-
"id": 15257,
|
559
|
-
"language": "Ruby",
|
560
|
-
"master_branch": null,
|
561
|
-
"mirror_url": null,
|
562
|
-
"name": "thor",
|
563
|
-
"open_issues": 46,
|
564
|
-
"owner": {
|
565
|
-
"avatar_url": "https://secure.gravatar.com/avatar/428167a3ec72235ba971162924492609?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
566
|
-
"gravatar_id": "428167a3ec72235ba971162924492609",
|
567
|
-
"id": 4,
|
568
|
-
"login": "wycats",
|
569
|
-
"url": "https://api.github.com/users/wycats"
|
570
|
-
},
|
571
|
-
"private": false,
|
572
|
-
"pushed_at": "2012-01-10T20:35:51Z",
|
573
|
-
"size": 212,
|
574
|
-
"ssh_url": "git@github.com:wycats/thor.git",
|
575
|
-
"svn_url": "https://github.com/wycats/thor",
|
576
|
-
"updated_at": "2012-01-19T21:28:51Z",
|
577
|
-
"url": "https://api.github.com/repos/wycats/thor",
|
578
|
-
"watchers": 1047
|
579
|
-
},
|
580
|
-
{
|
581
|
-
"clone_url": "https://github.com/paul/resourceful.git",
|
582
|
-
"created_at": "2008-05-09T16:00:36Z",
|
583
|
-
"description": "An HTTP library for Ruby that takes advantage of everything HTTP has to offer.",
|
584
|
-
"fork": true,
|
585
|
-
"forks": 5,
|
586
|
-
"git_url": "git://github.com/paul/resourceful.git",
|
587
|
-
"has_downloads": true,
|
588
|
-
"has_issues": true,
|
589
|
-
"has_wiki": true,
|
590
|
-
"homepage": "",
|
591
|
-
"html_url": "https://github.com/paul/resourceful",
|
592
|
-
"id": 15645,
|
593
|
-
"language": "Ruby",
|
594
|
-
"master_branch": null,
|
595
|
-
"mirror_url": null,
|
596
|
-
"name": "resourceful",
|
597
|
-
"open_issues": 2,
|
598
|
-
"owner": {
|
599
|
-
"avatar_url": "https://secure.gravatar.com/avatar/8f4b861a5b83575337b98d144a4ef4ca?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
600
|
-
"gravatar_id": "8f4b861a5b83575337b98d144a4ef4ca",
|
601
|
-
"id": 184,
|
602
|
-
"login": "paul",
|
603
|
-
"url": "https://api.github.com/users/paul"
|
604
|
-
},
|
605
|
-
"private": false,
|
606
|
-
"pushed_at": "2011-05-26T17:34:45Z",
|
607
|
-
"size": 408,
|
608
|
-
"ssh_url": "git@github.com:paul/resourceful.git",
|
609
|
-
"svn_url": "https://github.com/paul/resourceful",
|
610
|
-
"updated_at": "2011-12-27T23:56:51Z",
|
611
|
-
"url": "https://api.github.com/repos/paul/resourceful",
|
612
|
-
"watchers": 69
|
613
|
-
},
|
614
|
-
{
|
615
|
-
"clone_url": "https://github.com/jnicklas/templater.git",
|
616
|
-
"created_at": "2008-05-24T00:08:20Z",
|
617
|
-
"description": "RubiGen alternative Generator thingy",
|
618
|
-
"fork": false,
|
619
|
-
"forks": 9,
|
620
|
-
"git_url": "git://github.com/jnicklas/templater.git",
|
621
|
-
"has_downloads": true,
|
622
|
-
"has_issues": true,
|
623
|
-
"has_wiki": true,
|
624
|
-
"homepage": "",
|
625
|
-
"html_url": "https://github.com/jnicklas/templater",
|
626
|
-
"id": 19280,
|
627
|
-
"language": "Ruby",
|
628
|
-
"master_branch": null,
|
629
|
-
"mirror_url": null,
|
630
|
-
"name": "templater",
|
631
|
-
"open_issues": 4,
|
632
|
-
"owner": {
|
633
|
-
"avatar_url": "https://secure.gravatar.com/avatar/6c469749d725177dd2837d806c769cd4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
634
|
-
"gravatar_id": "6c469749d725177dd2837d806c769cd4",
|
635
|
-
"id": 134,
|
636
|
-
"login": "jnicklas",
|
637
|
-
"url": "https://api.github.com/users/jnicklas"
|
638
|
-
},
|
639
|
-
"private": false,
|
640
|
-
"pushed_at": "2009-08-27T22:04:43Z",
|
641
|
-
"size": 3072,
|
642
|
-
"ssh_url": "git@github.com:jnicklas/templater.git",
|
643
|
-
"svn_url": "https://github.com/jnicklas/templater",
|
644
|
-
"updated_at": "2012-01-13T12:32:09Z",
|
645
|
-
"url": "https://api.github.com/repos/jnicklas/templater",
|
646
|
-
"watchers": 46
|
647
|
-
},
|
648
|
-
{
|
649
|
-
"clone_url": "https://github.com/chneukirchen/rack.git",
|
650
|
-
"created_at": "2008-05-31T12:06:38Z",
|
651
|
-
"description": "a modular Ruby webserver interface | personal fork | PLEASE BRANCH/SEND PULL REQUESTS/FILE BUGS AT rack/rack",
|
652
|
-
"fork": false,
|
653
|
-
"forks": 345,
|
654
|
-
"git_url": "git://github.com/chneukirchen/rack.git",
|
655
|
-
"has_downloads": true,
|
656
|
-
"has_issues": false,
|
657
|
-
"has_wiki": true,
|
658
|
-
"homepage": "http://rack.rubyforge.org/",
|
659
|
-
"html_url": "https://github.com/chneukirchen/rack",
|
660
|
-
"id": 20990,
|
661
|
-
"language": "Ruby",
|
662
|
-
"master_branch": null,
|
663
|
-
"mirror_url": null,
|
664
|
-
"name": "rack",
|
665
|
-
"open_issues": 0,
|
666
|
-
"owner": {
|
667
|
-
"avatar_url": "https://secure.gravatar.com/avatar/7264fb16beeea92b89bb42023738259d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
668
|
-
"gravatar_id": "7264fb16beeea92b89bb42023738259d",
|
669
|
-
"id": 139,
|
670
|
-
"login": "chneukirchen",
|
671
|
-
"url": "https://api.github.com/users/chneukirchen"
|
672
|
-
},
|
673
|
-
"private": false,
|
674
|
-
"pushed_at": "2011-07-26T09:57:47Z",
|
675
|
-
"size": 256,
|
676
|
-
"ssh_url": "git@github.com:chneukirchen/rack.git",
|
677
|
-
"svn_url": "https://github.com/chneukirchen/rack",
|
678
|
-
"updated_at": "2012-01-18T15:49:16Z",
|
679
|
-
"url": "https://api.github.com/repos/chneukirchen/rack",
|
680
|
-
"watchers": 461
|
681
|
-
},
|
682
|
-
{
|
683
|
-
"clone_url": "https://github.com/samaaron/monomer.git",
|
684
|
-
"created_at": "2008-06-16T17:49:52Z",
|
685
|
-
"description": "A Ruby library (and sample apps) for playing with a monome (http://monome.org)",
|
686
|
-
"fork": false,
|
687
|
-
"forks": 5,
|
688
|
-
"git_url": "git://github.com/samaaron/monomer.git",
|
689
|
-
"has_downloads": true,
|
690
|
-
"has_issues": true,
|
691
|
-
"has_wiki": true,
|
692
|
-
"homepage": "http://docs.monome.org/doku.php?id=app:monomer",
|
693
|
-
"html_url": "https://github.com/samaaron/monomer",
|
694
|
-
"id": 25770,
|
695
|
-
"language": "Ruby",
|
696
|
-
"master_branch": null,
|
697
|
-
"mirror_url": null,
|
698
|
-
"name": "monomer",
|
699
|
-
"open_issues": 0,
|
700
|
-
"owner": {
|
701
|
-
"avatar_url": "https://secure.gravatar.com/avatar/858b3e3b5d26d7a8652da042f86c5c80?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
702
|
-
"gravatar_id": "858b3e3b5d26d7a8652da042f86c5c80",
|
703
|
-
"id": 369,
|
704
|
-
"login": "samaaron",
|
705
|
-
"url": "https://api.github.com/users/samaaron"
|
706
|
-
},
|
707
|
-
"private": false,
|
708
|
-
"pushed_at": "2008-06-28T23:14:32Z",
|
709
|
-
"size": 772,
|
710
|
-
"ssh_url": "git@github.com:samaaron/monomer.git",
|
711
|
-
"svn_url": "https://github.com/samaaron/monomer",
|
712
|
-
"updated_at": "2011-12-14T20:04:34Z",
|
713
|
-
"url": "https://api.github.com/repos/samaaron/monomer",
|
714
|
-
"watchers": 25
|
715
|
-
},
|
716
|
-
{
|
717
|
-
"clone_url": "https://github.com/Fudge/gltail.git",
|
718
|
-
"created_at": "2008-07-13T09:27:40Z",
|
719
|
-
"description": "Real-time visualization of server traffic, events and statistics with Ruby, SSH and OpenGL",
|
720
|
-
"fork": false,
|
721
|
-
"forks": 37,
|
722
|
-
"git_url": "git://github.com/Fudge/gltail.git",
|
723
|
-
"has_downloads": true,
|
724
|
-
"has_issues": true,
|
725
|
-
"has_wiki": true,
|
726
|
-
"homepage": "http://www.fudgie.org",
|
727
|
-
"html_url": "https://github.com/Fudge/gltail",
|
728
|
-
"id": 33714,
|
729
|
-
"language": "Ruby",
|
730
|
-
"master_branch": null,
|
731
|
-
"mirror_url": null,
|
732
|
-
"name": "gltail",
|
733
|
-
"open_issues": 13,
|
734
|
-
"owner": {
|
735
|
-
"avatar_url": "https://secure.gravatar.com/avatar/68cc0d50a7daceeebc83dabd8293bbf9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
736
|
-
"gravatar_id": "68cc0d50a7daceeebc83dabd8293bbf9",
|
737
|
-
"id": 2175,
|
738
|
-
"login": "Fudge",
|
739
|
-
"url": "https://api.github.com/users/Fudge"
|
740
|
-
},
|
741
|
-
"private": false,
|
742
|
-
"pushed_at": "2011-11-30T10:00:03Z",
|
743
|
-
"size": 328,
|
744
|
-
"ssh_url": "git@github.com:Fudge/gltail.git",
|
745
|
-
"svn_url": "https://github.com/Fudge/gltail",
|
746
|
-
"updated_at": "2012-01-18T04:48:13Z",
|
747
|
-
"url": "https://api.github.com/repos/Fudge/gltail",
|
748
|
-
"watchers": 327
|
749
|
-
},
|
750
|
-
{
|
751
|
-
"clone_url": "https://github.com/jnunemaker/httparty.git",
|
752
|
-
"created_at": "2008-07-28T20:55:11Z",
|
753
|
-
"description": "Makes http fun! Also, makes consuming restful web services dead easy.",
|
754
|
-
"fork": false,
|
755
|
-
"forks": 194,
|
756
|
-
"git_url": "git://github.com/jnunemaker/httparty.git",
|
757
|
-
"has_downloads": true,
|
758
|
-
"has_issues": true,
|
759
|
-
"has_wiki": true,
|
760
|
-
"homepage": "",
|
761
|
-
"html_url": "https://github.com/jnunemaker/httparty",
|
762
|
-
"id": 37997,
|
763
|
-
"language": "Ruby",
|
764
|
-
"master_branch": null,
|
765
|
-
"mirror_url": null,
|
766
|
-
"name": "httparty",
|
767
|
-
"open_issues": 38,
|
768
|
-
"owner": {
|
769
|
-
"avatar_url": "https://secure.gravatar.com/avatar/e13c31390e0369fcd5972292ce0e7b92?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
770
|
-
"gravatar_id": "e13c31390e0369fcd5972292ce0e7b92",
|
771
|
-
"id": 235,
|
772
|
-
"login": "jnunemaker",
|
773
|
-
"url": "https://api.github.com/users/jnunemaker"
|
774
|
-
},
|
775
|
-
"private": false,
|
776
|
-
"pushed_at": "2011-11-01T15:07:19Z",
|
777
|
-
"size": 360,
|
778
|
-
"ssh_url": "git@github.com:jnunemaker/httparty.git",
|
779
|
-
"svn_url": "https://github.com/jnunemaker/httparty",
|
780
|
-
"updated_at": "2012-01-18T12:44:48Z",
|
781
|
-
"url": "https://api.github.com/repos/jnunemaker/httparty",
|
782
|
-
"watchers": 1339
|
783
|
-
},
|
784
|
-
{
|
785
|
-
"clone_url": "https://github.com/binarylogic/searchlogic.git",
|
786
|
-
"created_at": "2008-08-25T05:23:31Z",
|
787
|
-
"description": "Searchlogic provides object based searching, common named scopes, and other useful named scope tools.",
|
788
|
-
"fork": false,
|
789
|
-
"forks": 114,
|
790
|
-
"git_url": "git://github.com/binarylogic/searchlogic.git",
|
791
|
-
"has_downloads": true,
|
792
|
-
"has_issues": true,
|
793
|
-
"has_wiki": true,
|
794
|
-
"homepage": "http://rdoc.info/projects/binarylogic/searchlogic",
|
795
|
-
"html_url": "https://github.com/binarylogic/searchlogic",
|
796
|
-
"id": 45668,
|
797
|
-
"language": "Ruby",
|
798
|
-
"master_branch": null,
|
799
|
-
"mirror_url": null,
|
800
|
-
"name": "searchlogic",
|
801
|
-
"open_issues": 115,
|
802
|
-
"owner": {
|
803
|
-
"avatar_url": "https://secure.gravatar.com/avatar/328f0bb678423fcea01ebe3b0edc74e6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
804
|
-
"gravatar_id": "328f0bb678423fcea01ebe3b0edc74e6",
|
805
|
-
"id": 4136,
|
806
|
-
"login": "binarylogic",
|
807
|
-
"url": "https://api.github.com/users/binarylogic"
|
808
|
-
},
|
809
|
-
"private": false,
|
810
|
-
"pushed_at": "2012-01-15T06:40:46Z",
|
811
|
-
"size": 2444,
|
812
|
-
"ssh_url": "git@github.com:binarylogic/searchlogic.git",
|
813
|
-
"svn_url": "https://github.com/binarylogic/searchlogic",
|
814
|
-
"updated_at": "2012-01-17T10:52:15Z",
|
815
|
-
"url": "https://api.github.com/repos/binarylogic/searchlogic",
|
816
|
-
"watchers": 1330
|
817
|
-
},
|
818
|
-
{
|
819
|
-
"clone_url": "https://github.com/jnicklas/carrierwave.git",
|
820
|
-
"created_at": "2008-08-28T18:39:49Z",
|
821
|
-
"description": "Classier solution for file uploads for Rails, Sinatra and other Ruby web frameworks",
|
822
|
-
"fork": false,
|
823
|
-
"forks": 309,
|
824
|
-
"git_url": "git://github.com/jnicklas/carrierwave.git",
|
825
|
-
"has_downloads": true,
|
826
|
-
"has_issues": true,
|
827
|
-
"has_wiki": true,
|
828
|
-
"homepage": "https://github.com/jnicklas/carrierwave",
|
829
|
-
"html_url": "https://github.com/jnicklas/carrierwave",
|
830
|
-
"id": 47087,
|
831
|
-
"language": "Ruby",
|
832
|
-
"master_branch": null,
|
833
|
-
"mirror_url": null,
|
834
|
-
"name": "carrierwave",
|
835
|
-
"open_issues": 14,
|
836
|
-
"owner": {
|
837
|
-
"avatar_url": "https://secure.gravatar.com/avatar/6c469749d725177dd2837d806c769cd4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
838
|
-
"gravatar_id": "6c469749d725177dd2837d806c769cd4",
|
839
|
-
"id": 134,
|
840
|
-
"login": "jnicklas",
|
841
|
-
"url": "https://api.github.com/users/jnicklas"
|
842
|
-
},
|
843
|
-
"private": false,
|
844
|
-
"pushed_at": "2012-01-20T00:27:17Z",
|
845
|
-
"size": 244,
|
846
|
-
"ssh_url": "git@github.com:jnicklas/carrierwave.git",
|
847
|
-
"svn_url": "https://github.com/jnicklas/carrierwave",
|
848
|
-
"updated_at": "2012-01-20T00:27:18Z",
|
849
|
-
"url": "https://api.github.com/repos/jnicklas/carrierwave",
|
850
|
-
"watchers": 2547
|
851
|
-
},
|
852
|
-
{
|
853
|
-
"clone_url": "https://github.com/kevinrutherford/reek.git",
|
854
|
-
"created_at": "2008-09-05T10:48:33Z",
|
855
|
-
"description": "Code smell detector for Ruby",
|
856
|
-
"fork": false,
|
857
|
-
"forks": 17,
|
858
|
-
"git_url": "git://github.com/kevinrutherford/reek.git",
|
859
|
-
"has_downloads": true,
|
860
|
-
"has_issues": true,
|
861
|
-
"has_wiki": true,
|
862
|
-
"homepage": "http://wiki.github.com/kevinrutherford/reek",
|
863
|
-
"html_url": "https://github.com/kevinrutherford/reek",
|
864
|
-
"id": 49515,
|
865
|
-
"language": "Ruby",
|
866
|
-
"master_branch": null,
|
867
|
-
"mirror_url": null,
|
868
|
-
"name": "reek",
|
869
|
-
"open_issues": 35,
|
870
|
-
"owner": {
|
871
|
-
"avatar_url": "https://secure.gravatar.com/avatar/9c39ead2d025bde14f3f39b20ff7d113?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
872
|
-
"gravatar_id": "9c39ead2d025bde14f3f39b20ff7d113",
|
873
|
-
"id": 23290,
|
874
|
-
"login": "kevinrutherford",
|
875
|
-
"url": "https://api.github.com/users/kevinrutherford"
|
876
|
-
},
|
877
|
-
"private": false,
|
878
|
-
"pushed_at": "2011-11-06T03:43:28Z",
|
879
|
-
"size": 248,
|
880
|
-
"ssh_url": "git@github.com:kevinrutherford/reek.git",
|
881
|
-
"svn_url": "https://github.com/kevinrutherford/reek",
|
882
|
-
"updated_at": "2012-01-19T17:55:41Z",
|
883
|
-
"url": "https://api.github.com/repos/kevinrutherford/reek",
|
884
|
-
"watchers": 466
|
885
|
-
},
|
886
|
-
{
|
887
|
-
"clone_url": "https://github.com/twitter4r/twitter4r-core.git",
|
888
|
-
"created_at": "2008-09-09T03:10:42Z",
|
889
|
-
"description": "Core library for Twitter4R, which provides Ruby bindings for the Twitter REST API",
|
890
|
-
"fork": false,
|
891
|
-
"forks": 6,
|
892
|
-
"git_url": "git://github.com/twitter4r/twitter4r-core.git",
|
893
|
-
"has_downloads": true,
|
894
|
-
"has_issues": true,
|
895
|
-
"has_wiki": true,
|
896
|
-
"homepage": "http://twitter4r.rubyforge.org",
|
897
|
-
"html_url": "https://github.com/twitter4r/twitter4r-core",
|
898
|
-
"id": 50673,
|
899
|
-
"language": "Ruby",
|
900
|
-
"master_branch": null,
|
901
|
-
"mirror_url": null,
|
902
|
-
"name": "twitter4r-core",
|
903
|
-
"open_issues": 8,
|
904
|
-
"owner": {
|
905
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1870789bc49337f67847b9f23a091d64?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
906
|
-
"gravatar_id": "1870789bc49337f67847b9f23a091d64",
|
907
|
-
"id": 23749,
|
908
|
-
"login": "twitter4r",
|
909
|
-
"url": "https://api.github.com/users/twitter4r"
|
910
|
-
},
|
911
|
-
"private": false,
|
912
|
-
"pushed_at": "2011-08-28T02:27:58Z",
|
913
|
-
"size": 124,
|
914
|
-
"ssh_url": "git@github.com:twitter4r/twitter4r-core.git",
|
915
|
-
"svn_url": "https://github.com/twitter4r/twitter4r-core",
|
916
|
-
"updated_at": "2012-01-11T13:34:51Z",
|
917
|
-
"url": "https://api.github.com/repos/twitter4r/twitter4r-core",
|
918
|
-
"watchers": 86
|
919
|
-
},
|
920
|
-
{
|
921
|
-
"clone_url": "https://github.com/collectiveidea/delayed_job.git",
|
922
|
-
"created_at": "2008-09-13T14:27:37Z",
|
923
|
-
"description": "Database based asynchronously priority queue system -- Extracted from Shopify ",
|
924
|
-
"fork": true,
|
925
|
-
"forks": 334,
|
926
|
-
"git_url": "git://github.com/collectiveidea/delayed_job.git",
|
927
|
-
"has_downloads": true,
|
928
|
-
"has_issues": true,
|
929
|
-
"has_wiki": true,
|
930
|
-
"homepage": "http://groups.google.com/group/delayed_job",
|
931
|
-
"html_url": "https://github.com/collectiveidea/delayed_job",
|
932
|
-
"id": 52287,
|
933
|
-
"language": "Ruby",
|
934
|
-
"master_branch": null,
|
935
|
-
"mirror_url": null,
|
936
|
-
"name": "delayed_job",
|
937
|
-
"open_issues": 71,
|
938
|
-
"owner": {
|
939
|
-
"avatar_url": "https://secure.gravatar.com/avatar/13ff8dc8c2bf2a4752816e1e3f201a05?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
940
|
-
"gravatar_id": "13ff8dc8c2bf2a4752816e1e3f201a05",
|
941
|
-
"id": 128,
|
942
|
-
"login": "collectiveidea",
|
943
|
-
"url": "https://api.github.com/users/collectiveidea"
|
944
|
-
},
|
945
|
-
"private": false,
|
946
|
-
"pushed_at": "2012-01-19T21:56:38Z",
|
947
|
-
"size": 2668,
|
948
|
-
"ssh_url": "git@github.com:collectiveidea/delayed_job.git",
|
949
|
-
"svn_url": "https://github.com/collectiveidea/delayed_job",
|
950
|
-
"updated_at": "2012-01-20T04:39:55Z",
|
951
|
-
"url": "https://api.github.com/repos/collectiveidea/delayed_job",
|
952
|
-
"watchers": 1793
|
953
|
-
},
|
954
|
-
{
|
955
|
-
"clone_url": "https://github.com/wycats/merb.git",
|
956
|
-
"created_at": "2008-10-13T02:39:08Z",
|
957
|
-
"description": "master merb branch",
|
958
|
-
"fork": false,
|
959
|
-
"forks": 113,
|
960
|
-
"git_url": "git://github.com/wycats/merb.git",
|
961
|
-
"has_downloads": true,
|
962
|
-
"has_issues": true,
|
963
|
-
"has_wiki": true,
|
964
|
-
"homepage": "http://www.merbivore.com",
|
965
|
-
"html_url": "https://github.com/wycats/merb",
|
966
|
-
"id": 62290,
|
967
|
-
"language": "Ruby",
|
968
|
-
"master_branch": null,
|
969
|
-
"mirror_url": null,
|
970
|
-
"name": "merb",
|
971
|
-
"open_issues": 4,
|
972
|
-
"owner": {
|
973
|
-
"avatar_url": "https://secure.gravatar.com/avatar/428167a3ec72235ba971162924492609?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
974
|
-
"gravatar_id": "428167a3ec72235ba971162924492609",
|
975
|
-
"id": 4,
|
976
|
-
"login": "wycats",
|
977
|
-
"url": "https://api.github.com/users/wycats"
|
978
|
-
},
|
979
|
-
"private": false,
|
980
|
-
"pushed_at": "2009-10-30T23:47:56Z",
|
981
|
-
"size": 13312,
|
982
|
-
"ssh_url": "git@github.com:wycats/merb.git",
|
983
|
-
"svn_url": "https://github.com/wycats/merb",
|
984
|
-
"updated_at": "2012-01-16T13:07:10Z",
|
985
|
-
"url": "https://api.github.com/repos/wycats/merb",
|
986
|
-
"watchers": 365
|
987
|
-
},
|
988
|
-
{
|
989
|
-
"clone_url": "https://github.com/rtomayko/rack-cache.git",
|
990
|
-
"created_at": "2008-10-25T02:02:09Z",
|
991
|
-
"description": "Real HTTP Caching for Ruby Web Apps",
|
992
|
-
"fork": false,
|
993
|
-
"forks": 41,
|
994
|
-
"git_url": "git://github.com/rtomayko/rack-cache.git",
|
995
|
-
"has_downloads": false,
|
996
|
-
"has_issues": true,
|
997
|
-
"has_wiki": false,
|
998
|
-
"homepage": "http://tomayko.com/src/rack-cache/",
|
999
|
-
"html_url": "https://github.com/rtomayko/rack-cache",
|
1000
|
-
"id": 67542,
|
1001
|
-
"language": "Ruby",
|
1002
|
-
"master_branch": null,
|
1003
|
-
"mirror_url": null,
|
1004
|
-
"name": "rack-cache",
|
1005
|
-
"open_issues": 18,
|
1006
|
-
"owner": {
|
1007
|
-
"avatar_url": "https://secure.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
1008
|
-
"gravatar_id": "abfc88b96ae18c85ba7aac3bded2ec5e",
|
1009
|
-
"id": 404,
|
1010
|
-
"login": "rtomayko",
|
1011
|
-
"url": "https://api.github.com/users/rtomayko"
|
1012
|
-
},
|
1013
|
-
"private": false,
|
1014
|
-
"pushed_at": "2011-11-28T19:09:55Z",
|
1015
|
-
"size": 264,
|
1016
|
-
"ssh_url": "git@github.com:rtomayko/rack-cache.git",
|
1017
|
-
"svn_url": "https://github.com/rtomayko/rack-cache",
|
1018
|
-
"updated_at": "2012-01-18T22:12:41Z",
|
1019
|
-
"url": "https://api.github.com/repos/rtomayko/rack-cache",
|
1020
|
-
"watchers": 357
|
1021
|
-
}
|
1022
|
-
]
|