diff --git a/Rakefile b/Rakefile index ebb6e8061..57e929df3 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ end task :update do require_relative 'votebot' User.update_all_from_github! - PullRequest.recreate_all_from_github! + Proposal.recreate_all_from_github! end unless ENV['RACK_ENV'] == 'production' diff --git a/app/models.rb b/app/models.rb index 7b99bf11b..f1c6557e5 100644 --- a/app/models.rb +++ b/app/models.rb @@ -1,4 +1,4 @@ require_relative 'models/user' require_relative 'models/vote_counter' -require_relative 'models/pull_request' +require_relative 'models/proposal' require_relative 'models/interaction' \ No newline at end of file diff --git a/app/models/interaction.rb b/app/models/interaction.rb index 2b8065ae3..04128a351 100644 --- a/app/models/interaction.rb +++ b/app/models/interaction.rb @@ -1,10 +1,10 @@ class Interaction < ActiveRecord::Base belongs_to :user - belongs_to :pull_request + belongs_to :proposal validates :user, presence: true - validates :pull_request, presence: true + validates :proposal, presence: true validates :last_vote, inclusion: {in: %w(agree disagree abstain), allow_nil: true} diff --git a/app/models/pull_request.rb b/app/models/proposal.rb similarity index 93% rename from app/models/pull_request.rb rename to app/models/proposal.rb index 3cf080967..67bd12088 100644 --- a/app/models/pull_request.rb +++ b/app/models/proposal.rb @@ -1,7 +1,7 @@ require 'octokit' require 'json' -class PullRequest < ActiveRecord::Base +class Proposal < ActiveRecord::Base include VoteCounter @@ -19,14 +19,14 @@ class PullRequest < ActiveRecord::Base end def self.recreate_all_from_github! - PullRequest.delete_all + Proposal.delete_all Octokit.pull_requests(ENV['GITHUB_REPO'], state: "all").each do |pr| create_from_github!(pr["number"]) end end def self.create_from_github!(number) - pr = PullRequest.find_or_create_by!(number: number) + pr = Proposal.find_or_create_by!(number: number) pr.count_votes! pr end diff --git a/app/models/user.rb b/app/models/user.rb index e20eda0c7..7ed0ba439 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,7 +1,7 @@ class User < ActiveRecord::Base has_many :interactions, dependent: :destroy - has_many :participating, through: :interactions, source: :pull_request + has_many :participating, through: :interactions, source: :proposal validates :login, presence: true, uniqueness: true validates :avatar_url, presence: true @@ -23,8 +23,8 @@ def update_github_contributor_status self.contributor = !@contributors.find{|x| x.login == login}.nil? end - def state(pr) - interactions.find_by(pull_request: pr).try(:state) + def state(proposal) + interactions.find_by(proposal: proposal).try(:state) end def self.update_all_from_github! diff --git a/app/views/_pr_list.erb b/app/views/_pr_list.erb deleted file mode 100644 index 8c292e480..000000000 --- a/app/views/_pr_list.erb +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - <% pull_requests.each do |pr| %> - - - - - - - - - - - - <% end %> -
StateTitleViewParticipantsAge<%= state_image('agree')%><%= state_image('abstain')%><%= state_image('disagree')%>Proposer
<%= pr.state.capitalize %><%= pr.title %>#<%= pr.number %><%= pr.participants.count %><%= pr.age %> days<%= pr.agree.count %><%= pr.abstain.count %><%= pr.disagree.count %><%= partial :person, locals: {person: pr.proposer } %>
diff --git a/app/views/_proposal_list.erb b/app/views/_proposal_list.erb new file mode 100644 index 000000000..9b6a9e4e9 --- /dev/null +++ b/app/views/_proposal_list.erb @@ -0,0 +1,26 @@ + + + + + + + + + + + + + <% proposals.each do |proposal| %> + + + + + + + + + + + + <% end %> +
StateTitleViewParticipantsAge<%= state_image('agree')%><%= state_image('abstain')%><%= state_image('disagree')%>Proposer
<%= proposal.state.capitalize %><%= proposal.title %>#<%= proposal.number %><%= proposal.participants.count %><%= proposal.age %> days<%= proposal.agree.count %><%= proposal.abstain.count %><%= proposal.disagree.count %><%= partial :person, locals: {person: proposal.proposer } %>
diff --git a/app/views/index.erb b/app/views/index.erb index b64329e5f..f1227cea1 100644 --- a/app/views/index.erb +++ b/app/views/index.erb @@ -1,7 +1,7 @@ -

Open Votes

+

Open Proposals

-<%= partial :pr_list, locals: {pull_requests: @pull_requests} %> +<%= partial :proposal_list, locals: {proposals: @open_proposals} %> -

Closed Votes

+

Closed Proposals

-<%= partial :pr_list, locals: {pull_requests: @closed} %> \ No newline at end of file +<%= partial :proposal_list, locals: {proposals: @closed_proposals} %> \ No newline at end of file diff --git a/app/views/show.erb b/app/views/show.erb index 82d4d08d2..732c15ab8 100644 --- a/app/views/show.erb +++ b/app/views/show.erb @@ -1,16 +1,16 @@ -

<%= @pull_request.title %>

+

<%= @proposal.title %>

- by <%= @pull_request.proposer.login %> + by <%= @proposal.proposer.login %>

-

<%= @pull_request.state.capitalize %>

+

<%= @proposal.state.capitalize %>

@@ -20,8 +20,8 @@

This page is currently just a utility page for showing a summary of voting activity. To read change details, comment, or vote, please - - visit the GitHub pull request page. + + visit the GitHub page for this proposal.

@@ -32,10 +32,10 @@
<%= state_image('agree')%> - Agree: <%= @pull_request.agree.count %> + Agree: <%= @proposal.agree.count %>
- <%= partial :person, collection: @pull_request.agree.map{|v| v.user} %> + <%= partial :person, collection: @proposal.agree.map{|v| v.user} %>
@@ -44,10 +44,10 @@
<%= state_image('abstain')%> - Abstaining: <%= @pull_request.abstain.count %> + Abstaining: <%= @proposal.abstain.count %>
- <%= partial :person, collection: @pull_request.abstain.map{|v| v.user} %> + <%= partial :person, collection: @proposal.abstain.map{|v| v.user} %>
@@ -56,10 +56,10 @@
<%= state_image('disagree')%> - Disagree: <%= @pull_request.disagree.count %> + Disagree: <%= @proposal.disagree.count %>
- <%= partial :person, collection: @pull_request.disagree.map{|v| v.user} %> + <%= partial :person, collection: @proposal.disagree.map{|v| v.user} %>
@@ -70,17 +70,17 @@
- Participants: <%= @pull_request.participants.count %> + Participants: <%= @proposal.participants.count %>
- <%= partial :person, collection: @pull_request.participants %> + <%= partial :person, collection: @proposal.participants %>
-
+
\ No newline at end of file diff --git a/app/views/user.erb b/app/views/user.erb index 857ed3d15..bcf1aa63b 100644 --- a/app/views/user.erb +++ b/app/views/user.erb @@ -17,7 +17,7 @@ title='<%= @user.login %>' />

Not voted on yet:

-<%= partial :pr_list, locals: {pull_requests: @not_voted} %> +<%= partial :proposal_list, locals: {proposals: @not_voted} %>

Voted on (<%= @voted.count %>):

@@ -40,4 +40,4 @@ title='<%= @user.login %>' />

Proposed (<%= @proposed.count %>):

