startling 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/.ruby-gemset +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +78 -0
- data/Rakefile +15 -0
- data/bin/start +5 -0
- data/lib/generators/startling/configuration_generator.rb +78 -0
- data/lib/startling.rb +30 -0
- data/lib/startling/cache.rb +20 -0
- data/lib/startling/cli_options.rb +46 -0
- data/lib/startling/colorize_string.rb +58 -0
- data/lib/startling/command.rb +67 -0
- data/lib/startling/commands/base.rb +83 -0
- data/lib/startling/commands/check_for_local_mods.rb +17 -0
- data/lib/startling/commands/create_branch.rb +53 -0
- data/lib/startling/commands/create_pull_request.rb +35 -0
- data/lib/startling/commands/label_pull_request.rb +15 -0
- data/lib/startling/configuration.rb +106 -0
- data/lib/startling/git_local.rb +61 -0
- data/lib/startling/github.rb +16 -0
- data/lib/startling/github/api.rb +106 -0
- data/lib/startling/github/pull_request.rb +54 -0
- data/lib/startling/github/repo.rb +44 -0
- data/lib/startling/handlers/default_pull_request_handler.rb +21 -0
- data/lib/startling/handlers/pull_request_handler_base.rb +21 -0
- data/lib/startling/markdown.rb +7 -0
- data/lib/startling/shell.rb +11 -0
- data/lib/startling/version.rb +3 -0
- data/spec/spec_helper.rb +19 -0
- data/spec/startling/commands/base_spec.rb +32 -0
- data/spec/startling/configuration_spec.rb +127 -0
- data/spec/startling/git_local_spec.rb +22 -0
- data/spec/startling/github/pull_request_spec.rb +37 -0
- data/spec/startling_configuration_spec.rb +16 -0
- data/spec/startling_spec.rb +122 -0
- data/spec/support/dotenv.rb +2 -0
- data/spec/support/tokens.rb +5 -0
- data/spec/support/vcr.rb +16 -0
- data/spec/vcr_cassettes/bin_start_starts_stories.yml +564 -0
- data/spec/vcr_cassettes/bin_start_starts_stories_pr_body.yml +644 -0
- data/startling.gemspec +36 -0
- metadata +297 -0
data/spec/support/vcr.rb
ADDED
@@ -0,0 +1,16 @@
|
|
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.filter_sensitive_data '<PIVOTAL_API_TOKEN>' do
|
13
|
+
ENV.fetch "TEST_PIVOTAL_TRACKER_API_TOKEN"
|
14
|
+
end
|
15
|
+
config.configure_rspec_metadata!
|
16
|
+
end
|
@@ -0,0 +1,564 @@
|
|
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, 08 Jan 2016 01:37:12 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
|
+
- '4899'
|
39
|
+
X-Ratelimit-Reset:
|
40
|
+
- '1452217337'
|
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/"5afef1dd11979d8d14fd301935f86759"
|
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
|
+
- 8dd185e423974a7e13abbbe6e060031e
|
75
|
+
X-Github-Request-Id:
|
76
|
+
- C84A5D97:A39A:27B592C6:568F12C8
|
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-08T01:37:11Z","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":2,"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":2}'
|
81
|
+
http_version:
|
82
|
+
recorded_at: Fri, 08 Jan 2016 01:37:13 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, 08 Jan 2016 01:37:19 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
|
+
- '4898'
|
119
|
+
X-Ratelimit-Reset:
|
120
|
+
- '1452217337'
|
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/"92ad9b26da7001928741f1600399f2c1"
|
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
|
+
- 13d09b732ebe76f892093130dc088652
|
155
|
+
X-Github-Request-Id:
|
156
|
+
- C84A5D97:A39B:2E164120:568F12CE
|
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-08T01:37:18Z","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":2,"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":2}'
|
161
|
+
http_version:
|
162
|
+
recorded_at: Fri, 08 Jan 2016 01:37:19 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":"feature/bin_start_starts_stories","title":"The
|
169
|
+
Title","body":"This 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, 08 Jan 2016 01:37:20 GMT
|
190
|
+
Content-Type:
|
191
|
+
- application/json; charset=utf-8
|
192
|
+
Content-Length:
|
193
|
+
- '15227'
|
194
|
+
Status:
|
195
|
+
- 201 Created
|
196
|
+
X-Ratelimit-Limit:
|
197
|
+
- '5000'
|
198
|
+
X-Ratelimit-Remaining:
|
199
|
+
- '4897'
|
200
|
+
X-Ratelimit-Reset:
|
201
|
+
- '1452217337'
|
202
|
+
Cache-Control:
|
203
|
+
- private, max-age=60, s-maxage=60
|
204
|
+
Etag:
|
205
|
+
- '"f5168383a175eee15b02294e9a872288"'
|
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/28
|
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
|
+
- e183f7c661b1bbc2c987b3c4dc7b04e0
|
236
|
+
X-Github-Request-Id:
|
237
|
+
- C84A5D97:A39A:27B59A07:568F12CF
|
238
|
+
body:
|
239
|
+
encoding: UTF-8
|
240
|
+
string: '{"url":"https://api.github.com/repos/substantial/startling-testing/pulls/28","id":55415100,"html_url":"https://github.com/substantial/startling-testing/pull/28","diff_url":"https://github.com/substantial/startling-testing/pull/28.diff","patch_url":"https://github.com/substantial/startling-testing/pull/28.patch","issue_url":"https://api.github.com/repos/substantial/startling-testing/issues/28","number":28,"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-08T01:37:20Z","updated_at":"2016-01-08T01:37:20Z","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/28/commits","review_comments_url":"https://api.github.com/repos/substantial/startling-testing/pulls/28/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/28/comments","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/a8e5e9434ce076022cd53bd72dc44244b427feb2","head":{"label":"substantial:feature/bin_start_starts_stories","ref":"feature/bin_start_starts_stories","sha":"a8e5e9434ce076022cd53bd72dc44244b427feb2","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-08T01:37:18Z","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":2,"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-08T01:37:18Z","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":2,"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/28"},"html":{"href":"https://github.com/substantial/startling-testing/pull/28"},"issue":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/28"},"comments":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/28/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/28/commits"},"statuses":{"href":"https://api.github.com/repos/substantial/startling-testing/statuses/a8e5e9434ce076022cd53bd72dc44244b427feb2"}},"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, 08 Jan 2016 01:37:20 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, 08 Jan 2016 01:37:21 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
|
+
- '4896'
|
283
|
+
X-Ratelimit-Reset:
|
284
|
+
- '1452217337'
|
285
|
+
Cache-Control:
|
286
|
+
- private, max-age=60, s-maxage=60
|
287
|
+
Etag:
|
288
|
+
- W/"b5c08a6a65a49b12694697e281b80250"
|
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
|
+
- cee4c0729c8e9147e7abcb45b9d69689
|
317
|
+
X-Github-Request-Id:
|
318
|
+
- C84A5D97:A39C:20E7BA7F:568F12D0
|
319
|
+
body:
|
320
|
+
encoding: ASCII-8BIT
|
321
|
+
string: '[{"url":"https://api.github.com/repos/substantial/startling-testing/pulls/28","id":55415100,"html_url":"https://github.com/substantial/startling-testing/pull/28","diff_url":"https://github.com/substantial/startling-testing/pull/28.diff","patch_url":"https://github.com/substantial/startling-testing/pull/28.patch","issue_url":"https://api.github.com/repos/substantial/startling-testing/issues/28","number":28,"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-08T01:37:20Z","updated_at":"2016-01-08T01:37:20Z","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/28/commits","review_comments_url":"https://api.github.com/repos/substantial/startling-testing/pulls/28/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/28/comments","statuses_url":"https://api.github.com/repos/substantial/startling-testing/statuses/a8e5e9434ce076022cd53bd72dc44244b427feb2","head":{"label":"substantial:feature/bin_start_starts_stories","ref":"feature/bin_start_starts_stories","sha":"a8e5e9434ce076022cd53bd72dc44244b427feb2","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-08T01:37:18Z","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":2,"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-08T01:37:18Z","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":2,"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/28"},"html":{"href":"https://github.com/substantial/startling-testing/pull/28"},"issue":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/28"},"comments":{"href":"https://api.github.com/repos/substantial/startling-testing/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/substantial/startling-testing/pulls/28/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/28/commits"},"statuses":{"href":"https://api.github.com/repos/substantial/startling-testing/statuses/a8e5e9434ce076022cd53bd72dc44244b427feb2"}}}]'
|
326
|
+
http_version:
|
327
|
+
recorded_at: Fri, 08 Jan 2016 01:37:21 GMT
|
328
|
+
- request:
|
329
|
+
method: get
|
330
|
+
uri: https://api.github.com/repos/substantial/startling-testing/issues/28/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, 08 Jan 2016 01:37:22 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
|
+
- '4895'
|
364
|
+
X-Ratelimit-Reset:
|
365
|
+
- '1452217337'
|
366
|
+
Cache-Control:
|
367
|
+
- private, max-age=60, s-maxage=60
|
368
|
+
Last-Modified:
|
369
|
+
- Fri, 08 Jan 2016 01:37:20 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
|
+
- 8dd185e423974a7e13abbbe6e060031e
|
400
|
+
X-Github-Request-Id:
|
401
|
+
- C84A5D97:A39C:20E7BB53:568F12D1
|
402
|
+
body:
|
403
|
+
encoding: UTF-8
|
404
|
+
string: "[]"
|
405
|
+
http_version:
|
406
|
+
recorded_at: Fri, 08 Jan 2016 01:37:22 GMT
|
407
|
+
- request:
|
408
|
+
method: put
|
409
|
+
uri: https://api.github.com/repos/substantial/startling-testing/issues/28/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, 08 Jan 2016 01:37:23 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
|
+
- '4894'
|
443
|
+
X-Ratelimit-Reset:
|
444
|
+
- '1452217337'
|
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
|
+
- ef96c2e493b28ffea49b891b085ed2dd
|
477
|
+
X-Github-Request-Id:
|
478
|
+
- C84A5D97:A39C:20E7BBEA:568F12D2
|
479
|
+
body:
|
480
|
+
encoding: UTF-8
|
481
|
+
string: "[]"
|
482
|
+
http_version:
|
483
|
+
recorded_at: Fri, 08 Jan 2016 01:37:23 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, 08 Jan 2016 01:37:23 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
|
+
- '4893'
|
520
|
+
X-Ratelimit-Reset:
|
521
|
+
- '1452217337'
|
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/"bf3a6341d28cc85ca153ae25bded21c8"
|
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
|
+
- a241e1a8264a6ace03db946c85b92db3
|
556
|
+
X-Github-Request-Id:
|
557
|
+
- C84A5D97:A399:1F61D473:568F12D3
|
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-08T01:37:21Z","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":2,"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":2}'
|
562
|
+
http_version:
|
563
|
+
recorded_at: Fri, 08 Jan 2016 01:37:23 GMT
|
564
|
+
recorded_with: VCR 2.9.3
|