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
data/spec/fixtures/label.json
DELETED
data/spec/fixtures/labels.json
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"color": "02d7e1",
|
4
|
-
"name": "V3 Transition",
|
5
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/labels/V3+Transition"
|
6
|
-
},
|
7
|
-
{
|
8
|
-
"color": "ededed",
|
9
|
-
"name": "V3 Addition",
|
10
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/labels/V3+Addition"
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"color": "e10c02",
|
14
|
-
"name": "Bug",
|
15
|
-
"url": "https://api.github.com/repos/pengwynn/octokit/labels/Bug"
|
16
|
-
}
|
17
|
-
]
|
@@ -1,49 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"issues": [
|
3
|
-
{
|
4
|
-
"body": "Hi,\n\nI just tried to play with this in an app with no ActiveRecord. I was disappointed. It seems the only reason the engine relies on AR is to provide History functionality. I would argue that having the History in a database, and therefore tying the app to AR & SQL, isn't worth it. How about we change it to just dump to a CSV and remove the AR dep?\n\n$0.02",
|
5
|
-
"comments": 14,
|
6
|
-
"created_at": "2010/10/03 11:36:43 -0700",
|
7
|
-
"gravatar_id": "9bee19040f2a9c6a901e33426a968135",
|
8
|
-
"labels": [
|
9
|
-
"@ml",
|
10
|
-
"enhancement"
|
11
|
-
],
|
12
|
-
"number": 105,
|
13
|
-
"position": 10.0,
|
14
|
-
"state": "open",
|
15
|
-
"title": "Use OrmAdapter instead of talking directly to ActiveRecord",
|
16
|
-
"updated_at": "2011/01/14 11:16:57 -0800",
|
17
|
-
"user": "ryana",
|
18
|
-
"votes": 5
|
19
|
-
},
|
20
|
-
{
|
21
|
-
"body": "Hi\r\n\r\nI added AbstracObject class to replace direct ActiveRecord calls in the controller. I moved the code for creating, updating and destroying from the controller to this class. AbstractObject should be good place for something like https://github.com/ianwhite/orm_adapter. I think that moving everything related to the history from MainController to AbstracObject is also good idea. ",
|
22
|
-
"comments": 3,
|
23
|
-
"created_at": "2011/01/03 05:56:35 -0800",
|
24
|
-
"gravatar_id": "07fb1f108e968f7b8573307eefddd66f",
|
25
|
-
"labels": [],
|
26
|
-
"number": 220,
|
27
|
-
"position": 43.0,
|
28
|
-
"state": "open",
|
29
|
-
"title": "Abstract object",
|
30
|
-
"updated_at": "2011/01/06 07:14:22 -0800",
|
31
|
-
"user": "ml",
|
32
|
-
"votes": 1
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"body": "RailsAdmin::AbstractModel has a bug in it's \"all\" method. It searches for \"class <blah>\" inside <rails_root>/app/models/**/*.rb. However, some of those discoveries were inside comments/quotes.\r\n\r\nAs such, I've modified it to use the union of those finds and the result of Module.constants.\r\nI also added a bit of \"connascence\" in that I made the self.lookup method accept a true/false flag for determining when to throw an exception -- which it still does by default.\r\n\r\nCheers,\r\nJonathan\r\n\r\np.s.\r\n(I'm new to open-source, so feel free to give me feedback positive/negative.)\r\n",
|
36
|
-
"comments": 0,
|
37
|
-
"created_at": "2011/01/10 20:10:15 -0800",
|
38
|
-
"gravatar_id": "cf68a0fe4901556a1665e4e154bfe7c8",
|
39
|
-
"labels": [],
|
40
|
-
"number": 237,
|
41
|
-
"position": 144.0,
|
42
|
-
"state": "open",
|
43
|
-
"title": "Bug-Fix w/ discovering ActiveRecord models",
|
44
|
-
"updated_at": "2011/01/10 20:10:15 -0800",
|
45
|
-
"user": "JayTeeSF",
|
46
|
-
"votes": 0
|
47
|
-
}
|
48
|
-
]
|
49
|
-
}
|
@@ -1,173 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"repositories": [
|
3
|
-
{
|
4
|
-
"created_at": "2010/02/17 06:33:05 -0800",
|
5
|
-
"description": "http://developers.140proof.com/docs/",
|
6
|
-
"fork": false,
|
7
|
-
"forks": 2,
|
8
|
-
"has_downloads": true,
|
9
|
-
"has_issues": true,
|
10
|
-
"has_wiki": true,
|
11
|
-
"homepage": "http://developers.140proof.com/docs/",
|
12
|
-
"name": "One40Proof",
|
13
|
-
"open_issues": 0,
|
14
|
-
"owner": "reddavis",
|
15
|
-
"private": false,
|
16
|
-
"pushed_at": "2010/06/29 17:55:20 -0700",
|
17
|
-
"size": 2420,
|
18
|
-
"url": "https://github.com/reddavis/One40Proof",
|
19
|
-
"watchers": 7
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"created_at": "2008/02/13 18:20:50 -0800",
|
23
|
-
"description": "A Ruby wrapper for the Twitter REST and Search APIs",
|
24
|
-
"fork": false,
|
25
|
-
"forks": 188,
|
26
|
-
"has_downloads": true,
|
27
|
-
"has_issues": true,
|
28
|
-
"has_wiki": true,
|
29
|
-
"homepage": "http://rdoc.info/gems/twitter",
|
30
|
-
"language": "Ruby",
|
31
|
-
"name": "twitter",
|
32
|
-
"open_issues": 0,
|
33
|
-
"owner": "jnunemaker",
|
34
|
-
"private": false,
|
35
|
-
"pushed_at": "2011/01/16 15:31:56 -0800",
|
36
|
-
"size": 1080,
|
37
|
-
"url": "https://github.com/jnunemaker/twitter",
|
38
|
-
"watchers": 1015
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"created_at": "2010/06/28 13:13:32 -0700",
|
42
|
-
"description": "Various Faraday middlewares for my Faraday-based API wrappers",
|
43
|
-
"fork": false,
|
44
|
-
"forks": 6,
|
45
|
-
"has_downloads": true,
|
46
|
-
"has_issues": true,
|
47
|
-
"has_wiki": true,
|
48
|
-
"homepage": "http://wynnnetherland.com/projects/faraday-middleware",
|
49
|
-
"language": "Ruby",
|
50
|
-
"name": "faraday_middleware",
|
51
|
-
"open_issues": 1,
|
52
|
-
"owner": "pengwynn",
|
53
|
-
"private": false,
|
54
|
-
"pushed_at": "2011/01/11 11:03:53 -0800",
|
55
|
-
"size": 164,
|
56
|
-
"url": "https://github.com/pengwynn/faraday_middleware",
|
57
|
-
"watchers": 25
|
58
|
-
},
|
59
|
-
{
|
60
|
-
"created_at": "2009/12/10 13:41:49 -0800",
|
61
|
-
"description": "Simple Ruby wrapper for the GitHub v2 API and feeds",
|
62
|
-
"fork": false,
|
63
|
-
"forks": 17,
|
64
|
-
"has_downloads": true,
|
65
|
-
"has_issues": true,
|
66
|
-
"has_wiki": true,
|
67
|
-
"homepage": "http://wynnnetherland.com/projects/octokit",
|
68
|
-
"language": "Ruby",
|
69
|
-
"name": "octokit",
|
70
|
-
"open_issues": 1,
|
71
|
-
"owner": "pengwynn",
|
72
|
-
"private": false,
|
73
|
-
"pushed_at": "2011/01/17 09:03:21 -0800",
|
74
|
-
"size": 1324,
|
75
|
-
"url": "https://github.com/pengwynn/octokit",
|
76
|
-
"watchers": 64
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"created_at": "2009/12/10 09:14:55 -0800",
|
80
|
-
"description": "Experiments in a rest api lib.",
|
81
|
-
"fork": false,
|
82
|
-
"forks": 20,
|
83
|
-
"has_downloads": true,
|
84
|
-
"has_issues": true,
|
85
|
-
"has_wiki": true,
|
86
|
-
"homepage": "",
|
87
|
-
"language": "Ruby",
|
88
|
-
"name": "faraday",
|
89
|
-
"open_issues": 7,
|
90
|
-
"owner": "technoweenie",
|
91
|
-
"private": false,
|
92
|
-
"pushed_at": "2011/01/15 07:55:20 -0800",
|
93
|
-
"size": 396,
|
94
|
-
"url": "https://github.com/technoweenie/faraday",
|
95
|
-
"watchers": 166
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"created_at": "2009/07/17 15:25:54 -0700",
|
99
|
-
"description": "A tool for verifying YARD documentation coverage",
|
100
|
-
"fork": false,
|
101
|
-
"forks": 4,
|
102
|
-
"has_downloads": false,
|
103
|
-
"has_issues": true,
|
104
|
-
"has_wiki": true,
|
105
|
-
"homepage": "http://wiki.github.com/dkubb/yardstick",
|
106
|
-
"language": "Ruby",
|
107
|
-
"name": "yardstick",
|
108
|
-
"open_issues": 0,
|
109
|
-
"owner": "dkubb",
|
110
|
-
"private": false,
|
111
|
-
"pushed_at": "2010/11/07 22:00:22 -0800",
|
112
|
-
"size": 3212,
|
113
|
-
"url": "https://github.com/dkubb/yardstick",
|
114
|
-
"watchers": 41
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"created_at": "2010/10/11 10:44:42 -0700",
|
118
|
-
"description": "Simply builds and verifies OAuth headers",
|
119
|
-
"fork": false,
|
120
|
-
"forks": 3,
|
121
|
-
"has_downloads": true,
|
122
|
-
"has_issues": true,
|
123
|
-
"has_wiki": true,
|
124
|
-
"homepage": "http://github.com/laserlemon/simple_oauth",
|
125
|
-
"name": "simple_oauth",
|
126
|
-
"open_issues": 0,
|
127
|
-
"owner": "laserlemon",
|
128
|
-
"private": false,
|
129
|
-
"pushed_at": "2010/12/16 19:11:52 -0800",
|
130
|
-
"size": 128,
|
131
|
-
"url": "https://github.com/laserlemon/simple_oauth",
|
132
|
-
"watchers": 7
|
133
|
-
},
|
134
|
-
{
|
135
|
-
"created_at": "2008/05/07 13:07:31 -0700",
|
136
|
-
"description": "A scripting framework that replaces rake and sake",
|
137
|
-
"fork": false,
|
138
|
-
"forks": 72,
|
139
|
-
"has_downloads": true,
|
140
|
-
"has_issues": true,
|
141
|
-
"has_wiki": true,
|
142
|
-
"homepage": "http://www.yehudakatz.com",
|
143
|
-
"language": "Ruby",
|
144
|
-
"name": "thor",
|
145
|
-
"open_issues": 11,
|
146
|
-
"owner": "wycats",
|
147
|
-
"private": false,
|
148
|
-
"pushed_at": "2011/01/12 17:13:33 -0800",
|
149
|
-
"size": 284,
|
150
|
-
"url": "https://github.com/wycats/thor",
|
151
|
-
"watchers": 728
|
152
|
-
},
|
153
|
-
{
|
154
|
-
"created_at": "2009/04/03 23:55:00 -0700",
|
155
|
-
"description": "example rails 3 application that uses oauth",
|
156
|
-
"fork": false,
|
157
|
-
"forks": 24,
|
158
|
-
"has_downloads": true,
|
159
|
-
"has_issues": true,
|
160
|
-
"has_wiki": true,
|
161
|
-
"homepage": "",
|
162
|
-
"language": "Ruby",
|
163
|
-
"name": "twitter-app",
|
164
|
-
"open_issues": 0,
|
165
|
-
"owner": "jnunemaker",
|
166
|
-
"private": false,
|
167
|
-
"pushed_at": "2011/01/16 17:25:16 -0800",
|
168
|
-
"size": 948,
|
169
|
-
"url": "https://github.com/jnunemaker/twitter-app",
|
170
|
-
"watchers": 139
|
171
|
-
}
|
172
|
-
]
|
173
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"users": [
|
3
|
-
{
|
4
|
-
"created": "2008-05-14T20:36:12Z",
|
5
|
-
"created_at": "2008-05-14T20:36:12Z",
|
6
|
-
"followers": 115,
|
7
|
-
"followers_count": 115,
|
8
|
-
"fullname": "Erik Michaels-Ober",
|
9
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
10
|
-
"id": "user-10308",
|
11
|
-
"language": "Ruby",
|
12
|
-
"location": "California",
|
13
|
-
"login": "sferik",
|
14
|
-
"name": "Erik Michaels-Ober",
|
15
|
-
"public_repo_count": 22,
|
16
|
-
"pushed": "2011-01-11T19:15:10.53Z",
|
17
|
-
"record": null,
|
18
|
-
"repos": 22,
|
19
|
-
"score": 4.4165397,
|
20
|
-
"type": "user",
|
21
|
-
"username": "sferik"
|
22
|
-
}
|
23
|
-
]
|
24
|
-
}
|
@@ -1,572 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"body": "This commit appears to have broken the build: http://ci.railsadmin.org/job/RailsAdmin/478/",
|
4
|
-
"commit_id": "0667424ae17990941624f1dc84dece421fecd595",
|
5
|
-
"created_at": "2011-07-30T18:59:10Z",
|
6
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0667424ae1#commitcomment-504455",
|
7
|
-
"id": 504455,
|
8
|
-
"line": null,
|
9
|
-
"path": null,
|
10
|
-
"position": null,
|
11
|
-
"updated_at": "2011-07-30T18:59:10Z",
|
12
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/504455",
|
13
|
-
"user": {
|
14
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
15
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
16
|
-
"id": 10308,
|
17
|
-
"login": "sferik",
|
18
|
-
"url": "https://api.github.com/users/sferik"
|
19
|
-
}
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"body": "This is a really common mistake, should we add an assertion to test suite that dummy_app really outputs English? I bet it's confusing for many of the users who take RailsAdmin for a test drive using dummy_app when it outputs a foreign language.",
|
23
|
-
"commit_id": "07597b5fed5febe9ae159378b3c3f2dc0637489c",
|
24
|
-
"created_at": "2010-12-22T12:33:46Z",
|
25
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/07597b5fed#commitcomment-224114",
|
26
|
-
"id": 224114,
|
27
|
-
"line": null,
|
28
|
-
"path": "",
|
29
|
-
"position": null,
|
30
|
-
"updated_at": "2010-12-22T12:33:46Z",
|
31
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/224114",
|
32
|
-
"user": {
|
33
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
34
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
35
|
-
"id": 215071,
|
36
|
-
"login": "kaapa",
|
37
|
-
"url": "https://api.github.com/users/kaapa"
|
38
|
-
}
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"body": "Yes, I'd be in favor of adding that test. Thanks for catching this and fixing it.",
|
42
|
-
"commit_id": "07597b5fed5febe9ae159378b3c3f2dc0637489c",
|
43
|
-
"created_at": "2010-12-22T19:51:45Z",
|
44
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/07597b5fed#commitcomment-224469",
|
45
|
-
"id": 224469,
|
46
|
-
"line": null,
|
47
|
-
"path": "",
|
48
|
-
"position": null,
|
49
|
-
"updated_at": "2010-12-22T19:51:45Z",
|
50
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/224469",
|
51
|
-
"user": {
|
52
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
53
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
54
|
-
"id": 10308,
|
55
|
-
"login": "sferik",
|
56
|
-
"url": "https://api.github.com/users/sferik"
|
57
|
-
}
|
58
|
-
},
|
59
|
-
{
|
60
|
-
"body": "Added in ef73d5843b64083b5e9de26fb0bcc722e2484c53.",
|
61
|
-
"commit_id": "07597b5fed5febe9ae159378b3c3f2dc0637489c",
|
62
|
-
"created_at": "2010-12-22T22:14:29Z",
|
63
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/07597b5fed#commitcomment-224582",
|
64
|
-
"id": 224582,
|
65
|
-
"line": null,
|
66
|
-
"path": "",
|
67
|
-
"position": null,
|
68
|
-
"updated_at": "2010-12-22T22:14:29Z",
|
69
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/224582",
|
70
|
-
"user": {
|
71
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
72
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
73
|
-
"id": 215071,
|
74
|
-
"login": "kaapa",
|
75
|
-
"url": "https://api.github.com/users/kaapa"
|
76
|
-
}
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"body": "Nice one @bbenezech! You're on a roll.",
|
80
|
-
"commit_id": "08e296957f04ed07c7ad930ed41e66cb1e3c41ef",
|
81
|
-
"created_at": "2011-09-06T23:29:20Z",
|
82
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/08e296957f#commitcomment-573186",
|
83
|
-
"id": 573186,
|
84
|
-
"line": null,
|
85
|
-
"path": null,
|
86
|
-
"position": null,
|
87
|
-
"updated_at": "2011-09-06T23:29:20Z",
|
88
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/573186",
|
89
|
-
"user": {
|
90
|
-
"avatar_url": "https://secure.gravatar.com/avatar/67c0c5d4a82a8b28405d2fe4f581cc65?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
91
|
-
"gravatar_id": "67c0c5d4a82a8b28405d2fe4f581cc65",
|
92
|
-
"id": 42500,
|
93
|
-
"login": "gunn",
|
94
|
-
"url": "https://api.github.com/users/gunn"
|
95
|
-
}
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"body": "This one needs preview as well... The performance benefit here is big, but is it too risky to make it spec's responsibility to reset the environment once it's been run?",
|
99
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
100
|
-
"created_at": "2010-11-16T18:32:36Z",
|
101
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195206",
|
102
|
-
"id": 195206,
|
103
|
-
"line": null,
|
104
|
-
"path": "",
|
105
|
-
"position": null,
|
106
|
-
"updated_at": "2010-11-16T18:32:48Z",
|
107
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195206",
|
108
|
-
"user": {
|
109
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
110
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
111
|
-
"id": 215071,
|
112
|
-
"login": "kaapa",
|
113
|
-
"url": "https://api.github.com/users/kaapa"
|
114
|
-
}
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"body": "The risk is that someone might write a spec but forget to call reset, which could have side-effects? Or are there some other risk?\n\nIn my testing, these changes make the specs run 33% faster, which seems like a worthwhile tradeoff.",
|
118
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
119
|
-
"created_at": "2010-11-16T20:15:57Z",
|
120
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195300",
|
121
|
-
"id": 195300,
|
122
|
-
"line": null,
|
123
|
-
"path": "",
|
124
|
-
"position": null,
|
125
|
-
"updated_at": "2010-11-16T22:32:05Z",
|
126
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195300",
|
127
|
-
"user": {
|
128
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
129
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
130
|
-
"id": 10308,
|
131
|
-
"login": "sferik",
|
132
|
-
"url": "https://api.github.com/users/sferik"
|
133
|
-
}
|
134
|
-
},
|
135
|
-
{
|
136
|
-
"body": "Indeed that's what I meant. It would have been nice to stick to automatic reset after each test, but I wanted to introduce this approach as it is a real time saver in development cycle. Good thing is though that it only affects the tests in the config section of the suite. Also the performance benefit will become even greater as more tests are written to the config section.",
|
137
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
138
|
-
"created_at": "2010-11-16T20:31:26Z",
|
139
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195306",
|
140
|
-
"id": 195306,
|
141
|
-
"line": null,
|
142
|
-
"path": "",
|
143
|
-
"position": null,
|
144
|
-
"updated_at": "2010-11-16T20:31:26Z",
|
145
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195306",
|
146
|
-
"user": {
|
147
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
148
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
149
|
-
"id": 215071,
|
150
|
-
"login": "kaapa",
|
151
|
-
"url": "https://api.github.com/users/kaapa"
|
152
|
-
}
|
153
|
-
},
|
154
|
-
{
|
155
|
-
"body": "Can't we just split this big file into files dedicated to different features of the admin?\nWhen I develop a new feature I just run the tests that are specific to what I wrote and before pushing to master I run the whole suite.\nAnd the performance improvement is really great so it's worth the risk!",
|
156
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
157
|
-
"created_at": "2010-11-16T20:56:03Z",
|
158
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195333",
|
159
|
-
"id": 195333,
|
160
|
-
"line": null,
|
161
|
-
"path": "",
|
162
|
-
"position": null,
|
163
|
-
"updated_at": "2010-11-16T20:59:22Z",
|
164
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195333",
|
165
|
-
"user": {
|
166
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfa3143343f3680753e0ae09de57bcd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
167
|
-
"gravatar_id": "dfa3143343f3680753e0ae09de57bcd6",
|
168
|
-
"id": 2641,
|
169
|
-
"login": "hurrycane",
|
170
|
-
"url": "https://api.github.com/users/hurrycane"
|
171
|
-
}
|
172
|
-
},
|
173
|
-
{
|
174
|
-
"body": "yeah, splitting the file would be great - you can run just the file that you want during development and then run them all before you check in.\r\n\r\nyou can also tell rspec to run only specific specs, e.g.,\r\n$ rake spec SPEC_OPTS=\"-l 1539\" SPEC=\"spec/requests/rails_admin_spec.rb\"\r\n\r\nFor some unknown reason the \"-l\" flag (line number) works but the \"-e\" flag doesnt, it never matches anthing. Might be me doing it wrong:\r\n$ rake spec SPEC_OPTS=\"-e \\\"has-and-belongs\\\"\" SPEC=\"spec/requests/rails_admin_spec.rb\"\r\n\r\n(in /home/ccabot/rails_admin)\r\n/home/ccabot/.rvm/rubies/ruby-1.8.7-p302/bin/ruby -S bundle exec rspec spec/requests/rails_admin_spec.rb\r\nWARNING: SimpleCov is activated, but you're not running Ruby 1.9 - no coverage analysis will happen\r\nRun filtered using {:full_description=>/(?-mix:\"has-and-belongs\")/}\r\nNo examples were matched. Perhaps {:unless=>#<Proc:0xb73f8538@/home/ccabot/.rvm/gems/ruby-1.8.7-p302/gems/rspec-core-2.1.0/lib/rspec/core/configuration.rb:53>, :if=>#<Proc:0xb73f863c@/home/ccabot/.rvm/gems/ruby-1.8.7-p302/gems/rspec-core-2.1.0/lib/rspec/core/configuration.rb:52>} is excluding everything?\r\n",
|
175
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
176
|
-
"created_at": "2010-11-16T21:27:54Z",
|
177
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195370",
|
178
|
-
"id": 195370,
|
179
|
-
"line": null,
|
180
|
-
"path": "",
|
181
|
-
"position": null,
|
182
|
-
"updated_at": "2010-11-16T21:27:54Z",
|
183
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195370",
|
184
|
-
"user": {
|
185
|
-
"avatar_url": "https://secure.gravatar.com/avatar/6d246f2dde05095bebd3ba3cb54c676a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
186
|
-
"gravatar_id": "6d246f2dde05095bebd3ba3cb54c676a",
|
187
|
-
"id": 331883,
|
188
|
-
"login": "ccabot",
|
189
|
-
"url": "https://api.github.com/users/ccabot"
|
190
|
-
}
|
191
|
-
},
|
192
|
-
{
|
193
|
-
"body": "+1 on splitting the suite - great idea!",
|
194
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
195
|
-
"created_at": "2010-11-16T22:06:44Z",
|
196
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195402",
|
197
|
-
"id": 195402,
|
198
|
-
"line": null,
|
199
|
-
"path": "",
|
200
|
-
"position": null,
|
201
|
-
"updated_at": "2010-11-16T22:06:44Z",
|
202
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195402",
|
203
|
-
"user": {
|
204
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
205
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
206
|
-
"id": 215071,
|
207
|
-
"login": "kaapa",
|
208
|
-
"url": "https://api.github.com/users/kaapa"
|
209
|
-
}
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"body": "I nominate Bogdan (hurrycane) to do the splitting, since it was his idea. ;)",
|
213
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
214
|
-
"created_at": "2010-11-16T22:11:24Z",
|
215
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195408",
|
216
|
-
"id": 195408,
|
217
|
-
"line": null,
|
218
|
-
"path": "",
|
219
|
-
"position": null,
|
220
|
-
"updated_at": "2010-11-16T22:11:24Z",
|
221
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195408",
|
222
|
-
"user": {
|
223
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
224
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
225
|
-
"id": 10308,
|
226
|
-
"login": "sferik",
|
227
|
-
"url": "https://api.github.com/users/sferik"
|
228
|
-
}
|
229
|
-
},
|
230
|
-
{
|
231
|
-
"body": "On it :D",
|
232
|
-
"commit_id": "0f47569290af9fabb3002d0009cd57245e8453de",
|
233
|
-
"created_at": "2010-11-16T22:27:32Z",
|
234
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/0f47569290#commitcomment-195419",
|
235
|
-
"id": 195419,
|
236
|
-
"line": null,
|
237
|
-
"path": "",
|
238
|
-
"position": null,
|
239
|
-
"updated_at": "2010-11-16T22:27:32Z",
|
240
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/195419",
|
241
|
-
"user": {
|
242
|
-
"avatar_url": "https://secure.gravatar.com/avatar/dfa3143343f3680753e0ae09de57bcd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
243
|
-
"gravatar_id": "dfa3143343f3680753e0ae09de57bcd6",
|
244
|
-
"id": 2641,
|
245
|
-
"login": "hurrycane",
|
246
|
-
"url": "https://api.github.com/users/hurrycane"
|
247
|
-
}
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"body": "See the Markdown section of http://about.travis-ci.org/docs/user/status-images/",
|
251
|
-
"commit_id": "105ab72638b528b2542a22ece9736e2dd2e9dafa",
|
252
|
-
"created_at": "2011-07-31T18:24:18Z",
|
253
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/105ab72638#commitcomment-505142",
|
254
|
-
"id": 505142,
|
255
|
-
"line": null,
|
256
|
-
"path": null,
|
257
|
-
"position": null,
|
258
|
-
"updated_at": "2011-07-31T18:24:18Z",
|
259
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/505142",
|
260
|
-
"user": {
|
261
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
262
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
263
|
-
"id": 10308,
|
264
|
-
"login": "sferik",
|
265
|
-
"url": "https://api.github.com/users/sferik"
|
266
|
-
}
|
267
|
-
},
|
268
|
-
{
|
269
|
-
"body": "Sferik, please review this approach to support CI with multiple db backends.\r\n\r\nThe idea here is that the test suite has minimal relation to needs of the CI. With a setup like this Hudson can invoke a build with each ruby version / database backend with a command like this (when setup with a multi-axis build configuration):\r\n bash -l -c \"rvm use $CI_RUBY_VERSION && export CI_DB_ADAPTER=$CI_DB_ADAPTER && cd spec/dummy_app && bundle install && rake admin:prepare_ci_env && cd ../../ && bundle exec rake\"\r\n\r\nThere probably would be a better location for prepare_ci_env rake task somewhere within the engine itself, but that was beyond the scope of this first iteration.",
|
270
|
-
"commit_id": "107a4d2231a213eb46763d48f8feab4ec8a7c7ee",
|
271
|
-
"created_at": "2010-12-21T21:16:37Z",
|
272
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/107a4d2231#commitcomment-223633",
|
273
|
-
"id": 223633,
|
274
|
-
"line": null,
|
275
|
-
"path": "",
|
276
|
-
"position": null,
|
277
|
-
"updated_at": "2010-12-21T21:16:37Z",
|
278
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223633",
|
279
|
-
"user": {
|
280
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
281
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
282
|
-
"id": 215071,
|
283
|
-
"login": "kaapa",
|
284
|
-
"url": "https://api.github.com/users/kaapa"
|
285
|
-
}
|
286
|
-
},
|
287
|
-
{
|
288
|
-
"body": "Also, I picked the db driver versions for the Gemfile from rubygems.org and only tested that it works on sqlite3.",
|
289
|
-
"commit_id": "107a4d2231a213eb46763d48f8feab4ec8a7c7ee",
|
290
|
-
"created_at": "2010-12-21T21:19:27Z",
|
291
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/107a4d2231#commitcomment-223639",
|
292
|
-
"id": 223639,
|
293
|
-
"line": null,
|
294
|
-
"path": "",
|
295
|
-
"position": null,
|
296
|
-
"updated_at": "2010-12-21T21:19:27Z",
|
297
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223639",
|
298
|
-
"user": {
|
299
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
300
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
301
|
-
"id": 215071,
|
302
|
-
"login": "kaapa",
|
303
|
-
"url": "https://api.github.com/users/kaapa"
|
304
|
-
}
|
305
|
-
},
|
306
|
-
{
|
307
|
-
"body": "This looks good to me! I can't wait to see this up and running with multiple backends.",
|
308
|
-
"commit_id": "107a4d2231a213eb46763d48f8feab4ec8a7c7ee",
|
309
|
-
"created_at": "2010-12-21T22:14:58Z",
|
310
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/107a4d2231#commitcomment-223714",
|
311
|
-
"id": 223714,
|
312
|
-
"line": null,
|
313
|
-
"path": "",
|
314
|
-
"position": null,
|
315
|
-
"updated_at": "2010-12-21T22:16:29Z",
|
316
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223714",
|
317
|
-
"user": {
|
318
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
319
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
320
|
-
"id": 10308,
|
321
|
-
"login": "sferik",
|
322
|
-
"url": "https://api.github.com/users/sferik"
|
323
|
-
}
|
324
|
-
},
|
325
|
-
{
|
326
|
-
"body": "[About disabling registerable](https://github.com/plataformatec/devise/wiki/How-To:-Manage-users-through-a-CRUD-interface). Perhaps we now need to either document initial user creation or write it to the generator?",
|
327
|
-
"commit_id": "11440180fb09b3136840f277cf80bab05a7eb8ec",
|
328
|
-
"created_at": "2010-11-13T13:27:00Z",
|
329
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/11440180fb#commitcomment-193186",
|
330
|
-
"id": 193186,
|
331
|
-
"line": null,
|
332
|
-
"path": "",
|
333
|
-
"position": null,
|
334
|
-
"updated_at": "2010-11-13T13:27:00Z",
|
335
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/193186",
|
336
|
-
"user": {
|
337
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
338
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
339
|
-
"id": 215071,
|
340
|
-
"login": "kaapa",
|
341
|
-
"url": "https://api.github.com/users/kaapa"
|
342
|
-
}
|
343
|
-
},
|
344
|
-
{
|
345
|
-
"body": "Removing :registerable makes it harder for new users to try out RailsAdmin by running the dummy app. I think I understand the rationale behind removing it in production apps, but I don't think this applies to the dummy app.\n\nAs an aside, I wish this was done in two separate commits, so I could revert just that change. As a general rule, if you find yourself using the word \"and\" in a commit message, you should consider splitting it up.",
|
346
|
-
"commit_id": "11440180fb09b3136840f277cf80bab05a7eb8ec",
|
347
|
-
"created_at": "2010-12-21T22:03:43Z",
|
348
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/11440180fb#commitcomment-223703",
|
349
|
-
"id": 223703,
|
350
|
-
"line": null,
|
351
|
-
"path": "",
|
352
|
-
"position": null,
|
353
|
-
"updated_at": "2010-12-21T22:24:20Z",
|
354
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223703",
|
355
|
-
"user": {
|
356
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
357
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
358
|
-
"id": 10308,
|
359
|
-
"login": "sferik",
|
360
|
-
"url": "https://api.github.com/users/sferik"
|
361
|
-
}
|
362
|
-
},
|
363
|
-
{
|
364
|
-
"body": "True, didn't realize that point at the time. Good note about the commits also, there's definitely room for improvement for me there.",
|
365
|
-
"commit_id": "11440180fb09b3136840f277cf80bab05a7eb8ec",
|
366
|
-
"created_at": "2010-12-21T22:19:29Z",
|
367
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/11440180fb#commitcomment-223719",
|
368
|
-
"id": 223719,
|
369
|
-
"line": null,
|
370
|
-
"path": "",
|
371
|
-
"position": null,
|
372
|
-
"updated_at": "2010-12-21T22:19:29Z",
|
373
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223719",
|
374
|
-
"user": {
|
375
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
376
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
377
|
-
"id": 215071,
|
378
|
-
"login": "kaapa",
|
379
|
-
"url": "https://api.github.com/users/kaapa"
|
380
|
-
}
|
381
|
-
},
|
382
|
-
{
|
383
|
-
"body": "No big deal. I'll manually revert the change.",
|
384
|
-
"commit_id": "11440180fb09b3136840f277cf80bab05a7eb8ec",
|
385
|
-
"created_at": "2010-12-21T22:24:37Z",
|
386
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/11440180fb#commitcomment-223730",
|
387
|
-
"id": 223730,
|
388
|
-
"line": null,
|
389
|
-
"path": "",
|
390
|
-
"position": null,
|
391
|
-
"updated_at": "2010-12-21T22:24:37Z",
|
392
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/223730",
|
393
|
-
"user": {
|
394
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
395
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
396
|
-
"id": 10308,
|
397
|
-
"login": "sferik",
|
398
|
-
"url": "https://api.github.com/users/sferik"
|
399
|
-
}
|
400
|
-
},
|
401
|
-
{
|
402
|
-
"body": "I like Aristo too, but can you elaborate why to diverge from the Activo theme?",
|
403
|
-
"commit_id": "12aa156d0bba244a1584f32f9f7a3862c8307ef7",
|
404
|
-
"created_at": "2011-07-27T21:38:09Z",
|
405
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/12aa156d0b#commitcomment-499913",
|
406
|
-
"id": 499913,
|
407
|
-
"line": null,
|
408
|
-
"path": null,
|
409
|
-
"position": null,
|
410
|
-
"updated_at": "2011-07-27T21:38:09Z",
|
411
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/499913",
|
412
|
-
"user": {
|
413
|
-
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
414
|
-
"gravatar_id": "40a0afa49eb7b12db4dcda70b2e1520d",
|
415
|
-
"id": 215071,
|
416
|
-
"login": "kaapa",
|
417
|
-
"url": "https://api.github.com/users/kaapa"
|
418
|
-
}
|
419
|
-
},
|
420
|
-
{
|
421
|
-
"body": "Activo uses some default ugly jquery-ui theme, I just changed it to aristo. It's totally independent from Activo's styling.\r\nAn idea would be to make it configurable. (jquery-ui themes can be served by google CDN, and we can serve activo locally).",
|
422
|
-
"commit_id": "12aa156d0bba244a1584f32f9f7a3862c8307ef7",
|
423
|
-
"created_at": "2011-07-28T07:43:28Z",
|
424
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/12aa156d0b#commitcomment-500561",
|
425
|
-
"id": 500561,
|
426
|
-
"line": null,
|
427
|
-
"path": null,
|
428
|
-
"position": null,
|
429
|
-
"updated_at": "2011-07-28T07:43:28Z",
|
430
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/500561",
|
431
|
-
"user": {
|
432
|
-
"avatar_url": "https://secure.gravatar.com/avatar/c1607873b99845b2cd53f8634860d4d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
433
|
-
"gravatar_id": "c1607873b99845b2cd53f8634860d4d4",
|
434
|
-
"id": 26794,
|
435
|
-
"login": "bbenezech",
|
436
|
-
"url": "https://api.github.com/users/bbenezech"
|
437
|
-
}
|
438
|
-
},
|
439
|
-
{
|
440
|
-
"body": "hi @bbenezech \r\n\r\ncan you please jump in #travis when you have a chance\r\n\r\nthanks",
|
441
|
-
"commit_id": "18fe8c2c9ff11c93b4c29d76de0e4dece3a16614",
|
442
|
-
"created_at": "2011-08-25T15:20:57Z",
|
443
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/18fe8c2c9f#commitcomment-551697",
|
444
|
-
"id": 551697,
|
445
|
-
"line": null,
|
446
|
-
"path": null,
|
447
|
-
"position": null,
|
448
|
-
"updated_at": "2011-08-25T15:20:57Z",
|
449
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/551697",
|
450
|
-
"user": {
|
451
|
-
"avatar_url": "https://secure.gravatar.com/avatar/21b21efe14359ec323f9a70464b91e39?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
452
|
-
"gravatar_id": "21b21efe14359ec323f9a70464b91e39",
|
453
|
-
"id": 8701,
|
454
|
-
"login": "joshk",
|
455
|
-
"url": "https://api.github.com/users/joshk"
|
456
|
-
}
|
457
|
-
},
|
458
|
-
{
|
459
|
-
"body": "This causes tests to break in Ruby versions < 1.8: http://travis-ci.org/#!/sferik/rails_admin/builds/104957",
|
460
|
-
"commit_id": "18fe8c2c9ff11c93b4c29d76de0e4dece3a16614",
|
461
|
-
"created_at": "2011-08-27T19:52:10Z",
|
462
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/18fe8c2c9f#commitcomment-555420",
|
463
|
-
"id": 555420,
|
464
|
-
"line": null,
|
465
|
-
"path": null,
|
466
|
-
"position": null,
|
467
|
-
"updated_at": "2011-08-27T19:52:10Z",
|
468
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/555420",
|
469
|
-
"user": {
|
470
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
471
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
472
|
-
"id": 10308,
|
473
|
-
"login": "sferik",
|
474
|
-
"url": "https://api.github.com/users/sferik"
|
475
|
-
}
|
476
|
-
},
|
477
|
-
{
|
478
|
-
"body": "This commit appears to be causing tests to fail: http://ci.railsadmin.org/job/RailsAdmin/437/\r\n\r\n@bbenezech Since you merged it, can you please make sure it either gets fixed or reverted?",
|
479
|
-
"commit_id": "1cf63f4b596df69db57a0db65337dba308b9358f",
|
480
|
-
"created_at": "2011-07-21T07:11:07Z",
|
481
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/1cf63f4b59#commitcomment-488557",
|
482
|
-
"id": 488557,
|
483
|
-
"line": null,
|
484
|
-
"path": null,
|
485
|
-
"position": null,
|
486
|
-
"updated_at": "2011-07-21T07:11:07Z",
|
487
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/488557",
|
488
|
-
"user": {
|
489
|
-
"avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
490
|
-
"gravatar_id": "1f74b13f1e5c6c69cb5d7fbaabb1e2cb",
|
491
|
-
"id": 10308,
|
492
|
-
"login": "sferik",
|
493
|
-
"url": "https://api.github.com/users/sferik"
|
494
|
-
}
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"body": "I've always declared attributes as a hash. Is this new functionality in haml?",
|
498
|
-
"commit_id": "2282a77bac957849c3aec745d17df50b63f5bd0c",
|
499
|
-
"created_at": "2011-07-27T14:33:24Z",
|
500
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/2282a77bac#commitcomment-499003",
|
501
|
-
"id": 499003,
|
502
|
-
"line": 147,
|
503
|
-
"path": "app/views/rails_admin/main/list.html.haml",
|
504
|
-
"position": 5,
|
505
|
-
"updated_at": "2011-07-27T14:33:24Z",
|
506
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/499003",
|
507
|
-
"user": {
|
508
|
-
"avatar_url": "https://secure.gravatar.com/avatar/7b8632be88e93b4764bbab50c2515182?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
509
|
-
"gravatar_id": "7b8632be88e93b4764bbab50c2515182",
|
510
|
-
"id": 47560,
|
511
|
-
"login": "jbrown",
|
512
|
-
"url": "https://api.github.com/users/jbrown"
|
513
|
-
}
|
514
|
-
},
|
515
|
-
{
|
516
|
-
"body": "This change is actually breaking custom devise routing.\n\nI have a specific overload for the session controller in my app, which does not live in 'devise/sessions'\n\nI will fork, fix and submit a pull request\n\nNinja",
|
517
|
-
"commit_id": "22a7e9b2dc829909d641264bd91fb96252b5fa82",
|
518
|
-
"created_at": "2011-09-13T06:36:46Z",
|
519
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/22a7e9b2dc#commitcomment-585211",
|
520
|
-
"id": 585211,
|
521
|
-
"line": 13,
|
522
|
-
"path": "app/views/layouts/rails_admin/_header.html.haml",
|
523
|
-
"position": 17,
|
524
|
-
"updated_at": "2011-09-13T06:36:46Z",
|
525
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/585211",
|
526
|
-
"user": {
|
527
|
-
"avatar_url": "https://secure.gravatar.com/avatar/84e83f58b9a0e02926ffb700dbf3d88f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
528
|
-
"gravatar_id": "84e83f58b9a0e02926ffb700dbf3d88f",
|
529
|
-
"id": 117323,
|
530
|
-
"login": "davetheninja",
|
531
|
-
"url": "https://api.github.com/users/davetheninja"
|
532
|
-
}
|
533
|
-
},
|
534
|
-
{
|
535
|
-
"body": "This change breaks some configurations. \n\nWhen I updated to this commit my ckeditor configuration throws the error:\n\n undefined method `sort_by!' for #<Array:0x1054d0d68>\n\nWhen I go back to the commit before this my ckeditor configuration works fine. My configuration currently looks like:\n\n config.model BlogPost do\n edit do\n field :title\n field :body, :text do\n ckeditor true\n end\n field :blog_id\n field :user_id\n end\n end",
|
536
|
-
"commit_id": "241a3bfb2f6f56021f94a74c16c657225f15afc2",
|
537
|
-
"created_at": "2011-07-01T01:44:41Z",
|
538
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/241a3bfb2f#commitcomment-456491",
|
539
|
-
"id": 456491,
|
540
|
-
"line": 27,
|
541
|
-
"path": "lib/rails_admin/config/has_fields.rb",
|
542
|
-
"position": 12,
|
543
|
-
"updated_at": "2011-07-01T01:44:41Z",
|
544
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/456491",
|
545
|
-
"user": {
|
546
|
-
"avatar_url": "https://secure.gravatar.com/avatar/3917b9c81197f1cd96f4546930b39d54?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
547
|
-
"gravatar_id": "3917b9c81197f1cd96f4546930b39d54",
|
548
|
-
"id": 25104,
|
549
|
-
"login": "jdutil",
|
550
|
-
"url": "https://api.github.com/users/jdutil"
|
551
|
-
}
|
552
|
-
},
|
553
|
-
{
|
554
|
-
"body": "Fix in this pull request https://github.com/sferik/rails_admin/pull/507",
|
555
|
-
"commit_id": "241a3bfb2f6f56021f94a74c16c657225f15afc2",
|
556
|
-
"created_at": "2011-07-01T01:57:22Z",
|
557
|
-
"html_url": "https://github.com/sferik/rails_admin/commit/241a3bfb2f#commitcomment-456497",
|
558
|
-
"id": 456497,
|
559
|
-
"line": 27,
|
560
|
-
"path": "lib/rails_admin/config/has_fields.rb",
|
561
|
-
"position": 12,
|
562
|
-
"updated_at": "2011-07-01T01:57:22Z",
|
563
|
-
"url": "https://api.github.com/repos/sferik/rails_admin/comments/456497",
|
564
|
-
"user": {
|
565
|
-
"avatar_url": "https://secure.gravatar.com/avatar/3917b9c81197f1cd96f4546930b39d54?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
566
|
-
"gravatar_id": "3917b9c81197f1cd96f4546930b39d54",
|
567
|
-
"id": 25104,
|
568
|
-
"login": "jdutil",
|
569
|
-
"url": "https://api.github.com/users/jdutil"
|
570
|
-
}
|
571
|
-
}
|
572
|
-
]
|