-<%= partial :pr_list, locals: {pull_requests: @proposed} %> \ No newline at end of file +<%= partial :proposal_list, locals: {proposals: @proposed} %> \ No newline at end of file diff --git a/db/migrate/20160725063104_create_pull_requests.rb b/db/migrate/20160725063104_create_pull_requests.rb index 4b6dc4388..48c7c2223 100644 --- a/db/migrate/20160725063104_create_pull_requests.rb +++ b/db/migrate/20160725063104_create_pull_requests.rb @@ -1,4 +1,4 @@ -class CreatePullRequests < ActiveRecord::Migration[5.0] +class CreateProposals < ActiveRecord::Migration[5.0] def change create_table :pull_requests do |t| t.integer :number, null: false diff --git a/db/migrate/20160726142431_rename_pull_requests_to_proposals.rb b/db/migrate/20160726142431_rename_pull_requests_to_proposals.rb new file mode 100644 index 000000000..e7a240dbe --- /dev/null +++ b/db/migrate/20160726142431_rename_pull_requests_to_proposals.rb @@ -0,0 +1,6 @@ +class RenamePullRequestsToProposals < ActiveRecord::Migration + def change + rename_table :pull_requests, :proposals + rename_column :interactions, :pull_request_id, :proposal_id + end +end diff --git a/db/schema.rb b/db/schema.rb index 2931c82fd..3dd3129f5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,19 +10,19 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160726133704) do +ActiveRecord::Schema.define(version: 20160726142431) do create_table "interactions", force: :cascade do |t| - t.integer "user_id", null: false - t.integer "pull_request_id", null: false + t.integer "user_id", null: false + t.integer "proposal_id", null: false t.string "last_vote" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["pull_request_id"], name: "index_interactions_on_pull_request_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["proposal_id"], name: "index_interactions_on_proposal_id" t.index ["user_id"], name: "index_interactions_on_user_id" end - create_table "pull_requests", force: :cascade do |t| + create_table "proposals", force: :cascade do |t| t.integer "number", null: false t.string "state", null: false t.string "title", null: false @@ -30,7 +30,7 @@ t.datetime "opened_at", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.index ["proposer_id"], name: "index_pull_requests_on_proposer_id" + t.index ["proposer_id"], name: "index_proposals_on_proposer_id" end create_table "users", force: :cascade do |t| diff --git a/spec/fixtures/cassettes/PullRequest/should_handle_both_thumbsup_and_1_emoticons_as_upvotes.yml b/spec/fixtures/cassettes/Proposal/should_handle_both_thumbsup_and_1_emoticons_as_upvotes.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_handle_both_thumbsup_and_1_emoticons_as_upvotes.yml rename to spec/fixtures/cassettes/Proposal/should_handle_both_thumbsup_and_1_emoticons_as_upvotes.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_ignore_votes_before_last_commit.yml b/spec/fixtures/cassettes/Proposal/should_ignore_votes_before_last_commit.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_ignore_votes_before_last_commit.yml rename to spec/fixtures/cassettes/Proposal/should_ignore_votes_before_last_commit.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_ignore_votes_from_proposer.yml b/spec/fixtures/cassettes/Proposal/should_ignore_votes_from_proposer.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_ignore_votes_from_proposer.yml rename to spec/fixtures/cassettes/Proposal/should_ignore_votes_from_proposer.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_include_proposer_information.yml b/spec/fixtures/cassettes/Proposal/should_include_proposer_information.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_include_proposer_information.yml rename to spec/fixtures/cassettes/Proposal/should_include_proposer_information.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_only_count_latest_vote_per_person.yml b/spec/fixtures/cassettes/Proposal/should_only_count_latest_vote_per_person.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_only_count_latest_vote_per_person.yml rename to spec/fixtures/cassettes/Proposal/should_only_count_latest_vote_per_person.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_store_closed_and_unmerged_pull_requests_as_rejected.yml b/spec/fixtures/cassettes/Proposal/should_store_closed_and_unmerged_pull_requests_as_rejected.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_store_closed_and_unmerged_pull_requests_as_rejected.yml rename to spec/fixtures/cassettes/Proposal/should_store_closed_and_unmerged_pull_requests_as_rejected.yml diff --git a/spec/fixtures/cassettes/PullRequest/should_store_merged_pull_requests_as_accepted.yml b/spec/fixtures/cassettes/Proposal/should_store_merged_pull_requests_as_accepted.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_store_merged_pull_requests_as_accepted.yml rename to spec/fixtures/cassettes/Proposal/should_store_merged_pull_requests_as_accepted.yml diff --git a/spec/fixtures/cassettes/Proposal/should_update_proposals_on_demand.yml b/spec/fixtures/cassettes/Proposal/should_update_proposals_on_demand.yml new file mode 100644 index 000000000..5c9111277 --- /dev/null +++ b/spec/fixtures/cassettes/Proposal/should_update_proposals_on_demand.yml @@ -0,0 +1,864 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/pulls/356 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:14 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3645' + X-Ratelimit-Reset: + - '1469547314' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"0f691d690fc179a58341831984449329" + Last-Modified: + - Wed, 11 May 2016 19:18:12 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - 318e55760cf7cdb40e61175a4d36cd32 + X-Github-Request-Id: + - 5685C2D8:4A47:5D9E6E:57977521 + body: + encoding: ASCII-8BIT + string: '{"url":"https://api.github.com/repos/openpolitics/manifesto/pulls/356","id":35088333,"html_url":"https://github.com/openpolitics/manifesto/pull/356","diff_url":"https://github.com/openpolitics/manifesto/pull/356.diff","patch_url":"https://github.com/openpolitics/manifesto/pull/356.patch","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","number":356,"state":"closed","locked":false,"title":"Tax + treatment of industrial scientific and technical (engineering) research","user":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-05-10T20:33:01Z","updated_at":"2015-05-26T19:17:04Z","closed_at":"2015-05-26T19:17:04Z","merged_at":"2015-05-26T19:17:04Z","merge_commit_sha":"701be74124c82848ae3a52df757fbdd7a9e20963","assignee":null,"assignees":[],"milestone":null,"commits_url":"https://api.github.com/repos/openpolitics/manifesto/pulls/356/commits","review_comments_url":"https://api.github.com/repos/openpolitics/manifesto/pulls/356/comments","review_comment_url":"https://api.github.com/repos/openpolitics/manifesto/pulls/comments{/number}","comments_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356/comments","statuses_url":"https://api.github.com/repos/openpolitics/manifesto/statuses/db57ace556432716a7651528108e8fcce2e58ffa","head":{"label":"tkvad:20150510203301","ref":"20150510203301","sha":"db57ace556432716a7651528108e8fcce2e58ffa","user":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"repo":{"id":35386942,"name":"manifesto","full_name":"tkvad/manifesto","owner":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/tkvad/manifesto","description":"A + collaborative political manifesto","fork":true,"url":"https://api.github.com/repos/tkvad/manifesto","forks_url":"https://api.github.com/repos/tkvad/manifesto/forks","keys_url":"https://api.github.com/repos/tkvad/manifesto/keys{/key_id}","collaborators_url":"https://api.github.com/repos/tkvad/manifesto/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/tkvad/manifesto/teams","hooks_url":"https://api.github.com/repos/tkvad/manifesto/hooks","issue_events_url":"https://api.github.com/repos/tkvad/manifesto/issues/events{/number}","events_url":"https://api.github.com/repos/tkvad/manifesto/events","assignees_url":"https://api.github.com/repos/tkvad/manifesto/assignees{/user}","branches_url":"https://api.github.com/repos/tkvad/manifesto/branches{/branch}","tags_url":"https://api.github.com/repos/tkvad/manifesto/tags","blobs_url":"https://api.github.com/repos/tkvad/manifesto/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/tkvad/manifesto/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/tkvad/manifesto/git/refs{/sha}","trees_url":"https://api.github.com/repos/tkvad/manifesto/git/trees{/sha}","statuses_url":"https://api.github.com/repos/tkvad/manifesto/statuses/{sha}","languages_url":"https://api.github.com/repos/tkvad/manifesto/languages","stargazers_url":"https://api.github.com/repos/tkvad/manifesto/stargazers","contributors_url":"https://api.github.com/repos/tkvad/manifesto/contributors","subscribers_url":"https://api.github.com/repos/tkvad/manifesto/subscribers","subscription_url":"https://api.github.com/repos/tkvad/manifesto/subscription","commits_url":"https://api.github.com/repos/tkvad/manifesto/commits{/sha}","git_commits_url":"https://api.github.com/repos/tkvad/manifesto/git/commits{/sha}","comments_url":"https://api.github.com/repos/tkvad/manifesto/comments{/number}","issue_comment_url":"https://api.github.com/repos/tkvad/manifesto/issues/comments{/number}","contents_url":"https://api.github.com/repos/tkvad/manifesto/contents/{+path}","compare_url":"https://api.github.com/repos/tkvad/manifesto/compare/{base}...{head}","merges_url":"https://api.github.com/repos/tkvad/manifesto/merges","archive_url":"https://api.github.com/repos/tkvad/manifesto/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/tkvad/manifesto/downloads","issues_url":"https://api.github.com/repos/tkvad/manifesto/issues{/number}","pulls_url":"https://api.github.com/repos/tkvad/manifesto/pulls{/number}","milestones_url":"https://api.github.com/repos/tkvad/manifesto/milestones{/number}","notifications_url":"https://api.github.com/repos/tkvad/manifesto/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/tkvad/manifesto/labels{/name}","releases_url":"https://api.github.com/repos/tkvad/manifesto/releases{/id}","deployments_url":"https://api.github.com/repos/tkvad/manifesto/deployments","created_at":"2015-05-10T20:32:13Z","updated_at":"2015-05-10T20:32:13Z","pushed_at":"2015-05-10T20:33:02Z","git_url":"git://github.com/tkvad/manifesto.git","ssh_url":"git@github.com:tkvad/manifesto.git","clone_url":"https://github.com/tkvad/manifesto.git","svn_url":"https://github.com/tkvad/manifesto","homepage":"http://openpolitics.org.uk","size":1101,"stargazers_count":0,"watchers_count":0,"language":"HTML","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"gh-pages"}},"base":{"label":"openpolitics:gh-pages","ref":"gh-pages","sha":"4f04150e955a9ba7c08f70e437b9b1ed601c446a","user":{"login":"openpolitics","id":5188717,"avatar_url":"https://avatars.githubusercontent.com/u/5188717?v=3","gravatar_id":"","url":"https://api.github.com/users/openpolitics","html_url":"https://github.com/openpolitics","followers_url":"https://api.github.com/users/openpolitics/followers","following_url":"https://api.github.com/users/openpolitics/following{/other_user}","gists_url":"https://api.github.com/users/openpolitics/gists{/gist_id}","starred_url":"https://api.github.com/users/openpolitics/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openpolitics/subscriptions","organizations_url":"https://api.github.com/users/openpolitics/orgs","repos_url":"https://api.github.com/users/openpolitics/repos","events_url":"https://api.github.com/users/openpolitics/events{/privacy}","received_events_url":"https://api.github.com/users/openpolitics/received_events","type":"Organization","site_admin":false},"repo":{"id":11972085,"name":"manifesto","full_name":"openpolitics/manifesto","owner":{"login":"openpolitics","id":5188717,"avatar_url":"https://avatars.githubusercontent.com/u/5188717?v=3","gravatar_id":"","url":"https://api.github.com/users/openpolitics","html_url":"https://github.com/openpolitics","followers_url":"https://api.github.com/users/openpolitics/followers","following_url":"https://api.github.com/users/openpolitics/following{/other_user}","gists_url":"https://api.github.com/users/openpolitics/gists{/gist_id}","starred_url":"https://api.github.com/users/openpolitics/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openpolitics/subscriptions","organizations_url":"https://api.github.com/users/openpolitics/orgs","repos_url":"https://api.github.com/users/openpolitics/repos","events_url":"https://api.github.com/users/openpolitics/events{/privacy}","received_events_url":"https://api.github.com/users/openpolitics/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/openpolitics/manifesto","description":"A + collaborative political manifesto","fork":false,"url":"https://api.github.com/repos/openpolitics/manifesto","forks_url":"https://api.github.com/repos/openpolitics/manifesto/forks","keys_url":"https://api.github.com/repos/openpolitics/manifesto/keys{/key_id}","collaborators_url":"https://api.github.com/repos/openpolitics/manifesto/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/openpolitics/manifesto/teams","hooks_url":"https://api.github.com/repos/openpolitics/manifesto/hooks","issue_events_url":"https://api.github.com/repos/openpolitics/manifesto/issues/events{/number}","events_url":"https://api.github.com/repos/openpolitics/manifesto/events","assignees_url":"https://api.github.com/repos/openpolitics/manifesto/assignees{/user}","branches_url":"https://api.github.com/repos/openpolitics/manifesto/branches{/branch}","tags_url":"https://api.github.com/repos/openpolitics/manifesto/tags","blobs_url":"https://api.github.com/repos/openpolitics/manifesto/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/openpolitics/manifesto/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/openpolitics/manifesto/git/refs{/sha}","trees_url":"https://api.github.com/repos/openpolitics/manifesto/git/trees{/sha}","statuses_url":"https://api.github.com/repos/openpolitics/manifesto/statuses/{sha}","languages_url":"https://api.github.com/repos/openpolitics/manifesto/languages","stargazers_url":"https://api.github.com/repos/openpolitics/manifesto/stargazers","contributors_url":"https://api.github.com/repos/openpolitics/manifesto/contributors","subscribers_url":"https://api.github.com/repos/openpolitics/manifesto/subscribers","subscription_url":"https://api.github.com/repos/openpolitics/manifesto/subscription","commits_url":"https://api.github.com/repos/openpolitics/manifesto/commits{/sha}","git_commits_url":"https://api.github.com/repos/openpolitics/manifesto/git/commits{/sha}","comments_url":"https://api.github.com/repos/openpolitics/manifesto/comments{/number}","issue_comment_url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments{/number}","contents_url":"https://api.github.com/repos/openpolitics/manifesto/contents/{+path}","compare_url":"https://api.github.com/repos/openpolitics/manifesto/compare/{base}...{head}","merges_url":"https://api.github.com/repos/openpolitics/manifesto/merges","archive_url":"https://api.github.com/repos/openpolitics/manifesto/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/openpolitics/manifesto/downloads","issues_url":"https://api.github.com/repos/openpolitics/manifesto/issues{/number}","pulls_url":"https://api.github.com/repos/openpolitics/manifesto/pulls{/number}","milestones_url":"https://api.github.com/repos/openpolitics/manifesto/milestones{/number}","notifications_url":"https://api.github.com/repos/openpolitics/manifesto/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/openpolitics/manifesto/labels{/name}","releases_url":"https://api.github.com/repos/openpolitics/manifesto/releases{/id}","deployments_url":"https://api.github.com/repos/openpolitics/manifesto/deployments","created_at":"2013-08-08T08:56:40Z","updated_at":"2016-06-24T08:34:16Z","pushed_at":"2016-07-24T13:55:10Z","git_url":"git://github.com/openpolitics/manifesto.git","ssh_url":"git@github.com:openpolitics/manifesto.git","clone_url":"https://github.com/openpolitics/manifesto.git","svn_url":"https://github.com/openpolitics/manifesto","homepage":"http://openpolitics.org.uk","size":1244,"stargazers_count":70,"watchers_count":70,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":78,"mirror_url":null,"open_issues_count":41,"forks":78,"open_issues":41,"watchers":70,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/openpolitics/manifesto/pulls/356"},"html":{"href":"https://github.com/openpolitics/manifesto/pull/356"},"issue":{"href":"https://api.github.com/repos/openpolitics/manifesto/issues/356"},"comments":{"href":"https://api.github.com/repos/openpolitics/manifesto/issues/356/comments"},"review_comments":{"href":"https://api.github.com/repos/openpolitics/manifesto/pulls/356/comments"},"review_comment":{"href":"https://api.github.com/repos/openpolitics/manifesto/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/openpolitics/manifesto/pulls/356/commits"},"statuses":{"href":"https://api.github.com/repos/openpolitics/manifesto/statuses/db57ace556432716a7651528108e8fcce2e58ffa"}},"merged":true,"mergeable":false,"mergeable_state":"dirty","merged_by":{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false},"comments":5,"review_comments":0,"commits":1,"additions":2,"deletions":0,"changed_files":1}' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/users/tkvad + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:14 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3644' + X-Ratelimit-Reset: + - '1469547314' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"5ecfb60fe4200a0e5cb830f9dac47f5e" + Last-Modified: + - Wed, 11 May 2016 19:18:12 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - user + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - a51acaae89a7607fd7ee967627be18e4 + X-Github-Request-Id: + - 5685C2D8:4A47:5D9EEC:57977522 + body: + encoding: ASCII-8BIT + string: '{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false,"name":null,"company":null,"blog":null,"location":null,"email":null,"hireable":null,"bio":null,"public_repos":1,"public_gists":0,"followers":1,"following":1,"created_at":"2014-01-18T22:52:56Z","updated_at":"2016-05-11T19:18:12Z"}' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/contributors?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:15 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3643' + X-Ratelimit-Reset: + - '1469547315' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"fcae6ec0fb0e274806b48e8672657513" + Last-Modified: + - Fri, 24 Jun 2016 08:34:16 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - ef96c2e493b28ffea49b891b085ed2dd + X-Github-Request-Id: + - 5685C2D8:4A49:B476C9:57977522 + body: + encoding: ASCII-8BIT + string: '[{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false,"contributions":526},{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false,"contributions":84},{"login":"PaulJRobinson","id":4026234,"avatar_url":"https://avatars.githubusercontent.com/u/4026234?v=3","gravatar_id":"","url":"https://api.github.com/users/PaulJRobinson","html_url":"https://github.com/PaulJRobinson","followers_url":"https://api.github.com/users/PaulJRobinson/followers","following_url":"https://api.github.com/users/PaulJRobinson/following{/other_user}","gists_url":"https://api.github.com/users/PaulJRobinson/gists{/gist_id}","starred_url":"https://api.github.com/users/PaulJRobinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PaulJRobinson/subscriptions","organizations_url":"https://api.github.com/users/PaulJRobinson/orgs","repos_url":"https://api.github.com/users/PaulJRobinson/repos","events_url":"https://api.github.com/users/PaulJRobinson/events{/privacy}","received_events_url":"https://api.github.com/users/PaulJRobinson/received_events","type":"User","site_admin":false,"contributions":50},{"login":"andrewdwilliams","id":11067065,"avatar_url":"https://avatars.githubusercontent.com/u/11067065?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewdwilliams","html_url":"https://github.com/andrewdwilliams","followers_url":"https://api.github.com/users/andrewdwilliams/followers","following_url":"https://api.github.com/users/andrewdwilliams/following{/other_user}","gists_url":"https://api.github.com/users/andrewdwilliams/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewdwilliams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewdwilliams/subscriptions","organizations_url":"https://api.github.com/users/andrewdwilliams/orgs","repos_url":"https://api.github.com/users/andrewdwilliams/repos","events_url":"https://api.github.com/users/andrewdwilliams/events{/privacy}","received_events_url":"https://api.github.com/users/andrewdwilliams/received_events","type":"User","site_admin":false,"contributions":16},{"login":"frankieroberto","id":30665,"avatar_url":"https://avatars.githubusercontent.com/u/30665?v=3","gravatar_id":"","url":"https://api.github.com/users/frankieroberto","html_url":"https://github.com/frankieroberto","followers_url":"https://api.github.com/users/frankieroberto/followers","following_url":"https://api.github.com/users/frankieroberto/following{/other_user}","gists_url":"https://api.github.com/users/frankieroberto/gists{/gist_id}","starred_url":"https://api.github.com/users/frankieroberto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frankieroberto/subscriptions","organizations_url":"https://api.github.com/users/frankieroberto/orgs","repos_url":"https://api.github.com/users/frankieroberto/repos","events_url":"https://api.github.com/users/frankieroberto/events{/privacy}","received_events_url":"https://api.github.com/users/frankieroberto/received_events","type":"User","site_admin":false,"contributions":9},{"login":"digitalWestie","id":454663,"avatar_url":"https://avatars.githubusercontent.com/u/454663?v=3","gravatar_id":"","url":"https://api.github.com/users/digitalWestie","html_url":"https://github.com/digitalWestie","followers_url":"https://api.github.com/users/digitalWestie/followers","following_url":"https://api.github.com/users/digitalWestie/following{/other_user}","gists_url":"https://api.github.com/users/digitalWestie/gists{/gist_id}","starred_url":"https://api.github.com/users/digitalWestie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/digitalWestie/subscriptions","organizations_url":"https://api.github.com/users/digitalWestie/orgs","repos_url":"https://api.github.com/users/digitalWestie/repos","events_url":"https://api.github.com/users/digitalWestie/events{/privacy}","received_events_url":"https://api.github.com/users/digitalWestie/received_events","type":"User","site_admin":false,"contributions":9},{"login":"stringfellow","id":62915,"avatar_url":"https://avatars.githubusercontent.com/u/62915?v=3","gravatar_id":"","url":"https://api.github.com/users/stringfellow","html_url":"https://github.com/stringfellow","followers_url":"https://api.github.com/users/stringfellow/followers","following_url":"https://api.github.com/users/stringfellow/following{/other_user}","gists_url":"https://api.github.com/users/stringfellow/gists{/gist_id}","starred_url":"https://api.github.com/users/stringfellow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stringfellow/subscriptions","organizations_url":"https://api.github.com/users/stringfellow/orgs","repos_url":"https://api.github.com/users/stringfellow/repos","events_url":"https://api.github.com/users/stringfellow/events{/privacy}","received_events_url":"https://api.github.com/users/stringfellow/received_events","type":"User","site_admin":false,"contributions":8},{"login":"OliverJackson1","id":20183924,"avatar_url":"https://avatars.githubusercontent.com/u/20183924?v=3","gravatar_id":"","url":"https://api.github.com/users/OliverJackson1","html_url":"https://github.com/OliverJackson1","followers_url":"https://api.github.com/users/OliverJackson1/followers","following_url":"https://api.github.com/users/OliverJackson1/following{/other_user}","gists_url":"https://api.github.com/users/OliverJackson1/gists{/gist_id}","starred_url":"https://api.github.com/users/OliverJackson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OliverJackson1/subscriptions","organizations_url":"https://api.github.com/users/OliverJackson1/orgs","repos_url":"https://api.github.com/users/OliverJackson1/repos","events_url":"https://api.github.com/users/OliverJackson1/events{/privacy}","received_events_url":"https://api.github.com/users/OliverJackson1/received_events","type":"User","site_admin":false,"contributions":7},{"login":"timcowlishaw","id":4279,"avatar_url":"https://avatars.githubusercontent.com/u/4279?v=3","gravatar_id":"","url":"https://api.github.com/users/timcowlishaw","html_url":"https://github.com/timcowlishaw","followers_url":"https://api.github.com/users/timcowlishaw/followers","following_url":"https://api.github.com/users/timcowlishaw/following{/other_user}","gists_url":"https://api.github.com/users/timcowlishaw/gists{/gist_id}","starred_url":"https://api.github.com/users/timcowlishaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timcowlishaw/subscriptions","organizations_url":"https://api.github.com/users/timcowlishaw/orgs","repos_url":"https://api.github.com/users/timcowlishaw/repos","events_url":"https://api.github.com/users/timcowlishaw/events{/privacy}","received_events_url":"https://api.github.com/users/timcowlishaw/received_events","type":"User","site_admin":false,"contributions":7},{"login":"GarethShapiro","id":342749,"avatar_url":"https://avatars.githubusercontent.com/u/342749?v=3","gravatar_id":"","url":"https://api.github.com/users/GarethShapiro","html_url":"https://github.com/GarethShapiro","followers_url":"https://api.github.com/users/GarethShapiro/followers","following_url":"https://api.github.com/users/GarethShapiro/following{/other_user}","gists_url":"https://api.github.com/users/GarethShapiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GarethShapiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GarethShapiro/subscriptions","organizations_url":"https://api.github.com/users/GarethShapiro/orgs","repos_url":"https://api.github.com/users/GarethShapiro/repos","events_url":"https://api.github.com/users/GarethShapiro/events{/privacy}","received_events_url":"https://api.github.com/users/GarethShapiro/received_events","type":"User","site_admin":false,"contributions":5},{"login":"mjnaber","id":7307123,"avatar_url":"https://avatars.githubusercontent.com/u/7307123?v=3","gravatar_id":"","url":"https://api.github.com/users/mjnaber","html_url":"https://github.com/mjnaber","followers_url":"https://api.github.com/users/mjnaber/followers","following_url":"https://api.github.com/users/mjnaber/following{/other_user}","gists_url":"https://api.github.com/users/mjnaber/gists{/gist_id}","starred_url":"https://api.github.com/users/mjnaber/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjnaber/subscriptions","organizations_url":"https://api.github.com/users/mjnaber/orgs","repos_url":"https://api.github.com/users/mjnaber/repos","events_url":"https://api.github.com/users/mjnaber/events{/privacy}","received_events_url":"https://api.github.com/users/mjnaber/received_events","type":"User","site_admin":false,"contributions":5},{"login":"LeilaCCG","id":12280095,"avatar_url":"https://avatars.githubusercontent.com/u/12280095?v=3","gravatar_id":"","url":"https://api.github.com/users/LeilaCCG","html_url":"https://github.com/LeilaCCG","followers_url":"https://api.github.com/users/LeilaCCG/followers","following_url":"https://api.github.com/users/LeilaCCG/following{/other_user}","gists_url":"https://api.github.com/users/LeilaCCG/gists{/gist_id}","starred_url":"https://api.github.com/users/LeilaCCG/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LeilaCCG/subscriptions","organizations_url":"https://api.github.com/users/LeilaCCG/orgs","repos_url":"https://api.github.com/users/LeilaCCG/repos","events_url":"https://api.github.com/users/LeilaCCG/events{/privacy}","received_events_url":"https://api.github.com/users/LeilaCCG/received_events","type":"User","site_admin":false,"contributions":3},{"login":"mikera","id":212007,"avatar_url":"https://avatars.githubusercontent.com/u/212007?v=3","gravatar_id":"","url":"https://api.github.com/users/mikera","html_url":"https://github.com/mikera","followers_url":"https://api.github.com/users/mikera/followers","following_url":"https://api.github.com/users/mikera/following{/other_user}","gists_url":"https://api.github.com/users/mikera/gists{/gist_id}","starred_url":"https://api.github.com/users/mikera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikera/subscriptions","organizations_url":"https://api.github.com/users/mikera/orgs","repos_url":"https://api.github.com/users/mikera/repos","events_url":"https://api.github.com/users/mikera/events{/privacy}","received_events_url":"https://api.github.com/users/mikera/received_events","type":"User","site_admin":false,"contributions":3},{"login":"tmtmtmtm","id":57483,"avatar_url":"https://avatars.githubusercontent.com/u/57483?v=3","gravatar_id":"","url":"https://api.github.com/users/tmtmtmtm","html_url":"https://github.com/tmtmtmtm","followers_url":"https://api.github.com/users/tmtmtmtm/followers","following_url":"https://api.github.com/users/tmtmtmtm/following{/other_user}","gists_url":"https://api.github.com/users/tmtmtmtm/gists{/gist_id}","starred_url":"https://api.github.com/users/tmtmtmtm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmtmtmtm/subscriptions","organizations_url":"https://api.github.com/users/tmtmtmtm/orgs","repos_url":"https://api.github.com/users/tmtmtmtm/repos","events_url":"https://api.github.com/users/tmtmtmtm/events{/privacy}","received_events_url":"https://api.github.com/users/tmtmtmtm/received_events","type":"User","site_admin":false,"contributions":3},{"login":"andrewedmondson","id":11943019,"avatar_url":"https://avatars.githubusercontent.com/u/11943019?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewedmondson","html_url":"https://github.com/andrewedmondson","followers_url":"https://api.github.com/users/andrewedmondson/followers","following_url":"https://api.github.com/users/andrewedmondson/following{/other_user}","gists_url":"https://api.github.com/users/andrewedmondson/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewedmondson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewedmondson/subscriptions","organizations_url":"https://api.github.com/users/andrewedmondson/orgs","repos_url":"https://api.github.com/users/andrewedmondson/repos","events_url":"https://api.github.com/users/andrewedmondson/events{/privacy}","received_events_url":"https://api.github.com/users/andrewedmondson/received_events","type":"User","site_admin":false,"contributions":3},{"login":"cyanc","id":1665471,"avatar_url":"https://avatars.githubusercontent.com/u/1665471?v=3","gravatar_id":"","url":"https://api.github.com/users/cyanc","html_url":"https://github.com/cyanc","followers_url":"https://api.github.com/users/cyanc/followers","following_url":"https://api.github.com/users/cyanc/following{/other_user}","gists_url":"https://api.github.com/users/cyanc/gists{/gist_id}","starred_url":"https://api.github.com/users/cyanc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyanc/subscriptions","organizations_url":"https://api.github.com/users/cyanc/orgs","repos_url":"https://api.github.com/users/cyanc/repos","events_url":"https://api.github.com/users/cyanc/events{/privacy}","received_events_url":"https://api.github.com/users/cyanc/received_events","type":"User","site_admin":false,"contributions":2},{"login":"CharlieDelMonte","id":8327409,"avatar_url":"https://avatars.githubusercontent.com/u/8327409?v=3","gravatar_id":"","url":"https://api.github.com/users/CharlieDelMonte","html_url":"https://github.com/CharlieDelMonte","followers_url":"https://api.github.com/users/CharlieDelMonte/followers","following_url":"https://api.github.com/users/CharlieDelMonte/following{/other_user}","gists_url":"https://api.github.com/users/CharlieDelMonte/gists{/gist_id}","starred_url":"https://api.github.com/users/CharlieDelMonte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CharlieDelMonte/subscriptions","organizations_url":"https://api.github.com/users/CharlieDelMonte/orgs","repos_url":"https://api.github.com/users/CharlieDelMonte/repos","events_url":"https://api.github.com/users/CharlieDelMonte/events{/privacy}","received_events_url":"https://api.github.com/users/CharlieDelMonte/received_events","type":"User","site_admin":false,"contributions":2},{"login":"frabcus","id":10153,"avatar_url":"https://avatars.githubusercontent.com/u/10153?v=3","gravatar_id":"","url":"https://api.github.com/users/frabcus","html_url":"https://github.com/frabcus","followers_url":"https://api.github.com/users/frabcus/followers","following_url":"https://api.github.com/users/frabcus/following{/other_user}","gists_url":"https://api.github.com/users/frabcus/gists{/gist_id}","starred_url":"https://api.github.com/users/frabcus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frabcus/subscriptions","organizations_url":"https://api.github.com/users/frabcus/orgs","repos_url":"https://api.github.com/users/frabcus/repos","events_url":"https://api.github.com/users/frabcus/events{/privacy}","received_events_url":"https://api.github.com/users/frabcus/received_events","type":"User","site_admin":false,"contributions":2},{"login":"lucas42","id":428847,"avatar_url":"https://avatars.githubusercontent.com/u/428847?v=3","gravatar_id":"","url":"https://api.github.com/users/lucas42","html_url":"https://github.com/lucas42","followers_url":"https://api.github.com/users/lucas42/followers","following_url":"https://api.github.com/users/lucas42/following{/other_user}","gists_url":"https://api.github.com/users/lucas42/gists{/gist_id}","starred_url":"https://api.github.com/users/lucas42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lucas42/subscriptions","organizations_url":"https://api.github.com/users/lucas42/orgs","repos_url":"https://api.github.com/users/lucas42/repos","events_url":"https://api.github.com/users/lucas42/events{/privacy}","received_events_url":"https://api.github.com/users/lucas42/received_events","type":"User","site_admin":false,"contributions":2},{"login":"yellowgopher","id":8151629,"avatar_url":"https://avatars.githubusercontent.com/u/8151629?v=3","gravatar_id":"","url":"https://api.github.com/users/yellowgopher","html_url":"https://github.com/yellowgopher","followers_url":"https://api.github.com/users/yellowgopher/followers","following_url":"https://api.github.com/users/yellowgopher/following{/other_user}","gists_url":"https://api.github.com/users/yellowgopher/gists{/gist_id}","starred_url":"https://api.github.com/users/yellowgopher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yellowgopher/subscriptions","organizations_url":"https://api.github.com/users/yellowgopher/orgs","repos_url":"https://api.github.com/users/yellowgopher/repos","events_url":"https://api.github.com/users/yellowgopher/events{/privacy}","received_events_url":"https://api.github.com/users/yellowgopher/received_events","type":"User","site_admin":false,"contributions":2},{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false,"contributions":2},{"login":"cowlesz","id":11833675,"avatar_url":"https://avatars.githubusercontent.com/u/11833675?v=3","gravatar_id":"","url":"https://api.github.com/users/cowlesz","html_url":"https://github.com/cowlesz","followers_url":"https://api.github.com/users/cowlesz/followers","following_url":"https://api.github.com/users/cowlesz/following{/other_user}","gists_url":"https://api.github.com/users/cowlesz/gists{/gist_id}","starred_url":"https://api.github.com/users/cowlesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cowlesz/subscriptions","organizations_url":"https://api.github.com/users/cowlesz/orgs","repos_url":"https://api.github.com/users/cowlesz/repos","events_url":"https://api.github.com/users/cowlesz/events{/privacy}","received_events_url":"https://api.github.com/users/cowlesz/received_events","type":"User","site_admin":false,"contributions":2},{"login":"pigsonthewing","id":89541,"avatar_url":"https://avatars.githubusercontent.com/u/89541?v=3","gravatar_id":"","url":"https://api.github.com/users/pigsonthewing","html_url":"https://github.com/pigsonthewing","followers_url":"https://api.github.com/users/pigsonthewing/followers","following_url":"https://api.github.com/users/pigsonthewing/following{/other_user}","gists_url":"https://api.github.com/users/pigsonthewing/gists{/gist_id}","starred_url":"https://api.github.com/users/pigsonthewing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pigsonthewing/subscriptions","organizations_url":"https://api.github.com/users/pigsonthewing/orgs","repos_url":"https://api.github.com/users/pigsonthewing/repos","events_url":"https://api.github.com/users/pigsonthewing/events{/privacy}","received_events_url":"https://api.github.com/users/pigsonthewing/received_events","type":"User","site_admin":false,"contributions":1},{"login":"BenTrimble","id":9210823,"avatar_url":"https://avatars.githubusercontent.com/u/9210823?v=3","gravatar_id":"","url":"https://api.github.com/users/BenTrimble","html_url":"https://github.com/BenTrimble","followers_url":"https://api.github.com/users/BenTrimble/followers","following_url":"https://api.github.com/users/BenTrimble/following{/other_user}","gists_url":"https://api.github.com/users/BenTrimble/gists{/gist_id}","starred_url":"https://api.github.com/users/BenTrimble/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BenTrimble/subscriptions","organizations_url":"https://api.github.com/users/BenTrimble/orgs","repos_url":"https://api.github.com/users/BenTrimble/repos","events_url":"https://api.github.com/users/BenTrimble/events{/privacy}","received_events_url":"https://api.github.com/users/BenTrimble/received_events","type":"User","site_admin":false,"contributions":1},{"login":"otfrom","id":64839,"avatar_url":"https://avatars.githubusercontent.com/u/64839?v=3","gravatar_id":"","url":"https://api.github.com/users/otfrom","html_url":"https://github.com/otfrom","followers_url":"https://api.github.com/users/otfrom/followers","following_url":"https://api.github.com/users/otfrom/following{/other_user}","gists_url":"https://api.github.com/users/otfrom/gists{/gist_id}","starred_url":"https://api.github.com/users/otfrom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/otfrom/subscriptions","organizations_url":"https://api.github.com/users/otfrom/orgs","repos_url":"https://api.github.com/users/otfrom/repos","events_url":"https://api.github.com/users/otfrom/events{/privacy}","received_events_url":"https://api.github.com/users/otfrom/received_events","type":"User","site_admin":false,"contributions":1},{"login":"charlienewey","id":2302429,"avatar_url":"https://avatars.githubusercontent.com/u/2302429?v=3","gravatar_id":"","url":"https://api.github.com/users/charlienewey","html_url":"https://github.com/charlienewey","followers_url":"https://api.github.com/users/charlienewey/followers","following_url":"https://api.github.com/users/charlienewey/following{/other_user}","gists_url":"https://api.github.com/users/charlienewey/gists{/gist_id}","starred_url":"https://api.github.com/users/charlienewey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/charlienewey/subscriptions","organizations_url":"https://api.github.com/users/charlienewey/orgs","repos_url":"https://api.github.com/users/charlienewey/repos","events_url":"https://api.github.com/users/charlienewey/events{/privacy}","received_events_url":"https://api.github.com/users/charlienewey/received_events","type":"User","site_admin":false,"contributions":1},{"login":"davidmiller","id":17229,"avatar_url":"https://avatars.githubusercontent.com/u/17229?v=3","gravatar_id":"","url":"https://api.github.com/users/davidmiller","html_url":"https://github.com/davidmiller","followers_url":"https://api.github.com/users/davidmiller/followers","following_url":"https://api.github.com/users/davidmiller/following{/other_user}","gists_url":"https://api.github.com/users/davidmiller/gists{/gist_id}","starred_url":"https://api.github.com/users/davidmiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidmiller/subscriptions","organizations_url":"https://api.github.com/users/davidmiller/orgs","repos_url":"https://api.github.com/users/davidmiller/repos","events_url":"https://api.github.com/users/davidmiller/events{/privacy}","received_events_url":"https://api.github.com/users/davidmiller/received_events","type":"User","site_admin":false,"contributions":1},{"login":"JazDisney","id":12213562,"avatar_url":"https://avatars.githubusercontent.com/u/12213562?v=3","gravatar_id":"","url":"https://api.github.com/users/JazDisney","html_url":"https://github.com/JazDisney","followers_url":"https://api.github.com/users/JazDisney/followers","following_url":"https://api.github.com/users/JazDisney/following{/other_user}","gists_url":"https://api.github.com/users/JazDisney/gists{/gist_id}","starred_url":"https://api.github.com/users/JazDisney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JazDisney/subscriptions","organizations_url":"https://api.github.com/users/JazDisney/orgs","repos_url":"https://api.github.com/users/JazDisney/repos","events_url":"https://api.github.com/users/JazDisney/events{/privacy}","received_events_url":"https://api.github.com/users/JazDisney/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dangerousbeans","id":378489,"avatar_url":"https://avatars.githubusercontent.com/u/378489?v=3","gravatar_id":"","url":"https://api.github.com/users/dangerousbeans","html_url":"https://github.com/dangerousbeans","followers_url":"https://api.github.com/users/dangerousbeans/followers","following_url":"https://api.github.com/users/dangerousbeans/following{/other_user}","gists_url":"https://api.github.com/users/dangerousbeans/gists{/gist_id}","starred_url":"https://api.github.com/users/dangerousbeans/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dangerousbeans/subscriptions","organizations_url":"https://api.github.com/users/dangerousbeans/orgs","repos_url":"https://api.github.com/users/dangerousbeans/repos","events_url":"https://api.github.com/users/dangerousbeans/events{/privacy}","received_events_url":"https://api.github.com/users/dangerousbeans/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dracos","id":154364,"avatar_url":"https://avatars.githubusercontent.com/u/154364?v=3","gravatar_id":"","url":"https://api.github.com/users/dracos","html_url":"https://github.com/dracos","followers_url":"https://api.github.com/users/dracos/followers","following_url":"https://api.github.com/users/dracos/following{/other_user}","gists_url":"https://api.github.com/users/dracos/gists{/gist_id}","starred_url":"https://api.github.com/users/dracos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dracos/subscriptions","organizations_url":"https://api.github.com/users/dracos/orgs","repos_url":"https://api.github.com/users/dracos/repos","events_url":"https://api.github.com/users/dracos/events{/privacy}","received_events_url":"https://api.github.com/users/dracos/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Oeokosko","id":12440881,"avatar_url":"https://avatars.githubusercontent.com/u/12440881?v=3","gravatar_id":"","url":"https://api.github.com/users/Oeokosko","html_url":"https://github.com/Oeokosko","followers_url":"https://api.github.com/users/Oeokosko/followers","following_url":"https://api.github.com/users/Oeokosko/following{/other_user}","gists_url":"https://api.github.com/users/Oeokosko/gists{/gist_id}","starred_url":"https://api.github.com/users/Oeokosko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oeokosko/subscriptions","organizations_url":"https://api.github.com/users/Oeokosko/orgs","repos_url":"https://api.github.com/users/Oeokosko/repos","events_url":"https://api.github.com/users/Oeokosko/events{/privacy}","received_events_url":"https://api.github.com/users/Oeokosko/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Proxenia","id":7695545,"avatar_url":"https://avatars.githubusercontent.com/u/7695545?v=3","gravatar_id":"","url":"https://api.github.com/users/Proxenia","html_url":"https://github.com/Proxenia","followers_url":"https://api.github.com/users/Proxenia/followers","following_url":"https://api.github.com/users/Proxenia/following{/other_user}","gists_url":"https://api.github.com/users/Proxenia/gists{/gist_id}","starred_url":"https://api.github.com/users/Proxenia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Proxenia/subscriptions","organizations_url":"https://api.github.com/users/Proxenia/orgs","repos_url":"https://api.github.com/users/Proxenia/repos","events_url":"https://api.github.com/users/Proxenia/events{/privacy}","received_events_url":"https://api.github.com/users/Proxenia/received_events","type":"User","site_admin":false,"contributions":1},{"login":"TheRyanHowell","id":5139414,"avatar_url":"https://avatars.githubusercontent.com/u/5139414?v=3","gravatar_id":"","url":"https://api.github.com/users/TheRyanHowell","html_url":"https://github.com/TheRyanHowell","followers_url":"https://api.github.com/users/TheRyanHowell/followers","following_url":"https://api.github.com/users/TheRyanHowell/following{/other_user}","gists_url":"https://api.github.com/users/TheRyanHowell/gists{/gist_id}","starred_url":"https://api.github.com/users/TheRyanHowell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheRyanHowell/subscriptions","organizations_url":"https://api.github.com/users/TheRyanHowell/orgs","repos_url":"https://api.github.com/users/TheRyanHowell/repos","events_url":"https://api.github.com/users/TheRyanHowell/events{/privacy}","received_events_url":"https://api.github.com/users/TheRyanHowell/received_events","type":"User","site_admin":false,"contributions":1},{"login":"developerstuart","id":12292356,"avatar_url":"https://avatars.githubusercontent.com/u/12292356?v=3","gravatar_id":"","url":"https://api.github.com/users/developerstuart","html_url":"https://github.com/developerstuart","followers_url":"https://api.github.com/users/developerstuart/followers","following_url":"https://api.github.com/users/developerstuart/following{/other_user}","gists_url":"https://api.github.com/users/developerstuart/gists{/gist_id}","starred_url":"https://api.github.com/users/developerstuart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/developerstuart/subscriptions","organizations_url":"https://api.github.com/users/developerstuart/orgs","repos_url":"https://api.github.com/users/developerstuart/repos","events_url":"https://api.github.com/users/developerstuart/events{/privacy}","received_events_url":"https://api.github.com/users/developerstuart/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dyvroeth","id":5297490,"avatar_url":"https://avatars.githubusercontent.com/u/5297490?v=3","gravatar_id":"","url":"https://api.github.com/users/dyvroeth","html_url":"https://github.com/dyvroeth","followers_url":"https://api.github.com/users/dyvroeth/followers","following_url":"https://api.github.com/users/dyvroeth/following{/other_user}","gists_url":"https://api.github.com/users/dyvroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/dyvroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dyvroeth/subscriptions","organizations_url":"https://api.github.com/users/dyvroeth/orgs","repos_url":"https://api.github.com/users/dyvroeth/repos","events_url":"https://api.github.com/users/dyvroeth/events{/privacy}","received_events_url":"https://api.github.com/users/dyvroeth/received_events","type":"User","site_admin":false,"contributions":1},{"login":"glynnchaldecott","id":13301617,"avatar_url":"https://avatars.githubusercontent.com/u/13301617?v=3","gravatar_id":"","url":"https://api.github.com/users/glynnchaldecott","html_url":"https://github.com/glynnchaldecott","followers_url":"https://api.github.com/users/glynnchaldecott/followers","following_url":"https://api.github.com/users/glynnchaldecott/following{/other_user}","gists_url":"https://api.github.com/users/glynnchaldecott/gists{/gist_id}","starred_url":"https://api.github.com/users/glynnchaldecott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glynnchaldecott/subscriptions","organizations_url":"https://api.github.com/users/glynnchaldecott/orgs","repos_url":"https://api.github.com/users/glynnchaldecott/repos","events_url":"https://api.github.com/users/glynnchaldecott/events{/privacy}","received_events_url":"https://api.github.com/users/glynnchaldecott/received_events","type":"User","site_admin":false,"contributions":1},{"login":"h2g2bob","id":10098089,"avatar_url":"https://avatars.githubusercontent.com/u/10098089?v=3","gravatar_id":"","url":"https://api.github.com/users/h2g2bob","html_url":"https://github.com/h2g2bob","followers_url":"https://api.github.com/users/h2g2bob/followers","following_url":"https://api.github.com/users/h2g2bob/following{/other_user}","gists_url":"https://api.github.com/users/h2g2bob/gists{/gist_id}","starred_url":"https://api.github.com/users/h2g2bob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h2g2bob/subscriptions","organizations_url":"https://api.github.com/users/h2g2bob/orgs","repos_url":"https://api.github.com/users/h2g2bob/repos","events_url":"https://api.github.com/users/h2g2bob/events{/privacy}","received_events_url":"https://api.github.com/users/h2g2bob/received_events","type":"User","site_admin":false,"contributions":1},{"login":"rufflemuffin","id":1616599,"avatar_url":"https://avatars.githubusercontent.com/u/1616599?v=3","gravatar_id":"","url":"https://api.github.com/users/rufflemuffin","html_url":"https://github.com/rufflemuffin","followers_url":"https://api.github.com/users/rufflemuffin/followers","following_url":"https://api.github.com/users/rufflemuffin/following{/other_user}","gists_url":"https://api.github.com/users/rufflemuffin/gists{/gist_id}","starred_url":"https://api.github.com/users/rufflemuffin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rufflemuffin/subscriptions","organizations_url":"https://api.github.com/users/rufflemuffin/orgs","repos_url":"https://api.github.com/users/rufflemuffin/repos","events_url":"https://api.github.com/users/rufflemuffin/events{/privacy}","received_events_url":"https://api.github.com/users/rufflemuffin/received_events","type":"User","site_admin":false,"contributions":1},{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false,"contributions":1}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/issues/356/comments?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:15 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3642' + X-Ratelimit-Reset: + - '1469547315' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"89b6708c5eebe0ef7c68f28df148d3da" + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - a241e1a8264a6ace03db946c85b92db3 + X-Github-Request-Id: + - 5685C2D8:4A48:9CA219:57977523 + body: + encoding: ASCII-8BIT + string: '[{"url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments/101795023","html_url":"https://github.com/openpolitics/manifesto/pull/356#issuecomment-101795023","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","id":101795023,"user":{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false},"created_at":"2015-05-13T19:51:19Z","updated_at":"2015-05-13T19:51:19Z","body":":+1: + "},{"url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments/101901953","html_url":"https://github.com/openpolitics/manifesto/pull/356#issuecomment-101901953","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","id":101901953,"user":{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false},"created_at":"2015-05-14T03:55:12Z","updated_at":"2015-05-14T03:55:12Z","body":"Such + as?"},{"url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments/102172035","html_url":"https://github.com/openpolitics/manifesto/pull/356#issuecomment-102172035","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","id":102172035,"user":{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false},"created_at":"2015-05-14T21:17:34Z","updated_at":"2015-05-14T21:17:34Z","body":"Reminder: + the manifesto is a vision, not a detailed plan of action. If we agree with + the principle of a proposal, we should vote for it."},{"url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments/102174630","html_url":"https://github.com/openpolitics/manifesto/pull/356#issuecomment-102174630","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","id":102174630,"user":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"created_at":"2015-05-14T21:21:47Z","updated_at":"2015-05-14T21:21:47Z","body":"Yep + what exactly the tax treatment is will depend on what is affordable, my intention + is just to embed the idea that is good idea for the private sector to do research + and as a government we''d support that with cash help."},{"url":"https://api.github.com/repos/openpolitics/manifesto/issues/comments/102323594","html_url":"https://github.com/openpolitics/manifesto/pull/356#issuecomment-102323594","issue_url":"https://api.github.com/repos/openpolitics/manifesto/issues/356","id":102323594,"user":{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false},"created_at":"2015-05-15T08:56:35Z","updated_at":"2015-05-15T08:56:35Z","body":":+1: + on the principle as well from me."}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/pulls/356/commits?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:16 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3641' + X-Ratelimit-Reset: + - '1469547316' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"d1d79ef302ae9ce6bcc42c670dd59989" + Last-Modified: + - Wed, 11 May 2016 19:18:12 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - a7f8a126c9ed3f1c4715a34c0ddc7290 + X-Github-Request-Id: + - 5685C2D8:4A46:34B7ED:57977524 + body: + encoding: ASCII-8BIT + string: '[{"sha":"db57ace556432716a7651528108e8fcce2e58ffa","commit":{"author":{"name":"tkvad","email":"dtalbot@rocketmail.com","date":"2015-05-10T20:33:01Z"},"committer":{"name":"tkvad","email":"dtalbot@rocketmail.com","date":"2015-05-10T20:33:01Z"},"message":"Tax + treatment of industrial scientific and technical (engineering) research","tree":{"sha":"c8b936863425af8ba2c24dcefb0760078be9e300","url":"https://api.github.com/repos/openpolitics/manifesto/git/trees/c8b936863425af8ba2c24dcefb0760078be9e300"},"url":"https://api.github.com/repos/openpolitics/manifesto/git/commits/db57ace556432716a7651528108e8fcce2e58ffa","comment_count":0},"url":"https://api.github.com/repos/openpolitics/manifesto/commits/db57ace556432716a7651528108e8fcce2e58ffa","html_url":"https://github.com/openpolitics/manifesto/commit/db57ace556432716a7651528108e8fcce2e58ffa","comments_url":"https://api.github.com/repos/openpolitics/manifesto/commits/db57ace556432716a7651528108e8fcce2e58ffa/comments","author":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"committer":{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false},"parents":[{"sha":"4f04150e955a9ba7c08f70e437b9b1ed601c446a","url":"https://api.github.com/repos/openpolitics/manifesto/commits/4f04150e955a9ba7c08f70e437b9b1ed601c446a","html_url":"https://github.com/openpolitics/manifesto/commit/4f04150e955a9ba7c08f70e437b9b1ed601c446a"}]}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/users/philipjohn + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:17 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3640' + X-Ratelimit-Reset: + - '1469547317' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"cbbb0d25141ee29aca6822ac16fbfcad" + Last-Modified: + - Wed, 13 Jul 2016 20:40:40 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - user + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - 173530fed4bbeb1e264b2ed22e8b5c20 + X-Github-Request-Id: + - 5685C2D8:4A48:9CA34C:57977524 + body: + encoding: ASCII-8BIT + string: '{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false,"name":null,"company":null,"blog":null,"location":null,"email":null,"hireable":null,"bio":null,"public_repos":53,"public_gists":9,"followers":56,"following":17,"created_at":"2009-10-07T14:07:04Z","updated_at":"2016-07-13T20:40:40Z"}' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/contributors?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:17 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3639' + X-Ratelimit-Reset: + - '1469547317' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"fcae6ec0fb0e274806b48e8672657513" + Last-Modified: + - Fri, 24 Jun 2016 08:34:16 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - 76d9828c7e4f1d910f7ba069e90ce976 + X-Github-Request-Id: + - 5685C2D8:4A48:9CA3E6:57977525 + body: + encoding: ASCII-8BIT + string: '[{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false,"contributions":526},{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false,"contributions":84},{"login":"PaulJRobinson","id":4026234,"avatar_url":"https://avatars.githubusercontent.com/u/4026234?v=3","gravatar_id":"","url":"https://api.github.com/users/PaulJRobinson","html_url":"https://github.com/PaulJRobinson","followers_url":"https://api.github.com/users/PaulJRobinson/followers","following_url":"https://api.github.com/users/PaulJRobinson/following{/other_user}","gists_url":"https://api.github.com/users/PaulJRobinson/gists{/gist_id}","starred_url":"https://api.github.com/users/PaulJRobinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PaulJRobinson/subscriptions","organizations_url":"https://api.github.com/users/PaulJRobinson/orgs","repos_url":"https://api.github.com/users/PaulJRobinson/repos","events_url":"https://api.github.com/users/PaulJRobinson/events{/privacy}","received_events_url":"https://api.github.com/users/PaulJRobinson/received_events","type":"User","site_admin":false,"contributions":50},{"login":"andrewdwilliams","id":11067065,"avatar_url":"https://avatars.githubusercontent.com/u/11067065?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewdwilliams","html_url":"https://github.com/andrewdwilliams","followers_url":"https://api.github.com/users/andrewdwilliams/followers","following_url":"https://api.github.com/users/andrewdwilliams/following{/other_user}","gists_url":"https://api.github.com/users/andrewdwilliams/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewdwilliams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewdwilliams/subscriptions","organizations_url":"https://api.github.com/users/andrewdwilliams/orgs","repos_url":"https://api.github.com/users/andrewdwilliams/repos","events_url":"https://api.github.com/users/andrewdwilliams/events{/privacy}","received_events_url":"https://api.github.com/users/andrewdwilliams/received_events","type":"User","site_admin":false,"contributions":16},{"login":"frankieroberto","id":30665,"avatar_url":"https://avatars.githubusercontent.com/u/30665?v=3","gravatar_id":"","url":"https://api.github.com/users/frankieroberto","html_url":"https://github.com/frankieroberto","followers_url":"https://api.github.com/users/frankieroberto/followers","following_url":"https://api.github.com/users/frankieroberto/following{/other_user}","gists_url":"https://api.github.com/users/frankieroberto/gists{/gist_id}","starred_url":"https://api.github.com/users/frankieroberto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frankieroberto/subscriptions","organizations_url":"https://api.github.com/users/frankieroberto/orgs","repos_url":"https://api.github.com/users/frankieroberto/repos","events_url":"https://api.github.com/users/frankieroberto/events{/privacy}","received_events_url":"https://api.github.com/users/frankieroberto/received_events","type":"User","site_admin":false,"contributions":9},{"login":"digitalWestie","id":454663,"avatar_url":"https://avatars.githubusercontent.com/u/454663?v=3","gravatar_id":"","url":"https://api.github.com/users/digitalWestie","html_url":"https://github.com/digitalWestie","followers_url":"https://api.github.com/users/digitalWestie/followers","following_url":"https://api.github.com/users/digitalWestie/following{/other_user}","gists_url":"https://api.github.com/users/digitalWestie/gists{/gist_id}","starred_url":"https://api.github.com/users/digitalWestie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/digitalWestie/subscriptions","organizations_url":"https://api.github.com/users/digitalWestie/orgs","repos_url":"https://api.github.com/users/digitalWestie/repos","events_url":"https://api.github.com/users/digitalWestie/events{/privacy}","received_events_url":"https://api.github.com/users/digitalWestie/received_events","type":"User","site_admin":false,"contributions":9},{"login":"stringfellow","id":62915,"avatar_url":"https://avatars.githubusercontent.com/u/62915?v=3","gravatar_id":"","url":"https://api.github.com/users/stringfellow","html_url":"https://github.com/stringfellow","followers_url":"https://api.github.com/users/stringfellow/followers","following_url":"https://api.github.com/users/stringfellow/following{/other_user}","gists_url":"https://api.github.com/users/stringfellow/gists{/gist_id}","starred_url":"https://api.github.com/users/stringfellow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stringfellow/subscriptions","organizations_url":"https://api.github.com/users/stringfellow/orgs","repos_url":"https://api.github.com/users/stringfellow/repos","events_url":"https://api.github.com/users/stringfellow/events{/privacy}","received_events_url":"https://api.github.com/users/stringfellow/received_events","type":"User","site_admin":false,"contributions":8},{"login":"OliverJackson1","id":20183924,"avatar_url":"https://avatars.githubusercontent.com/u/20183924?v=3","gravatar_id":"","url":"https://api.github.com/users/OliverJackson1","html_url":"https://github.com/OliverJackson1","followers_url":"https://api.github.com/users/OliverJackson1/followers","following_url":"https://api.github.com/users/OliverJackson1/following{/other_user}","gists_url":"https://api.github.com/users/OliverJackson1/gists{/gist_id}","starred_url":"https://api.github.com/users/OliverJackson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OliverJackson1/subscriptions","organizations_url":"https://api.github.com/users/OliverJackson1/orgs","repos_url":"https://api.github.com/users/OliverJackson1/repos","events_url":"https://api.github.com/users/OliverJackson1/events{/privacy}","received_events_url":"https://api.github.com/users/OliverJackson1/received_events","type":"User","site_admin":false,"contributions":7},{"login":"timcowlishaw","id":4279,"avatar_url":"https://avatars.githubusercontent.com/u/4279?v=3","gravatar_id":"","url":"https://api.github.com/users/timcowlishaw","html_url":"https://github.com/timcowlishaw","followers_url":"https://api.github.com/users/timcowlishaw/followers","following_url":"https://api.github.com/users/timcowlishaw/following{/other_user}","gists_url":"https://api.github.com/users/timcowlishaw/gists{/gist_id}","starred_url":"https://api.github.com/users/timcowlishaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timcowlishaw/subscriptions","organizations_url":"https://api.github.com/users/timcowlishaw/orgs","repos_url":"https://api.github.com/users/timcowlishaw/repos","events_url":"https://api.github.com/users/timcowlishaw/events{/privacy}","received_events_url":"https://api.github.com/users/timcowlishaw/received_events","type":"User","site_admin":false,"contributions":7},{"login":"GarethShapiro","id":342749,"avatar_url":"https://avatars.githubusercontent.com/u/342749?v=3","gravatar_id":"","url":"https://api.github.com/users/GarethShapiro","html_url":"https://github.com/GarethShapiro","followers_url":"https://api.github.com/users/GarethShapiro/followers","following_url":"https://api.github.com/users/GarethShapiro/following{/other_user}","gists_url":"https://api.github.com/users/GarethShapiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GarethShapiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GarethShapiro/subscriptions","organizations_url":"https://api.github.com/users/GarethShapiro/orgs","repos_url":"https://api.github.com/users/GarethShapiro/repos","events_url":"https://api.github.com/users/GarethShapiro/events{/privacy}","received_events_url":"https://api.github.com/users/GarethShapiro/received_events","type":"User","site_admin":false,"contributions":5},{"login":"mjnaber","id":7307123,"avatar_url":"https://avatars.githubusercontent.com/u/7307123?v=3","gravatar_id":"","url":"https://api.github.com/users/mjnaber","html_url":"https://github.com/mjnaber","followers_url":"https://api.github.com/users/mjnaber/followers","following_url":"https://api.github.com/users/mjnaber/following{/other_user}","gists_url":"https://api.github.com/users/mjnaber/gists{/gist_id}","starred_url":"https://api.github.com/users/mjnaber/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjnaber/subscriptions","organizations_url":"https://api.github.com/users/mjnaber/orgs","repos_url":"https://api.github.com/users/mjnaber/repos","events_url":"https://api.github.com/users/mjnaber/events{/privacy}","received_events_url":"https://api.github.com/users/mjnaber/received_events","type":"User","site_admin":false,"contributions":5},{"login":"LeilaCCG","id":12280095,"avatar_url":"https://avatars.githubusercontent.com/u/12280095?v=3","gravatar_id":"","url":"https://api.github.com/users/LeilaCCG","html_url":"https://github.com/LeilaCCG","followers_url":"https://api.github.com/users/LeilaCCG/followers","following_url":"https://api.github.com/users/LeilaCCG/following{/other_user}","gists_url":"https://api.github.com/users/LeilaCCG/gists{/gist_id}","starred_url":"https://api.github.com/users/LeilaCCG/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LeilaCCG/subscriptions","organizations_url":"https://api.github.com/users/LeilaCCG/orgs","repos_url":"https://api.github.com/users/LeilaCCG/repos","events_url":"https://api.github.com/users/LeilaCCG/events{/privacy}","received_events_url":"https://api.github.com/users/LeilaCCG/received_events","type":"User","site_admin":false,"contributions":3},{"login":"mikera","id":212007,"avatar_url":"https://avatars.githubusercontent.com/u/212007?v=3","gravatar_id":"","url":"https://api.github.com/users/mikera","html_url":"https://github.com/mikera","followers_url":"https://api.github.com/users/mikera/followers","following_url":"https://api.github.com/users/mikera/following{/other_user}","gists_url":"https://api.github.com/users/mikera/gists{/gist_id}","starred_url":"https://api.github.com/users/mikera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikera/subscriptions","organizations_url":"https://api.github.com/users/mikera/orgs","repos_url":"https://api.github.com/users/mikera/repos","events_url":"https://api.github.com/users/mikera/events{/privacy}","received_events_url":"https://api.github.com/users/mikera/received_events","type":"User","site_admin":false,"contributions":3},{"login":"tmtmtmtm","id":57483,"avatar_url":"https://avatars.githubusercontent.com/u/57483?v=3","gravatar_id":"","url":"https://api.github.com/users/tmtmtmtm","html_url":"https://github.com/tmtmtmtm","followers_url":"https://api.github.com/users/tmtmtmtm/followers","following_url":"https://api.github.com/users/tmtmtmtm/following{/other_user}","gists_url":"https://api.github.com/users/tmtmtmtm/gists{/gist_id}","starred_url":"https://api.github.com/users/tmtmtmtm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmtmtmtm/subscriptions","organizations_url":"https://api.github.com/users/tmtmtmtm/orgs","repos_url":"https://api.github.com/users/tmtmtmtm/repos","events_url":"https://api.github.com/users/tmtmtmtm/events{/privacy}","received_events_url":"https://api.github.com/users/tmtmtmtm/received_events","type":"User","site_admin":false,"contributions":3},{"login":"andrewedmondson","id":11943019,"avatar_url":"https://avatars.githubusercontent.com/u/11943019?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewedmondson","html_url":"https://github.com/andrewedmondson","followers_url":"https://api.github.com/users/andrewedmondson/followers","following_url":"https://api.github.com/users/andrewedmondson/following{/other_user}","gists_url":"https://api.github.com/users/andrewedmondson/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewedmondson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewedmondson/subscriptions","organizations_url":"https://api.github.com/users/andrewedmondson/orgs","repos_url":"https://api.github.com/users/andrewedmondson/repos","events_url":"https://api.github.com/users/andrewedmondson/events{/privacy}","received_events_url":"https://api.github.com/users/andrewedmondson/received_events","type":"User","site_admin":false,"contributions":3},{"login":"cyanc","id":1665471,"avatar_url":"https://avatars.githubusercontent.com/u/1665471?v=3","gravatar_id":"","url":"https://api.github.com/users/cyanc","html_url":"https://github.com/cyanc","followers_url":"https://api.github.com/users/cyanc/followers","following_url":"https://api.github.com/users/cyanc/following{/other_user}","gists_url":"https://api.github.com/users/cyanc/gists{/gist_id}","starred_url":"https://api.github.com/users/cyanc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyanc/subscriptions","organizations_url":"https://api.github.com/users/cyanc/orgs","repos_url":"https://api.github.com/users/cyanc/repos","events_url":"https://api.github.com/users/cyanc/events{/privacy}","received_events_url":"https://api.github.com/users/cyanc/received_events","type":"User","site_admin":false,"contributions":2},{"login":"CharlieDelMonte","id":8327409,"avatar_url":"https://avatars.githubusercontent.com/u/8327409?v=3","gravatar_id":"","url":"https://api.github.com/users/CharlieDelMonte","html_url":"https://github.com/CharlieDelMonte","followers_url":"https://api.github.com/users/CharlieDelMonte/followers","following_url":"https://api.github.com/users/CharlieDelMonte/following{/other_user}","gists_url":"https://api.github.com/users/CharlieDelMonte/gists{/gist_id}","starred_url":"https://api.github.com/users/CharlieDelMonte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CharlieDelMonte/subscriptions","organizations_url":"https://api.github.com/users/CharlieDelMonte/orgs","repos_url":"https://api.github.com/users/CharlieDelMonte/repos","events_url":"https://api.github.com/users/CharlieDelMonte/events{/privacy}","received_events_url":"https://api.github.com/users/CharlieDelMonte/received_events","type":"User","site_admin":false,"contributions":2},{"login":"frabcus","id":10153,"avatar_url":"https://avatars.githubusercontent.com/u/10153?v=3","gravatar_id":"","url":"https://api.github.com/users/frabcus","html_url":"https://github.com/frabcus","followers_url":"https://api.github.com/users/frabcus/followers","following_url":"https://api.github.com/users/frabcus/following{/other_user}","gists_url":"https://api.github.com/users/frabcus/gists{/gist_id}","starred_url":"https://api.github.com/users/frabcus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frabcus/subscriptions","organizations_url":"https://api.github.com/users/frabcus/orgs","repos_url":"https://api.github.com/users/frabcus/repos","events_url":"https://api.github.com/users/frabcus/events{/privacy}","received_events_url":"https://api.github.com/users/frabcus/received_events","type":"User","site_admin":false,"contributions":2},{"login":"lucas42","id":428847,"avatar_url":"https://avatars.githubusercontent.com/u/428847?v=3","gravatar_id":"","url":"https://api.github.com/users/lucas42","html_url":"https://github.com/lucas42","followers_url":"https://api.github.com/users/lucas42/followers","following_url":"https://api.github.com/users/lucas42/following{/other_user}","gists_url":"https://api.github.com/users/lucas42/gists{/gist_id}","starred_url":"https://api.github.com/users/lucas42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lucas42/subscriptions","organizations_url":"https://api.github.com/users/lucas42/orgs","repos_url":"https://api.github.com/users/lucas42/repos","events_url":"https://api.github.com/users/lucas42/events{/privacy}","received_events_url":"https://api.github.com/users/lucas42/received_events","type":"User","site_admin":false,"contributions":2},{"login":"yellowgopher","id":8151629,"avatar_url":"https://avatars.githubusercontent.com/u/8151629?v=3","gravatar_id":"","url":"https://api.github.com/users/yellowgopher","html_url":"https://github.com/yellowgopher","followers_url":"https://api.github.com/users/yellowgopher/followers","following_url":"https://api.github.com/users/yellowgopher/following{/other_user}","gists_url":"https://api.github.com/users/yellowgopher/gists{/gist_id}","starred_url":"https://api.github.com/users/yellowgopher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yellowgopher/subscriptions","organizations_url":"https://api.github.com/users/yellowgopher/orgs","repos_url":"https://api.github.com/users/yellowgopher/repos","events_url":"https://api.github.com/users/yellowgopher/events{/privacy}","received_events_url":"https://api.github.com/users/yellowgopher/received_events","type":"User","site_admin":false,"contributions":2},{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false,"contributions":2},{"login":"cowlesz","id":11833675,"avatar_url":"https://avatars.githubusercontent.com/u/11833675?v=3","gravatar_id":"","url":"https://api.github.com/users/cowlesz","html_url":"https://github.com/cowlesz","followers_url":"https://api.github.com/users/cowlesz/followers","following_url":"https://api.github.com/users/cowlesz/following{/other_user}","gists_url":"https://api.github.com/users/cowlesz/gists{/gist_id}","starred_url":"https://api.github.com/users/cowlesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cowlesz/subscriptions","organizations_url":"https://api.github.com/users/cowlesz/orgs","repos_url":"https://api.github.com/users/cowlesz/repos","events_url":"https://api.github.com/users/cowlesz/events{/privacy}","received_events_url":"https://api.github.com/users/cowlesz/received_events","type":"User","site_admin":false,"contributions":2},{"login":"pigsonthewing","id":89541,"avatar_url":"https://avatars.githubusercontent.com/u/89541?v=3","gravatar_id":"","url":"https://api.github.com/users/pigsonthewing","html_url":"https://github.com/pigsonthewing","followers_url":"https://api.github.com/users/pigsonthewing/followers","following_url":"https://api.github.com/users/pigsonthewing/following{/other_user}","gists_url":"https://api.github.com/users/pigsonthewing/gists{/gist_id}","starred_url":"https://api.github.com/users/pigsonthewing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pigsonthewing/subscriptions","organizations_url":"https://api.github.com/users/pigsonthewing/orgs","repos_url":"https://api.github.com/users/pigsonthewing/repos","events_url":"https://api.github.com/users/pigsonthewing/events{/privacy}","received_events_url":"https://api.github.com/users/pigsonthewing/received_events","type":"User","site_admin":false,"contributions":1},{"login":"BenTrimble","id":9210823,"avatar_url":"https://avatars.githubusercontent.com/u/9210823?v=3","gravatar_id":"","url":"https://api.github.com/users/BenTrimble","html_url":"https://github.com/BenTrimble","followers_url":"https://api.github.com/users/BenTrimble/followers","following_url":"https://api.github.com/users/BenTrimble/following{/other_user}","gists_url":"https://api.github.com/users/BenTrimble/gists{/gist_id}","starred_url":"https://api.github.com/users/BenTrimble/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BenTrimble/subscriptions","organizations_url":"https://api.github.com/users/BenTrimble/orgs","repos_url":"https://api.github.com/users/BenTrimble/repos","events_url":"https://api.github.com/users/BenTrimble/events{/privacy}","received_events_url":"https://api.github.com/users/BenTrimble/received_events","type":"User","site_admin":false,"contributions":1},{"login":"otfrom","id":64839,"avatar_url":"https://avatars.githubusercontent.com/u/64839?v=3","gravatar_id":"","url":"https://api.github.com/users/otfrom","html_url":"https://github.com/otfrom","followers_url":"https://api.github.com/users/otfrom/followers","following_url":"https://api.github.com/users/otfrom/following{/other_user}","gists_url":"https://api.github.com/users/otfrom/gists{/gist_id}","starred_url":"https://api.github.com/users/otfrom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/otfrom/subscriptions","organizations_url":"https://api.github.com/users/otfrom/orgs","repos_url":"https://api.github.com/users/otfrom/repos","events_url":"https://api.github.com/users/otfrom/events{/privacy}","received_events_url":"https://api.github.com/users/otfrom/received_events","type":"User","site_admin":false,"contributions":1},{"login":"charlienewey","id":2302429,"avatar_url":"https://avatars.githubusercontent.com/u/2302429?v=3","gravatar_id":"","url":"https://api.github.com/users/charlienewey","html_url":"https://github.com/charlienewey","followers_url":"https://api.github.com/users/charlienewey/followers","following_url":"https://api.github.com/users/charlienewey/following{/other_user}","gists_url":"https://api.github.com/users/charlienewey/gists{/gist_id}","starred_url":"https://api.github.com/users/charlienewey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/charlienewey/subscriptions","organizations_url":"https://api.github.com/users/charlienewey/orgs","repos_url":"https://api.github.com/users/charlienewey/repos","events_url":"https://api.github.com/users/charlienewey/events{/privacy}","received_events_url":"https://api.github.com/users/charlienewey/received_events","type":"User","site_admin":false,"contributions":1},{"login":"davidmiller","id":17229,"avatar_url":"https://avatars.githubusercontent.com/u/17229?v=3","gravatar_id":"","url":"https://api.github.com/users/davidmiller","html_url":"https://github.com/davidmiller","followers_url":"https://api.github.com/users/davidmiller/followers","following_url":"https://api.github.com/users/davidmiller/following{/other_user}","gists_url":"https://api.github.com/users/davidmiller/gists{/gist_id}","starred_url":"https://api.github.com/users/davidmiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidmiller/subscriptions","organizations_url":"https://api.github.com/users/davidmiller/orgs","repos_url":"https://api.github.com/users/davidmiller/repos","events_url":"https://api.github.com/users/davidmiller/events{/privacy}","received_events_url":"https://api.github.com/users/davidmiller/received_events","type":"User","site_admin":false,"contributions":1},{"login":"JazDisney","id":12213562,"avatar_url":"https://avatars.githubusercontent.com/u/12213562?v=3","gravatar_id":"","url":"https://api.github.com/users/JazDisney","html_url":"https://github.com/JazDisney","followers_url":"https://api.github.com/users/JazDisney/followers","following_url":"https://api.github.com/users/JazDisney/following{/other_user}","gists_url":"https://api.github.com/users/JazDisney/gists{/gist_id}","starred_url":"https://api.github.com/users/JazDisney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JazDisney/subscriptions","organizations_url":"https://api.github.com/users/JazDisney/orgs","repos_url":"https://api.github.com/users/JazDisney/repos","events_url":"https://api.github.com/users/JazDisney/events{/privacy}","received_events_url":"https://api.github.com/users/JazDisney/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dangerousbeans","id":378489,"avatar_url":"https://avatars.githubusercontent.com/u/378489?v=3","gravatar_id":"","url":"https://api.github.com/users/dangerousbeans","html_url":"https://github.com/dangerousbeans","followers_url":"https://api.github.com/users/dangerousbeans/followers","following_url":"https://api.github.com/users/dangerousbeans/following{/other_user}","gists_url":"https://api.github.com/users/dangerousbeans/gists{/gist_id}","starred_url":"https://api.github.com/users/dangerousbeans/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dangerousbeans/subscriptions","organizations_url":"https://api.github.com/users/dangerousbeans/orgs","repos_url":"https://api.github.com/users/dangerousbeans/repos","events_url":"https://api.github.com/users/dangerousbeans/events{/privacy}","received_events_url":"https://api.github.com/users/dangerousbeans/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dracos","id":154364,"avatar_url":"https://avatars.githubusercontent.com/u/154364?v=3","gravatar_id":"","url":"https://api.github.com/users/dracos","html_url":"https://github.com/dracos","followers_url":"https://api.github.com/users/dracos/followers","following_url":"https://api.github.com/users/dracos/following{/other_user}","gists_url":"https://api.github.com/users/dracos/gists{/gist_id}","starred_url":"https://api.github.com/users/dracos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dracos/subscriptions","organizations_url":"https://api.github.com/users/dracos/orgs","repos_url":"https://api.github.com/users/dracos/repos","events_url":"https://api.github.com/users/dracos/events{/privacy}","received_events_url":"https://api.github.com/users/dracos/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Oeokosko","id":12440881,"avatar_url":"https://avatars.githubusercontent.com/u/12440881?v=3","gravatar_id":"","url":"https://api.github.com/users/Oeokosko","html_url":"https://github.com/Oeokosko","followers_url":"https://api.github.com/users/Oeokosko/followers","following_url":"https://api.github.com/users/Oeokosko/following{/other_user}","gists_url":"https://api.github.com/users/Oeokosko/gists{/gist_id}","starred_url":"https://api.github.com/users/Oeokosko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oeokosko/subscriptions","organizations_url":"https://api.github.com/users/Oeokosko/orgs","repos_url":"https://api.github.com/users/Oeokosko/repos","events_url":"https://api.github.com/users/Oeokosko/events{/privacy}","received_events_url":"https://api.github.com/users/Oeokosko/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Proxenia","id":7695545,"avatar_url":"https://avatars.githubusercontent.com/u/7695545?v=3","gravatar_id":"","url":"https://api.github.com/users/Proxenia","html_url":"https://github.com/Proxenia","followers_url":"https://api.github.com/users/Proxenia/followers","following_url":"https://api.github.com/users/Proxenia/following{/other_user}","gists_url":"https://api.github.com/users/Proxenia/gists{/gist_id}","starred_url":"https://api.github.com/users/Proxenia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Proxenia/subscriptions","organizations_url":"https://api.github.com/users/Proxenia/orgs","repos_url":"https://api.github.com/users/Proxenia/repos","events_url":"https://api.github.com/users/Proxenia/events{/privacy}","received_events_url":"https://api.github.com/users/Proxenia/received_events","type":"User","site_admin":false,"contributions":1},{"login":"TheRyanHowell","id":5139414,"avatar_url":"https://avatars.githubusercontent.com/u/5139414?v=3","gravatar_id":"","url":"https://api.github.com/users/TheRyanHowell","html_url":"https://github.com/TheRyanHowell","followers_url":"https://api.github.com/users/TheRyanHowell/followers","following_url":"https://api.github.com/users/TheRyanHowell/following{/other_user}","gists_url":"https://api.github.com/users/TheRyanHowell/gists{/gist_id}","starred_url":"https://api.github.com/users/TheRyanHowell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheRyanHowell/subscriptions","organizations_url":"https://api.github.com/users/TheRyanHowell/orgs","repos_url":"https://api.github.com/users/TheRyanHowell/repos","events_url":"https://api.github.com/users/TheRyanHowell/events{/privacy}","received_events_url":"https://api.github.com/users/TheRyanHowell/received_events","type":"User","site_admin":false,"contributions":1},{"login":"developerstuart","id":12292356,"avatar_url":"https://avatars.githubusercontent.com/u/12292356?v=3","gravatar_id":"","url":"https://api.github.com/users/developerstuart","html_url":"https://github.com/developerstuart","followers_url":"https://api.github.com/users/developerstuart/followers","following_url":"https://api.github.com/users/developerstuart/following{/other_user}","gists_url":"https://api.github.com/users/developerstuart/gists{/gist_id}","starred_url":"https://api.github.com/users/developerstuart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/developerstuart/subscriptions","organizations_url":"https://api.github.com/users/developerstuart/orgs","repos_url":"https://api.github.com/users/developerstuart/repos","events_url":"https://api.github.com/users/developerstuart/events{/privacy}","received_events_url":"https://api.github.com/users/developerstuart/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dyvroeth","id":5297490,"avatar_url":"https://avatars.githubusercontent.com/u/5297490?v=3","gravatar_id":"","url":"https://api.github.com/users/dyvroeth","html_url":"https://github.com/dyvroeth","followers_url":"https://api.github.com/users/dyvroeth/followers","following_url":"https://api.github.com/users/dyvroeth/following{/other_user}","gists_url":"https://api.github.com/users/dyvroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/dyvroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dyvroeth/subscriptions","organizations_url":"https://api.github.com/users/dyvroeth/orgs","repos_url":"https://api.github.com/users/dyvroeth/repos","events_url":"https://api.github.com/users/dyvroeth/events{/privacy}","received_events_url":"https://api.github.com/users/dyvroeth/received_events","type":"User","site_admin":false,"contributions":1},{"login":"glynnchaldecott","id":13301617,"avatar_url":"https://avatars.githubusercontent.com/u/13301617?v=3","gravatar_id":"","url":"https://api.github.com/users/glynnchaldecott","html_url":"https://github.com/glynnchaldecott","followers_url":"https://api.github.com/users/glynnchaldecott/followers","following_url":"https://api.github.com/users/glynnchaldecott/following{/other_user}","gists_url":"https://api.github.com/users/glynnchaldecott/gists{/gist_id}","starred_url":"https://api.github.com/users/glynnchaldecott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glynnchaldecott/subscriptions","organizations_url":"https://api.github.com/users/glynnchaldecott/orgs","repos_url":"https://api.github.com/users/glynnchaldecott/repos","events_url":"https://api.github.com/users/glynnchaldecott/events{/privacy}","received_events_url":"https://api.github.com/users/glynnchaldecott/received_events","type":"User","site_admin":false,"contributions":1},{"login":"h2g2bob","id":10098089,"avatar_url":"https://avatars.githubusercontent.com/u/10098089?v=3","gravatar_id":"","url":"https://api.github.com/users/h2g2bob","html_url":"https://github.com/h2g2bob","followers_url":"https://api.github.com/users/h2g2bob/followers","following_url":"https://api.github.com/users/h2g2bob/following{/other_user}","gists_url":"https://api.github.com/users/h2g2bob/gists{/gist_id}","starred_url":"https://api.github.com/users/h2g2bob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h2g2bob/subscriptions","organizations_url":"https://api.github.com/users/h2g2bob/orgs","repos_url":"https://api.github.com/users/h2g2bob/repos","events_url":"https://api.github.com/users/h2g2bob/events{/privacy}","received_events_url":"https://api.github.com/users/h2g2bob/received_events","type":"User","site_admin":false,"contributions":1},{"login":"rufflemuffin","id":1616599,"avatar_url":"https://avatars.githubusercontent.com/u/1616599?v=3","gravatar_id":"","url":"https://api.github.com/users/rufflemuffin","html_url":"https://github.com/rufflemuffin","followers_url":"https://api.github.com/users/rufflemuffin/followers","following_url":"https://api.github.com/users/rufflemuffin/following{/other_user}","gists_url":"https://api.github.com/users/rufflemuffin/gists{/gist_id}","starred_url":"https://api.github.com/users/rufflemuffin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rufflemuffin/subscriptions","organizations_url":"https://api.github.com/users/rufflemuffin/orgs","repos_url":"https://api.github.com/users/rufflemuffin/repos","events_url":"https://api.github.com/users/rufflemuffin/events{/privacy}","received_events_url":"https://api.github.com/users/rufflemuffin/received_events","type":"User","site_admin":false,"contributions":1},{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false,"contributions":1}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/users/iconoclast86 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:18 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3638' + X-Ratelimit-Reset: + - '1469547318' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"53530afdad9c87d6791114615fd2ac78" + Last-Modified: + - Sun, 28 Feb 2016 03:39:48 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - user + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - bd82876e9bf04990f289ba22f246ee9b + X-Github-Request-Id: + - 5685C2D8:4A48:9CA473:57977525 + body: + encoding: ASCII-8BIT + string: '{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false,"name":null,"company":null,"blog":null,"location":null,"email":null,"hireable":null,"bio":null,"public_repos":1,"public_gists":0,"followers":0,"following":0,"created_at":"2015-04-13T10:57:24Z","updated_at":"2016-02-28T03:39:48Z"}' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/contributors?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:18 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3637' + X-Ratelimit-Reset: + - '1469547318' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"fcae6ec0fb0e274806b48e8672657513" + Last-Modified: + - Fri, 24 Jun 2016 08:34:16 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - 52437fedc85beec8da3449496900fb9a + X-Github-Request-Id: + - 5685C2D8:4A49:B47A39:57977526 + body: + encoding: ASCII-8BIT + string: '[{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false,"contributions":526},{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false,"contributions":84},{"login":"PaulJRobinson","id":4026234,"avatar_url":"https://avatars.githubusercontent.com/u/4026234?v=3","gravatar_id":"","url":"https://api.github.com/users/PaulJRobinson","html_url":"https://github.com/PaulJRobinson","followers_url":"https://api.github.com/users/PaulJRobinson/followers","following_url":"https://api.github.com/users/PaulJRobinson/following{/other_user}","gists_url":"https://api.github.com/users/PaulJRobinson/gists{/gist_id}","starred_url":"https://api.github.com/users/PaulJRobinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PaulJRobinson/subscriptions","organizations_url":"https://api.github.com/users/PaulJRobinson/orgs","repos_url":"https://api.github.com/users/PaulJRobinson/repos","events_url":"https://api.github.com/users/PaulJRobinson/events{/privacy}","received_events_url":"https://api.github.com/users/PaulJRobinson/received_events","type":"User","site_admin":false,"contributions":50},{"login":"andrewdwilliams","id":11067065,"avatar_url":"https://avatars.githubusercontent.com/u/11067065?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewdwilliams","html_url":"https://github.com/andrewdwilliams","followers_url":"https://api.github.com/users/andrewdwilliams/followers","following_url":"https://api.github.com/users/andrewdwilliams/following{/other_user}","gists_url":"https://api.github.com/users/andrewdwilliams/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewdwilliams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewdwilliams/subscriptions","organizations_url":"https://api.github.com/users/andrewdwilliams/orgs","repos_url":"https://api.github.com/users/andrewdwilliams/repos","events_url":"https://api.github.com/users/andrewdwilliams/events{/privacy}","received_events_url":"https://api.github.com/users/andrewdwilliams/received_events","type":"User","site_admin":false,"contributions":16},{"login":"frankieroberto","id":30665,"avatar_url":"https://avatars.githubusercontent.com/u/30665?v=3","gravatar_id":"","url":"https://api.github.com/users/frankieroberto","html_url":"https://github.com/frankieroberto","followers_url":"https://api.github.com/users/frankieroberto/followers","following_url":"https://api.github.com/users/frankieroberto/following{/other_user}","gists_url":"https://api.github.com/users/frankieroberto/gists{/gist_id}","starred_url":"https://api.github.com/users/frankieroberto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frankieroberto/subscriptions","organizations_url":"https://api.github.com/users/frankieroberto/orgs","repos_url":"https://api.github.com/users/frankieroberto/repos","events_url":"https://api.github.com/users/frankieroberto/events{/privacy}","received_events_url":"https://api.github.com/users/frankieroberto/received_events","type":"User","site_admin":false,"contributions":9},{"login":"digitalWestie","id":454663,"avatar_url":"https://avatars.githubusercontent.com/u/454663?v=3","gravatar_id":"","url":"https://api.github.com/users/digitalWestie","html_url":"https://github.com/digitalWestie","followers_url":"https://api.github.com/users/digitalWestie/followers","following_url":"https://api.github.com/users/digitalWestie/following{/other_user}","gists_url":"https://api.github.com/users/digitalWestie/gists{/gist_id}","starred_url":"https://api.github.com/users/digitalWestie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/digitalWestie/subscriptions","organizations_url":"https://api.github.com/users/digitalWestie/orgs","repos_url":"https://api.github.com/users/digitalWestie/repos","events_url":"https://api.github.com/users/digitalWestie/events{/privacy}","received_events_url":"https://api.github.com/users/digitalWestie/received_events","type":"User","site_admin":false,"contributions":9},{"login":"stringfellow","id":62915,"avatar_url":"https://avatars.githubusercontent.com/u/62915?v=3","gravatar_id":"","url":"https://api.github.com/users/stringfellow","html_url":"https://github.com/stringfellow","followers_url":"https://api.github.com/users/stringfellow/followers","following_url":"https://api.github.com/users/stringfellow/following{/other_user}","gists_url":"https://api.github.com/users/stringfellow/gists{/gist_id}","starred_url":"https://api.github.com/users/stringfellow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stringfellow/subscriptions","organizations_url":"https://api.github.com/users/stringfellow/orgs","repos_url":"https://api.github.com/users/stringfellow/repos","events_url":"https://api.github.com/users/stringfellow/events{/privacy}","received_events_url":"https://api.github.com/users/stringfellow/received_events","type":"User","site_admin":false,"contributions":8},{"login":"OliverJackson1","id":20183924,"avatar_url":"https://avatars.githubusercontent.com/u/20183924?v=3","gravatar_id":"","url":"https://api.github.com/users/OliverJackson1","html_url":"https://github.com/OliverJackson1","followers_url":"https://api.github.com/users/OliverJackson1/followers","following_url":"https://api.github.com/users/OliverJackson1/following{/other_user}","gists_url":"https://api.github.com/users/OliverJackson1/gists{/gist_id}","starred_url":"https://api.github.com/users/OliverJackson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OliverJackson1/subscriptions","organizations_url":"https://api.github.com/users/OliverJackson1/orgs","repos_url":"https://api.github.com/users/OliverJackson1/repos","events_url":"https://api.github.com/users/OliverJackson1/events{/privacy}","received_events_url":"https://api.github.com/users/OliverJackson1/received_events","type":"User","site_admin":false,"contributions":7},{"login":"timcowlishaw","id":4279,"avatar_url":"https://avatars.githubusercontent.com/u/4279?v=3","gravatar_id":"","url":"https://api.github.com/users/timcowlishaw","html_url":"https://github.com/timcowlishaw","followers_url":"https://api.github.com/users/timcowlishaw/followers","following_url":"https://api.github.com/users/timcowlishaw/following{/other_user}","gists_url":"https://api.github.com/users/timcowlishaw/gists{/gist_id}","starred_url":"https://api.github.com/users/timcowlishaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timcowlishaw/subscriptions","organizations_url":"https://api.github.com/users/timcowlishaw/orgs","repos_url":"https://api.github.com/users/timcowlishaw/repos","events_url":"https://api.github.com/users/timcowlishaw/events{/privacy}","received_events_url":"https://api.github.com/users/timcowlishaw/received_events","type":"User","site_admin":false,"contributions":7},{"login":"GarethShapiro","id":342749,"avatar_url":"https://avatars.githubusercontent.com/u/342749?v=3","gravatar_id":"","url":"https://api.github.com/users/GarethShapiro","html_url":"https://github.com/GarethShapiro","followers_url":"https://api.github.com/users/GarethShapiro/followers","following_url":"https://api.github.com/users/GarethShapiro/following{/other_user}","gists_url":"https://api.github.com/users/GarethShapiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GarethShapiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GarethShapiro/subscriptions","organizations_url":"https://api.github.com/users/GarethShapiro/orgs","repos_url":"https://api.github.com/users/GarethShapiro/repos","events_url":"https://api.github.com/users/GarethShapiro/events{/privacy}","received_events_url":"https://api.github.com/users/GarethShapiro/received_events","type":"User","site_admin":false,"contributions":5},{"login":"mjnaber","id":7307123,"avatar_url":"https://avatars.githubusercontent.com/u/7307123?v=3","gravatar_id":"","url":"https://api.github.com/users/mjnaber","html_url":"https://github.com/mjnaber","followers_url":"https://api.github.com/users/mjnaber/followers","following_url":"https://api.github.com/users/mjnaber/following{/other_user}","gists_url":"https://api.github.com/users/mjnaber/gists{/gist_id}","starred_url":"https://api.github.com/users/mjnaber/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjnaber/subscriptions","organizations_url":"https://api.github.com/users/mjnaber/orgs","repos_url":"https://api.github.com/users/mjnaber/repos","events_url":"https://api.github.com/users/mjnaber/events{/privacy}","received_events_url":"https://api.github.com/users/mjnaber/received_events","type":"User","site_admin":false,"contributions":5},{"login":"LeilaCCG","id":12280095,"avatar_url":"https://avatars.githubusercontent.com/u/12280095?v=3","gravatar_id":"","url":"https://api.github.com/users/LeilaCCG","html_url":"https://github.com/LeilaCCG","followers_url":"https://api.github.com/users/LeilaCCG/followers","following_url":"https://api.github.com/users/LeilaCCG/following{/other_user}","gists_url":"https://api.github.com/users/LeilaCCG/gists{/gist_id}","starred_url":"https://api.github.com/users/LeilaCCG/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LeilaCCG/subscriptions","organizations_url":"https://api.github.com/users/LeilaCCG/orgs","repos_url":"https://api.github.com/users/LeilaCCG/repos","events_url":"https://api.github.com/users/LeilaCCG/events{/privacy}","received_events_url":"https://api.github.com/users/LeilaCCG/received_events","type":"User","site_admin":false,"contributions":3},{"login":"mikera","id":212007,"avatar_url":"https://avatars.githubusercontent.com/u/212007?v=3","gravatar_id":"","url":"https://api.github.com/users/mikera","html_url":"https://github.com/mikera","followers_url":"https://api.github.com/users/mikera/followers","following_url":"https://api.github.com/users/mikera/following{/other_user}","gists_url":"https://api.github.com/users/mikera/gists{/gist_id}","starred_url":"https://api.github.com/users/mikera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikera/subscriptions","organizations_url":"https://api.github.com/users/mikera/orgs","repos_url":"https://api.github.com/users/mikera/repos","events_url":"https://api.github.com/users/mikera/events{/privacy}","received_events_url":"https://api.github.com/users/mikera/received_events","type":"User","site_admin":false,"contributions":3},{"login":"tmtmtmtm","id":57483,"avatar_url":"https://avatars.githubusercontent.com/u/57483?v=3","gravatar_id":"","url":"https://api.github.com/users/tmtmtmtm","html_url":"https://github.com/tmtmtmtm","followers_url":"https://api.github.com/users/tmtmtmtm/followers","following_url":"https://api.github.com/users/tmtmtmtm/following{/other_user}","gists_url":"https://api.github.com/users/tmtmtmtm/gists{/gist_id}","starred_url":"https://api.github.com/users/tmtmtmtm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmtmtmtm/subscriptions","organizations_url":"https://api.github.com/users/tmtmtmtm/orgs","repos_url":"https://api.github.com/users/tmtmtmtm/repos","events_url":"https://api.github.com/users/tmtmtmtm/events{/privacy}","received_events_url":"https://api.github.com/users/tmtmtmtm/received_events","type":"User","site_admin":false,"contributions":3},{"login":"andrewedmondson","id":11943019,"avatar_url":"https://avatars.githubusercontent.com/u/11943019?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewedmondson","html_url":"https://github.com/andrewedmondson","followers_url":"https://api.github.com/users/andrewedmondson/followers","following_url":"https://api.github.com/users/andrewedmondson/following{/other_user}","gists_url":"https://api.github.com/users/andrewedmondson/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewedmondson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewedmondson/subscriptions","organizations_url":"https://api.github.com/users/andrewedmondson/orgs","repos_url":"https://api.github.com/users/andrewedmondson/repos","events_url":"https://api.github.com/users/andrewedmondson/events{/privacy}","received_events_url":"https://api.github.com/users/andrewedmondson/received_events","type":"User","site_admin":false,"contributions":3},{"login":"cyanc","id":1665471,"avatar_url":"https://avatars.githubusercontent.com/u/1665471?v=3","gravatar_id":"","url":"https://api.github.com/users/cyanc","html_url":"https://github.com/cyanc","followers_url":"https://api.github.com/users/cyanc/followers","following_url":"https://api.github.com/users/cyanc/following{/other_user}","gists_url":"https://api.github.com/users/cyanc/gists{/gist_id}","starred_url":"https://api.github.com/users/cyanc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyanc/subscriptions","organizations_url":"https://api.github.com/users/cyanc/orgs","repos_url":"https://api.github.com/users/cyanc/repos","events_url":"https://api.github.com/users/cyanc/events{/privacy}","received_events_url":"https://api.github.com/users/cyanc/received_events","type":"User","site_admin":false,"contributions":2},{"login":"CharlieDelMonte","id":8327409,"avatar_url":"https://avatars.githubusercontent.com/u/8327409?v=3","gravatar_id":"","url":"https://api.github.com/users/CharlieDelMonte","html_url":"https://github.com/CharlieDelMonte","followers_url":"https://api.github.com/users/CharlieDelMonte/followers","following_url":"https://api.github.com/users/CharlieDelMonte/following{/other_user}","gists_url":"https://api.github.com/users/CharlieDelMonte/gists{/gist_id}","starred_url":"https://api.github.com/users/CharlieDelMonte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CharlieDelMonte/subscriptions","organizations_url":"https://api.github.com/users/CharlieDelMonte/orgs","repos_url":"https://api.github.com/users/CharlieDelMonte/repos","events_url":"https://api.github.com/users/CharlieDelMonte/events{/privacy}","received_events_url":"https://api.github.com/users/CharlieDelMonte/received_events","type":"User","site_admin":false,"contributions":2},{"login":"frabcus","id":10153,"avatar_url":"https://avatars.githubusercontent.com/u/10153?v=3","gravatar_id":"","url":"https://api.github.com/users/frabcus","html_url":"https://github.com/frabcus","followers_url":"https://api.github.com/users/frabcus/followers","following_url":"https://api.github.com/users/frabcus/following{/other_user}","gists_url":"https://api.github.com/users/frabcus/gists{/gist_id}","starred_url":"https://api.github.com/users/frabcus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frabcus/subscriptions","organizations_url":"https://api.github.com/users/frabcus/orgs","repos_url":"https://api.github.com/users/frabcus/repos","events_url":"https://api.github.com/users/frabcus/events{/privacy}","received_events_url":"https://api.github.com/users/frabcus/received_events","type":"User","site_admin":false,"contributions":2},{"login":"lucas42","id":428847,"avatar_url":"https://avatars.githubusercontent.com/u/428847?v=3","gravatar_id":"","url":"https://api.github.com/users/lucas42","html_url":"https://github.com/lucas42","followers_url":"https://api.github.com/users/lucas42/followers","following_url":"https://api.github.com/users/lucas42/following{/other_user}","gists_url":"https://api.github.com/users/lucas42/gists{/gist_id}","starred_url":"https://api.github.com/users/lucas42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lucas42/subscriptions","organizations_url":"https://api.github.com/users/lucas42/orgs","repos_url":"https://api.github.com/users/lucas42/repos","events_url":"https://api.github.com/users/lucas42/events{/privacy}","received_events_url":"https://api.github.com/users/lucas42/received_events","type":"User","site_admin":false,"contributions":2},{"login":"yellowgopher","id":8151629,"avatar_url":"https://avatars.githubusercontent.com/u/8151629?v=3","gravatar_id":"","url":"https://api.github.com/users/yellowgopher","html_url":"https://github.com/yellowgopher","followers_url":"https://api.github.com/users/yellowgopher/followers","following_url":"https://api.github.com/users/yellowgopher/following{/other_user}","gists_url":"https://api.github.com/users/yellowgopher/gists{/gist_id}","starred_url":"https://api.github.com/users/yellowgopher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yellowgopher/subscriptions","organizations_url":"https://api.github.com/users/yellowgopher/orgs","repos_url":"https://api.github.com/users/yellowgopher/repos","events_url":"https://api.github.com/users/yellowgopher/events{/privacy}","received_events_url":"https://api.github.com/users/yellowgopher/received_events","type":"User","site_admin":false,"contributions":2},{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false,"contributions":2},{"login":"cowlesz","id":11833675,"avatar_url":"https://avatars.githubusercontent.com/u/11833675?v=3","gravatar_id":"","url":"https://api.github.com/users/cowlesz","html_url":"https://github.com/cowlesz","followers_url":"https://api.github.com/users/cowlesz/followers","following_url":"https://api.github.com/users/cowlesz/following{/other_user}","gists_url":"https://api.github.com/users/cowlesz/gists{/gist_id}","starred_url":"https://api.github.com/users/cowlesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cowlesz/subscriptions","organizations_url":"https://api.github.com/users/cowlesz/orgs","repos_url":"https://api.github.com/users/cowlesz/repos","events_url":"https://api.github.com/users/cowlesz/events{/privacy}","received_events_url":"https://api.github.com/users/cowlesz/received_events","type":"User","site_admin":false,"contributions":2},{"login":"pigsonthewing","id":89541,"avatar_url":"https://avatars.githubusercontent.com/u/89541?v=3","gravatar_id":"","url":"https://api.github.com/users/pigsonthewing","html_url":"https://github.com/pigsonthewing","followers_url":"https://api.github.com/users/pigsonthewing/followers","following_url":"https://api.github.com/users/pigsonthewing/following{/other_user}","gists_url":"https://api.github.com/users/pigsonthewing/gists{/gist_id}","starred_url":"https://api.github.com/users/pigsonthewing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pigsonthewing/subscriptions","organizations_url":"https://api.github.com/users/pigsonthewing/orgs","repos_url":"https://api.github.com/users/pigsonthewing/repos","events_url":"https://api.github.com/users/pigsonthewing/events{/privacy}","received_events_url":"https://api.github.com/users/pigsonthewing/received_events","type":"User","site_admin":false,"contributions":1},{"login":"BenTrimble","id":9210823,"avatar_url":"https://avatars.githubusercontent.com/u/9210823?v=3","gravatar_id":"","url":"https://api.github.com/users/BenTrimble","html_url":"https://github.com/BenTrimble","followers_url":"https://api.github.com/users/BenTrimble/followers","following_url":"https://api.github.com/users/BenTrimble/following{/other_user}","gists_url":"https://api.github.com/users/BenTrimble/gists{/gist_id}","starred_url":"https://api.github.com/users/BenTrimble/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BenTrimble/subscriptions","organizations_url":"https://api.github.com/users/BenTrimble/orgs","repos_url":"https://api.github.com/users/BenTrimble/repos","events_url":"https://api.github.com/users/BenTrimble/events{/privacy}","received_events_url":"https://api.github.com/users/BenTrimble/received_events","type":"User","site_admin":false,"contributions":1},{"login":"otfrom","id":64839,"avatar_url":"https://avatars.githubusercontent.com/u/64839?v=3","gravatar_id":"","url":"https://api.github.com/users/otfrom","html_url":"https://github.com/otfrom","followers_url":"https://api.github.com/users/otfrom/followers","following_url":"https://api.github.com/users/otfrom/following{/other_user}","gists_url":"https://api.github.com/users/otfrom/gists{/gist_id}","starred_url":"https://api.github.com/users/otfrom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/otfrom/subscriptions","organizations_url":"https://api.github.com/users/otfrom/orgs","repos_url":"https://api.github.com/users/otfrom/repos","events_url":"https://api.github.com/users/otfrom/events{/privacy}","received_events_url":"https://api.github.com/users/otfrom/received_events","type":"User","site_admin":false,"contributions":1},{"login":"charlienewey","id":2302429,"avatar_url":"https://avatars.githubusercontent.com/u/2302429?v=3","gravatar_id":"","url":"https://api.github.com/users/charlienewey","html_url":"https://github.com/charlienewey","followers_url":"https://api.github.com/users/charlienewey/followers","following_url":"https://api.github.com/users/charlienewey/following{/other_user}","gists_url":"https://api.github.com/users/charlienewey/gists{/gist_id}","starred_url":"https://api.github.com/users/charlienewey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/charlienewey/subscriptions","organizations_url":"https://api.github.com/users/charlienewey/orgs","repos_url":"https://api.github.com/users/charlienewey/repos","events_url":"https://api.github.com/users/charlienewey/events{/privacy}","received_events_url":"https://api.github.com/users/charlienewey/received_events","type":"User","site_admin":false,"contributions":1},{"login":"davidmiller","id":17229,"avatar_url":"https://avatars.githubusercontent.com/u/17229?v=3","gravatar_id":"","url":"https://api.github.com/users/davidmiller","html_url":"https://github.com/davidmiller","followers_url":"https://api.github.com/users/davidmiller/followers","following_url":"https://api.github.com/users/davidmiller/following{/other_user}","gists_url":"https://api.github.com/users/davidmiller/gists{/gist_id}","starred_url":"https://api.github.com/users/davidmiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidmiller/subscriptions","organizations_url":"https://api.github.com/users/davidmiller/orgs","repos_url":"https://api.github.com/users/davidmiller/repos","events_url":"https://api.github.com/users/davidmiller/events{/privacy}","received_events_url":"https://api.github.com/users/davidmiller/received_events","type":"User","site_admin":false,"contributions":1},{"login":"JazDisney","id":12213562,"avatar_url":"https://avatars.githubusercontent.com/u/12213562?v=3","gravatar_id":"","url":"https://api.github.com/users/JazDisney","html_url":"https://github.com/JazDisney","followers_url":"https://api.github.com/users/JazDisney/followers","following_url":"https://api.github.com/users/JazDisney/following{/other_user}","gists_url":"https://api.github.com/users/JazDisney/gists{/gist_id}","starred_url":"https://api.github.com/users/JazDisney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JazDisney/subscriptions","organizations_url":"https://api.github.com/users/JazDisney/orgs","repos_url":"https://api.github.com/users/JazDisney/repos","events_url":"https://api.github.com/users/JazDisney/events{/privacy}","received_events_url":"https://api.github.com/users/JazDisney/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dangerousbeans","id":378489,"avatar_url":"https://avatars.githubusercontent.com/u/378489?v=3","gravatar_id":"","url":"https://api.github.com/users/dangerousbeans","html_url":"https://github.com/dangerousbeans","followers_url":"https://api.github.com/users/dangerousbeans/followers","following_url":"https://api.github.com/users/dangerousbeans/following{/other_user}","gists_url":"https://api.github.com/users/dangerousbeans/gists{/gist_id}","starred_url":"https://api.github.com/users/dangerousbeans/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dangerousbeans/subscriptions","organizations_url":"https://api.github.com/users/dangerousbeans/orgs","repos_url":"https://api.github.com/users/dangerousbeans/repos","events_url":"https://api.github.com/users/dangerousbeans/events{/privacy}","received_events_url":"https://api.github.com/users/dangerousbeans/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dracos","id":154364,"avatar_url":"https://avatars.githubusercontent.com/u/154364?v=3","gravatar_id":"","url":"https://api.github.com/users/dracos","html_url":"https://github.com/dracos","followers_url":"https://api.github.com/users/dracos/followers","following_url":"https://api.github.com/users/dracos/following{/other_user}","gists_url":"https://api.github.com/users/dracos/gists{/gist_id}","starred_url":"https://api.github.com/users/dracos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dracos/subscriptions","organizations_url":"https://api.github.com/users/dracos/orgs","repos_url":"https://api.github.com/users/dracos/repos","events_url":"https://api.github.com/users/dracos/events{/privacy}","received_events_url":"https://api.github.com/users/dracos/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Oeokosko","id":12440881,"avatar_url":"https://avatars.githubusercontent.com/u/12440881?v=3","gravatar_id":"","url":"https://api.github.com/users/Oeokosko","html_url":"https://github.com/Oeokosko","followers_url":"https://api.github.com/users/Oeokosko/followers","following_url":"https://api.github.com/users/Oeokosko/following{/other_user}","gists_url":"https://api.github.com/users/Oeokosko/gists{/gist_id}","starred_url":"https://api.github.com/users/Oeokosko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oeokosko/subscriptions","organizations_url":"https://api.github.com/users/Oeokosko/orgs","repos_url":"https://api.github.com/users/Oeokosko/repos","events_url":"https://api.github.com/users/Oeokosko/events{/privacy}","received_events_url":"https://api.github.com/users/Oeokosko/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Proxenia","id":7695545,"avatar_url":"https://avatars.githubusercontent.com/u/7695545?v=3","gravatar_id":"","url":"https://api.github.com/users/Proxenia","html_url":"https://github.com/Proxenia","followers_url":"https://api.github.com/users/Proxenia/followers","following_url":"https://api.github.com/users/Proxenia/following{/other_user}","gists_url":"https://api.github.com/users/Proxenia/gists{/gist_id}","starred_url":"https://api.github.com/users/Proxenia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Proxenia/subscriptions","organizations_url":"https://api.github.com/users/Proxenia/orgs","repos_url":"https://api.github.com/users/Proxenia/repos","events_url":"https://api.github.com/users/Proxenia/events{/privacy}","received_events_url":"https://api.github.com/users/Proxenia/received_events","type":"User","site_admin":false,"contributions":1},{"login":"TheRyanHowell","id":5139414,"avatar_url":"https://avatars.githubusercontent.com/u/5139414?v=3","gravatar_id":"","url":"https://api.github.com/users/TheRyanHowell","html_url":"https://github.com/TheRyanHowell","followers_url":"https://api.github.com/users/TheRyanHowell/followers","following_url":"https://api.github.com/users/TheRyanHowell/following{/other_user}","gists_url":"https://api.github.com/users/TheRyanHowell/gists{/gist_id}","starred_url":"https://api.github.com/users/TheRyanHowell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheRyanHowell/subscriptions","organizations_url":"https://api.github.com/users/TheRyanHowell/orgs","repos_url":"https://api.github.com/users/TheRyanHowell/repos","events_url":"https://api.github.com/users/TheRyanHowell/events{/privacy}","received_events_url":"https://api.github.com/users/TheRyanHowell/received_events","type":"User","site_admin":false,"contributions":1},{"login":"developerstuart","id":12292356,"avatar_url":"https://avatars.githubusercontent.com/u/12292356?v=3","gravatar_id":"","url":"https://api.github.com/users/developerstuart","html_url":"https://github.com/developerstuart","followers_url":"https://api.github.com/users/developerstuart/followers","following_url":"https://api.github.com/users/developerstuart/following{/other_user}","gists_url":"https://api.github.com/users/developerstuart/gists{/gist_id}","starred_url":"https://api.github.com/users/developerstuart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/developerstuart/subscriptions","organizations_url":"https://api.github.com/users/developerstuart/orgs","repos_url":"https://api.github.com/users/developerstuart/repos","events_url":"https://api.github.com/users/developerstuart/events{/privacy}","received_events_url":"https://api.github.com/users/developerstuart/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dyvroeth","id":5297490,"avatar_url":"https://avatars.githubusercontent.com/u/5297490?v=3","gravatar_id":"","url":"https://api.github.com/users/dyvroeth","html_url":"https://github.com/dyvroeth","followers_url":"https://api.github.com/users/dyvroeth/followers","following_url":"https://api.github.com/users/dyvroeth/following{/other_user}","gists_url":"https://api.github.com/users/dyvroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/dyvroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dyvroeth/subscriptions","organizations_url":"https://api.github.com/users/dyvroeth/orgs","repos_url":"https://api.github.com/users/dyvroeth/repos","events_url":"https://api.github.com/users/dyvroeth/events{/privacy}","received_events_url":"https://api.github.com/users/dyvroeth/received_events","type":"User","site_admin":false,"contributions":1},{"login":"glynnchaldecott","id":13301617,"avatar_url":"https://avatars.githubusercontent.com/u/13301617?v=3","gravatar_id":"","url":"https://api.github.com/users/glynnchaldecott","html_url":"https://github.com/glynnchaldecott","followers_url":"https://api.github.com/users/glynnchaldecott/followers","following_url":"https://api.github.com/users/glynnchaldecott/following{/other_user}","gists_url":"https://api.github.com/users/glynnchaldecott/gists{/gist_id}","starred_url":"https://api.github.com/users/glynnchaldecott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glynnchaldecott/subscriptions","organizations_url":"https://api.github.com/users/glynnchaldecott/orgs","repos_url":"https://api.github.com/users/glynnchaldecott/repos","events_url":"https://api.github.com/users/glynnchaldecott/events{/privacy}","received_events_url":"https://api.github.com/users/glynnchaldecott/received_events","type":"User","site_admin":false,"contributions":1},{"login":"h2g2bob","id":10098089,"avatar_url":"https://avatars.githubusercontent.com/u/10098089?v=3","gravatar_id":"","url":"https://api.github.com/users/h2g2bob","html_url":"https://github.com/h2g2bob","followers_url":"https://api.github.com/users/h2g2bob/followers","following_url":"https://api.github.com/users/h2g2bob/following{/other_user}","gists_url":"https://api.github.com/users/h2g2bob/gists{/gist_id}","starred_url":"https://api.github.com/users/h2g2bob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h2g2bob/subscriptions","organizations_url":"https://api.github.com/users/h2g2bob/orgs","repos_url":"https://api.github.com/users/h2g2bob/repos","events_url":"https://api.github.com/users/h2g2bob/events{/privacy}","received_events_url":"https://api.github.com/users/h2g2bob/received_events","type":"User","site_admin":false,"contributions":1},{"login":"rufflemuffin","id":1616599,"avatar_url":"https://avatars.githubusercontent.com/u/1616599?v=3","gravatar_id":"","url":"https://api.github.com/users/rufflemuffin","html_url":"https://github.com/rufflemuffin","followers_url":"https://api.github.com/users/rufflemuffin/followers","following_url":"https://api.github.com/users/rufflemuffin/following{/other_user}","gists_url":"https://api.github.com/users/rufflemuffin/gists{/gist_id}","starred_url":"https://api.github.com/users/rufflemuffin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rufflemuffin/subscriptions","organizations_url":"https://api.github.com/users/rufflemuffin/orgs","repos_url":"https://api.github.com/users/rufflemuffin/repos","events_url":"https://api.github.com/users/rufflemuffin/events{/privacy}","received_events_url":"https://api.github.com/users/rufflemuffin/received_events","type":"User","site_admin":false,"contributions":1},{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false,"contributions":1}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/users/Floppy + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:19 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3636' + X-Ratelimit-Reset: + - '1469547319' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"3db638bee5182531245362cb49519add" + Last-Modified: + - Fri, 22 Jul 2016 08:29:51 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - user + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - dc1ce2bfb41810a06c705e83b388572d + X-Github-Request-Id: + - 5685C2D8:4A48:9CA5AC:57977527 + body: + encoding: ASCII-8BIT + string: '{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false,"name":"James + Smith","company":"The Open Data Institute","blog":"http://www.floppy.org.uk","location":"Horsham, + UK","email":"james@floppy.org.uk","hireable":null,"bio":"Building a better + future out of code. Head of Labs at @theodi, party leader of @SomethingNewUK, + founder of @cleanweb-uk, and chair of @cdcssg. Neutral Good.","public_repos":76,"public_gists":9,"followers":78,"following":24,"created_at":"2008-03-21T17:05:23Z","updated_at":"2016-07-22T08:29:51Z"}' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +- request: + method: get + uri: https://api.github.com/repos/openpolitics/manifesto/contributors?per_page=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json + User-Agent: + - Octokit Ruby Gem 4.3.0 + Content-Type: + - application/json + Authorization: + - token + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Tue, 26 Jul 2016 14:35:19 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '5000' + X-Ratelimit-Remaining: + - '3635' + X-Ratelimit-Reset: + - '1469547319' + Cache-Control: + - private, max-age=60, s-maxage=60 + Vary: + - Accept, Authorization, Cookie, X-GitHub-OTP + - Accept-Encoding + Etag: + - W/"fcae6ec0fb0e274806b48e8672657513" + Last-Modified: + - Fri, 24 Jun 2016 08:34:16 GMT + X-Oauth-Scopes: + - repo, user:email + X-Accepted-Oauth-Scopes: + - '' + X-Github-Media-Type: + - github.v3; format=json + Access-Control-Expose-Headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - "*" + Content-Security-Policy: + - default-src 'none' + Strict-Transport-Security: + - max-age=31536000; includeSubdomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-Xss-Protection: + - 1; mode=block + X-Served-By: + - d594a23ec74671eba905bf91ef329026 + X-Github-Request-Id: + - 5685C2D8:4A49:B47B3F:57977527 + body: + encoding: ASCII-8BIT + string: '[{"login":"Floppy","id":3565,"avatar_url":"https://avatars.githubusercontent.com/u/3565?v=3","gravatar_id":"","url":"https://api.github.com/users/Floppy","html_url":"https://github.com/Floppy","followers_url":"https://api.github.com/users/Floppy/followers","following_url":"https://api.github.com/users/Floppy/following{/other_user}","gists_url":"https://api.github.com/users/Floppy/gists{/gist_id}","starred_url":"https://api.github.com/users/Floppy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Floppy/subscriptions","organizations_url":"https://api.github.com/users/Floppy/orgs","repos_url":"https://api.github.com/users/Floppy/repos","events_url":"https://api.github.com/users/Floppy/events{/privacy}","received_events_url":"https://api.github.com/users/Floppy/received_events","type":"User","site_admin":false,"contributions":526},{"login":"philipjohn","id":136342,"avatar_url":"https://avatars.githubusercontent.com/u/136342?v=3","gravatar_id":"","url":"https://api.github.com/users/philipjohn","html_url":"https://github.com/philipjohn","followers_url":"https://api.github.com/users/philipjohn/followers","following_url":"https://api.github.com/users/philipjohn/following{/other_user}","gists_url":"https://api.github.com/users/philipjohn/gists{/gist_id}","starred_url":"https://api.github.com/users/philipjohn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/philipjohn/subscriptions","organizations_url":"https://api.github.com/users/philipjohn/orgs","repos_url":"https://api.github.com/users/philipjohn/repos","events_url":"https://api.github.com/users/philipjohn/events{/privacy}","received_events_url":"https://api.github.com/users/philipjohn/received_events","type":"User","site_admin":false,"contributions":84},{"login":"PaulJRobinson","id":4026234,"avatar_url":"https://avatars.githubusercontent.com/u/4026234?v=3","gravatar_id":"","url":"https://api.github.com/users/PaulJRobinson","html_url":"https://github.com/PaulJRobinson","followers_url":"https://api.github.com/users/PaulJRobinson/followers","following_url":"https://api.github.com/users/PaulJRobinson/following{/other_user}","gists_url":"https://api.github.com/users/PaulJRobinson/gists{/gist_id}","starred_url":"https://api.github.com/users/PaulJRobinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PaulJRobinson/subscriptions","organizations_url":"https://api.github.com/users/PaulJRobinson/orgs","repos_url":"https://api.github.com/users/PaulJRobinson/repos","events_url":"https://api.github.com/users/PaulJRobinson/events{/privacy}","received_events_url":"https://api.github.com/users/PaulJRobinson/received_events","type":"User","site_admin":false,"contributions":50},{"login":"andrewdwilliams","id":11067065,"avatar_url":"https://avatars.githubusercontent.com/u/11067065?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewdwilliams","html_url":"https://github.com/andrewdwilliams","followers_url":"https://api.github.com/users/andrewdwilliams/followers","following_url":"https://api.github.com/users/andrewdwilliams/following{/other_user}","gists_url":"https://api.github.com/users/andrewdwilliams/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewdwilliams/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewdwilliams/subscriptions","organizations_url":"https://api.github.com/users/andrewdwilliams/orgs","repos_url":"https://api.github.com/users/andrewdwilliams/repos","events_url":"https://api.github.com/users/andrewdwilliams/events{/privacy}","received_events_url":"https://api.github.com/users/andrewdwilliams/received_events","type":"User","site_admin":false,"contributions":16},{"login":"frankieroberto","id":30665,"avatar_url":"https://avatars.githubusercontent.com/u/30665?v=3","gravatar_id":"","url":"https://api.github.com/users/frankieroberto","html_url":"https://github.com/frankieroberto","followers_url":"https://api.github.com/users/frankieroberto/followers","following_url":"https://api.github.com/users/frankieroberto/following{/other_user}","gists_url":"https://api.github.com/users/frankieroberto/gists{/gist_id}","starred_url":"https://api.github.com/users/frankieroberto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frankieroberto/subscriptions","organizations_url":"https://api.github.com/users/frankieroberto/orgs","repos_url":"https://api.github.com/users/frankieroberto/repos","events_url":"https://api.github.com/users/frankieroberto/events{/privacy}","received_events_url":"https://api.github.com/users/frankieroberto/received_events","type":"User","site_admin":false,"contributions":9},{"login":"digitalWestie","id":454663,"avatar_url":"https://avatars.githubusercontent.com/u/454663?v=3","gravatar_id":"","url":"https://api.github.com/users/digitalWestie","html_url":"https://github.com/digitalWestie","followers_url":"https://api.github.com/users/digitalWestie/followers","following_url":"https://api.github.com/users/digitalWestie/following{/other_user}","gists_url":"https://api.github.com/users/digitalWestie/gists{/gist_id}","starred_url":"https://api.github.com/users/digitalWestie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/digitalWestie/subscriptions","organizations_url":"https://api.github.com/users/digitalWestie/orgs","repos_url":"https://api.github.com/users/digitalWestie/repos","events_url":"https://api.github.com/users/digitalWestie/events{/privacy}","received_events_url":"https://api.github.com/users/digitalWestie/received_events","type":"User","site_admin":false,"contributions":9},{"login":"stringfellow","id":62915,"avatar_url":"https://avatars.githubusercontent.com/u/62915?v=3","gravatar_id":"","url":"https://api.github.com/users/stringfellow","html_url":"https://github.com/stringfellow","followers_url":"https://api.github.com/users/stringfellow/followers","following_url":"https://api.github.com/users/stringfellow/following{/other_user}","gists_url":"https://api.github.com/users/stringfellow/gists{/gist_id}","starred_url":"https://api.github.com/users/stringfellow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stringfellow/subscriptions","organizations_url":"https://api.github.com/users/stringfellow/orgs","repos_url":"https://api.github.com/users/stringfellow/repos","events_url":"https://api.github.com/users/stringfellow/events{/privacy}","received_events_url":"https://api.github.com/users/stringfellow/received_events","type":"User","site_admin":false,"contributions":8},{"login":"OliverJackson1","id":20183924,"avatar_url":"https://avatars.githubusercontent.com/u/20183924?v=3","gravatar_id":"","url":"https://api.github.com/users/OliverJackson1","html_url":"https://github.com/OliverJackson1","followers_url":"https://api.github.com/users/OliverJackson1/followers","following_url":"https://api.github.com/users/OliverJackson1/following{/other_user}","gists_url":"https://api.github.com/users/OliverJackson1/gists{/gist_id}","starred_url":"https://api.github.com/users/OliverJackson1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OliverJackson1/subscriptions","organizations_url":"https://api.github.com/users/OliverJackson1/orgs","repos_url":"https://api.github.com/users/OliverJackson1/repos","events_url":"https://api.github.com/users/OliverJackson1/events{/privacy}","received_events_url":"https://api.github.com/users/OliverJackson1/received_events","type":"User","site_admin":false,"contributions":7},{"login":"timcowlishaw","id":4279,"avatar_url":"https://avatars.githubusercontent.com/u/4279?v=3","gravatar_id":"","url":"https://api.github.com/users/timcowlishaw","html_url":"https://github.com/timcowlishaw","followers_url":"https://api.github.com/users/timcowlishaw/followers","following_url":"https://api.github.com/users/timcowlishaw/following{/other_user}","gists_url":"https://api.github.com/users/timcowlishaw/gists{/gist_id}","starred_url":"https://api.github.com/users/timcowlishaw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timcowlishaw/subscriptions","organizations_url":"https://api.github.com/users/timcowlishaw/orgs","repos_url":"https://api.github.com/users/timcowlishaw/repos","events_url":"https://api.github.com/users/timcowlishaw/events{/privacy}","received_events_url":"https://api.github.com/users/timcowlishaw/received_events","type":"User","site_admin":false,"contributions":7},{"login":"GarethShapiro","id":342749,"avatar_url":"https://avatars.githubusercontent.com/u/342749?v=3","gravatar_id":"","url":"https://api.github.com/users/GarethShapiro","html_url":"https://github.com/GarethShapiro","followers_url":"https://api.github.com/users/GarethShapiro/followers","following_url":"https://api.github.com/users/GarethShapiro/following{/other_user}","gists_url":"https://api.github.com/users/GarethShapiro/gists{/gist_id}","starred_url":"https://api.github.com/users/GarethShapiro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GarethShapiro/subscriptions","organizations_url":"https://api.github.com/users/GarethShapiro/orgs","repos_url":"https://api.github.com/users/GarethShapiro/repos","events_url":"https://api.github.com/users/GarethShapiro/events{/privacy}","received_events_url":"https://api.github.com/users/GarethShapiro/received_events","type":"User","site_admin":false,"contributions":5},{"login":"mjnaber","id":7307123,"avatar_url":"https://avatars.githubusercontent.com/u/7307123?v=3","gravatar_id":"","url":"https://api.github.com/users/mjnaber","html_url":"https://github.com/mjnaber","followers_url":"https://api.github.com/users/mjnaber/followers","following_url":"https://api.github.com/users/mjnaber/following{/other_user}","gists_url":"https://api.github.com/users/mjnaber/gists{/gist_id}","starred_url":"https://api.github.com/users/mjnaber/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mjnaber/subscriptions","organizations_url":"https://api.github.com/users/mjnaber/orgs","repos_url":"https://api.github.com/users/mjnaber/repos","events_url":"https://api.github.com/users/mjnaber/events{/privacy}","received_events_url":"https://api.github.com/users/mjnaber/received_events","type":"User","site_admin":false,"contributions":5},{"login":"LeilaCCG","id":12280095,"avatar_url":"https://avatars.githubusercontent.com/u/12280095?v=3","gravatar_id":"","url":"https://api.github.com/users/LeilaCCG","html_url":"https://github.com/LeilaCCG","followers_url":"https://api.github.com/users/LeilaCCG/followers","following_url":"https://api.github.com/users/LeilaCCG/following{/other_user}","gists_url":"https://api.github.com/users/LeilaCCG/gists{/gist_id}","starred_url":"https://api.github.com/users/LeilaCCG/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LeilaCCG/subscriptions","organizations_url":"https://api.github.com/users/LeilaCCG/orgs","repos_url":"https://api.github.com/users/LeilaCCG/repos","events_url":"https://api.github.com/users/LeilaCCG/events{/privacy}","received_events_url":"https://api.github.com/users/LeilaCCG/received_events","type":"User","site_admin":false,"contributions":3},{"login":"mikera","id":212007,"avatar_url":"https://avatars.githubusercontent.com/u/212007?v=3","gravatar_id":"","url":"https://api.github.com/users/mikera","html_url":"https://github.com/mikera","followers_url":"https://api.github.com/users/mikera/followers","following_url":"https://api.github.com/users/mikera/following{/other_user}","gists_url":"https://api.github.com/users/mikera/gists{/gist_id}","starred_url":"https://api.github.com/users/mikera/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikera/subscriptions","organizations_url":"https://api.github.com/users/mikera/orgs","repos_url":"https://api.github.com/users/mikera/repos","events_url":"https://api.github.com/users/mikera/events{/privacy}","received_events_url":"https://api.github.com/users/mikera/received_events","type":"User","site_admin":false,"contributions":3},{"login":"tmtmtmtm","id":57483,"avatar_url":"https://avatars.githubusercontent.com/u/57483?v=3","gravatar_id":"","url":"https://api.github.com/users/tmtmtmtm","html_url":"https://github.com/tmtmtmtm","followers_url":"https://api.github.com/users/tmtmtmtm/followers","following_url":"https://api.github.com/users/tmtmtmtm/following{/other_user}","gists_url":"https://api.github.com/users/tmtmtmtm/gists{/gist_id}","starred_url":"https://api.github.com/users/tmtmtmtm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tmtmtmtm/subscriptions","organizations_url":"https://api.github.com/users/tmtmtmtm/orgs","repos_url":"https://api.github.com/users/tmtmtmtm/repos","events_url":"https://api.github.com/users/tmtmtmtm/events{/privacy}","received_events_url":"https://api.github.com/users/tmtmtmtm/received_events","type":"User","site_admin":false,"contributions":3},{"login":"andrewedmondson","id":11943019,"avatar_url":"https://avatars.githubusercontent.com/u/11943019?v=3","gravatar_id":"","url":"https://api.github.com/users/andrewedmondson","html_url":"https://github.com/andrewedmondson","followers_url":"https://api.github.com/users/andrewedmondson/followers","following_url":"https://api.github.com/users/andrewedmondson/following{/other_user}","gists_url":"https://api.github.com/users/andrewedmondson/gists{/gist_id}","starred_url":"https://api.github.com/users/andrewedmondson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andrewedmondson/subscriptions","organizations_url":"https://api.github.com/users/andrewedmondson/orgs","repos_url":"https://api.github.com/users/andrewedmondson/repos","events_url":"https://api.github.com/users/andrewedmondson/events{/privacy}","received_events_url":"https://api.github.com/users/andrewedmondson/received_events","type":"User","site_admin":false,"contributions":3},{"login":"cyanc","id":1665471,"avatar_url":"https://avatars.githubusercontent.com/u/1665471?v=3","gravatar_id":"","url":"https://api.github.com/users/cyanc","html_url":"https://github.com/cyanc","followers_url":"https://api.github.com/users/cyanc/followers","following_url":"https://api.github.com/users/cyanc/following{/other_user}","gists_url":"https://api.github.com/users/cyanc/gists{/gist_id}","starred_url":"https://api.github.com/users/cyanc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyanc/subscriptions","organizations_url":"https://api.github.com/users/cyanc/orgs","repos_url":"https://api.github.com/users/cyanc/repos","events_url":"https://api.github.com/users/cyanc/events{/privacy}","received_events_url":"https://api.github.com/users/cyanc/received_events","type":"User","site_admin":false,"contributions":2},{"login":"CharlieDelMonte","id":8327409,"avatar_url":"https://avatars.githubusercontent.com/u/8327409?v=3","gravatar_id":"","url":"https://api.github.com/users/CharlieDelMonte","html_url":"https://github.com/CharlieDelMonte","followers_url":"https://api.github.com/users/CharlieDelMonte/followers","following_url":"https://api.github.com/users/CharlieDelMonte/following{/other_user}","gists_url":"https://api.github.com/users/CharlieDelMonte/gists{/gist_id}","starred_url":"https://api.github.com/users/CharlieDelMonte/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CharlieDelMonte/subscriptions","organizations_url":"https://api.github.com/users/CharlieDelMonte/orgs","repos_url":"https://api.github.com/users/CharlieDelMonte/repos","events_url":"https://api.github.com/users/CharlieDelMonte/events{/privacy}","received_events_url":"https://api.github.com/users/CharlieDelMonte/received_events","type":"User","site_admin":false,"contributions":2},{"login":"frabcus","id":10153,"avatar_url":"https://avatars.githubusercontent.com/u/10153?v=3","gravatar_id":"","url":"https://api.github.com/users/frabcus","html_url":"https://github.com/frabcus","followers_url":"https://api.github.com/users/frabcus/followers","following_url":"https://api.github.com/users/frabcus/following{/other_user}","gists_url":"https://api.github.com/users/frabcus/gists{/gist_id}","starred_url":"https://api.github.com/users/frabcus/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frabcus/subscriptions","organizations_url":"https://api.github.com/users/frabcus/orgs","repos_url":"https://api.github.com/users/frabcus/repos","events_url":"https://api.github.com/users/frabcus/events{/privacy}","received_events_url":"https://api.github.com/users/frabcus/received_events","type":"User","site_admin":false,"contributions":2},{"login":"lucas42","id":428847,"avatar_url":"https://avatars.githubusercontent.com/u/428847?v=3","gravatar_id":"","url":"https://api.github.com/users/lucas42","html_url":"https://github.com/lucas42","followers_url":"https://api.github.com/users/lucas42/followers","following_url":"https://api.github.com/users/lucas42/following{/other_user}","gists_url":"https://api.github.com/users/lucas42/gists{/gist_id}","starred_url":"https://api.github.com/users/lucas42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lucas42/subscriptions","organizations_url":"https://api.github.com/users/lucas42/orgs","repos_url":"https://api.github.com/users/lucas42/repos","events_url":"https://api.github.com/users/lucas42/events{/privacy}","received_events_url":"https://api.github.com/users/lucas42/received_events","type":"User","site_admin":false,"contributions":2},{"login":"yellowgopher","id":8151629,"avatar_url":"https://avatars.githubusercontent.com/u/8151629?v=3","gravatar_id":"","url":"https://api.github.com/users/yellowgopher","html_url":"https://github.com/yellowgopher","followers_url":"https://api.github.com/users/yellowgopher/followers","following_url":"https://api.github.com/users/yellowgopher/following{/other_user}","gists_url":"https://api.github.com/users/yellowgopher/gists{/gist_id}","starred_url":"https://api.github.com/users/yellowgopher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yellowgopher/subscriptions","organizations_url":"https://api.github.com/users/yellowgopher/orgs","repos_url":"https://api.github.com/users/yellowgopher/repos","events_url":"https://api.github.com/users/yellowgopher/events{/privacy}","received_events_url":"https://api.github.com/users/yellowgopher/received_events","type":"User","site_admin":false,"contributions":2},{"login":"iconoclast86","id":11923408,"avatar_url":"https://avatars.githubusercontent.com/u/11923408?v=3","gravatar_id":"","url":"https://api.github.com/users/iconoclast86","html_url":"https://github.com/iconoclast86","followers_url":"https://api.github.com/users/iconoclast86/followers","following_url":"https://api.github.com/users/iconoclast86/following{/other_user}","gists_url":"https://api.github.com/users/iconoclast86/gists{/gist_id}","starred_url":"https://api.github.com/users/iconoclast86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iconoclast86/subscriptions","organizations_url":"https://api.github.com/users/iconoclast86/orgs","repos_url":"https://api.github.com/users/iconoclast86/repos","events_url":"https://api.github.com/users/iconoclast86/events{/privacy}","received_events_url":"https://api.github.com/users/iconoclast86/received_events","type":"User","site_admin":false,"contributions":2},{"login":"cowlesz","id":11833675,"avatar_url":"https://avatars.githubusercontent.com/u/11833675?v=3","gravatar_id":"","url":"https://api.github.com/users/cowlesz","html_url":"https://github.com/cowlesz","followers_url":"https://api.github.com/users/cowlesz/followers","following_url":"https://api.github.com/users/cowlesz/following{/other_user}","gists_url":"https://api.github.com/users/cowlesz/gists{/gist_id}","starred_url":"https://api.github.com/users/cowlesz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cowlesz/subscriptions","organizations_url":"https://api.github.com/users/cowlesz/orgs","repos_url":"https://api.github.com/users/cowlesz/repos","events_url":"https://api.github.com/users/cowlesz/events{/privacy}","received_events_url":"https://api.github.com/users/cowlesz/received_events","type":"User","site_admin":false,"contributions":2},{"login":"pigsonthewing","id":89541,"avatar_url":"https://avatars.githubusercontent.com/u/89541?v=3","gravatar_id":"","url":"https://api.github.com/users/pigsonthewing","html_url":"https://github.com/pigsonthewing","followers_url":"https://api.github.com/users/pigsonthewing/followers","following_url":"https://api.github.com/users/pigsonthewing/following{/other_user}","gists_url":"https://api.github.com/users/pigsonthewing/gists{/gist_id}","starred_url":"https://api.github.com/users/pigsonthewing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pigsonthewing/subscriptions","organizations_url":"https://api.github.com/users/pigsonthewing/orgs","repos_url":"https://api.github.com/users/pigsonthewing/repos","events_url":"https://api.github.com/users/pigsonthewing/events{/privacy}","received_events_url":"https://api.github.com/users/pigsonthewing/received_events","type":"User","site_admin":false,"contributions":1},{"login":"BenTrimble","id":9210823,"avatar_url":"https://avatars.githubusercontent.com/u/9210823?v=3","gravatar_id":"","url":"https://api.github.com/users/BenTrimble","html_url":"https://github.com/BenTrimble","followers_url":"https://api.github.com/users/BenTrimble/followers","following_url":"https://api.github.com/users/BenTrimble/following{/other_user}","gists_url":"https://api.github.com/users/BenTrimble/gists{/gist_id}","starred_url":"https://api.github.com/users/BenTrimble/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BenTrimble/subscriptions","organizations_url":"https://api.github.com/users/BenTrimble/orgs","repos_url":"https://api.github.com/users/BenTrimble/repos","events_url":"https://api.github.com/users/BenTrimble/events{/privacy}","received_events_url":"https://api.github.com/users/BenTrimble/received_events","type":"User","site_admin":false,"contributions":1},{"login":"otfrom","id":64839,"avatar_url":"https://avatars.githubusercontent.com/u/64839?v=3","gravatar_id":"","url":"https://api.github.com/users/otfrom","html_url":"https://github.com/otfrom","followers_url":"https://api.github.com/users/otfrom/followers","following_url":"https://api.github.com/users/otfrom/following{/other_user}","gists_url":"https://api.github.com/users/otfrom/gists{/gist_id}","starred_url":"https://api.github.com/users/otfrom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/otfrom/subscriptions","organizations_url":"https://api.github.com/users/otfrom/orgs","repos_url":"https://api.github.com/users/otfrom/repos","events_url":"https://api.github.com/users/otfrom/events{/privacy}","received_events_url":"https://api.github.com/users/otfrom/received_events","type":"User","site_admin":false,"contributions":1},{"login":"charlienewey","id":2302429,"avatar_url":"https://avatars.githubusercontent.com/u/2302429?v=3","gravatar_id":"","url":"https://api.github.com/users/charlienewey","html_url":"https://github.com/charlienewey","followers_url":"https://api.github.com/users/charlienewey/followers","following_url":"https://api.github.com/users/charlienewey/following{/other_user}","gists_url":"https://api.github.com/users/charlienewey/gists{/gist_id}","starred_url":"https://api.github.com/users/charlienewey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/charlienewey/subscriptions","organizations_url":"https://api.github.com/users/charlienewey/orgs","repos_url":"https://api.github.com/users/charlienewey/repos","events_url":"https://api.github.com/users/charlienewey/events{/privacy}","received_events_url":"https://api.github.com/users/charlienewey/received_events","type":"User","site_admin":false,"contributions":1},{"login":"davidmiller","id":17229,"avatar_url":"https://avatars.githubusercontent.com/u/17229?v=3","gravatar_id":"","url":"https://api.github.com/users/davidmiller","html_url":"https://github.com/davidmiller","followers_url":"https://api.github.com/users/davidmiller/followers","following_url":"https://api.github.com/users/davidmiller/following{/other_user}","gists_url":"https://api.github.com/users/davidmiller/gists{/gist_id}","starred_url":"https://api.github.com/users/davidmiller/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davidmiller/subscriptions","organizations_url":"https://api.github.com/users/davidmiller/orgs","repos_url":"https://api.github.com/users/davidmiller/repos","events_url":"https://api.github.com/users/davidmiller/events{/privacy}","received_events_url":"https://api.github.com/users/davidmiller/received_events","type":"User","site_admin":false,"contributions":1},{"login":"JazDisney","id":12213562,"avatar_url":"https://avatars.githubusercontent.com/u/12213562?v=3","gravatar_id":"","url":"https://api.github.com/users/JazDisney","html_url":"https://github.com/JazDisney","followers_url":"https://api.github.com/users/JazDisney/followers","following_url":"https://api.github.com/users/JazDisney/following{/other_user}","gists_url":"https://api.github.com/users/JazDisney/gists{/gist_id}","starred_url":"https://api.github.com/users/JazDisney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JazDisney/subscriptions","organizations_url":"https://api.github.com/users/JazDisney/orgs","repos_url":"https://api.github.com/users/JazDisney/repos","events_url":"https://api.github.com/users/JazDisney/events{/privacy}","received_events_url":"https://api.github.com/users/JazDisney/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dangerousbeans","id":378489,"avatar_url":"https://avatars.githubusercontent.com/u/378489?v=3","gravatar_id":"","url":"https://api.github.com/users/dangerousbeans","html_url":"https://github.com/dangerousbeans","followers_url":"https://api.github.com/users/dangerousbeans/followers","following_url":"https://api.github.com/users/dangerousbeans/following{/other_user}","gists_url":"https://api.github.com/users/dangerousbeans/gists{/gist_id}","starred_url":"https://api.github.com/users/dangerousbeans/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dangerousbeans/subscriptions","organizations_url":"https://api.github.com/users/dangerousbeans/orgs","repos_url":"https://api.github.com/users/dangerousbeans/repos","events_url":"https://api.github.com/users/dangerousbeans/events{/privacy}","received_events_url":"https://api.github.com/users/dangerousbeans/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dracos","id":154364,"avatar_url":"https://avatars.githubusercontent.com/u/154364?v=3","gravatar_id":"","url":"https://api.github.com/users/dracos","html_url":"https://github.com/dracos","followers_url":"https://api.github.com/users/dracos/followers","following_url":"https://api.github.com/users/dracos/following{/other_user}","gists_url":"https://api.github.com/users/dracos/gists{/gist_id}","starred_url":"https://api.github.com/users/dracos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dracos/subscriptions","organizations_url":"https://api.github.com/users/dracos/orgs","repos_url":"https://api.github.com/users/dracos/repos","events_url":"https://api.github.com/users/dracos/events{/privacy}","received_events_url":"https://api.github.com/users/dracos/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Oeokosko","id":12440881,"avatar_url":"https://avatars.githubusercontent.com/u/12440881?v=3","gravatar_id":"","url":"https://api.github.com/users/Oeokosko","html_url":"https://github.com/Oeokosko","followers_url":"https://api.github.com/users/Oeokosko/followers","following_url":"https://api.github.com/users/Oeokosko/following{/other_user}","gists_url":"https://api.github.com/users/Oeokosko/gists{/gist_id}","starred_url":"https://api.github.com/users/Oeokosko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oeokosko/subscriptions","organizations_url":"https://api.github.com/users/Oeokosko/orgs","repos_url":"https://api.github.com/users/Oeokosko/repos","events_url":"https://api.github.com/users/Oeokosko/events{/privacy}","received_events_url":"https://api.github.com/users/Oeokosko/received_events","type":"User","site_admin":false,"contributions":1},{"login":"Proxenia","id":7695545,"avatar_url":"https://avatars.githubusercontent.com/u/7695545?v=3","gravatar_id":"","url":"https://api.github.com/users/Proxenia","html_url":"https://github.com/Proxenia","followers_url":"https://api.github.com/users/Proxenia/followers","following_url":"https://api.github.com/users/Proxenia/following{/other_user}","gists_url":"https://api.github.com/users/Proxenia/gists{/gist_id}","starred_url":"https://api.github.com/users/Proxenia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Proxenia/subscriptions","organizations_url":"https://api.github.com/users/Proxenia/orgs","repos_url":"https://api.github.com/users/Proxenia/repos","events_url":"https://api.github.com/users/Proxenia/events{/privacy}","received_events_url":"https://api.github.com/users/Proxenia/received_events","type":"User","site_admin":false,"contributions":1},{"login":"TheRyanHowell","id":5139414,"avatar_url":"https://avatars.githubusercontent.com/u/5139414?v=3","gravatar_id":"","url":"https://api.github.com/users/TheRyanHowell","html_url":"https://github.com/TheRyanHowell","followers_url":"https://api.github.com/users/TheRyanHowell/followers","following_url":"https://api.github.com/users/TheRyanHowell/following{/other_user}","gists_url":"https://api.github.com/users/TheRyanHowell/gists{/gist_id}","starred_url":"https://api.github.com/users/TheRyanHowell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheRyanHowell/subscriptions","organizations_url":"https://api.github.com/users/TheRyanHowell/orgs","repos_url":"https://api.github.com/users/TheRyanHowell/repos","events_url":"https://api.github.com/users/TheRyanHowell/events{/privacy}","received_events_url":"https://api.github.com/users/TheRyanHowell/received_events","type":"User","site_admin":false,"contributions":1},{"login":"developerstuart","id":12292356,"avatar_url":"https://avatars.githubusercontent.com/u/12292356?v=3","gravatar_id":"","url":"https://api.github.com/users/developerstuart","html_url":"https://github.com/developerstuart","followers_url":"https://api.github.com/users/developerstuart/followers","following_url":"https://api.github.com/users/developerstuart/following{/other_user}","gists_url":"https://api.github.com/users/developerstuart/gists{/gist_id}","starred_url":"https://api.github.com/users/developerstuart/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/developerstuart/subscriptions","organizations_url":"https://api.github.com/users/developerstuart/orgs","repos_url":"https://api.github.com/users/developerstuart/repos","events_url":"https://api.github.com/users/developerstuart/events{/privacy}","received_events_url":"https://api.github.com/users/developerstuart/received_events","type":"User","site_admin":false,"contributions":1},{"login":"dyvroeth","id":5297490,"avatar_url":"https://avatars.githubusercontent.com/u/5297490?v=3","gravatar_id":"","url":"https://api.github.com/users/dyvroeth","html_url":"https://github.com/dyvroeth","followers_url":"https://api.github.com/users/dyvroeth/followers","following_url":"https://api.github.com/users/dyvroeth/following{/other_user}","gists_url":"https://api.github.com/users/dyvroeth/gists{/gist_id}","starred_url":"https://api.github.com/users/dyvroeth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dyvroeth/subscriptions","organizations_url":"https://api.github.com/users/dyvroeth/orgs","repos_url":"https://api.github.com/users/dyvroeth/repos","events_url":"https://api.github.com/users/dyvroeth/events{/privacy}","received_events_url":"https://api.github.com/users/dyvroeth/received_events","type":"User","site_admin":false,"contributions":1},{"login":"glynnchaldecott","id":13301617,"avatar_url":"https://avatars.githubusercontent.com/u/13301617?v=3","gravatar_id":"","url":"https://api.github.com/users/glynnchaldecott","html_url":"https://github.com/glynnchaldecott","followers_url":"https://api.github.com/users/glynnchaldecott/followers","following_url":"https://api.github.com/users/glynnchaldecott/following{/other_user}","gists_url":"https://api.github.com/users/glynnchaldecott/gists{/gist_id}","starred_url":"https://api.github.com/users/glynnchaldecott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glynnchaldecott/subscriptions","organizations_url":"https://api.github.com/users/glynnchaldecott/orgs","repos_url":"https://api.github.com/users/glynnchaldecott/repos","events_url":"https://api.github.com/users/glynnchaldecott/events{/privacy}","received_events_url":"https://api.github.com/users/glynnchaldecott/received_events","type":"User","site_admin":false,"contributions":1},{"login":"h2g2bob","id":10098089,"avatar_url":"https://avatars.githubusercontent.com/u/10098089?v=3","gravatar_id":"","url":"https://api.github.com/users/h2g2bob","html_url":"https://github.com/h2g2bob","followers_url":"https://api.github.com/users/h2g2bob/followers","following_url":"https://api.github.com/users/h2g2bob/following{/other_user}","gists_url":"https://api.github.com/users/h2g2bob/gists{/gist_id}","starred_url":"https://api.github.com/users/h2g2bob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/h2g2bob/subscriptions","organizations_url":"https://api.github.com/users/h2g2bob/orgs","repos_url":"https://api.github.com/users/h2g2bob/repos","events_url":"https://api.github.com/users/h2g2bob/events{/privacy}","received_events_url":"https://api.github.com/users/h2g2bob/received_events","type":"User","site_admin":false,"contributions":1},{"login":"rufflemuffin","id":1616599,"avatar_url":"https://avatars.githubusercontent.com/u/1616599?v=3","gravatar_id":"","url":"https://api.github.com/users/rufflemuffin","html_url":"https://github.com/rufflemuffin","followers_url":"https://api.github.com/users/rufflemuffin/followers","following_url":"https://api.github.com/users/rufflemuffin/following{/other_user}","gists_url":"https://api.github.com/users/rufflemuffin/gists{/gist_id}","starred_url":"https://api.github.com/users/rufflemuffin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rufflemuffin/subscriptions","organizations_url":"https://api.github.com/users/rufflemuffin/orgs","repos_url":"https://api.github.com/users/rufflemuffin/repos","events_url":"https://api.github.com/users/rufflemuffin/events{/privacy}","received_events_url":"https://api.github.com/users/rufflemuffin/received_events","type":"User","site_admin":false,"contributions":1},{"login":"tkvad","id":6440028,"avatar_url":"https://avatars.githubusercontent.com/u/6440028?v=3","gravatar_id":"","url":"https://api.github.com/users/tkvad","html_url":"https://github.com/tkvad","followers_url":"https://api.github.com/users/tkvad/followers","following_url":"https://api.github.com/users/tkvad/following{/other_user}","gists_url":"https://api.github.com/users/tkvad/gists{/gist_id}","starred_url":"https://api.github.com/users/tkvad/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkvad/subscriptions","organizations_url":"https://api.github.com/users/tkvad/orgs","repos_url":"https://api.github.com/users/tkvad/repos","events_url":"https://api.github.com/users/tkvad/events{/privacy}","received_events_url":"https://api.github.com/users/tkvad/received_events","type":"User","site_admin":false,"contributions":1}]' + http_version: + recorded_at: Fri, 29 May 2015 23:00:00 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/fixtures/cassettes/PullRequest/should_update_pull_requests_on_demand.yml b/spec/fixtures/cassettes/Proposal/should_update_pull_requests_on_demand.yml similarity index 100% rename from spec/fixtures/cassettes/PullRequest/should_update_pull_requests_on_demand.yml rename to spec/fixtures/cassettes/Proposal/should_update_pull_requests_on_demand.yml diff --git a/spec/models/pull_request_spec.rb b/spec/models/proposal_spec.rb similarity index 67% rename from spec/models/pull_request_spec.rb rename to spec/models/proposal_spec.rb index bd845c6ef..31a8df39e 100644 --- a/spec/models/pull_request_spec.rb +++ b/spec/models/proposal_spec.rb @@ -1,45 +1,45 @@ -describe PullRequest, :vcr do +describe Proposal, :vcr do - it "should update pull requests on demand" do + it "should update proposals on demand" do Timecop.freeze(2015,5,30) - pr = PullRequest.create_from_github!(356) + pr = Proposal.create_from_github!(356) expect(pr.state).to eq 'accepted' Timecop.return end it "should include proposer information" do - pr = PullRequest.create_from_github!(43) + pr = Proposal.create_from_github!(43) expect(pr.proposer.login).to eq 'Floppy' end it "should only count latest vote per person" do - pr = PullRequest.create_from_github!(100) + pr = Proposal.create_from_github!(100) expect(pr.agree.count).to eq 2 expect(pr.agree.map{|x| x.user.login}.sort).to eq ["Floppy", "philipjohn"] end it "should handle both thumbsup and +1 emoticons as upvotes" do - pr = PullRequest.create_from_github!(356) + pr = Proposal.create_from_github!(356) expect(pr.agree.map{|x| x.user.login}.sort).to eq ["Floppy", "philipjohn"] end it "should ignore votes from proposer" do - pr = PullRequest.create_from_github!(74) + pr = Proposal.create_from_github!(74) expect(pr.agree.count).to eq 0 end it "should ignore votes before last commit" do - pr = PullRequest.create_from_github!(135) + pr = Proposal.create_from_github!(135) expect(pr.agree.count).to eq 1 end it "should store merged pull requests as accepted" do - pr = PullRequest.create_from_github!(43) + pr = Proposal.create_from_github!(43) expect(pr.state).to eq 'accepted' end it "should store closed and unmerged pull requests as rejected" do - pr = PullRequest.create_from_github!(9) + pr = Proposal.create_from_github!(9) expect(pr.state).to eq 'rejected' end diff --git a/spec/requests/webhook_spec.rb b/spec/requests/webhook_spec.rb index 962f4e886..05971f712 100644 --- a/spec/requests/webhook_spec.rb +++ b/spec/requests/webhook_spec.rb @@ -7,7 +7,7 @@ it "/ should parse github issue comments correctly" do # Should result in PR 32 being updated - expect(PullRequest).to receive(:create_from_github!).with(32).once + expect(Proposal).to receive(:create_from_github!).with(32).once # Set POST header 'X-Github-Event', "issue_comment" post '/webhook', payload: load_fixture('requests/issue_comment') @@ -17,7 +17,7 @@ it "/ should parse github pull requests correctly" do # Should result in PR 43 being updated - expect(PullRequest).to receive(:create_from_github!).with(43).once + expect(Proposal).to receive(:create_from_github!).with(43).once # Set POST header 'X-Github-Event', "pull_request" post '/webhook', payload: load_fixture('requests/pull_request') diff --git a/votebot.rb b/votebot.rb index 4f21ed33b..c6f016a54 100644 --- a/votebot.rb +++ b/votebot.rb @@ -33,13 +33,13 @@ class Votebot < Sinatra::Base post '/update' do User.update_all_from_github! - PullRequest.recreate_all_from_github! + Proposal.recreate_all_from_github! 200 end get '/' do - @pull_requests = PullRequest.open.sort_by{|x| x.number.to_i}.reverse - @closed = PullRequest.closed.sort_by{|x| x.number.to_i}.reverse + @open_proposals = Proposal.open.sort_by{|x| x.number.to_i}.reverse + @closed_proposals = Proposal.closed.sort_by{|x| x.number.to_i}.reverse erb :index end @@ -52,16 +52,16 @@ class Votebot < Sinatra::Base get '/users/:login' do @user = User.find_by_login(params[:login]) - @pull_requests = PullRequest.all.sort_by{|x| x.number.to_i}.reverse - @proposed, @pull_requests = @pull_requests.partition{|x| x.proposer == @user} - @voted, @not_voted = @pull_requests.partition{|pr| @user.participating.where("last_vote IS NOT NULL").include? pr} + @proposals = Proposal.all.sort_by{|x| x.number.to_i}.reverse + @proposed, @proposals = @proposals.partition{|x| x.proposer == @user} + @voted, @not_voted = @proposals.partition{|pr| @user.participating.where("last_vote IS NOT NULL").include? pr} @not_voted.reject!{|x| x.closed? } erb :user end get '/:number' do - @pull_request = PullRequest.find_by(number: params[:number]) - if @pull_request + @proposal = Proposal.find_by(number: params[:number]) + if @proposal erb :show else 404 @@ -69,8 +69,8 @@ class Votebot < Sinatra::Base end post '/:number/update' do - @pull_request = PullRequest.find_by(number: params[:number]) - @pull_request.update_from_github! + @proposal = Proposal.find_by(number: params[:number]) + @proposal.update_from_github! redirect "/#{params[:number]}" end @@ -145,16 +145,16 @@ def on_pull_request(json) def on_issue_comment_created(json) issue = json['issue'] if issue['state'] == 'open' && issue['pull_request'] - PullRequest.create_from_github!(issue['number']) + Proposal.create_from_github!(issue['number']) end end def on_pull_request_opened(json) - PullRequest.create_from_github!(json['number']) + Proposal.create_from_github!(json['number']) end def on_pull_request_closed(json) - PullRequest.find_or_create_by(number: json['number']).try(:close!) + Proposal.find_or_create_by(number: json['number']).try(:close!) end end \ No newline at end of file