startling 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,22 +0,0 @@
1
- require 'spec_helper'
2
- require 'startling/git_local'
3
-
4
- module Startling
5
- describe GitLocal do
6
- subject { GitLocal.new }
7
-
8
- it "parses the repo name out of an https url" do
9
- url = 'https://github.com/TeachingChannel/startling.git'
10
- allow(subject).to receive(:remote_url) { url }
11
-
12
- expect(subject.repo_name).to eq('TeachingChannel/startling')
13
- end
14
-
15
- it "parses the repo name out of an ssh url" do
16
- url = 'git@github.com:TeachingChannel/startling.git'
17
- allow(subject).to receive(:remote_url) { url }
18
-
19
- expect(subject.repo_name).to eq('TeachingChannel/startling')
20
- end
21
- end
22
- end
@@ -1,49 +0,0 @@
1
- require 'spec_helper'
2
- require 'startling/github/pull_request'
3
-
4
- module Startling
5
- module Github
6
- describe PullRequest, "#in_progress?" do
7
- it "should be true if no WIP labels configured" do
8
- pull_request = PullRequest.new(double(:attributes))
9
- allow(Startling).to receive(:wip_labels) { [] }
10
-
11
- expect(pull_request.in_progress?).to be_truthy
12
- end
13
-
14
- context 'WIP labels configured' do
15
- before do
16
- allow(Startling).to receive(:wip_labels) { ['WIP', 'REVIEW'] }
17
- end
18
-
19
- it "should be true for WIP label" do
20
- pull_request = PullRequest.new(double(:attributes))
21
- allow(pull_request).to receive(:label_names) { ["WIP"] }
22
-
23
- expect(pull_request.in_progress?).to be_truthy
24
- end
25
-
26
- it "should be true for REVIEW label" do
27
- pull_request = PullRequest.new(double(:attributes))
28
- allow(pull_request).to receive(:label_names) { ["REVIEW"] }
29
-
30
- expect(pull_request.in_progress?).to be_truthy
31
- end
32
-
33
- it "should be false if for other labels" do
34
- pull_request = PullRequest.new(double(:attributes))
35
- allow(pull_request).to receive(:label_names) { ["some other thing", "bug"] }
36
-
37
- expect(pull_request.in_progress?).to be_falsey
38
- end
39
-
40
- it "should be false if no labels" do
41
- pull_request = PullRequest.new(double(:attributes))
42
- allow(pull_request).to receive(:label_names) { [] }
43
-
44
- expect(pull_request.in_progress?).to be_falsey
45
- end
46
- end
47
- end
48
- end
49
- end
@@ -1,52 +0,0 @@
1
- require 'spec_helper'
2
- require 'startling/handlers/default_pull_request_handler'
3
-
4
- describe Startling::Handlers::DefaultPullRequestHandler do
5
- let(:args) { { story: nil } }
6
- subject { Startling::Handlers::DefaultPullRequestHandler.new(args) }
7
-
8
- it 'returns the commit message for empty commit' do
9
- commit_message = 'Commit message'
10
-
11
- allow(Startling).to receive(:pull_request_commit_message) { commit_message }
12
-
13
- expect(subject.commit_message).to eq(commit_message)
14
- end
15
-
16
- context 'with story' do
17
- let(:story) {
18
- double(:story,
19
- pull_request_title: 'Story title',
20
- pull_request_body_text: 'Story url'
21
- )
22
- }
23
- let(:args) { { story: story } }
24
-
25
- it 'returns the story pull request title' do
26
- expect(subject.title).to eq(story.pull_request_title)
27
- end
28
-
29
- it 'returns the story pull request body' do
30
- expect(subject.body).to eq(story.pull_request_body_text)
31
- end
32
- end
33
-
34
- context 'without story' do
35
- it 'prompts for pull request title' do
36
- title = 'Entered title'
37
-
38
- allow_any_instance_of(Startling::Handlers::DefaultPullRequestHandler)
39
- .to receive(:ask) { title }
40
-
41
- expect(subject.title).to eq(title)
42
- end
43
-
44
- it 'returns the pull request body from configuration' do
45
- body = 'Configured body'
46
-
47
- allow(Startling).to receive(:pull_request_body) { body }
48
-
49
- expect(subject.body).to eq(body)
50
- end
51
- end
52
- end
@@ -1,42 +0,0 @@
1
- require 'spec_helper'
2
- require 'startling/time_format_helpers'
3
-
4
- module Startling
5
- describe TimeFormatHelpers, "#business_time_ago" do
6
- include TimeFormatHelpers
7
-
8
- let(:minute) { 60 }
9
- let(:hour) { 60 * minute }
10
- let(:day) { 24 * hour }
11
-
12
- before do
13
- now = Time.parse("February 7th, 2014, 1:00 pm")
14
- allow(Time).to receive(:now) { now }
15
- end
16
-
17
- it "says 1 day ago if it was yesterday" do
18
- time = Time.now - 1 * day
19
- expect(business_time_ago(time)).to eq("1 day ago")
20
- end
21
-
22
- it "says number of days if it was more than a day ago" do
23
- time = Time.now - 3 * day
24
- expect(business_time_ago(time)).to eq("3 days ago")
25
- end
26
-
27
- it "says number of hours if it is more than 1 hour" do
28
- time = Time.now - 2 * hour - 20 * minute
29
- expect(business_time_ago(time)).to eq("2 hours ago")
30
- end
31
-
32
- it "says number of hours if it is 1 hour" do
33
- time = Time.now - 1 * hour - 20 * minute
34
- expect(business_time_ago(time)).to eq("1 hour ago")
35
- end
36
-
37
- it "says less than an hour if it was" do
38
- time = Time.now - 40 * minute
39
- expect(business_time_ago(time)).to eq("less than an hour ago")
40
- end
41
- end
42
- end
@@ -1,16 +0,0 @@
1
- require 'spec_helper'
2
- require 'startling'
3
-
4
- module Startling
5
- describe ".configure" do
6
- before do
7
- Startling.configure do |config|
8
- config.cache_dir = "value"
9
- end
10
- end
11
-
12
- it "sets the configuration attributes" do
13
- expect(Startling.cache_dir).to eql("value")
14
- end
15
- end
16
- end
@@ -1,124 +0,0 @@
1
- require 'spec_helper'
2
- require 'fileutils'
3
- require 'startling'
4
- require 'startling/git_local'
5
- require 'startling/github'
6
-
7
- describe "bin/start" do
8
- let(:feature_name) { 'bin-start-starts-stories' }
9
- let(:repo_default_branch) { 'master' }
10
- let(:pull_request_body) { "This is a test body" }
11
- let(:git) { Startling::GitLocal.new }
12
- let(:repo) { Startling::Github.repo(git.repo_name) }
13
- let(:pull_request) { repo.pull_request(feature_name) }
14
-
15
- before do
16
- local_configuration = <<CONFIG
17
- Startling.configure do |config|
18
- # WIP Limit
19
- # config.wip_limit = 4
20
-
21
- # Labels for WIP pull requests
22
- # config.wip_labels = ["WIP", "REVIEW"]
23
-
24
- # Repos to check against for WIP limit
25
- # config.repos << "substantial/startling"
26
-
27
- # Commands to be run before a story is stared
28
- # config.hook_commands.before_story_start = [:check_wip]
29
-
30
- # Command to be run after a story has started
31
- # config.hook_commands.after_story_start = []
32
-
33
- # Commands to be run before a pull request is created
34
- # config.hook_commands.before_pull_request = []
35
-
36
- # Commands to be run after a pull request is created
37
- # config.hook_commands.after_pull_request = []
38
-
39
- # Handler used to start a provider specific story related to the pull request
40
- # config.story_handler = :pivotal_start
41
-
42
- # Validate branch name with a Proc that returns a boolean
43
- # config.validate_branch_name = -> (branch_name) { /feature\\/.*/ =~ branch_name }
44
-
45
- # Message for pull request commit
46
- # config.pull_request_commit_message = "Startling"
47
-
48
- # Message for pull request body
49
- config.pull_request_body = "#{pull_request_body}"
50
-
51
- # Labels for a pull request
52
- # config.pull_request_labels = [WIP, REVIEW, HOLD]
53
-
54
- # Handler used for setting the title and body of a pull request
55
- config.pull_request_handler = :default_pull_request_handler
56
- end
57
- CONFIG
58
-
59
- File.open('startlingfile.rb', 'w') { |file| file.write(local_configuration) }
60
-
61
- Startling::Configuration.load_configuration
62
-
63
- test_repo_path = "tmp/test_repo"
64
- FileUtils.mkdir_p "tmp"
65
-
66
- unless File.exists? "tmp/test_repo/.git"
67
- `git clone git@github.com:substantial/startling-testing.git #{test_repo_path}`
68
- end
69
-
70
- File.write File.join(test_repo_path, ".github_access_token"), Tokens.github
71
-
72
- FileUtils.cd test_repo_path
73
-
74
- Startling.root_dir = Startling.cache_dir = "."
75
-
76
- git.checkout_branch repo_default_branch
77
- git.destroy_branch feature_name
78
- end
79
-
80
- after do
81
- FileUtils.cd "#{__dir__}/.."
82
- FileUtils.rm "startlingfile.rb"
83
- end
84
-
85
- # VCR Preconditions:
86
- # * There should be no open pull requests:
87
- # https://github.com/substantial/startling-testing
88
-
89
- it "starts stories from origin/master",
90
- vcr: { cassette_name: "bin_start_starts_stories" } do
91
-
92
- allow_any_instance_of(Startling::Handlers::DefaultPullRequestHandler)
93
- .to receive(:ask)
94
- .with("Please input a pull request title: ") { "The Title" }
95
-
96
- allow_any_instance_of(Startling::Commands::CreateBranch)
97
- .to receive(:ask)
98
- .with("Enter branch name (enter for current branch): ") { feature_name }
99
-
100
- command = Startling::Command.new(args: [])
101
- command.execute
102
-
103
- expect(git.remote_branches).to include feature_name
104
- expect(git.current_branch).to eq feature_name
105
- expect(repo.default_branch).to eq repo_default_branch
106
- end
107
-
108
- it "The pull request body is the same as the config",
109
- vcr: { cassette_name: "bin_start_starts_stories_pr_body" } do
110
-
111
- allow_any_instance_of(Startling::Handlers::DefaultPullRequestHandler)
112
- .to receive(:ask)
113
- .with("Please input a pull request title: ") { "The Title" }
114
-
115
- allow_any_instance_of(Startling::Commands::CreateBranch)
116
- .to receive(:ask)
117
- .with("Enter branch name (enter for current branch): ") { feature_name }
118
-
119
- command = Startling::Command.new(args: [])
120
- command.execute
121
-
122
- expect(pull_request.attributes.body).to eq pull_request_body
123
- end
124
- end
@@ -1,2 +0,0 @@
1
- require 'dotenv'
2
- Dotenv.load
@@ -1,5 +0,0 @@
1
- module Tokens
2
- def self.github
3
- ENV.fetch("TEST_GITHUB_ACCESS_TOKEN") { raise "Copy startling .env from LastPass into .env" }
4
- end
5
- end
@@ -1,13 +0,0 @@
1
- require 'vcr'
2
-
3
- VCR.configure do |config|
4
- config.cassette_library_dir = 'spec/vcr_cassettes'
5
- config.hook_into :webmock
6
- config.default_cassette_options = {
7
- allow_unused_http_interactions: false
8
- }
9
- config.filter_sensitive_data '<GITHUB_ACCESS_TOKEN>' do
10
- ENV.fetch "TEST_GITHUB_ACCESS_TOKEN"
11
- end
12
- config.configure_rspec_metadata!
13
- end
@@ -1,564 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.github.com/repos/substantial/startling-testing
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - application/vnd.github.v3+json
12
- User-Agent:
13
- - Octokit Ruby Gem 3.8.0
14
- Content-Type:
15
- - application/json
16
- Authorization:
17
- - token <GITHUB_ACCESS_TOKEN>
18
- Accept-Encoding:
19
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
- response:
21
- status:
22
- code: 200
23
- message: OK
24
- headers:
25
- Server:
26
- - GitHub.com
27
- Date:
28
- - Fri, 15 Jan 2016 00:25:00 GMT
29
- Content-Type:
30
- - application/json; charset=utf-8
31
- Transfer-Encoding:
32
- - chunked
33
- Status:
34
- - 200 OK
35
- X-Ratelimit-Limit:
36
- - '5000'
37
- X-Ratelimit-Remaining:
38
- - '4922'
39
- X-Ratelimit-Reset:
40
- - '1452819446'
41
- Cache-Control:
42
- - private, max-age=60, s-maxage=60
43
- Last-Modified:
44
- - Wed, 06 Jan 2016 23:54:40 GMT
45
- Etag:
46
- - W/"8da06b561a71e4d0a383f2c5615c0584"
47
- X-Oauth-Scopes:
48
- - gist, repo, user
49
- X-Accepted-Oauth-Scopes:
50
- - repo
51
- Vary:
52
- - Accept, Authorization, Cookie, X-GitHub-OTP
53
- - Accept-Encoding
54
- X-Github-Media-Type:
55
- - github.v3; format=json
56
- Access-Control-Allow-Credentials:
57
- - 'true'
58
- Access-Control-Expose-Headers:
59
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
60
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
61
- Access-Control-Allow-Origin:
62
- - "*"
63
- Content-Security-Policy:
64
- - default-src 'none'
65
- Strict-Transport-Security:
66
- - max-age=31536000; includeSubdomains; preload
67
- X-Content-Type-Options:
68
- - nosniff
69
- X-Frame-Options:
70
- - deny
71
- X-Xss-Protection:
72
- - 1; mode=block
73
- X-Served-By:
74
- - 173530fed4bbeb1e264b2ed22e8b5c20
75
- X-Github-Request-Id:
76
- - C84A5D97:14B57:6F24F95:56983C5B
77
- body:
78
- encoding: ASCII-8BIT
79
- string: '{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
80
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:24:35Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"organization":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"network_count":0,"subscribers_count":1}'
81
- http_version:
82
- recorded_at: Fri, 15 Jan 2016 00:25:00 GMT
83
- - request:
84
- method: get
85
- uri: https://api.github.com/repos/substantial/startling-testing
86
- body:
87
- encoding: US-ASCII
88
- string: ''
89
- headers:
90
- Accept:
91
- - application/vnd.github.v3+json
92
- User-Agent:
93
- - Octokit Ruby Gem 3.8.0
94
- Content-Type:
95
- - application/json
96
- Authorization:
97
- - token <GITHUB_ACCESS_TOKEN>
98
- Accept-Encoding:
99
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
100
- response:
101
- status:
102
- code: 200
103
- message: OK
104
- headers:
105
- Server:
106
- - GitHub.com
107
- Date:
108
- - Fri, 15 Jan 2016 00:25:07 GMT
109
- Content-Type:
110
- - application/json; charset=utf-8
111
- Transfer-Encoding:
112
- - chunked
113
- Status:
114
- - 200 OK
115
- X-Ratelimit-Limit:
116
- - '5000'
117
- X-Ratelimit-Remaining:
118
- - '4921'
119
- X-Ratelimit-Reset:
120
- - '1452819446'
121
- Cache-Control:
122
- - private, max-age=60, s-maxage=60
123
- Last-Modified:
124
- - Wed, 06 Jan 2016 23:54:40 GMT
125
- Etag:
126
- - W/"ecace924f9cdb8da1f38f91a42ccfa63"
127
- X-Oauth-Scopes:
128
- - gist, repo, user
129
- X-Accepted-Oauth-Scopes:
130
- - repo
131
- Vary:
132
- - Accept, Authorization, Cookie, X-GitHub-OTP
133
- - Accept-Encoding
134
- X-Github-Media-Type:
135
- - github.v3; format=json
136
- Access-Control-Allow-Credentials:
137
- - 'true'
138
- Access-Control-Expose-Headers:
139
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
140
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
141
- Access-Control-Allow-Origin:
142
- - "*"
143
- Content-Security-Policy:
144
- - default-src 'none'
145
- Strict-Transport-Security:
146
- - max-age=31536000; includeSubdomains; preload
147
- X-Content-Type-Options:
148
- - nosniff
149
- X-Frame-Options:
150
- - deny
151
- X-Xss-Protection:
152
- - 1; mode=block
153
- X-Served-By:
154
- - d594a23ec74671eba905bf91ef329026
155
- X-Github-Request-Id:
156
- - C84A5D97:14B52:146FE80:56983C63
157
- body:
158
- encoding: ASCII-8BIT
159
- string: '{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
160
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:06Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"organization":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"network_count":0,"subscribers_count":1}'
161
- http_version:
162
- recorded_at: Fri, 15 Jan 2016 00:25:07 GMT
163
- - request:
164
- method: post
165
- uri: https://api.github.com/repos/substantial/startling-testing/pulls
166
- body:
167
- encoding: UTF-8
168
- string: '{"base":"master","head":"bin-start-starts-stories","title":"The Title","body":"This
169
- is a test body"}'
170
- headers:
171
- Accept:
172
- - application/vnd.github.v3+json
173
- User-Agent:
174
- - Octokit Ruby Gem 3.8.0
175
- Content-Type:
176
- - application/json
177
- Authorization:
178
- - token <GITHUB_ACCESS_TOKEN>
179
- Accept-Encoding:
180
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
181
- response:
182
- status:
183
- code: 201
184
- message: Created
185
- headers:
186
- Server:
187
- - GitHub.com
188
- Date:
189
- - Fri, 15 Jan 2016 00:25:08 GMT
190
- Content-Type:
191
- - application/json; charset=utf-8
192
- Content-Length:
193
- - '15211'
194
- Status:
195
- - 201 Created
196
- X-Ratelimit-Limit:
197
- - '5000'
198
- X-Ratelimit-Remaining:
199
- - '4920'
200
- X-Ratelimit-Reset:
201
- - '1452819446'
202
- Cache-Control:
203
- - private, max-age=60, s-maxage=60
204
- Etag:
205
- - '"44e7754b961479b3e398753bcbee142d"'
206
- X-Oauth-Scopes:
207
- - gist, repo, user
208
- X-Accepted-Oauth-Scopes:
209
- - ''
210
- Location:
211
- - https://api.github.com/repos/substantial/startling-testing/pulls/42
212
- Vary:
213
- - Accept, Authorization, Cookie, X-GitHub-OTP
214
- - Accept-Encoding
215
- X-Github-Media-Type:
216
- - github.v3; format=json
217
- Access-Control-Allow-Credentials:
218
- - 'true'
219
- Access-Control-Expose-Headers:
220
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
221
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
222
- Access-Control-Allow-Origin:
223
- - "*"
224
- Content-Security-Policy:
225
- - default-src 'none'
226
- Strict-Transport-Security:
227
- - max-age=31536000; includeSubdomains; preload
228
- X-Content-Type-Options:
229
- - nosniff
230
- X-Frame-Options:
231
- - deny
232
- X-Xss-Protection:
233
- - 1; mode=block
234
- X-Served-By:
235
- - 52437fedc85beec8da3449496900fb9a
236
- X-Github-Request-Id:
237
- - C84A5D97:14B5A:703DA9A:56983C64
238
- body:
239
- encoding: UTF-8
240
- string: '{"url":"https://api.github.com/repos/substantial/startling-testing/pulls/42","id":56114932,"html_url":"https://github.com/substantial/startling-testing/pull/42","diff_url":"https://github.com/substantial/startling-testing/pull/42.diff","patch_url":"https://github.com/substantial/startling-testing/pull/42.patch","issue_url":"https://api.github.com/repos/substantial/startling-testing/issues/42","number":42,"state":"open","locked":false,"title":"The
241
- Title","user":{"login":"gringocl","id":3166322,"avatar_url":"https://avatars.githubusercontent.com/u/3166322?v=3","gravatar_id":"","url":"https://api.github.com/users/gringocl","html_url":"https://github.com/gringocl","followers_url":"https://api.github.com/users/gringocl/followers","following_url":"https://api.github.com/users/gringocl/following{/other_user}","gists_url":"https://api.github.com/users/gringocl/gists{/gist_id}","starred_url":"https://api.github.com/users/gringocl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gringocl/subscriptions","organizations_url":"https://api.github.com/users/gringocl/orgs","repos_url":"https://api.github.com/users/gringocl/repos","events_url":"https://api.github.com/users/gringocl/events{/privacy}","received_events_url":"https://api.github.com/users/gringocl/received_events","type":"User","site_admin":false},"body":"This
242
- is a test body","created_at":"2016-01-15T00:25:08Z","updated_at":"2016-01-15T00:25:08Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/substantial/startling-testing/pulls/42/commits","review_comments_url":"https://api.github.com/repos/substantial/startling-testing/pulls/42/comments","review_comment_url":"https://api.github.com/repos/substantial/startling-testing/pulls/comments{/number}","comments_url":"https://api.github.com/repos/substantial/startling-testing/issues/42/comments","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/0d496ef82aa80d774244aff4384a570b7fb7d036","head":{"label":"substantial:bin-start-starts-stories","ref":"bin-start-starts-stories","sha":"0d496ef82aa80d774244aff4384a570b7fb7d036","user":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"repo":{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
243
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:06Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"substantial:master","ref":"master","sha":"da708ed9c04236279c6263e340c51a1125e4affa","user":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"repo":{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
244
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:06Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42"},"html":{"href":"https://github.com/substantial/startling-testing/pull/42"},"issue":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/42"},"comments":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/42/comments"},"review_comments":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42/comments"},"review_comment":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42/commits"},"statuses":{"href":"https://api.github.com/repos/substantial/startling-testing/statuses/0d496ef82aa80d774244aff4384a570b7fb7d036"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":0,"deletions":0,"changed_files":0}'
245
- http_version:
246
- recorded_at: Fri, 15 Jan 2016 00:25:08 GMT
247
- - request:
248
- method: get
249
- uri: https://api.github.com/repos/substantial/startling-testing/pulls?state=open
250
- body:
251
- encoding: US-ASCII
252
- string: ''
253
- headers:
254
- Accept:
255
- - application/vnd.github.v3+json
256
- User-Agent:
257
- - Octokit Ruby Gem 3.8.0
258
- Content-Type:
259
- - application/json
260
- Authorization:
261
- - token <GITHUB_ACCESS_TOKEN>
262
- Accept-Encoding:
263
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
264
- response:
265
- status:
266
- code: 200
267
- message: OK
268
- headers:
269
- Server:
270
- - GitHub.com
271
- Date:
272
- - Fri, 15 Jan 2016 00:25:09 GMT
273
- Content-Type:
274
- - application/json; charset=utf-8
275
- Transfer-Encoding:
276
- - chunked
277
- Status:
278
- - 200 OK
279
- X-Ratelimit-Limit:
280
- - '5000'
281
- X-Ratelimit-Remaining:
282
- - '4919'
283
- X-Ratelimit-Reset:
284
- - '1452819446'
285
- Cache-Control:
286
- - private, max-age=60, s-maxage=60
287
- Etag:
288
- - W/"15a441537bc97907f72035c8744804b7"
289
- X-Oauth-Scopes:
290
- - gist, repo, user
291
- X-Accepted-Oauth-Scopes:
292
- - ''
293
- Vary:
294
- - Accept, Authorization, Cookie, X-GitHub-OTP
295
- - Accept-Encoding
296
- X-Github-Media-Type:
297
- - github.v3; format=json
298
- Access-Control-Allow-Credentials:
299
- - 'true'
300
- Access-Control-Expose-Headers:
301
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
302
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
303
- Access-Control-Allow-Origin:
304
- - "*"
305
- Content-Security-Policy:
306
- - default-src 'none'
307
- Strict-Transport-Security:
308
- - max-age=31536000; includeSubdomains; preload
309
- X-Content-Type-Options:
310
- - nosniff
311
- X-Frame-Options:
312
- - deny
313
- X-Xss-Protection:
314
- - 1; mode=block
315
- X-Served-By:
316
- - dc1ce2bfb41810a06c705e83b388572d
317
- X-Github-Request-Id:
318
- - C84A5D97:14B59:A4DE5C0:56983C65
319
- body:
320
- encoding: ASCII-8BIT
321
- string: '[{"url":"https://api.github.com/repos/substantial/startling-testing/pulls/42","id":56114932,"html_url":"https://github.com/substantial/startling-testing/pull/42","diff_url":"https://github.com/substantial/startling-testing/pull/42.diff","patch_url":"https://github.com/substantial/startling-testing/pull/42.patch","issue_url":"https://api.github.com/repos/substantial/startling-testing/issues/42","number":42,"state":"open","locked":false,"title":"The
322
- Title","user":{"login":"gringocl","id":3166322,"avatar_url":"https://avatars.githubusercontent.com/u/3166322?v=3","gravatar_id":"","url":"https://api.github.com/users/gringocl","html_url":"https://github.com/gringocl","followers_url":"https://api.github.com/users/gringocl/followers","following_url":"https://api.github.com/users/gringocl/following{/other_user}","gists_url":"https://api.github.com/users/gringocl/gists{/gist_id}","starred_url":"https://api.github.com/users/gringocl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gringocl/subscriptions","organizations_url":"https://api.github.com/users/gringocl/orgs","repos_url":"https://api.github.com/users/gringocl/repos","events_url":"https://api.github.com/users/gringocl/events{/privacy}","received_events_url":"https://api.github.com/users/gringocl/received_events","type":"User","site_admin":false},"body":"This
323
- is a test body","created_at":"2016-01-15T00:25:08Z","updated_at":"2016-01-15T00:25:08Z","closed_at":null,"merged_at":null,"merge_commit_sha":"8b4789996869118d98f6dc1616fe013b2b6905e9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/substantial/startling-testing/pulls/42/commits","review_comments_url":"https://api.github.com/repos/substantial/startling-testing/pulls/42/comments","review_comment_url":"https://api.github.com/repos/substantial/startling-testing/pulls/comments{/number}","comments_url":"https://api.github.com/repos/substantial/startling-testing/issues/42/comments","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/0d496ef82aa80d774244aff4384a570b7fb7d036","head":{"label":"substantial:bin-start-starts-stories","ref":"bin-start-starts-stories","sha":"0d496ef82aa80d774244aff4384a570b7fb7d036","user":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"repo":{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
324
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:08Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"substantial:master","ref":"master","sha":"da708ed9c04236279c6263e340c51a1125e4affa","user":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"repo":{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
325
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:08Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42"},"html":{"href":"https://github.com/substantial/startling-testing/pull/42"},"issue":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/42"},"comments":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/42/comments"},"review_comments":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42/comments"},"review_comment":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/42/commits"},"statuses":{"href":"https://api.github.com/repos/substantial/startling-testing/statuses/0d496ef82aa80d774244aff4384a570b7fb7d036"}}}]'
326
- http_version:
327
- recorded_at: Fri, 15 Jan 2016 00:25:09 GMT
328
- - request:
329
- method: get
330
- uri: https://api.github.com/repos/substantial/startling-testing/issues/42/labels
331
- body:
332
- encoding: US-ASCII
333
- string: ''
334
- headers:
335
- Accept:
336
- - application/vnd.github.v3+json
337
- User-Agent:
338
- - Octokit Ruby Gem 3.8.0
339
- Content-Type:
340
- - application/json
341
- Authorization:
342
- - token <GITHUB_ACCESS_TOKEN>
343
- Accept-Encoding:
344
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
345
- response:
346
- status:
347
- code: 200
348
- message: OK
349
- headers:
350
- Server:
351
- - GitHub.com
352
- Date:
353
- - Fri, 15 Jan 2016 00:25:10 GMT
354
- Content-Type:
355
- - application/json; charset=utf-8
356
- Content-Length:
357
- - '2'
358
- Status:
359
- - 200 OK
360
- X-Ratelimit-Limit:
361
- - '5000'
362
- X-Ratelimit-Remaining:
363
- - '4918'
364
- X-Ratelimit-Reset:
365
- - '1452819446'
366
- Cache-Control:
367
- - private, max-age=60, s-maxage=60
368
- Last-Modified:
369
- - Fri, 15 Jan 2016 00:25:08 GMT
370
- Etag:
371
- - '"10f69e00b0b3b8099f60019fd4b2d261"'
372
- X-Oauth-Scopes:
373
- - gist, repo, user
374
- X-Accepted-Oauth-Scopes:
375
- - ''
376
- Vary:
377
- - Accept, Authorization, Cookie, X-GitHub-OTP
378
- - Accept-Encoding
379
- X-Github-Media-Type:
380
- - github.v3; format=json
381
- Access-Control-Allow-Credentials:
382
- - 'true'
383
- Access-Control-Expose-Headers:
384
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
385
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
386
- Access-Control-Allow-Origin:
387
- - "*"
388
- Content-Security-Policy:
389
- - default-src 'none'
390
- Strict-Transport-Security:
391
- - max-age=31536000; includeSubdomains; preload
392
- X-Content-Type-Options:
393
- - nosniff
394
- X-Frame-Options:
395
- - deny
396
- X-Xss-Protection:
397
- - 1; mode=block
398
- X-Served-By:
399
- - a30e6f9aa7cf5731b87dfb3b9992202d
400
- X-Github-Request-Id:
401
- - C84A5D97:14B59:A4DE68F:56983C66
402
- body:
403
- encoding: UTF-8
404
- string: "[]"
405
- http_version:
406
- recorded_at: Fri, 15 Jan 2016 00:25:10 GMT
407
- - request:
408
- method: put
409
- uri: https://api.github.com/repos/substantial/startling-testing/issues/42/labels
410
- body:
411
- encoding: UTF-8
412
- string: "[]"
413
- headers:
414
- Accept:
415
- - application/vnd.github.v3+json
416
- User-Agent:
417
- - Octokit Ruby Gem 3.8.0
418
- Content-Type:
419
- - application/json
420
- Authorization:
421
- - token <GITHUB_ACCESS_TOKEN>
422
- Accept-Encoding:
423
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
424
- response:
425
- status:
426
- code: 200
427
- message: OK
428
- headers:
429
- Server:
430
- - GitHub.com
431
- Date:
432
- - Fri, 15 Jan 2016 00:25:11 GMT
433
- Content-Type:
434
- - application/json; charset=utf-8
435
- Content-Length:
436
- - '2'
437
- Status:
438
- - 200 OK
439
- X-Ratelimit-Limit:
440
- - '5000'
441
- X-Ratelimit-Remaining:
442
- - '4917'
443
- X-Ratelimit-Reset:
444
- - '1452819446'
445
- Cache-Control:
446
- - private, max-age=60, s-maxage=60
447
- Etag:
448
- - '"10f69e00b0b3b8099f60019fd4b2d261"'
449
- X-Oauth-Scopes:
450
- - gist, repo, user
451
- X-Accepted-Oauth-Scopes:
452
- - ''
453
- Vary:
454
- - Accept, Authorization, Cookie, X-GitHub-OTP
455
- - Accept-Encoding
456
- X-Github-Media-Type:
457
- - github.v3; format=json
458
- Access-Control-Allow-Credentials:
459
- - 'true'
460
- Access-Control-Expose-Headers:
461
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
462
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
463
- Access-Control-Allow-Origin:
464
- - "*"
465
- Content-Security-Policy:
466
- - default-src 'none'
467
- Strict-Transport-Security:
468
- - max-age=31536000; includeSubdomains; preload
469
- X-Content-Type-Options:
470
- - nosniff
471
- X-Frame-Options:
472
- - deny
473
- X-Xss-Protection:
474
- - 1; mode=block
475
- X-Served-By:
476
- - 5aeb3f30c9e3ef6ef7bcbcddfd9a68f7
477
- X-Github-Request-Id:
478
- - C84A5D97:14B53:1BBED09:56983C66
479
- body:
480
- encoding: UTF-8
481
- string: "[]"
482
- http_version:
483
- recorded_at: Fri, 15 Jan 2016 00:25:11 GMT
484
- - request:
485
- method: get
486
- uri: https://api.github.com/repos/substantial/startling-testing
487
- body:
488
- encoding: US-ASCII
489
- string: ''
490
- headers:
491
- Accept:
492
- - application/vnd.github.v3+json
493
- User-Agent:
494
- - Octokit Ruby Gem 3.8.0
495
- Content-Type:
496
- - application/json
497
- Authorization:
498
- - token <GITHUB_ACCESS_TOKEN>
499
- Accept-Encoding:
500
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
501
- response:
502
- status:
503
- code: 200
504
- message: OK
505
- headers:
506
- Server:
507
- - GitHub.com
508
- Date:
509
- - Fri, 15 Jan 2016 00:25:12 GMT
510
- Content-Type:
511
- - application/json; charset=utf-8
512
- Transfer-Encoding:
513
- - chunked
514
- Status:
515
- - 200 OK
516
- X-Ratelimit-Limit:
517
- - '5000'
518
- X-Ratelimit-Remaining:
519
- - '4916'
520
- X-Ratelimit-Reset:
521
- - '1452819446'
522
- Cache-Control:
523
- - private, max-age=60, s-maxage=60
524
- Last-Modified:
525
- - Wed, 06 Jan 2016 23:54:40 GMT
526
- Etag:
527
- - W/"8934571e506a88b4cd0b6f93af58cbd0"
528
- X-Oauth-Scopes:
529
- - gist, repo, user
530
- X-Accepted-Oauth-Scopes:
531
- - repo
532
- Vary:
533
- - Accept, Authorization, Cookie, X-GitHub-OTP
534
- - Accept-Encoding
535
- X-Github-Media-Type:
536
- - github.v3; format=json
537
- Access-Control-Allow-Credentials:
538
- - 'true'
539
- Access-Control-Expose-Headers:
540
- - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
541
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
542
- Access-Control-Allow-Origin:
543
- - "*"
544
- Content-Security-Policy:
545
- - default-src 'none'
546
- Strict-Transport-Security:
547
- - max-age=31536000; includeSubdomains; preload
548
- X-Content-Type-Options:
549
- - nosniff
550
- X-Frame-Options:
551
- - deny
552
- X-Xss-Protection:
553
- - 1; mode=block
554
- X-Served-By:
555
- - a30e6f9aa7cf5731b87dfb3b9992202d
556
- X-Github-Request-Id:
557
- - C84A5D97:14B56:5109C89:56983C67
558
- body:
559
- encoding: ASCII-8BIT
560
- string: '{"id":49169099,"name":"startling-testing","full_name":"substantial/startling-testing","owner":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/substantial/startling-testing","description":"Testing
561
- repo for startling","fork":false,"url":"https://api.github.com/repos/substantial/startling-testing","forks_url":"https://api.github.com/repos/substantial/startling-testing/forks","keys_url":"https://api.github.com/repos/substantial/startling-testing/keys{/key_id}","collaborators_url":"https://api.github.com/repos/substantial/startling-testing/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/substantial/startling-testing/teams","hooks_url":"https://api.github.com/repos/substantial/startling-testing/hooks","issue_events_url":"https://api.github.com/repos/substantial/startling-testing/issues/events{/number}","events_url":"https://api.github.com/repos/substantial/startling-testing/events","assignees_url":"https://api.github.com/repos/substantial/startling-testing/assignees{/user}","branches_url":"https://api.github.com/repos/substantial/startling-testing/branches{/branch}","tags_url":"https://api.github.com/repos/substantial/startling-testing/tags","blobs_url":"https://api.github.com/repos/substantial/startling-testing/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/substantial/startling-testing/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/substantial/startling-testing/git/refs{/sha}","trees_url":"https://api.github.com/repos/substantial/startling-testing/git/trees{/sha}","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/{sha}","languages_url":"https://api.github.com/repos/substantial/startling-testing/languages","stargazers_url":"https://api.github.com/repos/substantial/startling-testing/stargazers","contributors_url":"https://api.github.com/repos/substantial/startling-testing/contributors","subscribers_url":"https://api.github.com/repos/substantial/startling-testing/subscribers","subscription_url":"https://api.github.com/repos/substantial/startling-testing/subscription","commits_url":"https://api.github.com/repos/substantial/startling-testing/commits{/sha}","git_commits_url":"https://api.github.com/repos/substantial/startling-testing/git/commits{/sha}","comments_url":"https://api.github.com/repos/substantial/startling-testing/comments{/number}","issue_comment_url":"https://api.github.com/repos/substantial/startling-testing/issues/comments{/number}","contents_url":"https://api.github.com/repos/substantial/startling-testing/contents/{+path}","compare_url":"https://api.github.com/repos/substantial/startling-testing/compare/{base}...{head}","merges_url":"https://api.github.com/repos/substantial/startling-testing/merges","archive_url":"https://api.github.com/repos/substantial/startling-testing/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/substantial/startling-testing/downloads","issues_url":"https://api.github.com/repos/substantial/startling-testing/issues{/number}","pulls_url":"https://api.github.com/repos/substantial/startling-testing/pulls{/number}","milestones_url":"https://api.github.com/repos/substantial/startling-testing/milestones{/number}","notifications_url":"https://api.github.com/repos/substantial/startling-testing/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/substantial/startling-testing/labels{/name}","releases_url":"https://api.github.com/repos/substantial/startling-testing/releases{/id}","created_at":"2016-01-06T23:54:40Z","updated_at":"2016-01-06T23:54:40Z","pushed_at":"2016-01-15T00:25:08Z","git_url":"git://github.com/substantial/startling-testing.git","ssh_url":"git@github.com:substantial/startling-testing.git","clone_url":"https://github.com/substantial/startling-testing.git","svn_url":"https://github.com/substantial/startling-testing","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"organization":{"login":"substantial","id":79686,"avatar_url":"https://avatars.githubusercontent.com/u/79686?v=3","gravatar_id":"","url":"https://api.github.com/users/substantial","html_url":"https://github.com/substantial","followers_url":"https://api.github.com/users/substantial/followers","following_url":"https://api.github.com/users/substantial/following{/other_user}","gists_url":"https://api.github.com/users/substantial/gists{/gist_id}","starred_url":"https://api.github.com/users/substantial/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/substantial/subscriptions","organizations_url":"https://api.github.com/users/substantial/orgs","repos_url":"https://api.github.com/users/substantial/repos","events_url":"https://api.github.com/users/substantial/events{/privacy}","received_events_url":"https://api.github.com/users/substantial/received_events","type":"Organization","site_admin":false},"network_count":0,"subscribers_count":1}'
562
- http_version:
563
- recorded_at: Fri, 15 Jan 2016 00:25:12 GMT
564
- recorded_with: VCR 2.9.3