txgh 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +202 -0
  3. data/README.md +64 -0
  4. data/lib/ext/zipline/output_stream.rb +62 -0
  5. data/lib/txgh.rb +53 -0
  6. data/lib/txgh/app.rb +135 -0
  7. data/lib/txgh/category_support.rb +31 -0
  8. data/lib/txgh/config.rb +11 -0
  9. data/lib/txgh/config/config_pair.rb +36 -0
  10. data/lib/txgh/config/key_manager.rb +54 -0
  11. data/lib/txgh/config/provider_instance.rb +20 -0
  12. data/lib/txgh/config/provider_support.rb +26 -0
  13. data/lib/txgh/config/providers.rb +9 -0
  14. data/lib/txgh/config/providers/file_provider.rb +19 -0
  15. data/lib/txgh/config/providers/git_provider.rb +58 -0
  16. data/lib/txgh/config/providers/raw_provider.rb +19 -0
  17. data/lib/txgh/config/tx_config.rb +77 -0
  18. data/lib/txgh/config/tx_manager.rb +15 -0
  19. data/lib/txgh/diff_calculator.rb +90 -0
  20. data/lib/txgh/empty_resource_contents.rb +43 -0
  21. data/lib/txgh/errors.rb +9 -0
  22. data/lib/txgh/github_api.rb +83 -0
  23. data/lib/txgh/github_repo.rb +88 -0
  24. data/lib/txgh/github_request_auth.rb +28 -0
  25. data/lib/txgh/handlers.rb +12 -0
  26. data/lib/txgh/handlers/download_handler.rb +84 -0
  27. data/lib/txgh/handlers/github.rb +10 -0
  28. data/lib/txgh/handlers/github/delete_handler.rb +65 -0
  29. data/lib/txgh/handlers/github/handler.rb +20 -0
  30. data/lib/txgh/handlers/github/push_handler.rb +108 -0
  31. data/lib/txgh/handlers/github/request_handler.rb +106 -0
  32. data/lib/txgh/handlers/response.rb +17 -0
  33. data/lib/txgh/handlers/stream_response.rb +39 -0
  34. data/lib/txgh/handlers/tgz_stream_response.rb +41 -0
  35. data/lib/txgh/handlers/transifex.rb +8 -0
  36. data/lib/txgh/handlers/transifex/hook_handler.rb +77 -0
  37. data/lib/txgh/handlers/transifex/request_handler.rb +78 -0
  38. data/lib/txgh/handlers/triggers.rb +9 -0
  39. data/lib/txgh/handlers/triggers/handler.rb +66 -0
  40. data/lib/txgh/handlers/triggers/pull_handler.rb +29 -0
  41. data/lib/txgh/handlers/triggers/push_handler.rb +21 -0
  42. data/lib/txgh/handlers/zip_stream_response.rb +21 -0
  43. data/lib/txgh/merge_calculator.rb +74 -0
  44. data/lib/txgh/parse_config.rb +24 -0
  45. data/lib/txgh/resource_committer.rb +39 -0
  46. data/lib/txgh/resource_contents.rb +118 -0
  47. data/lib/txgh/resource_downloader.rb +141 -0
  48. data/lib/txgh/resource_updater.rb +104 -0
  49. data/lib/txgh/response_helpers.rb +30 -0
  50. data/lib/txgh/transifex_api.rb +165 -0
  51. data/lib/txgh/transifex_project.rb +37 -0
  52. data/lib/txgh/transifex_request_auth.rb +53 -0
  53. data/lib/txgh/tx_branch_resource.rb +59 -0
  54. data/lib/txgh/tx_logger.rb +12 -0
  55. data/lib/txgh/tx_resource.rb +66 -0
  56. data/lib/txgh/utils.rb +44 -0
  57. data/lib/txgh/version.rb +3 -0
  58. data/spec/app_spec.rb +346 -0
  59. data/spec/category_support_spec.rb +43 -0
  60. data/spec/config/config_pair_spec.rb +47 -0
  61. data/spec/config/key_manager_spec.rb +48 -0
  62. data/spec/config/provider_instance_spec.rb +30 -0
  63. data/spec/config/provider_support_spec.rb +55 -0
  64. data/spec/config/tx_config_spec.rb +49 -0
  65. data/spec/config/tx_manager_spec.rb +57 -0
  66. data/spec/diff_calculator_spec.rb +90 -0
  67. data/spec/github_api_spec.rb +148 -0
  68. data/spec/github_repo_spec.rb +178 -0
  69. data/spec/github_request_auth_spec.rb +39 -0
  70. data/spec/handlers/download_handler_spec.rb +81 -0
  71. data/spec/handlers/github/delete_handler_spec.rb +71 -0
  72. data/spec/handlers/github/push_handler_spec.rb +76 -0
  73. data/spec/handlers/tgz_stream_response_spec.rb +59 -0
  74. data/spec/handlers/transifex/hook_handler_spec.rb +115 -0
  75. data/spec/handlers/zip_stream_response_spec.rb +58 -0
  76. data/spec/helpers/github_payload_builder.rb +141 -0
  77. data/spec/helpers/integration_setup.rb +47 -0
  78. data/spec/helpers/nil_logger.rb +10 -0
  79. data/spec/helpers/standard_txgh_setup.rb +92 -0
  80. data/spec/helpers/test_provider.rb +12 -0
  81. data/spec/integration/cassettes/github_l10n_hook_endpoint.yml +536 -0
  82. data/spec/integration/cassettes/pull.yml +47 -0
  83. data/spec/integration/cassettes/push.yml +544 -0
  84. data/spec/integration/cassettes/transifex_hook_endpoint.yml +560 -0
  85. data/spec/integration/config/tx.config +10 -0
  86. data/spec/integration/hooks_spec.rb +158 -0
  87. data/spec/integration/payloads/github_postbody.json +161 -0
  88. data/spec/integration/payloads/github_postbody_l10n.json +136 -0
  89. data/spec/integration/payloads/github_postbody_release.json +136 -0
  90. data/spec/integration/triggers_spec.rb +45 -0
  91. data/spec/merge_calculator_spec.rb +112 -0
  92. data/spec/parse_config_spec.rb +52 -0
  93. data/spec/resource_committer_spec.rb +42 -0
  94. data/spec/resource_contents_spec.rb +212 -0
  95. data/spec/resource_downloader_spec.rb +205 -0
  96. data/spec/resource_updater_spec.rb +147 -0
  97. data/spec/spec_helper.rb +32 -0
  98. data/spec/transifex_api_spec.rb +345 -0
  99. data/spec/transifex_project_spec.rb +45 -0
  100. data/spec/transifex_request_auth_spec.rb +39 -0
  101. data/spec/tx_branch_resource_spec.rb +99 -0
  102. data/spec/tx_resource_spec.rb +47 -0
  103. data/spec/utils_spec.rb +58 -0
  104. data/txgh.gemspec +29 -0
  105. metadata +296 -0
@@ -0,0 +1,560 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://txgh.bot:<TRANSIFEX_PASSWORD>@www.transifex.com/api/2/project/test-project-88/resource/samplepo/translation/el_GR/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.2
12
+ Accept:
13
+ - application/json
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - nginx
23
+ Vary:
24
+ - Accept-Encoding
25
+ - Authorization, Host, Accept-Language, Cookie
26
+ Cache-Control:
27
+ - max-age=0
28
+ Content-Type:
29
+ - application/json; charset=utf-8
30
+ Date:
31
+ - Fri, 12 Feb 2016 19:48:51 GMT
32
+ Expires:
33
+ - Fri, 12 Feb 2016 19:48:51 GMT
34
+ Transfer-Encoding:
35
+ - chunked
36
+ Content-Language:
37
+ - en
38
+ X-Content-Type-Options:
39
+ - nosniff
40
+ Connection:
41
+ - keep-alive
42
+ Set-Cookie:
43
+ - X-Mapping-fjhppofk=D7F0B90A7FEFB2573FEF4C177EEBE6A8; path=/
44
+ Last-Modified:
45
+ - Fri, 12 Feb 2016 19:48:51 GMT
46
+ X-Frame-Options:
47
+ - SAMEORIGIN
48
+ body:
49
+ encoding: UTF-8
50
+ string: "{\n \"content\": \"# Translation file for Transifex.\\n# Copyright
51
+ (C) 2007-2010 Indifex Ltd.\\n# This file is distributed under the same license
52
+ as the Transifex package.\\n# \\n# Translators:\\n# Translators:\\nmsgid \\\"\\\"\\nmsgstr
53
+ \\\"\\\"\\n\\\"Project-Id-Version: test-project\\\\n\\\"\\n\\\"Report-Msgid-Bugs-To:
54
+ \\\\n\\\"\\n\\\"POT-Creation-Date: 2015-02-17 20:10+0000\\\\n\\\"\\n\\\"PO-Revision-Date:
55
+ 2016-01-19 19:08+0000\\\\n\\\"\\n\\\"Last-Translator: Ilias-Dimitrios Vrachnis\\\\n\\\"\\n\\\"Language-Team:
56
+ Greek (Greece) (http://www.transifex.com/txgh-test/test-project-88/language/el_GR/)\\\\n\\\"\\n\\\"MIME-Version:
57
+ 1.0\\\\n\\\"\\n\\\"Content-Type: text/plain; charset=UTF-8\\\\n\\\"\\n\\\"Content-Transfer-Encoding:
58
+ 8bit\\\\n\\\"\\n\\\"Language: el_GR\\\\n\\\"\\n\\\"Plural-Forms: nplurals=2;
59
+ plural=(n != 1);\\\\n\\\"\\n\\nmsgid \\\"One\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid
60
+ \\\"Two\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid \\\"Three\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid
61
+ \\\"Four\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid \\\"Five\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid
62
+ \\\"Six\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid \\\"Seven\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid
63
+ \\\"Eight\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid \\\"Nine\\\"\\nmsgstr \\\"\\\"\\n\\nmsgid
64
+ \\\"Ten\\\"\\nmsgstr \\\"\\\"\\n\", \n \"mimetype\": \"text/x-po\"\n}"
65
+ http_version:
66
+ recorded_at: Fri, 12 Feb 2016 19:48:52 GMT
67
+ - request:
68
+ method: post
69
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/git/blobs
70
+ body:
71
+ encoding: UTF-8
72
+ string: '{"content":"# Translation file for Transifex.\n# Copyright (C) 2007-2010
73
+ Indifex Ltd.\n# This file is distributed under the same license as the Transifex
74
+ package.\n# \n# Translators:\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version:
75
+ test-project\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-02-17
76
+ 20:10+0000\\n\"\n\"PO-Revision-Date: 2016-01-19 19:08+0000\\n\"\n\"Last-Translator:
77
+ Ilias-Dimitrios Vrachnis\\n\"\n\"Language-Team: Greek (Greece) (http://www.transifex.com/txgh-test/test-project-88/language/el_GR/)\\n\"\n\"MIME-Version:
78
+ 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding:
79
+ 8bit\\n\"\n\"Language: el_GR\\n\"\n\"Plural-Forms: nplurals=2; plural=(n !=
80
+ 1);\\n\"\n\nmsgid \"One\"\nmsgstr \"\"\n\nmsgid \"Two\"\nmsgstr \"\"\n\nmsgid
81
+ \"Three\"\nmsgstr \"\"\n\nmsgid \"Four\"\nmsgstr \"\"\n\nmsgid \"Five\"\nmsgstr
82
+ \"\"\n\nmsgid \"Six\"\nmsgstr \"\"\n\nmsgid \"Seven\"\nmsgstr \"\"\n\nmsgid
83
+ \"Eight\"\nmsgstr \"\"\n\nmsgid \"Nine\"\nmsgstr \"\"\n\nmsgid \"Ten\"\nmsgstr
84
+ \"\"\n","encoding":"utf-8"}'
85
+ headers:
86
+ Accept:
87
+ - application/vnd.github.v3+json
88
+ User-Agent:
89
+ - Octokit Ruby Gem 4.2.0
90
+ Content-Type:
91
+ - application/json
92
+ Authorization:
93
+ - token <GITHUB_TOKEN>
94
+ Accept-Encoding:
95
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
96
+ response:
97
+ status:
98
+ code: 201
99
+ message: Created
100
+ headers:
101
+ Server:
102
+ - GitHub.com
103
+ Date:
104
+ - Fri, 12 Feb 2016 19:48:52 GMT
105
+ Content-Type:
106
+ - application/json; charset=utf-8
107
+ Content-Length:
108
+ - '167'
109
+ Status:
110
+ - 201 Created
111
+ X-Ratelimit-Limit:
112
+ - '5000'
113
+ X-Ratelimit-Remaining:
114
+ - '4999'
115
+ X-Ratelimit-Reset:
116
+ - '1455310132'
117
+ Cache-Control:
118
+ - private, max-age=60, s-maxage=60
119
+ Etag:
120
+ - '"ed992de3605511d4d93bfd55ab933696"'
121
+ X-Oauth-Scopes:
122
+ - public_repo
123
+ X-Accepted-Oauth-Scopes:
124
+ - ''
125
+ Location:
126
+ - https://api.github.com/repos/txgh-bot/txgh-test-resources/git/blobs/540a3d944ac19f573e756de687c8c4f3f9847b53
127
+ Vary:
128
+ - Accept, Authorization, Cookie, X-GitHub-OTP
129
+ - Accept-Encoding
130
+ X-Github-Media-Type:
131
+ - github.v3; format=json
132
+ Access-Control-Allow-Credentials:
133
+ - 'true'
134
+ Access-Control-Expose-Headers:
135
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
136
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
137
+ Access-Control-Allow-Origin:
138
+ - "*"
139
+ Content-Security-Policy:
140
+ - default-src 'none'
141
+ Strict-Transport-Security:
142
+ - max-age=31536000; includeSubdomains; preload
143
+ X-Content-Type-Options:
144
+ - nosniff
145
+ X-Frame-Options:
146
+ - deny
147
+ X-Xss-Protection:
148
+ - 1; mode=block
149
+ X-Served-By:
150
+ - 593010132f82159af0ded24b4932e109
151
+ X-Github-Request-Id:
152
+ - 04358C36:14596:F6290D5:56BE3724
153
+ body:
154
+ encoding: UTF-8
155
+ string: '{"sha":"540a3d944ac19f573e756de687c8c4f3f9847b53","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/blobs/540a3d944ac19f573e756de687c8c4f3f9847b53"}'
156
+ http_version:
157
+ recorded_at: Fri, 12 Feb 2016 19:48:52 GMT
158
+ - request:
159
+ method: get
160
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/git/refs/heads/master
161
+ body:
162
+ encoding: US-ASCII
163
+ string: ''
164
+ headers:
165
+ Accept:
166
+ - application/vnd.github.v3+json
167
+ User-Agent:
168
+ - Octokit Ruby Gem 4.2.0
169
+ Content-Type:
170
+ - application/json
171
+ Authorization:
172
+ - token <GITHUB_TOKEN>
173
+ Accept-Encoding:
174
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
175
+ response:
176
+ status:
177
+ code: 200
178
+ message: OK
179
+ headers:
180
+ Server:
181
+ - GitHub.com
182
+ Date:
183
+ - Fri, 12 Feb 2016 19:48:52 GMT
184
+ Content-Type:
185
+ - application/json; charset=utf-8
186
+ Transfer-Encoding:
187
+ - chunked
188
+ Status:
189
+ - 200 OK
190
+ X-Ratelimit-Limit:
191
+ - '5000'
192
+ X-Ratelimit-Remaining:
193
+ - '4998'
194
+ X-Ratelimit-Reset:
195
+ - '1455310132'
196
+ Cache-Control:
197
+ - private, max-age=60, s-maxage=60
198
+ Last-Modified:
199
+ - Mon, 11 Jan 2016 23:45:43 GMT
200
+ Etag:
201
+ - W/"2c789545a86986f3dbe3ca967407cb88"
202
+ X-Poll-Interval:
203
+ - '300'
204
+ X-Oauth-Scopes:
205
+ - public_repo
206
+ X-Accepted-Oauth-Scopes:
207
+ - ''
208
+ Vary:
209
+ - Accept, Authorization, Cookie, X-GitHub-OTP
210
+ - Accept-Encoding
211
+ X-Github-Media-Type:
212
+ - github.v3; format=json
213
+ Access-Control-Allow-Credentials:
214
+ - 'true'
215
+ Access-Control-Expose-Headers:
216
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
217
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
218
+ Access-Control-Allow-Origin:
219
+ - "*"
220
+ Content-Security-Policy:
221
+ - default-src 'none'
222
+ Strict-Transport-Security:
223
+ - max-age=31536000; includeSubdomains; preload
224
+ X-Content-Type-Options:
225
+ - nosniff
226
+ X-Frame-Options:
227
+ - deny
228
+ X-Xss-Protection:
229
+ - 1; mode=block
230
+ X-Served-By:
231
+ - a30e6f9aa7cf5731b87dfb3b9992202d
232
+ X-Github-Request-Id:
233
+ - 04358C36:14596:F62915C:56BE3724
234
+ body:
235
+ encoding: UTF-8
236
+ string: '{"ref":"refs/heads/master","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/refs/heads/master","object":{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","type":"commit","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/e411b627bdb8884f66748d48fcd9576f61992085"}}'
237
+ http_version:
238
+ recorded_at: Fri, 12 Feb 2016 19:48:52 GMT
239
+ - request:
240
+ method: get
241
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085
242
+ body:
243
+ encoding: US-ASCII
244
+ string: ''
245
+ headers:
246
+ Accept:
247
+ - application/vnd.github.v3+json
248
+ User-Agent:
249
+ - Octokit Ruby Gem 4.2.0
250
+ Content-Type:
251
+ - application/json
252
+ Authorization:
253
+ - token <GITHUB_TOKEN>
254
+ Accept-Encoding:
255
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
256
+ response:
257
+ status:
258
+ code: 200
259
+ message: OK
260
+ headers:
261
+ Server:
262
+ - GitHub.com
263
+ Date:
264
+ - Fri, 12 Feb 2016 19:48:53 GMT
265
+ Content-Type:
266
+ - application/json; charset=utf-8
267
+ Transfer-Encoding:
268
+ - chunked
269
+ Status:
270
+ - 200 OK
271
+ X-Ratelimit-Limit:
272
+ - '5000'
273
+ X-Ratelimit-Remaining:
274
+ - '4997'
275
+ X-Ratelimit-Reset:
276
+ - '1455310132'
277
+ Cache-Control:
278
+ - private, max-age=60, s-maxage=60
279
+ Last-Modified:
280
+ - Mon, 01 Feb 2016 20:15:13 GMT
281
+ Etag:
282
+ - W/"5c055175960a69cba21e17c0a0507135"
283
+ X-Oauth-Scopes:
284
+ - public_repo
285
+ X-Accepted-Oauth-Scopes:
286
+ - ''
287
+ Vary:
288
+ - Accept, Authorization, Cookie, X-GitHub-OTP
289
+ - Accept-Encoding
290
+ X-Github-Media-Type:
291
+ - github.v3; format=json
292
+ Access-Control-Allow-Credentials:
293
+ - 'true'
294
+ Access-Control-Expose-Headers:
295
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
296
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
297
+ Access-Control-Allow-Origin:
298
+ - "*"
299
+ Content-Security-Policy:
300
+ - default-src 'none'
301
+ Strict-Transport-Security:
302
+ - max-age=31536000; includeSubdomains; preload
303
+ X-Content-Type-Options:
304
+ - nosniff
305
+ X-Frame-Options:
306
+ - deny
307
+ X-Xss-Protection:
308
+ - 1; mode=block
309
+ X-Served-By:
310
+ - bd82876e9bf04990f289ba22f246ee9b
311
+ X-Github-Request-Id:
312
+ - 04358C36:14594:ED057EF:56BE3724
313
+ body:
314
+ encoding: UTF-8
315
+ string: '{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","commit":{"author":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"committer":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"message":"Updating
316
+ translations for translations/el_GR/sample.po","tree":{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460"},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/e411b627bdb8884f66748d48fcd9576f61992085","comment_count":0},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/e411b627bdb8884f66748d48fcd9576f61992085","comments_url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085/comments","author":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"committer":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"parents":[{"sha":"f0356f2c6216af45b74a517835a6b8d11c246a33","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/f0356f2c6216af45b74a517835a6b8d11c246a33","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/f0356f2c6216af45b74a517835a6b8d11c246a33"}],"stats":{"total":0,"additions":0,"deletions":0},"files":[]}'
317
+ http_version:
318
+ recorded_at: Fri, 12 Feb 2016 19:48:53 GMT
319
+ - request:
320
+ method: post
321
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees
322
+ body:
323
+ encoding: UTF-8
324
+ string: '{"base_tree":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","tree":[{"path":"translations/el_GR/sample.po","mode":"100644","type":"blob","sha":"540a3d944ac19f573e756de687c8c4f3f9847b53"}]}'
325
+ headers:
326
+ Accept:
327
+ - application/vnd.github.v3+json
328
+ User-Agent:
329
+ - Octokit Ruby Gem 4.2.0
330
+ Content-Type:
331
+ - application/json
332
+ Authorization:
333
+ - token <GITHUB_TOKEN>
334
+ Accept-Encoding:
335
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
336
+ response:
337
+ status:
338
+ code: 201
339
+ message: Created
340
+ headers:
341
+ Server:
342
+ - GitHub.com
343
+ Date:
344
+ - Fri, 12 Feb 2016 19:48:53 GMT
345
+ Content-Type:
346
+ - application/json; charset=utf-8
347
+ Content-Length:
348
+ - '869'
349
+ Status:
350
+ - 201 Created
351
+ X-Ratelimit-Limit:
352
+ - '5000'
353
+ X-Ratelimit-Remaining:
354
+ - '4996'
355
+ X-Ratelimit-Reset:
356
+ - '1455310132'
357
+ Cache-Control:
358
+ - private, max-age=60, s-maxage=60
359
+ Etag:
360
+ - '"285d1085d15dc469819c68a1aafc59be"'
361
+ X-Oauth-Scopes:
362
+ - public_repo
363
+ X-Accepted-Oauth-Scopes:
364
+ - ''
365
+ Location:
366
+ - https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460
367
+ Vary:
368
+ - Accept, Authorization, Cookie, X-GitHub-OTP
369
+ - Accept-Encoding
370
+ X-Github-Media-Type:
371
+ - github.v3; format=json
372
+ Access-Control-Allow-Credentials:
373
+ - 'true'
374
+ Access-Control-Expose-Headers:
375
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
376
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
377
+ Access-Control-Allow-Origin:
378
+ - "*"
379
+ Content-Security-Policy:
380
+ - default-src 'none'
381
+ Strict-Transport-Security:
382
+ - max-age=31536000; includeSubdomains; preload
383
+ X-Content-Type-Options:
384
+ - nosniff
385
+ X-Frame-Options:
386
+ - deny
387
+ X-Xss-Protection:
388
+ - 1; mode=block
389
+ X-Served-By:
390
+ - bae57931a6fe678a3dffe9be8e7819c8
391
+ X-Github-Request-Id:
392
+ - 04358C36:14594:ED05873:56BE3725
393
+ body:
394
+ encoding: UTF-8
395
+ string: '{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460","tree":[{"path":"README.md","mode":"100644","type":"blob","sha":"cee445fa5bceaeb83c8d443b28f1647c2feff565","size":53,"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/blobs/cee445fa5bceaeb83c8d443b28f1647c2feff565"},{"path":"sample.po","mode":"100644","type":"blob","sha":"a93e31a00137e0bd23db5bc7720568f8e908b2b6","size":855,"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/blobs/a93e31a00137e0bd23db5bc7720568f8e908b2b6"},{"path":"translations","mode":"040000","type":"tree","sha":"64881902c6515e26c22e022abc0bedeaa15eafdc","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/64881902c6515e26c22e022abc0bedeaa15eafdc"}],"truncated":false}'
396
+ http_version:
397
+ recorded_at: Fri, 12 Feb 2016 19:48:53 GMT
398
+ - request:
399
+ method: post
400
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits
401
+ body:
402
+ encoding: UTF-8
403
+ string: '{"message":"Updating translations for translations/el_GR/sample.po","tree":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","parents":["e411b627bdb8884f66748d48fcd9576f61992085"]}'
404
+ headers:
405
+ Accept:
406
+ - application/vnd.github.v3+json
407
+ User-Agent:
408
+ - Octokit Ruby Gem 4.2.0
409
+ Content-Type:
410
+ - application/json
411
+ Authorization:
412
+ - token <GITHUB_TOKEN>
413
+ Accept-Encoding:
414
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
415
+ response:
416
+ status:
417
+ code: 201
418
+ message: Created
419
+ headers:
420
+ Server:
421
+ - GitHub.com
422
+ Date:
423
+ - Fri, 12 Feb 2016 19:48:53 GMT
424
+ Content-Type:
425
+ - application/json; charset=utf-8
426
+ Content-Length:
427
+ - '990'
428
+ Status:
429
+ - 201 Created
430
+ X-Ratelimit-Limit:
431
+ - '5000'
432
+ X-Ratelimit-Remaining:
433
+ - '4995'
434
+ X-Ratelimit-Reset:
435
+ - '1455310132'
436
+ Cache-Control:
437
+ - private, max-age=60, s-maxage=60
438
+ Etag:
439
+ - '"eab520784a635017e6368014dfe7743c"'
440
+ X-Oauth-Scopes:
441
+ - public_repo
442
+ X-Accepted-Oauth-Scopes:
443
+ - ''
444
+ Location:
445
+ - https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/8a9e9df3d02fa7cacd39017b534a24f564ccdf72
446
+ Vary:
447
+ - Accept, Authorization, Cookie, X-GitHub-OTP
448
+ - Accept-Encoding
449
+ X-Github-Media-Type:
450
+ - github.v3; format=json
451
+ Access-Control-Allow-Credentials:
452
+ - 'true'
453
+ Access-Control-Expose-Headers:
454
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
455
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
456
+ Access-Control-Allow-Origin:
457
+ - "*"
458
+ Content-Security-Policy:
459
+ - default-src 'none'
460
+ Strict-Transport-Security:
461
+ - max-age=31536000; includeSubdomains; preload
462
+ X-Content-Type-Options:
463
+ - nosniff
464
+ X-Frame-Options:
465
+ - deny
466
+ X-Xss-Protection:
467
+ - 1; mode=block
468
+ X-Served-By:
469
+ - e183f7c661b1bbc2c987b3c4dc7b04e0
470
+ X-Github-Request-Id:
471
+ - 04358C36:14594:ED05902:56BE3725
472
+ body:
473
+ encoding: UTF-8
474
+ string: '{"sha":"8a9e9df3d02fa7cacd39017b534a24f564ccdf72","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/8a9e9df3d02fa7cacd39017b534a24f564ccdf72","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/8a9e9df3d02fa7cacd39017b534a24f564ccdf72","author":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-12T19:48:53Z"},"committer":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-12T19:48:53Z"},"tree":{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460"},"message":"Updating
475
+ translations for translations/el_GR/sample.po","parents":[{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/e411b627bdb8884f66748d48fcd9576f61992085","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/e411b627bdb8884f66748d48fcd9576f61992085"}]}'
476
+ http_version:
477
+ recorded_at: Fri, 12 Feb 2016 19:48:53 GMT
478
+ - request:
479
+ method: get
480
+ uri: https://api.github.com/repos/txgh-bot/txgh-test-resources/compare/e411b627bdb8884f66748d48fcd9576f61992085...8a9e9df3d02fa7cacd39017b534a24f564ccdf72
481
+ body:
482
+ encoding: US-ASCII
483
+ string: ''
484
+ headers:
485
+ Accept:
486
+ - application/vnd.github.v3+json
487
+ User-Agent:
488
+ - Octokit Ruby Gem 4.2.0
489
+ Content-Type:
490
+ - application/json
491
+ Authorization:
492
+ - token <GITHUB_TOKEN>
493
+ Accept-Encoding:
494
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
495
+ response:
496
+ status:
497
+ code: 200
498
+ message: OK
499
+ headers:
500
+ Server:
501
+ - GitHub.com
502
+ Date:
503
+ - Fri, 12 Feb 2016 19:48:54 GMT
504
+ Content-Type:
505
+ - application/json; charset=utf-8
506
+ Transfer-Encoding:
507
+ - chunked
508
+ Status:
509
+ - 200 OK
510
+ X-Ratelimit-Limit:
511
+ - '5000'
512
+ X-Ratelimit-Remaining:
513
+ - '4994'
514
+ X-Ratelimit-Reset:
515
+ - '1455310132'
516
+ Cache-Control:
517
+ - private, max-age=60, s-maxage=60
518
+ Last-Modified:
519
+ - Fri, 12 Feb 2016 19:48:53 GMT
520
+ Etag:
521
+ - W/"8c0f4cf6a2ab558c59ba29b3abab9522"
522
+ X-Oauth-Scopes:
523
+ - public_repo
524
+ X-Accepted-Oauth-Scopes:
525
+ - ''
526
+ Vary:
527
+ - Accept, Authorization, Cookie, X-GitHub-OTP
528
+ - Accept-Encoding
529
+ X-Github-Media-Type:
530
+ - github.v3; format=json
531
+ Access-Control-Allow-Credentials:
532
+ - 'true'
533
+ Access-Control-Expose-Headers:
534
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
535
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
536
+ Access-Control-Allow-Origin:
537
+ - "*"
538
+ Content-Security-Policy:
539
+ - default-src 'none'
540
+ Strict-Transport-Security:
541
+ - max-age=31536000; includeSubdomains; preload
542
+ X-Content-Type-Options:
543
+ - nosniff
544
+ X-Frame-Options:
545
+ - deny
546
+ X-Xss-Protection:
547
+ - 1; mode=block
548
+ X-Served-By:
549
+ - 2c18a09f3ac5e4dd1e004af7c5a94769
550
+ X-Github-Request-Id:
551
+ - 04358C36:14594:ED0599F:56BE3726
552
+ body:
553
+ encoding: UTF-8
554
+ string: '{"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/compare/e411b627bdb8884f66748d48fcd9576f61992085...8a9e9df3d02fa7cacd39017b534a24f564ccdf72","html_url":"https://github.com/txgh-bot/txgh-test-resources/compare/e411b627bdb8884f66748d48fcd9576f61992085...8a9e9df3d02fa7cacd39017b534a24f564ccdf72","permalink_url":"https://github.com/txgh-bot/txgh-test-resources/compare/txgh-bot:e411b62...txgh-bot:8a9e9df","diff_url":"https://github.com/txgh-bot/txgh-test-resources/compare/e411b627bdb8884f66748d48fcd9576f61992085...8a9e9df3d02fa7cacd39017b534a24f564ccdf72.diff","patch_url":"https://github.com/txgh-bot/txgh-test-resources/compare/e411b627bdb8884f66748d48fcd9576f61992085...8a9e9df3d02fa7cacd39017b534a24f564ccdf72.patch","base_commit":{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","commit":{"author":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"committer":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"message":"Updating
555
+ translations for translations/el_GR/sample.po","tree":{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460"},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/e411b627bdb8884f66748d48fcd9576f61992085","comment_count":0},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/e411b627bdb8884f66748d48fcd9576f61992085","comments_url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085/comments","author":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"committer":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"parents":[{"sha":"f0356f2c6216af45b74a517835a6b8d11c246a33","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/f0356f2c6216af45b74a517835a6b8d11c246a33","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/f0356f2c6216af45b74a517835a6b8d11c246a33"}]},"merge_base_commit":{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","commit":{"author":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"committer":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-01T20:15:13Z"},"message":"Updating
556
+ translations for translations/el_GR/sample.po","tree":{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460"},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/e411b627bdb8884f66748d48fcd9576f61992085","comment_count":0},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/e411b627bdb8884f66748d48fcd9576f61992085","comments_url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085/comments","author":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"committer":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"parents":[{"sha":"f0356f2c6216af45b74a517835a6b8d11c246a33","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/f0356f2c6216af45b74a517835a6b8d11c246a33","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/f0356f2c6216af45b74a517835a6b8d11c246a33"}]},"status":"ahead","ahead_by":1,"behind_by":0,"total_commits":1,"commits":[{"sha":"8a9e9df3d02fa7cacd39017b534a24f564ccdf72","commit":{"author":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-12T19:48:53Z"},"committer":{"name":"txgh-bot","email":"txgh.bot@gmail.com","date":"2016-02-12T19:48:53Z"},"message":"Updating
557
+ translations for translations/el_GR/sample.po","tree":{"sha":"4ee65f809366225a4d575ad47f0f8c2a05a6d460","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/trees/4ee65f809366225a4d575ad47f0f8c2a05a6d460"},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/git/commits/8a9e9df3d02fa7cacd39017b534a24f564ccdf72","comment_count":0},"url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/8a9e9df3d02fa7cacd39017b534a24f564ccdf72","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/8a9e9df3d02fa7cacd39017b534a24f564ccdf72","comments_url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/8a9e9df3d02fa7cacd39017b534a24f564ccdf72/comments","author":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"committer":{"login":"txgh-bot","id":16723366,"avatar_url":"https://avatars.githubusercontent.com/u/16723366?v=3","gravatar_id":"","url":"https://api.github.com/users/txgh-bot","html_url":"https://github.com/txgh-bot","followers_url":"https://api.github.com/users/txgh-bot/followers","following_url":"https://api.github.com/users/txgh-bot/following{/other_user}","gists_url":"https://api.github.com/users/txgh-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/txgh-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/txgh-bot/subscriptions","organizations_url":"https://api.github.com/users/txgh-bot/orgs","repos_url":"https://api.github.com/users/txgh-bot/repos","events_url":"https://api.github.com/users/txgh-bot/events{/privacy}","received_events_url":"https://api.github.com/users/txgh-bot/received_events","type":"User","site_admin":false},"parents":[{"sha":"e411b627bdb8884f66748d48fcd9576f61992085","url":"https://api.github.com/repos/txgh-bot/txgh-test-resources/commits/e411b627bdb8884f66748d48fcd9576f61992085","html_url":"https://github.com/txgh-bot/txgh-test-resources/commit/e411b627bdb8884f66748d48fcd9576f61992085"}]}],"files":[]}'
558
+ http_version:
559
+ recorded_at: Fri, 12 Feb 2016 19:48:54 GMT
560
+ recorded_with: VCR 3.0.1