gh 0.13.0 → 0.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gh/error.rb +2 -2
  3. data/lib/gh/response.rb +1 -1
  4. data/lib/gh/version.rb +1 -1
  5. metadata +6 -94
  6. data/.gitignore +0 -4
  7. data/.travis.yml +0 -19
  8. data/Gemfile +0 -6
  9. data/README.md +0 -117
  10. data/Rakefile +0 -6
  11. data/gh.gemspec +0 -28
  12. data/spec/cache_spec.rb +0 -28
  13. data/spec/custom_limit_spec.rb +0 -23
  14. data/spec/error_spec.rb +0 -55
  15. data/spec/gh_spec.rb +0 -32
  16. data/spec/instrumentation_spec.rb +0 -30
  17. data/spec/lazy_loader_spec.rb +0 -63
  18. data/spec/link_follower_spec.rb +0 -24
  19. data/spec/merge_commit_spec.rb +0 -24
  20. data/spec/normalizer_spec.rb +0 -319
  21. data/spec/pagination_spec.rb +0 -32
  22. data/spec/parallel_spec.rb +0 -95
  23. data/spec/payloads/.yml +0 -3
  24. data/spec/payloads/repos/rkh/gh/contents/README.md_per_page_100.yml +0 -15
  25. data/spec/payloads/repos/rkh/test-project-1.yml +0 -23
  26. data/spec/payloads/repos/sinatra/sinatra/issues/56/comments.yml +0 -36
  27. data/spec/payloads/repos/sinatra/sinatra/issues/comments/383214.yml +0 -21
  28. data/spec/payloads/repos/sinatra/sinatra/pulls/56.yml +0 -23
  29. data/spec/payloads/repos/travis-repos/test-project-1.yml +0 -21
  30. data/spec/payloads/repos/travis-repos/test-project-1/git/commits/ca3c0a44ec1d9bf8557d2653aa1b79fcc9ff5f5d.yml +0 -23
  31. data/spec/payloads/repos/travis-repos/test-project-1/git/refs/pull/1.yml +0 -20
  32. data/spec/payloads/repos/travis-repos/test-project-1/pulls/1.yml +0 -24
  33. data/spec/payloads/users/rkh.yml +0 -22
  34. data/spec/payloads/users/rkh/repos.yml +0 -52
  35. data/spec/payloads/users/rkh/repos_page_2&per_page=100.yml +0 -49
  36. data/spec/payloads/users/rkh/repos_page_2.yml +0 -54
  37. data/spec/payloads/users/rkh/repos_page_2_per_page_100.yml +0 -49
  38. data/spec/payloads/users/rkh/repos_page_3.yml +0 -57
  39. data/spec/payloads/users/rkh/repos_page_4.yml +0 -56
  40. data/spec/payloads/users/rkh/repos_page_5.yml +0 -28
  41. data/spec/payloads/users/rkh/repos_per_page_100.yml +0 -121
  42. data/spec/payloads/users/rkh_per_page_100.yml +0 -21
  43. data/spec/payloads/users/rtomayko.yml +0 -21
  44. data/spec/payloads/users/svenfuchs.yml +0 -21
  45. data/spec/payloads/users/travis-repos.yml +0 -21
  46. data/spec/pull_request_hook.json +0 -181
  47. data/spec/remote_spec.rb +0 -48
  48. data/spec/response_spec.rb +0 -19
  49. data/spec/spec_helper.rb +0 -88
  50. data/spec/stack_spec.rb +0 -5
  51. data/spec/token_check_spec.rb +0 -27
  52. data/spec/wrapper_spec.rb +0 -5
@@ -1,32 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe GH::Pagination do
4
- before { subject.backend = GH::MockBackend.new }
5
-
6
- it 'paginates' do
7
- counter = subject['users/rkh/repos'].map { 1 }.reduce(:+) # map/reduce!
8
- counter.should be > 120
9
- end
10
-
11
- it 'paginates with GH::Normalizer' do
12
- subject.backend = GH::Normalizer.new subject.backend
13
- counter = subject['users/rkh/repos'].map { 1 }.reduce(:+) # map/reduce!
14
- counter.should be > 120
15
- end
16
-
17
- it 'paginates on default stack' do
18
- counter = GH['users/rkh/repos'].map { 1 }.reduce(:+) # map/reduce!
19
- counter.should be > 120
20
- end
21
-
22
- it 'gives random access' do
23
- data = subject['users/rkh/repos']
24
- data.each_with_index do |value, index|
25
- data[index].should be == value
26
- end
27
- end
28
-
29
- it 'does not wrap hash responses' do
30
- subject['users/rkh'].should_not be_a(GH::Pagination::Paginated)
31
- end
32
- end
@@ -1,95 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe GH::Parallel do
4
- before do
5
- stub_request(:get, "https://api.github.com/users/rkh").to_return(:status => 200, :body => '{"name": "Konstantin Haase"}')
6
- stub_request(:get, "https://api.github.com/users/svenfuchs").to_return(:status => 200, :body => '{"name": "Sven Fuchs"}')
7
- stub_request(:get, "https://api.github.com/users/rkh?per_page=100").to_return(:status => 200, :body => '{"name": "Konstantin Haase"}')
8
- stub_request(:get, "https://api.github.com/users/svenfuchs?per_page=100").to_return(:status => 200, :body => '{"name": "Sven Fuchs"}')
9
- end
10
-
11
- it 'allows normal requests' do
12
- GH['users/rkh']['name'].should be == 'Konstantin Haase'
13
- end
14
-
15
- it 'sets in_parallel?' do
16
- GH.should_not be_in_parallel
17
- GH.in_parallel { GH.should be_in_parallel }
18
- GH.should_not be_in_parallel
19
- end
20
-
21
- it 'runs requests in parallel' do
22
- WebMock.allow_net_connect!
23
- GH::DefaultStack.replace GH::MockBackend, GH::Remote
24
- GH.current = nil
25
- GH.should_not be_in_parallel
26
-
27
- a = b = nil
28
- GH.in_parallel do
29
- GH.should be_in_parallel
30
-
31
- a = GH['users/rkh']
32
- b = GH['users/svenfuchs']
33
-
34
- expect { a['name'] }.to raise_error(RuntimeError)
35
- expect { b['name'] }.to raise_error(RuntimeError)
36
- end
37
-
38
- a['name'].should be == "Konstantin Haase"
39
- b['name'].should be == "Sven Fuchs"
40
-
41
- a.should respond_to('to_hash')
42
- b.should respond_to('to_hash')
43
-
44
- GH.should_not be_in_parallel
45
- end
46
-
47
- it 'runs requests right away if parallelize is set to false' do
48
- WebMock.allow_net_connect!
49
- GH::DefaultStack.replace GH::MockBackend, GH::Remote
50
- GH.with :parallelize => false do
51
- GH.should_not be_in_parallel
52
-
53
- a = b = nil
54
- GH.in_parallel do
55
- GH.should_not be_in_parallel
56
-
57
- a = GH['users/rkh']
58
- b = GH['users/svenfuchs']
59
-
60
- a['name'].should be == "Konstantin Haase"
61
- b['name'].should be == "Sven Fuchs"
62
- end
63
-
64
- a['name'].should be == "Konstantin Haase"
65
- b['name'].should be == "Sven Fuchs"
66
-
67
- GH.should_not be_in_parallel
68
- end
69
- end
70
-
71
- it 'works with pagination' do
72
- pending "no idea why test doesn't work"
73
- WebMock.allow_net_connect!
74
- GH::DefaultStack.replace GH::MockBackend, GH::Remote
75
- repos = GH.in_parallel { GH['users/rkh/repos'] }
76
- counter = repos.to_a.map { 1 }.reduce(:+)
77
- counter.should be > 120
78
- end
79
-
80
- it 'returns the block value' do
81
- GH.in_parallel { 42 }.should be == 42
82
- end
83
-
84
- it 'works two times in a row' do
85
- pending "no idea why test doesn't work"
86
- WebMock.allow_net_connect!
87
- GH::DefaultStack.replace GH::MockBackend, GH::Remote
88
-
89
- a = GH.in_parallel { GH['users/rkh'] }
90
- b = GH.in_parallel { GH['users/svenfuchs'] }
91
-
92
- a['name'].should be == "Konstantin Haase"
93
- b['name'].should be == "Sven Fuchs"
94
- end
95
- end
@@ -1,3 +0,0 @@
1
- ---
2
- - {}
3
- - ! '{}'
@@ -1,15 +0,0 @@
1
- ---
2
- - !ruby/hash:Faraday::Utils::Headers
3
- server: nginx/1.0.13
4
- date: Wed, 11 Jul 2012 14:16:22 GMT
5
- content-type: application/json; charset=utf-8
6
- connection: keep-alive
7
- status: 200 OK
8
- content-length: '5034'
9
- etag: ! '"f1995234d40164517a11f6060c87dc37"'
10
- last-modified: Wed, 11 Jul 2012 13:50:53 GMT
11
- cache-control: public, max-age=60
12
- x-ratelimit-limit: '5000'
13
- vary: Accept
14
- x-ratelimit-remaining: '4989'
15
- - ! '{"type":"file","path":"README.md","encoding":"base64","content":"IyBHSCAtIExheWVyZWQgR2l0SHViIEFQSSBjbGllbnQKClRoaXMgaXMgYSBo\naWdobHkgZmxleGlibGUsIGxheWVyZWQsIGxvdy1sZXZlbCBHaXRIdWIgY2xp\nZW50IGxpYnJhcnksIHRyeWluZyB0byBnZXQgb3V0IG9mIHlvdXIgd2F5IGFu\nZCBsZXQgeW91IGdldCB0byB0aGUgR2l0SHViIGRhdGEgYXMgc2ltcGxlIGFz\nIHBvc3NpYmxlLiBVbmxlc3MgeW91IGFkZCBsYXllcnMsIHlvdSB3aWxsIGVu\nZCB1cCB3aXRoIEhhc2hlcyBhbmQgQXJyYXlzLiBUaGUgYXBwcm9hY2ggYW5k\nIEFQSSBzaG91bGQgYmUgZmFtaWxpYXIgZnJvbSBwcm9qZWN0cyBsaWtlIFJh\nY2sgb3IgRmFyYWRheS4KClNpbXBsZSBleGFtcGxlOgoKYGBgIHJ1YnkKcmVx\ndWlyZSAnZ2gnCnB1dHMgR0hbJ3VzZXJzL3JraCddWyduYW1lJ10KYGBgCgpU\naGlzIHdpbGwgYnkgZGVmYXVsdCB1c2UgYWxsIHRoZSBtaWRkbGV3YXJlIHRo\nYXQgc2hpcHMgd2l0aCBHSCwgaW4gdGhlIGZvbGxvd2luZyBvcmRlcjoKCiog\nYEdIOjpSZW1vdGVgIC0gc2VuZHMgSFRUUCByZXF1ZXN0cyB0byBHaXRIdWIg\nYW5kIHBhcnNlcyB0aGUgcmVzcG9uc2UKKiBgR0g6Ok5vcm1hbGl6ZXJgIC0g\ncmVuYW1lcyBmaWVsZHMgY29uc2lzdGVubHksIGFkZHMgaHlwZXJtZWRpYSBs\naW5rcyBpZiBwb3NzaWJsZQoqIGBHSDo6TGF6eUxvYWRlcmAgLSB3aWxsIGxv\nYWQgbWlzc2luZyBmaWVsZHMgd2hlbiBhY2Nlc3NlZCAoaGFuZHkgZm9yIGRl\nYWxpbmcgd2l0aCBpbmNvbXBsZXRlIGRhdGEgd2l0aG91dCBzZW5kaW5nIHRv\nIG1hbnkgcmVxdWVzdHMpCiogYEdIOjpNZXJnZUNvbW1pdGAgLSBhZGRzIGlu\nZm9zIGFib3V0IG1lcmdlIGNvbW1pdHMgdG8gcHVsbCByZXF1ZXN0IHBheWxv\nYWRzCiogYEdIOjpMaW5rRm9sbG93ZXJgIC0gd2lsbCBhZGQgY29udGVudCBv\nZiBoeXBlcm1lZGlhIGxpbmtzIGFzIGZpZWxkcyAobGF6eWx5KSwgYWxsb3dz\nIHlvdSB0byB0cmF2ZXJzZSByZWxhdGlvbnMKKiBgR0g6OlBhZ2luYXRpb25g\nIC0gYWRkcyBzdXBwb3J0IGZvciB0cmFuc3BhcmVudCBwYWdpbmF0aW9uCiog\nYEdIOjpJbnN0cnVtZW50YXRpb25gIC0gbGV0J3MgeW91IGluc3RydW1lbnQg\nYGdoYAoKVGhlIGZvbGxvd2luZyBtaWRkbGV3YXJlIGlzIG5vdCBpbmNsdWRl\nZCBieSBkZWZhdWx0OgoKKiBgR0g6OkNhY2hlYCAtIGNhY2hlcyB0aGUgcmVz\ncG9uc2VzICh3aWxsIHVzZSBSYWlscyBjYWNoZSBpZiBpbiBSYWlscywgaW4t\nbWVtb3J5IGNhY2hlIG90aGVyd2lzZSkKCiMjIE1haW4gRW50cnkgUG9pbnRz\nCgpFdmVyeSBsYXllciBoYXMgdHdvIG1haW4gZW50cnkgcG9pbnRzOgoKKiBg\nW2tleV1gIC0gbG9hZHMgZGF0YSBmcm9tIEdpdEh1YgoqIGBsb2FkKGRhdGEp\nYCAtIHRha2VzIGRhdGEgYW5kIGFwcGxpZXMgbW9kaWZpY2F0aW9ucyAoaGFu\nZHkgZm9yIGRlYWxpbmcgd2l0aCBzZXJ2aWNlIGhvb2sgcGF5bG9hZHMpCgpU\naGVzZSB0d28gbWV0aG9kcyBhcmUgZXhwb3NlZCBieSBhbnkgaW5zdGFuY2Ug\nb2YgYSBsYXllciBhbmQgdGhlIGBHSGAgY29uc3RhbnQuCgojIyBVc2luZyBh\nIFNpbmdsZSBMYXllcgoKWW91IGNhbiBpbml0aWFsaXplIGFuZCB1c2UgYW55\nIGxheWVyIG9uIGl0cyBvd246CgpgYGAgcnVieQpnaCA9IEdIOjpSZW1vdGUu\nbmV3CnB1dHMgZ2hbJ3VzZXJzL3JraCddWyduYW1lJ10KYGBgCgpMYXllcnMg\na25vdyB3aGljaCBvdGhlciBsYXllciB0aGV5IHNob3VsZCB1c3VhbGx5IHdy\nYXAgKGBSZW1vdGVgIHdyYXBzIG5vIG90aGVyIGxheWVyLCBgTGF6eUxvYWRl\ncmAgYW5kIGBMaW5rRm9sbG93ZXJgIHdyYXAgYE5vcm1hbGl6ZXJgIGJ5IGRl\nZmF1bHQsIGFueXRoaW5nIGVsc2Ugd3JhcHMgYFJlbW90ZWApLCBzbyB5b3Ug\nY2FuIGluaXRpYWxpemUgdGhlbSByaWdodCBhd2F5OgoKYGBgIHJ1YnkKZ2gg\nPSBHSDo6TGF6eUxvYWRlci5uZXcKYGBgCgpZb3UgY2FuIGFsc28gcGFzcyB0\naGUgbGF5ZXIgdGhhdCBzaG91bGQgYmUgd3JhcHBlZCBhcyBhbiBhcmd1bWVu\ndDoKCmBgYCBydWJ5CmdoID0gR0g6OkxhenlMb2FkZXIubmV3KEdIOjpMaW5r\nRm9sbG93ZXIubmV3KQpgYGAKCiMjIENyZWF0aW5nIFlvdXIgT3duIFN0YWNr\nCgpGb3IgY29udmluaWVuY2UgYSBzdGFjayBEU0wgaXMgcHJvdmlkZWQ6Cgpg\nYGAgcnVieQojIFNhbWUgYXMgR0g6Ok5vcm1hbGl6ZXIubmV3KEdIOjpDYWNo\nZS5uZXcpCmdoID0gR0g6OlN0YWNrLmJ1aWxkIGRvCiAgdXNlIEdIOjpOb3Jt\nYWxpemVyCiAgdXNlIEdIOjpDYWNoZQplbmQKCnB1dHMgZ2hbJ3VzZXJzL3Jr\naCddWyduYW1lJ10KYGBgCgpZb3UgY2FuIGFsc28gY3JlYXRlIHJldXNhYmxl\nIGBTdGFja2AgaW5zdGFuY2VzOgoKYGBgIHJ1YnkKc3RhY2sgPSBHSDo6U3Rh\nY2submV3IGRvCiAgdXNlIEdIOjpOb3JtYWxpemVyCiAgdXNlIEdIOjpDYWNo\nZQplbmQKCmdoID0gc3RhY2suYnVpbGQgdXNlcm5hbWU6ICdya2gnLCBwYXNz\nd29yZDogJ2FiYzEyMycKcHV0cyBnaFsndXNlciddWyduYW1lJ10KYGBgCgpP\nbmUgc3VjaCBpbnN0YW5jZSAod2l0aCB0aGUgc3RhbmRhcmQgc2V0dXApIGNh\nbiBiZSBhY2Nlc3NlZCBhcyBgR0g6OkRlZmF1bHRTdGFja2AKCiMjIFNjb3Bp\nbmcKCldpdGggdGhlIG1haW4gZ29hbCB0byBzZXBhcmF0ZSBhdXRoZW50aWNh\ndGlvbiBmcm9tIG90aGVyIGxvZ2ljLCB0aGUgYGdoYCBsaWJyYXJ5IHN1cHBv\ncnRzIHNjb3B0aW5nOgoKYGBgIHJ1YnkKR0gud2l0aCBHSDo6TGF6eUxvYWRl\nci5uZXcgZG8KICBwdXRzIEdIWyd1c2Vycy9ya2gnXVsnbmFtZSddCmVuZApg\nYGAKClRoYXQgd2F5LCB5b3UgY291bGQgY3JlYXRlIGEgc3RhY2sgd2l0aCwg\nZm9yIGluc3RhbmNlLCBhbiBbYWNjZXNzIHRva2VuXShodHRwOi8vZGV2ZWxv\ncGVyLmdpdGh1Yi5jb20vdjMvb2F1dGgvKToKCmBgYCBydWJ5CmF1dGhlbnRp\nY2F0ZWQgPSBHSDo6RGVmYXVsdFN0YWNrLmJ1aWxkIHRva2VuOiAnZTcyZTE2\nYzdlNDJmMjkyYzY5MTJlNzcxMGM4MzgzNDdhZTE3OGI0YScKCkdILndpdGgo\nYXV0aGVudGljYXRlZCkgZG8KICAjIC4uLgplbmQKYGBgCgpTaW5jZSB0aGlz\nIGlzIHJhdGhlciBjb21tb24sIHlvdSBjYW4gcGFzcyBvcHRpb25zIGRpcmVj\ndGx5IHRvIGB3aXRoYDoKCmBgYCBydWJ5CkdILndpdGgodXNlcm5hbWU6ICdy\na2gnLCBwYXNzd29yZDogJ2FiYzEyMycpIGRvCiAgIyAuLi4KZW5kCmBgYAoK\nU2NvcGluZyBpcyB0aHJlYWQtc2FmZS4KCiMjIElzIHRoaXMgcHJvZHVjdGlv\nbiByZWFkeT8KCkkgaG9wZSBzbywgd2UgdXNlIGl0IGluIHByb2R1Y3Rpb24g\nZm9yIFtUcmF2aXMgQ0ldKGh0dHA6Ly90cmF2aXMtY2kub3JnLykuIFRoZSB3\nb3JrIG9uIHRoaXMgbGlicmFyeSBoYXMgYmVlbiBmdW5kZWQgYnkgdGhlIFtU\ncmF2aXMgTG92ZSBDYW1wYWlnbl0oaHR0cHM6Ly9sb3ZlLnRyYXZpcy1jaS5v\ncmcvKS4K\n","sha":"ae66f100edf2c63b0ce4b4b0952363e9df5e43f4","size":3381,"_links":{"self":"https://api.github.com/repos/rkh/gh/contents/README.md","git":"https://api.github.com/repos/rkh/gh/git/blobs/ae66f100edf2c63b0ce4b4b0952363e9df5e43f4","html":"https://github.com/rkh/gh/blob/master/README.md"},"name":"README.md"}'
@@ -1,23 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- RnJpLCAxMyBBcHIgMjAxMiAxNDowNjo1OSBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- ImFjM2FmYzYzZWEyMDlkMzYxOWFhNDM3NDU3NTA1OWQ4Ig==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk4OA==
20
- - ! '{"pushed_at":"2012-04-13T11:02:59Z","homepage":"http://travis-ci.org","svn_url":"https://github.com/rkh/test-project-1","source":{"pushed_at":"2012-04-11T15:50:22Z","homepage":"http://travis-ci.org","svn_url":"https://github.com/travis-repos/test-project-1","has_issues":false,"updated_at":"2012-04-11T15:50:22Z","forks":6,"has_downloads":true,"ssh_url":"git@github.com:travis-repos/test-project-1.git","git_url":"git://github.com/travis-repos/test-project-1.git","language":"Ruby","clone_url":"https://github.com/travis-repos/test-project-1.git","fork":false,"mirror_url":null,"created_at":"2011-04-14T18:23:41Z","url":"https://api.github.com/repos/travis-repos/test-project-1","has_wiki":false,"size":140,"private":false,"description":"Test
21
- dummy repository for testing Travis CI","owner":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","url":"https://api.github.com/users/travis-repos","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":864347,"login":"travis-repos"},"name":"test-project-1","watchers":8,"html_url":"https://github.com/travis-repos/test-project-1","id":1615549,"open_issues":3},"has_issues":false,"updated_at":"2012-04-13T11:02:59Z","forks":0,"has_downloads":true,"ssh_url":"git@github.com:rkh/test-project-1.git","git_url":"git://github.com/rkh/test-project-1.git","parent":{"pushed_at":"2012-04-11T15:50:22Z","homepage":"http://travis-ci.org","svn_url":"https://github.com/travis-repos/test-project-1","has_issues":false,"updated_at":"2012-04-11T15:50:22Z","forks":6,"has_downloads":true,"ssh_url":"git@github.com:travis-repos/test-project-1.git","git_url":"git://github.com/travis-repos/test-project-1.git","language":"Ruby","clone_url":"https://github.com/travis-repos/test-project-1.git","fork":false,"mirror_url":null,"created_at":"2011-04-14T18:23:41Z","url":"https://api.github.com/repos/travis-repos/test-project-1","has_wiki":false,"size":140,"private":false,"description":"Test
22
- dummy repository for testing Travis CI","owner":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","url":"https://api.github.com/users/travis-repos","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":864347,"login":"travis-repos"},"name":"test-project-1","watchers":8,"html_url":"https://github.com/travis-repos/test-project-1","id":1615549,"open_issues":3},"language":"Ruby","clone_url":"https://github.com/rkh/test-project-1.git","fork":true,"mirror_url":null,"created_at":"2012-02-13T15:17:57Z","url":"https://api.github.com/repos/rkh/test-project-1","has_wiki":true,"size":116,"private":false,"description":"Test
23
- dummy repository for testing Travis CI","owner":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","url":"https://api.github.com/users/rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":30442,"login":"rkh"},"name":"test-project-1","watchers":1,"html_url":"https://github.com/rkh/test-project-1","id":3431064,"open_issues":0}'
@@ -1,36 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- VHVlLCAxMCBBcHIgMjAxMiAxMTo1MzoxMiBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- ImI5MDUzNGQ0Zjk3YTU0OGEwNTY1NWIyODg4OGM4YTZhIg==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk5Mw==
20
- - ! '[{"created_at":"2010-09-01T15:42:44Z","body":"This all looks good to me. Anyone
21
- run the unit tests under 1.8.6, 1.8.7, 1.9.2?","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383214","updated_at":"2010-09-01T15:42:44Z","user":{"gravatar_id":"abfc88b96ae18c85ba7aac3bded2ec5e","url":"https://api.github.com/users/rtomayko","login":"rtomayko","avatar_url":"https://secure.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":404},"id":383214},{"created_at":"2010-09-01T15:48:46Z","body":"Yep,
22
- all pass. Even on JRuby 1.5.2. But on 1.9.2 they have to be run manually (see #52),
23
- at least on my box. Same goes for current master, however.","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383231","updated_at":"2010-09-01T16:00:16Z","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":30442},"id":383231},{"created_at":"2010-09-01T16:16:08Z","body":"Hi,
24
- why would you want to keep a version of Tilt bundled on Sinatra when Sinatra can
25
- include Tilt as a dependency?","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383302","updated_at":"2010-09-01T16:16:08Z","user":{"gravatar_id":"9d0d8afbcf75a57c86e41ba0fc6f8a98","url":"https://api.github.com/users/mr-rock","login":"mr-rock","avatar_url":"https://secure.gravatar.com/avatar/9d0d8afbcf75a57c86e41ba0fc6f8a98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":23641},"id":383302},{"created_at":"2010-09-01T16:18:24Z","body":"Yeah.
26
- I think the last time blake and I discussed tilt bundling, we decided to *not* bundle
27
- it and just make it a dependency.","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383307","updated_at":"2010-09-01T16:18:24Z","user":{"gravatar_id":"abfc88b96ae18c85ba7aac3bded2ec5e","url":"https://api.github.com/users/rtomayko","login":"rtomayko","avatar_url":"https://secure.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":404},"id":383307},{"created_at":"2010-09-01T16:21:54Z","body":"Lots
28
- of goodies in here, particularly added support for scss views.","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383320","updated_at":"2010-09-01T16:21:54Z","user":{"gravatar_id":"7fe945668a4fc098e886e20dea71d2ee","url":"https://api.github.com/users/zzak","login":"zzak","avatar_url":"https://secure.gravatar.com/avatar/7fe945668a4fc098e886e20dea71d2ee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":277819},"id":383320},{"created_at":"2010-09-01T16:27:24Z","body":"@RTomayko:
29
- I don''t see the point to repeat code that is going to be obsolete in some time
30
- anyway. I already made a pull request in which Tilt is removed from Sinatra and
31
- Tilt is a dependency of the gem. I tested it in Ruby 1.9.1 and it seems to work.","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383334","updated_at":"2010-09-01T20:46:27Z","user":{"gravatar_id":"9d0d8afbcf75a57c86e41ba0fc6f8a98","url":"https://api.github.com/users/mr-rock","login":"mr-rock","avatar_url":"https://secure.gravatar.com/avatar/9d0d8afbcf75a57c86e41ba0fc6f8a98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":23641},"id":383334},{"created_at":"2010-09-02T05:20:52Z","body":"@RTomayko:
32
- Before Tilt is unbundled, could you please do another Tilt release? I think the
33
- ScssTemplate hasn''t made it into 1.0.1.","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/384475","updated_at":"2010-09-02T05:20:52Z","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":30442},"id":384475},{"created_at":"2010-09-02T05:35:17Z","body":"Scss
34
- support was added after 1.0.1: http://github.com/rtomayko/tilt/commit/d6e8795c619970d0cfdbf4aead0869c592c44fe6","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/384487","updated_at":"2010-09-02T05:35:17Z","user":{"gravatar_id":"7fe945668a4fc098e886e20dea71d2ee","url":"https://api.github.com/users/zzak","login":"zzak","avatar_url":"https://secure.gravatar.com/avatar/7fe945668a4fc098e886e20dea71d2ee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":277819},"id":384487},{"created_at":"2010-09-07T05:35:18Z","body":"You
35
- can now do `rake spec` on 1.9.2p0, too. (And it passes, of course.)","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/392094","updated_at":"2010-09-07T05:35:39Z","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":30442},"id":392094},{"created_at":"2010-09-19T21:21:50Z","body":"How
36
- do you feel about including #62 and #63, maybe even #58?","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/416490","updated_at":"2010-09-19T21:21:50Z","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":30442},"id":416490}]'
@@ -1,21 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- VHVlLCAxMCBBcHIgMjAxMiAxMTo1MzoyNyBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- ImJhOWJlN2ViNTlmZjBkZDZhNWFhYTU3MzM0ODE5ZjI5Ig==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk5Mg==
20
- - ! '{"created_at":"2010-09-01T15:42:44Z","body":"This all looks good to me. Anyone
21
- run the unit tests under 1.8.6, 1.8.7, 1.9.2?","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/383214","updated_at":"2010-09-01T15:42:44Z","user":{"gravatar_id":"abfc88b96ae18c85ba7aac3bded2ec5e","avatar_url":"https://secure.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rtomayko","login":"rtomayko","id":404},"id":383214}'
@@ -1,23 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- VHVlLCAxMCBBcHIgMjAxMiAxMTo1MzoxMSBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- Ijg2ODgwMDdjMWIwMWZiZmM3OTY2NGE1OWJiMjc2MjVlIg==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk5NA==
20
- - ! '{"merged":true,"created_at":"2010-09-01T11:33:50Z","review_comments":0,"number":56,"additions":2956,"head":{"repo":{"has_wiki":false,"created_at":"2009-12-03T10:42:35Z","description":"Classy
21
- web-development dressed in a DSL","open_issues":0,"git_url":"git://github.com/rkh/sinatra.git","watchers":10,"pushed_at":"2012-03-22T10:06:05Z","url":"https://api.github.com/repos/rkh/sinatra","mirror_url":null,"fork":true,"html_url":"https://github.com/rkh/sinatra","homepage":"http://sinatra.github.com","svn_url":"https://github.com/rkh/sinatra","has_downloads":false,"size":160,"private":false,"updated_at":"2012-03-22T10:06:06Z","master_branch":"master","has_issues":false,"owner":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","login":"rkh","id":30442},"name":"sinatra","forks":3,"language":"Ruby","clone_url":"https://github.com/rkh/sinatra.git","ssh_url":"git@github.com:rkh/sinatra.git","id":393951},"ref":"1.1","sha":"69791f71285c84e217efc061eee15ef32ffca515","label":"rkh:1.1","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","login":"rkh","id":30442}},"merged_at":"2010-09-25T19:43:05Z","body":"Patches
22
- prepared for 1.1 release. See also http://github.com/sinatra/sinatra/issues/issue/55","diff_url":"https://github.com/sinatra/sinatra/pull/56.diff","commits":81,"url":"https://api.github.com/repos/sinatra/sinatra/pulls/56","deletions":1065,"html_url":"https://github.com/sinatra/sinatra/pull/56","patch_url":"https://github.com/sinatra/sinatra/pull/56.patch","comments":10,"base":{"repo":{"has_wiki":false,"created_at":"2009-01-14T01:27:30Z","description":"Classy
23
- web-development dressed in a DSL (official / canonical repo)","open_issues":12,"git_url":"git://github.com/sinatra/sinatra.git","watchers":3442,"pushed_at":"2012-04-02T13:58:27Z","url":"https://api.github.com/repos/sinatra/sinatra","mirror_url":null,"fork":true,"html_url":"https://github.com/sinatra/sinatra","homepage":"http://www.sinatrarb.com/","svn_url":"https://github.com/sinatra/sinatra","has_downloads":true,"size":460,"private":false,"updated_at":"2012-04-10T10:05:43Z","has_issues":true,"owner":{"gravatar_id":"22be51f9cf3849462ffc4107675ec182","avatar_url":"https://secure.gravatar.com/avatar/22be51f9cf3849462ffc4107675ec182?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/sinatra","login":"sinatra","id":8312},"name":"sinatra","forks":431,"language":"Ruby","clone_url":"https://github.com/sinatra/sinatra.git","ssh_url":"git@github.com:sinatra/sinatra.git","id":106995},"ref":"master","sha":"1187a866346e82c98b8ad545b8f155632f7d9283","label":"sinatra:master","user":{"gravatar_id":"22be51f9cf3849462ffc4107675ec182","avatar_url":"https://secure.gravatar.com/avatar/22be51f9cf3849462ffc4107675ec182?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/sinatra","login":"sinatra","id":8312}},"updated_at":"2010-09-25T19:43:06Z","state":"closed","mergeable":null,"_links":{"review_comments":{"href":"https://api.github.com/repos/sinatra/sinatra/pulls/56/comments"},"html":{"href":"https://github.com/sinatra/sinatra/pull/56"},"comments":{"href":"https://api.github.com/repos/sinatra/sinatra/issues/56/comments"},"self":{"href":"https://api.github.com/repos/sinatra/sinatra/pulls/56"}},"user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","login":"rkh","id":30442},"id":632,"merged_by":null,"changed_files":41,"closed_at":"2010-09-25T19:43:05Z","title":"1.1","issue_url":"https://github.com/sinatra/sinatra/issues/56"}'
@@ -1,21 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- RnJpLCAxMyBBcHIgMjAxMiAxNDowNjo1OSBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- IjczYzFhNzljMGI5MGJkYTFiNGMxOTY5ZDdhNzVmMzc3Ig==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk4OQ==
20
- - ! '{"pushed_at":"2012-04-11T15:50:22Z","homepage":"http://travis-ci.org","svn_url":"https://github.com/travis-repos/test-project-1","has_issues":false,"updated_at":"2012-04-11T15:50:22Z","forks":6,"has_downloads":true,"ssh_url":"git@github.com:travis-repos/test-project-1.git","git_url":"git://github.com/travis-repos/test-project-1.git","language":"Ruby","clone_url":"https://github.com/travis-repos/test-project-1.git","organization":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","url":"https://api.github.com/users/travis-repos","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":864347,"login":"travis-repos"},"fork":false,"mirror_url":null,"created_at":"2011-04-14T18:23:41Z","url":"https://api.github.com/repos/travis-repos/test-project-1","has_wiki":false,"size":140,"private":false,"description":"Test
21
- dummy repository for testing Travis CI","owner":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","url":"https://api.github.com/users/travis-repos","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":864347,"login":"travis-repos"},"name":"test-project-1","watchers":8,"html_url":"https://github.com/travis-repos/test-project-1","id":1615549,"open_issues":3}'
@@ -1,23 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- TW9uLCAxNiBBcHIgMjAxMiAxMzowNjoyOCBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "ZXRhZw==": !binary |-
15
- ImQ3ODI2ZWE2Y2RkMTg3NDQxOTJhYzFlNjJlNTlkMjdkIg==
16
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
17
- NTAwMA==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk5Nw==
20
- - ! '{"parents":[{"url":"https://api.github.com/repos/travis-repos/test-project-1/git/commits/ee644876520685ea3ce144bc8449c1155cee56b4","sha":"ee644876520685ea3ce144bc8449c1155cee56b4"},{"url":"https://api.github.com/repos/travis-repos/test-project-1/git/commits/01eae10530ca65b51474b2d950365967ebdf3023","sha":"01eae10530ca65b51474b2d950365967ebdf3023"}],"url":"https://api.github.com/repos/travis-repos/test-project-1/git/commits/ca3c0a44ec1d9bf8557d2653aa1b79fcc9ff5f5d","sha":"ca3c0a44ec1d9bf8557d2653aa1b79fcc9ff5f5d","message":"Merge
21
- 01eae10530ca65b51474b2d950365967ebdf3023 into ee644876520685ea3ce144bc8449c1155cee56b4\n","author":{"date":"2012-04-13T06:35:25-07:00","name":"GitHub
22
- Merge Button","email":"merge-button@github.com"},"committer":{"date":"2012-04-13T06:35:25-07:00","name":"GitHub
23
- Merge Button","email":"merge-button@github.com"},"tree":{"url":"https://api.github.com/repos/travis-repos/test-project-1/git/trees/2a21cfc2f647885fcebc1d65f0f29932ef131f4f","sha":"2a21cfc2f647885fcebc1d65f0f29932ef131f4f"}}'
@@ -1,20 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- RnJpLCAxMyBBcHIgMjAxMiAxNDoyMDo1OCBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- ImY4OTFjOGE4Y2FmYmY3ZTUzMTNhMThiN2M1NDY2MTE4Ig==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk4Ng==
20
- - ! '[{"object":{"type":"commit","sha":"01eae10530ca65b51474b2d950365967ebdf3023","url":"https://api.github.com/repos/travis-repos/test-project-1/git/commits/01eae10530ca65b51474b2d950365967ebdf3023"},"url":"https://api.github.com/repos/travis-repos/test-project-1/git/refs/pull/1/head","ref":"refs/pull/1/head"},{"object":{"type":"commit","sha":"ca3c0a44ec1d9bf8557d2653aa1b79fcc9ff5f5d","url":"https://api.github.com/repos/travis-repos/test-project-1/git/commits/ca3c0a44ec1d9bf8557d2653aa1b79fcc9ff5f5d"},"url":"https://api.github.com/repos/travis-repos/test-project-1/git/refs/pull/1/merge","ref":"refs/pull/1/merge"}]'
@@ -1,24 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- RnJpLCAxMyBBcHIgMjAxMiAxNDoxOToxMSBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- IjdmYzRhYTU2Y2ExZTk1ZWY4MjY4NWY0MDA1Y2U5OTJmIg==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk4Nw==
20
- - ! '{"deletions":3,"issue_url":"https://github.com/travis-repos/test-project-1/issues/1","merged_by":null,"comments":0,"updated_at":"2012-04-13T13:35:24Z","state":"open","_links":{"comments":{"href":"https://api.github.com/repos/travis-repos/test-project-1/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/travis-repos/test-project-1/pulls/1/comments"},"self":{"href":"https://api.github.com/repos/travis-repos/test-project-1/pulls/1"},"html":{"href":"https://github.com/travis-repos/test-project-1/pull/1"}},"diff_url":"https://github.com/travis-repos/test-project-1/pull/1.diff","changed_files":2,"merged_at":null,"user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","id":30442,"login":"rkh"},"commits":3,"title":"PLEASE
21
- DO NOT TOUCH THIS PULL REQUEST","merged":false,"closed_at":null,"created_at":"2012-02-14T14:00:48Z","url":"https://api.github.com/repos/travis-repos/test-project-1/pulls/1","base":{"repo":{"homepage":"http://travis-ci.org","has_wiki":false,"has_issues":false,"updated_at":"2012-04-11T15:50:22Z","forks":6,"svn_url":"https://github.com/travis-repos/test-project-1","ssh_url":"git@github.com:travis-repos/test-project-1.git","language":"Ruby","open_issues":3,"fork":false,"clone_url":"https://github.com/travis-repos/test-project-1.git","git_url":"git://github.com/travis-repos/test-project-1.git","pushed_at":"2012-04-11T15:50:22Z","created_at":"2011-04-14T18:23:41Z","url":"https://api.github.com/repos/travis-repos/test-project-1","size":140,"private":false,"mirror_url":null,"description":"Test
22
- dummy repository for testing Travis CI","owner":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/travis-repos","id":864347,"login":"travis-repos"},"name":"test-project-1","has_downloads":true,"watchers":8,"html_url":"https://github.com/travis-repos/test-project-1","id":1615549},"sha":"4a90c0ad9187c8735e1bcbf39a0291a21284994a","label":"travis-repos:master","user":{"gravatar_id":"dad32d44d4850d2bc9485ee115ab4227","avatar_url":"https://secure.gravatar.com/avatar/dad32d44d4850d2bc9485ee115ab4227?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/travis-repos","id":864347,"login":"travis-repos"},"ref":"master"},"number":1,"patch_url":"https://github.com/travis-repos/test-project-1/pull/1.patch","review_comments":0,"head":{"repo":{"homepage":"http://travis-ci.org","has_wiki":true,"has_issues":false,"updated_at":"2012-04-13T11:02:59Z","forks":0,"svn_url":"https://github.com/rkh/test-project-1","ssh_url":"git@github.com:rkh/test-project-1.git","language":"Ruby","open_issues":0,"fork":true,"clone_url":"https://github.com/rkh/test-project-1.git","git_url":"git://github.com/rkh/test-project-1.git","pushed_at":"2012-04-13T11:02:59Z","created_at":"2012-02-13T15:17:57Z","url":"https://api.github.com/repos/rkh/test-project-1","size":116,"private":false,"mirror_url":null,"description":"Test
23
- dummy repository for testing Travis CI","owner":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","id":30442,"login":"rkh"},"name":"test-project-1","has_downloads":true,"watchers":1,"html_url":"https://github.com/rkh/test-project-1","id":3431064},"sha":"01eae10530ca65b51474b2d950365967ebdf3023","label":"rkh:master","user":{"gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rkh","id":30442,"login":"rkh"},"ref":"master"},"body":"please
24
- do not touch. we are using this pull request to generate fixtures for tests\r\n\r\nkthxbai","html_url":"https://github.com/travis-repos/test-project-1/pull/1","id":826379,"mergeable":true,"additions":3}'
@@ -1,22 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEy
4
- !binary "ZGF0ZQ==": !binary |-
5
- VHVlLCAwNiBNYXIgMjAxMiAxNjo1MTozNyBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- IjMzYjg0NTM3MTBjZjQ2OWQ1MGE5ZjJhNWM3MWM1YmU1Ig==
18
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
19
- NDk5NQ==
20
- - ! '{"type":"User","following":485,"login":"rkh","public_repos":117,"public_gists":219,"html_url":"https://github.com/rkh","blog":"http://rkh.im","hireable":false,"bio":"","location":"Potsdam,
21
- Berlin, Portland","company":"Travis CI","followers":401,"url":"https://api.github.com/users/rkh","created_at":"2008-10-22T18:56:03Z","name":"Konstantin
22
- Haase","email":"k.haase@finn.de","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"}'
@@ -1,52 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- RnJpLCAxOCBNYXkgMjAxMiAxMzoyMzoxNiBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- IjViMjFjOWRhMDQ0ZTdkN2VhYzI1Y2EwMmI5M2JhOWUzIg==
18
- !binary "bGluaw==": !binary |-
19
- PGh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvcmtoL3JlcG9zP3BhZ2U9
20
- Mj47IHJlbD0ibmV4dCIsIDxodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJz
21
- L3JraC9yZXBvcz9wYWdlPTU+OyByZWw9Imxhc3Qi
22
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
23
- NDk5OQ==
24
- - ! '[{"language":"Ruby","description":"Fast ruby client library for using MediaWiki''s
25
- API.","svn_url":"https://github.com/rkh/mw_api","created_at":"2008-10-22T19:01:17Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/mw_api.git","url":"https://api.github.com/repos/rkh/mw_api","fork":false,"clone_url":"https://github.com/rkh/mw_api.git","updated_at":"2011-10-03T23:23:23Z","open_issues":0,"homepage":"","mirror_url":null,"size":800,"private":false,"pushed_at":"2009-02-18T19:16:12Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"mw_api","ssh_url":"git@github.com:rkh/mw_api.git","html_url":"https://github.com/rkh/mw_api","id":66415,"has_downloads":true,"watchers":3},{"language":"C","description":"Some
26
- base libraries for writing a windowmanager in ruby.","svn_url":"https://github.com/rkh/ruby-xlib","created_at":"2008-10-22T20:21:18Z","has_wiki":true,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/ruby-xlib.git","url":"https://api.github.com/repos/rkh/ruby-xlib","fork":false,"clone_url":"https://github.com/rkh/ruby-xlib.git","updated_at":"2012-04-13T23:49:19Z","open_issues":0,"homepage":"","mirror_url":null,"size":1320,"private":false,"pushed_at":"2010-08-03T09:06:22Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"ruby-xlib","ssh_url":"git@github.com:rkh/ruby-xlib.git","html_url":"https://github.com/rkh/ruby-xlib","id":66450,"has_downloads":true,"watchers":8},{"language":"Ruby","description":"mixin
27
- hijinks — enable and disable mixins","svn_url":"https://github.com/rkh/mixico","created_at":"2008-12-30T13:09:19Z","has_wiki":false,"has_issues":true,"forks":7,"git_url":"git://github.com/rkh/mixico.git","url":"https://api.github.com/repos/rkh/mixico","fork":false,"clone_url":"https://github.com/rkh/mixico.git","updated_at":"2012-03-27T03:55:27Z","open_issues":1,"homepage":"http://rkh.github.com/mixico","mirror_url":null,"size":1304,"private":false,"pushed_at":"2010-11-01T11:23:31Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"mixico","ssh_url":"git@github.com:rkh/mixico.git","html_url":"https://github.com/rkh/mixico","id":98394,"has_downloads":false,"watchers":12},{"language":"JavaScript","description":"my
28
- dotfiles","svn_url":"https://github.com/rkh/dotfiles","created_at":"2008-12-30T15:18:22Z","has_wiki":true,"has_issues":true,"forks":8,"git_url":"git://github.com/rkh/dotfiles.git","url":"https://api.github.com/repos/rkh/dotfiles","fork":false,"clone_url":"https://github.com/rkh/dotfiles.git","updated_at":"2012-02-22T13:38:06Z","open_issues":1,"homepage":"","mirror_url":null,"size":136,"private":false,"pushed_at":"2012-02-22T13:38:05Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"dotfiles","ssh_url":"git@github.com:rkh/dotfiles.git","html_url":"https://github.com/rkh/dotfiles","id":98427,"has_downloads":true,"watchers":14},{"language":"Ruby","description":"Synchronize
29
- a hash with a yaml file.","svn_url":"https://github.com/rkh/stored_hash","created_at":"2009-01-18T21:22:44Z","has_wiki":true,"has_issues":true,"forks":0,"git_url":"git://github.com/rkh/stored_hash.git","url":"https://api.github.com/repos/rkh/stored_hash","fork":false,"clone_url":"https://github.com/rkh/stored_hash.git","updated_at":"2011-10-03T23:33:37Z","open_issues":0,"homepage":"","mirror_url":null,"size":436,"private":false,"pushed_at":"2009-02-08T22:50:27Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"stored_hash","ssh_url":"git@github.com:rkh/stored_hash.git","html_url":"https://github.com/rkh/stored_hash","id":110030,"has_downloads":true,"watchers":3},{"language":"Shell","description":"papers
30
- for hpi","svn_url":"https://github.com/rkh/papers","created_at":"2009-02-11T16:21:23Z","has_wiki":true,"has_issues":true,"forks":2,"git_url":"git://github.com/rkh/papers.git","url":"https://api.github.com/repos/rkh/papers","fork":false,"clone_url":"https://github.com/rkh/papers.git","updated_at":"2011-10-03T23:37:23Z","open_issues":0,"homepage":"http://www.hpi.uni-potsdam.de/hirschfeld/","mirror_url":null,"size":7016,"private":false,"pushed_at":"2011-02-09T09:20:40Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"papers","ssh_url":"git@github.com:rkh/papers.git","html_url":"https://github.com/rkh/papers","id":126736,"has_downloads":true,"watchers":10},{"language":"Ruby","description":"never
31
- use alias_method_chain, again","svn_url":"https://github.com/rkh/chainable","created_at":"2009-03-19T20:19:16Z","has_wiki":false,"has_issues":true,"forks":0,"git_url":"git://github.com/rkh/chainable.git","url":"https://api.github.com/repos/rkh/chainable","fork":false,"clone_url":"https://github.com/rkh/chainable.git","updated_at":"2011-12-06T10:06:56Z","open_issues":0,"homepage":"","mirror_url":null,"size":1588,"private":false,"pushed_at":"2010-04-22T09:59:14Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"chainable","ssh_url":"git@github.com:rkh/chainable.git","html_url":"https://github.com/rkh/chainable","id":154533,"has_downloads":false,"watchers":14},{"language":"Java","description":"Scripting
32
- Languages on Hadoop: Jaql vs. Pig Latin (MapReduce stuff)","svn_url":"https://github.com/rkh/hadoop-scripting","created_at":"2009-05-19T12:19:37Z","has_wiki":true,"has_issues":true,"forks":4,"git_url":"git://github.com/rkh/hadoop-scripting.git","url":"https://api.github.com/repos/rkh/hadoop-scripting","fork":false,"clone_url":"https://github.com/rkh/hadoop-scripting.git","updated_at":"2012-04-07T19:55:22Z","open_issues":0,"homepage":"http://tinyurl.com/pig-jaql","mirror_url":null,"size":26624,"private":false,"pushed_at":"2009-09-01T14:45:46Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"hadoop-scripting","ssh_url":"git@github.com:rkh/hadoop-scripting.git","html_url":"https://github.com/rkh/hadoop-scripting","id":204758,"has_downloads":true,"watchers":11},{"language":null,"description":"Depraced,
33
- I switched to rvm.","svn_url":"https://github.com/rkh/ruby_installer","created_at":"2009-06-12T09:20:52Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/ruby_installer.git","url":"https://api.github.com/repos/rkh/ruby_installer","fork":false,"clone_url":"https://github.com/rkh/ruby_installer.git","updated_at":"2012-01-31T07:57:05Z","open_issues":0,"homepage":"","mirror_url":null,"size":516,"private":false,"pushed_at":"2009-09-22T12:39:41Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"ruby_installer","ssh_url":"git@github.com:rkh/ruby_installer.git","html_url":"https://github.com/rkh/ruby_installer","id":225260,"has_downloads":true,"watchers":6},{"language":"Ruby","description":"Yet
34
- Another Open Source GitHub Clone","svn_url":"https://github.com/rkh/bithug","created_at":"2009-06-24T11:45:36Z","has_wiki":false,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/bithug.git","url":"https://api.github.com/repos/rkh/bithug","fork":false,"clone_url":"https://github.com/rkh/bithug.git","updated_at":"2012-03-27T10:20:59Z","open_issues":0,"homepage":"http://www.hpi.uni-potsdam.de/studium/lehrangebot/veranstaltung/social_web_application_engineering.html","mirror_url":null,"size":132,"private":false,"pushed_at":"2011-09-07T15:05:17Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"bithug","ssh_url":"git@github.com:rkh/bithug.git","html_url":"https://github.com/rkh/bithug","id":235098,"has_downloads":false,"watchers":23},{"language":"Ruby","description":"Making
35
- ruby extension frameworks pluggable (extracted from BigBand).","svn_url":"https://github.com/rkh/monkey-lib","created_at":"2009-07-13T12:52:52Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/monkey-lib.git","url":"https://api.github.com/repos/rkh/monkey-lib","fork":false,"clone_url":"https://github.com/rkh/monkey-lib.git","updated_at":"2012-01-29T22:29:14Z","open_issues":0,"homepage":"","mirror_url":null,"size":124,"private":false,"pushed_at":"2011-08-31T20:01:19Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"monkey-lib","ssh_url":"git@github.com:rkh/monkey-lib.git","html_url":"https://github.com/rkh/monkey-lib","id":249946,"has_downloads":true,"watchers":9},{"language":"JavaScript","description":"Monk
36
- skeleton with compass and rspec.","svn_url":"https://github.com/rkh/gerippe","created_at":"2009-09-08T12:44:36Z","has_wiki":false,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/gerippe.git","url":"https://api.github.com/repos/rkh/gerippe","fork":false,"clone_url":"https://github.com/rkh/gerippe.git","updated_at":"2011-10-04T00:22:06Z","open_issues":0,"homepage":"","mirror_url":null,"size":2048,"private":false,"pushed_at":"2009-09-23T11:07:41Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"gerippe","ssh_url":"git@github.com:rkh/gerippe.git","html_url":"https://github.com/rkh/gerippe","id":300960,"has_downloads":false,"watchers":7},{"language":"Ruby","description":"Priest
37
- is a more advanced command line tool for your monk projects.","svn_url":"https://github.com/rkh/priest","created_at":"2009-09-14T17:17:03Z","has_wiki":false,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/priest.git","url":"https://api.github.com/repos/rkh/priest","fork":false,"clone_url":"https://github.com/rkh/priest.git","updated_at":"2011-10-04T00:23:30Z","open_issues":0,"homepage":"","mirror_url":null,"size":220,"private":false,"pushed_at":"2009-09-17T20:46:48Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"priest","ssh_url":"git@github.com:rkh/priest.git","html_url":"https://github.com/rkh/priest","id":306800,"has_downloads":false,"watchers":4},{"language":"Ruby","description":"Making
38
- Sinatra swing.","svn_url":"https://github.com/rkh/big_band","created_at":"2009-12-02T10:28:09Z","has_wiki":false,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/big_band.git","url":"https://api.github.com/repos/rkh/big_band","fork":false,"clone_url":"https://github.com/rkh/big_band.git","updated_at":"2012-04-04T14:38:09Z","open_issues":2,"homepage":"","mirror_url":null,"size":132,"private":false,"pushed_at":"2011-10-08T22:00:46Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"big_band","ssh_url":"git@github.com:rkh/big_band.git","html_url":"https://github.com/rkh/big_band","id":392638,"has_downloads":false,"watchers":76},{"master_branch":"master","language":"Ruby","description":"Classy
39
- web-development dressed in a DSL","svn_url":"https://github.com/rkh/sinatra","created_at":"2009-12-03T10:42:35Z","has_wiki":false,"has_issues":false,"forks":3,"git_url":"git://github.com/rkh/sinatra.git","url":"https://api.github.com/repos/rkh/sinatra","fork":true,"clone_url":"https://github.com/rkh/sinatra.git","updated_at":"2012-05-13T20:33:01Z","open_issues":0,"homepage":"http://sinatra.github.com","mirror_url":null,"size":200,"private":false,"pushed_at":"2012-05-13T20:33:00Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra","ssh_url":"git@github.com:rkh/sinatra.git","html_url":"https://github.com/rkh/sinatra","id":393951,"has_downloads":false,"watchers":10},{"language":"Ruby","description":"Some
40
- extensions to the sinatra default behavior (usefull for other Sintatra extensions,
41
- extracted from BigBand).","svn_url":"https://github.com/rkh/sinatra-sugar","created_at":"2010-02-12T14:57:21Z","has_wiki":true,"has_issues":true,"forks":2,"git_url":"git://github.com/rkh/sinatra-sugar.git","url":"https://api.github.com/repos/rkh/sinatra-sugar","fork":false,"clone_url":"https://github.com/rkh/sinatra-sugar.git","updated_at":"2012-02-22T07:13:52Z","open_issues":0,"homepage":"","mirror_url":null,"size":176,"private":false,"pushed_at":"2011-05-02T07:43:52Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-sugar","ssh_url":"git@github.com:rkh/sinatra-sugar.git","html_url":"https://github.com/rkh/sinatra-sugar","id":514975,"has_downloads":true,"watchers":9},{"language":"Ruby","description":"Make
42
- Sinatra routes first class objects (extracted from BigBand).","svn_url":"https://github.com/rkh/sinatra-advanced-routes","created_at":"2010-02-12T15:06:18Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/sinatra-advanced-routes.git","url":"https://api.github.com/repos/rkh/sinatra-advanced-routes","fork":false,"clone_url":"https://github.com/rkh/sinatra-advanced-routes.git","updated_at":"2012-03-29T21:17:41Z","open_issues":1,"homepage":"","mirror_url":null,"size":868,"private":false,"pushed_at":"2010-07-16T19:27:36Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-advanced-routes","ssh_url":"git@github.com:rkh/sinatra-advanced-routes.git","html_url":"https://github.com/rkh/sinatra-advanced-routes","id":514990,"has_downloads":true,"watchers":18},{"language":"Ruby","description":"Test
43
- helper for Sinatra (extracted from BigBand).","svn_url":"https://github.com/rkh/sinatra-test-helper","created_at":"2010-02-12T15:11:02Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/sinatra-test-helper.git","url":"https://api.github.com/repos/rkh/sinatra-test-helper","fork":false,"clone_url":"https://github.com/rkh/sinatra-test-helper.git","updated_at":"2012-03-21T19:36:34Z","open_issues":0,"homepage":"","mirror_url":null,"size":224,"private":false,"pushed_at":"2011-10-28T00:24:15Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-test-helper","ssh_url":"git@github.com:rkh/sinatra-test-helper.git","html_url":"https://github.com/rkh/sinatra-test-helper","id":515007,"has_downloads":true,"watchers":6},{"language":"Ruby","description":"Load
44
- Sinatra settings from a yaml file.","svn_url":"https://github.com/rkh/sinatra-config-file","created_at":"2010-02-12T15:20:58Z","has_wiki":true,"has_issues":true,"forks":4,"git_url":"git://github.com/rkh/sinatra-config-file.git","url":"https://api.github.com/repos/rkh/sinatra-config-file","fork":false,"clone_url":"https://github.com/rkh/sinatra-config-file.git","updated_at":"2012-03-21T19:37:04Z","open_issues":3,"homepage":"","mirror_url":null,"size":340,"private":false,"pushed_at":"2011-10-28T00:17:51Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-config-file","ssh_url":"git@github.com:rkh/sinatra-config-file.git","html_url":"https://github.com/rkh/sinatra-config-file","id":515026,"has_downloads":true,"watchers":16},{"language":"Ruby","description":"Add
45
- more servers to Sinatra::Base#run! (part of BigBand).","svn_url":"https://github.com/rkh/sinatra-more-server","created_at":"2010-02-12T15:26:47Z","has_wiki":true,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/sinatra-more-server.git","url":"https://api.github.com/repos/rkh/sinatra-more-server","fork":false,"clone_url":"https://github.com/rkh/sinatra-more-server.git","updated_at":"2012-01-14T14:38:54Z","open_issues":0,"homepage":"","mirror_url":null,"size":1028,"private":false,"pushed_at":"2010-09-09T17:11:03Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-more-server","ssh_url":"git@github.com:rkh/sinatra-more-server.git","html_url":"https://github.com/rkh/sinatra-more-server","id":515040,"has_downloads":true,"watchers":8},{"language":"Ruby","description":"Better
46
- Compass integration for Sinatra (extracted from BigBand).","svn_url":"https://github.com/rkh/sinatra-compass","created_at":"2010-02-15T09:38:31Z","has_wiki":true,"has_issues":true,"forks":4,"git_url":"git://github.com/rkh/sinatra-compass.git","url":"https://api.github.com/repos/rkh/sinatra-compass","fork":false,"clone_url":"https://github.com/rkh/sinatra-compass.git","updated_at":"2012-05-05T02:02:38Z","open_issues":2,"homepage":"","mirror_url":null,"size":496,"private":false,"pushed_at":"2011-08-29T18:39:06Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-compass","ssh_url":"git@github.com:rkh/sinatra-compass.git","html_url":"https://github.com/rkh/sinatra-compass","id":518475,"has_downloads":true,"watchers":16},{"language":"Ruby","description":"Display
47
- sinatra routes in yard documentation.","svn_url":"https://github.com/rkh/yard-sinatra","created_at":"2010-02-15T10:46:25Z","has_wiki":true,"has_issues":true,"forks":7,"git_url":"git://github.com/rkh/yard-sinatra.git","url":"https://api.github.com/repos/rkh/yard-sinatra","fork":false,"clone_url":"https://github.com/rkh/yard-sinatra.git","updated_at":"2012-05-08T23:04:32Z","open_issues":5,"homepage":"","mirror_url":null,"size":124,"private":false,"pushed_at":"2012-01-27T15:04:43Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"yard-sinatra","ssh_url":"git@github.com:rkh/yard-sinatra.git","html_url":"https://github.com/rkh/yard-sinatra","id":518527,"has_downloads":true,"watchers":27},{"language":"Ruby","description":"DEPRECATED","svn_url":"https://github.com/rkh/sinatra-web-inspector","created_at":"2010-02-15T14:31:30Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/sinatra-web-inspector.git","url":"https://api.github.com/repos/rkh/sinatra-web-inspector","fork":false,"clone_url":"https://github.com/rkh/sinatra-web-inspector.git","updated_at":"2012-04-04T14:09:34Z","open_issues":0,"homepage":"","mirror_url":null,"size":212,"private":false,"pushed_at":"2010-03-02T14:21:19Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-web-inspector","ssh_url":"git@github.com:rkh/sinatra-web-inspector.git","html_url":"https://github.com/rkh/sinatra-web-inspector","id":518769,"has_downloads":true,"watchers":7},{"language":"Ruby","description":"Advanced
48
- code reloader for Sinatra","svn_url":"https://github.com/rkh/sinatra-reloader","created_at":"2010-02-16T13:05:51Z","has_wiki":false,"has_issues":true,"forks":3,"git_url":"git://github.com/rkh/sinatra-reloader.git","url":"https://api.github.com/repos/rkh/sinatra-reloader","fork":false,"clone_url":"https://github.com/rkh/sinatra-reloader.git","updated_at":"2012-04-04T14:38:29Z","open_issues":0,"homepage":"","mirror_url":null,"size":132,"private":false,"pushed_at":"2011-10-28T00:15:59Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-reloader","ssh_url":"git@github.com:rkh/sinatra-reloader.git","html_url":"https://github.com/rkh/sinatra-reloader","id":520272,"has_downloads":false,"watchers":79},{"language":"Ruby","description":"","svn_url":"https://github.com/rkh/maglev-experiments","created_at":"2010-02-16T21:50:09Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/maglev-experiments.git","url":"https://api.github.com/repos/rkh/maglev-experiments","fork":false,"clone_url":"https://github.com/rkh/maglev-experiments.git","updated_at":"2011-10-04T01:22:30Z","open_issues":0,"homepage":"","mirror_url":null,"size":100,"private":false,"pushed_at":"2010-02-16T21:54:20Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"maglev-experiments","ssh_url":"git@github.com:rkh/maglev-experiments.git","html_url":"https://github.com/rkh/maglev-experiments","id":520963,"has_downloads":true,"watchers":1},{"language":"Ruby","description":"Adds
49
- more functionality to Haml and Sass (part of BigBand).","svn_url":"https://github.com/rkh/haml-more","created_at":"2010-02-18T22:53:25Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/haml-more.git","url":"https://api.github.com/repos/rkh/haml-more","fork":false,"clone_url":"https://github.com/rkh/haml-more.git","updated_at":"2012-04-04T15:19:17Z","open_issues":0,"homepage":"","mirror_url":null,"size":968,"private":false,"pushed_at":"2010-07-19T14:38:49Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"haml-more","ssh_url":"git@github.com:rkh/haml-more.git","html_url":"https://github.com/rkh/haml-more","id":525177,"has_downloads":true,"watchers":18},{"language":"Ruby","description":"","svn_url":"https://github.com/rkh/sinatra-coffeescript-example","created_at":"2010-02-24T17:16:38Z","has_wiki":true,"has_issues":true,"forks":1,"git_url":"git://github.com/rkh/sinatra-coffeescript-example.git","url":"https://api.github.com/repos/rkh/sinatra-coffeescript-example","fork":false,"clone_url":"https://github.com/rkh/sinatra-coffeescript-example.git","updated_at":"2011-10-04T01:26:29Z","open_issues":0,"homepage":"","mirror_url":null,"size":380,"private":false,"pushed_at":"2010-02-24T18:04:40Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-coffeescript-example","ssh_url":"git@github.com:rkh/sinatra-coffeescript-example.git","html_url":"https://github.com/rkh/sinatra-coffeescript-example","id":534197,"has_downloads":true,"watchers":8},{"language":"Ruby","description":"Adds
50
- namespaces to Sinatra, allows namespaces to have local helpers.","svn_url":"https://github.com/rkh/sinatra-namespace","created_at":"2010-02-28T23:02:09Z","has_wiki":true,"has_issues":true,"forks":4,"git_url":"git://github.com/rkh/sinatra-namespace.git","url":"https://api.github.com/repos/rkh/sinatra-namespace","fork":false,"clone_url":"https://github.com/rkh/sinatra-namespace.git","updated_at":"2012-01-24T15:11:02Z","open_issues":1,"homepage":"","mirror_url":null,"size":112,"private":false,"pushed_at":"2011-10-28T00:22:54Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-namespace","ssh_url":"git@github.com:rkh/sinatra-namespace.git","html_url":"https://github.com/rkh/sinatra-namespace","id":540425,"has_downloads":true,"watchers":26},{"language":"Ruby","description":"Granular
51
- before filters for sinatra","svn_url":"https://github.com/rkh/sinatra-any","created_at":"2010-03-02T22:17:11Z","has_wiki":true,"has_issues":false,"forks":1,"git_url":"git://github.com/rkh/sinatra-any.git","url":"https://api.github.com/repos/rkh/sinatra-any","fork":true,"clone_url":"https://github.com/rkh/sinatra-any.git","updated_at":"2011-10-04T01:29:16Z","open_issues":0,"homepage":"","mirror_url":null,"size":104,"private":false,"pushed_at":"2010-03-02T22:25:11Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"sinatra-any","ssh_url":"git@github.com:rkh/sinatra-any.git","html_url":"https://github.com/rkh/sinatra-any","id":543644,"has_downloads":true,"watchers":1},{"language":"Ruby","description":"Makes
52
- middleware that ships with Rack bullet-proof for async responses.","svn_url":"https://github.com/rkh/async-rack","created_at":"2010-03-07T23:27:38Z","has_wiki":false,"has_issues":true,"forks":8,"git_url":"git://github.com/rkh/async-rack.git","url":"https://api.github.com/repos/rkh/async-rack","fork":false,"clone_url":"https://github.com/rkh/async-rack.git","updated_at":"2012-05-11T22:22:15Z","open_issues":3,"homepage":"","mirror_url":null,"size":128,"private":false,"pushed_at":"2011-02-07T15:03:48Z","owner":{"url":"https://api.github.com/users/rkh","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442,"avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rkh"},"name":"async-rack","ssh_url":"git@github.com:rkh/async-rack.git","html_url":"https://github.com/rkh/async-rack","id":551713,"has_downloads":false,"watchers":103}]'
@@ -1,49 +0,0 @@
1
- ---
2
- - !binary "c2VydmVy": !binary |-
3
- bmdpbngvMS4wLjEz
4
- !binary "ZGF0ZQ==": !binary |-
5
- V2VkLCAyMyBNYXkgMjAxMiAxMzo1OTozNiBHTVQ=
6
- !binary "Y29udGVudC10eXBl": !binary |-
7
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
8
- !binary "dHJhbnNmZXItZW5jb2Rpbmc=": !binary |-
9
- Y2h1bmtlZA==
10
- !binary "Y29ubmVjdGlvbg==": !binary |-
11
- a2VlcC1hbGl2ZQ==
12
- !binary "c3RhdHVz": !binary |-
13
- MjAwIE9L
14
- !binary "eC1yYXRlbGltaXQtbGltaXQ=": !binary |-
15
- NTAwMA==
16
- !binary "ZXRhZw==": !binary |-
17
- IjNhMWFkMzc4N2NiZDkwNGQ2NDk4YzllODA5NWZlODY0Ig==
18
- !binary "bGluaw==": !binary |-
19
- PGh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvcmtoL3JlcG9zP3BhZ2U9
20
- MSZwZXJfcGFnZT0xMDA+OyByZWw9ImZpcnN0IiwgPGh0dHBzOi8vYXBpLmdp
21
- dGh1Yi5jb20vdXNlcnMvcmtoL3JlcG9zP3BhZ2U9MSZwZXJfcGFnZT0xMDA+
22
- OyByZWw9InByZXYi
23
- !binary "eC1yYXRlbGltaXQtcmVtYWluaW5n": !binary |-
24
- NDk5Nw==
25
- - ! '[{"html_url":"https://github.com/rkh/hpi","pushed_at":"2011-10-28T21:56:35Z","updated_at":"2012-04-10T11:37:21Z","homepage":null,"url":"https://api.github.com/repos/rkh/hpi","has_downloads":true,"watchers":10,"fork":false,"svn_url":"https://github.com/rkh/hpi","has_wiki":true,"has_issues":true,"size":168,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"hpi","language":"Ruby","description":null,"clone_url":"https://github.com/rkh/hpi.git","ssh_url":"git@github.com:rkh/hpi.git","git_url":"git://github.com/rkh/hpi.git","created_at":"2011-10-07T23:55:05Z","id":2536005,"open_issues":0},{"html_url":"https://github.com/rkh/tool","pushed_at":"2011-10-27T02:01:35Z","updated_at":"2011-10-27T02:01:35Z","homepage":null,"url":"https://api.github.com/repos/rkh/tool","has_downloads":true,"watchers":1,"fork":false,"svn_url":"https://github.com/rkh/tool","has_wiki":true,"has_issues":true,"size":140,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"tool","language":"Ruby","description":null,"clone_url":"https://github.com/rkh/tool.git","ssh_url":"git@github.com:rkh/tool.git","git_url":"git://github.com/rkh/tool.git","created_at":"2011-10-27T01:50:56Z","id":2655239,"open_issues":0},{"html_url":"https://github.com/rkh/twp","pushed_at":"2011-12-15T09:10:41Z","updated_at":"2012-02-11T19:56:48Z","homepage":"http://www.dcl.hpi.uni-potsdam.de/teaching/mds/","url":"https://api.github.com/repos/rkh/twp","has_downloads":true,"watchers":5,"fork":false,"svn_url":"https://github.com/rkh/twp","has_wiki":true,"has_issues":true,"size":256,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"twp","language":"Ruby","description":"TWP3
26
- in Ruby","clone_url":"https://github.com/rkh/twp.git","ssh_url":"git@github.com:rkh/twp.git","git_url":"git://github.com/rkh/twp.git","created_at":"2011-12-11T23:01:21Z","id":2960627,"open_issues":0},{"html_url":"https://github.com/rkh/fibur","pushed_at":"2011-12-19T19:07:32Z","updated_at":"2011-12-19T19:07:33Z","homepage":"","url":"https://api.github.com/repos/rkh/fibur","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/fibur","has_wiki":true,"has_issues":false,"size":112,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"fibur","language":"Ruby","description":"Concurrent
27
- execution during Ruby I/O","clone_url":"https://github.com/rkh/fibur.git","ssh_url":"git@github.com:rkh/fibur.git","git_url":"git://github.com/rkh/fibur.git","created_at":"2011-12-19T19:06:39Z","id":3014283,"open_issues":0},{"html_url":"https://github.com/rkh/rkelly","pushed_at":"2012-01-09T20:27:16Z","updated_at":"2012-01-09T20:27:16Z","homepage":"","url":"https://api.github.com/repos/rkh/rkelly","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/rkelly","has_wiki":true,"has_issues":false,"size":336,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"rkelly","language":"Ruby","description":"Pure
28
- ruby javascript parser and interpreter.","clone_url":"https://github.com/rkh/rkelly.git","ssh_url":"git@github.com:rkh/rkelly.git","git_url":"git://github.com/rkh/rkelly.git","created_at":"2012-01-09T20:25:53Z","id":3139761,"open_issues":0},{"html_url":"https://github.com/rkh/curriculum","pushed_at":"2012-01-10T16:30:53Z","updated_at":"2012-01-14T12:17:49Z","homepage":"","url":"https://api.github.com/repos/rkh/curriculum","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/curriculum","has_wiki":true,"has_issues":false,"size":132,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"curriculum","language":"JavaScript","description":"","clone_url":"https://github.com/rkh/curriculum.git","ssh_url":"git@github.com:rkh/curriculum.git","git_url":"git://github.com/rkh/curriculum.git","created_at":"2012-01-10T16:28:11Z","id":3146605,"open_issues":0},{"html_url":"https://github.com/rkh/fog","pushed_at":"2012-01-12T15:40:22Z","updated_at":"2012-02-26T06:24:48Z","homepage":"http://fog.io","url":"https://api.github.com/repos/rkh/fog","has_downloads":true,"watchers":3,"fork":true,"svn_url":"https://github.com/rkh/fog","has_wiki":true,"has_issues":false,"size":180,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"fog","language":"Ruby","description":"The
29
- Ruby cloud services library.","clone_url":"https://github.com/rkh/fog.git","ssh_url":"git@github.com:rkh/fog.git","git_url":"git://github.com/rkh/fog.git","created_at":"2012-01-12T15:32:01Z","id":3163178,"open_issues":0},{"html_url":"https://github.com/rkh/test-project-1","pushed_at":"2012-05-16T12:08:44Z","updated_at":"2012-05-16T12:08:44Z","homepage":"http://travis-ci.org","url":"https://api.github.com/repos/rkh/test-project-1","has_downloads":true,"watchers":0,"fork":true,"svn_url":"https://github.com/rkh/test-project-1","has_wiki":true,"has_issues":false,"size":152,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"test-project-1","language":"Ruby","description":"Test
30
- dummy repository for testing Travis CI","clone_url":"https://github.com/rkh/test-project-1.git","ssh_url":"git@github.com:rkh/test-project-1.git","git_url":"git://github.com/rkh/test-project-1.git","created_at":"2012-02-13T15:17:57Z","id":3431064,"open_issues":1},{"html_url":"https://github.com/rkh/oh-my-zsh","pushed_at":"2012-02-22T13:48:52Z","updated_at":"2012-03-07T21:11:13Z","homepage":"http://twitter.com/ohmyzsh","url":"https://api.github.com/repos/rkh/oh-my-zsh","has_downloads":true,"watchers":2,"fork":true,"svn_url":"https://github.com/rkh/oh-my-zsh","has_wiki":true,"has_issues":false,"size":7224,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"oh-my-zsh","language":"Shell","description":"A
31
- community-driven framework for managing your zsh configuration. Includes 40+ optional
32
- plugins (rails, git, OSX, hub, capistrano, brew, ant, macports, etc), over 80 terminal
33
- themes to spice up your morning, and an auto-update tool so that makes it easy
34
- to keep up with the latest updates from the community.","clone_url":"https://github.com/rkh/oh-my-zsh.git","ssh_url":"git@github.com:rkh/oh-my-zsh.git","git_url":"git://github.com/rkh/oh-my-zsh.git","created_at":"2012-02-22T13:47:54Z","id":3514933,"open_issues":0},{"html_url":"https://github.com/rkh/rbenv-use","pushed_at":"2012-02-22T16:53:26Z","updated_at":"2012-03-27T15:54:20Z","homepage":"","url":"https://api.github.com/repos/rkh/rbenv-use","has_downloads":true,"watchers":10,"fork":false,"svn_url":"https://github.com/rkh/rbenv-use","has_wiki":true,"has_issues":true,"size":108,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"rbenv-use","language":"Shell","description":"rbenv
35
- use rbx","clone_url":"https://github.com/rkh/rbenv-use.git","ssh_url":"git@github.com:rkh/rbenv-use.git","git_url":"git://github.com/rkh/rbenv-use.git","created_at":"2012-02-22T13:51:59Z","id":3514966,"open_issues":0},{"html_url":"https://github.com/rkh/rbenv-whatis","pushed_at":"2012-02-22T13:52:54Z","updated_at":"2012-04-24T20:50:23Z","homepage":null,"url":"https://api.github.com/repos/rkh/rbenv-whatis","has_downloads":true,"watchers":5,"fork":false,"svn_url":"https://github.com/rkh/rbenv-whatis","has_wiki":true,"has_issues":true,"size":84,"private":false,"mirror_url":null,"forks":2,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"rbenv-whatis","language":"Shell","description":null,"clone_url":"https://github.com/rkh/rbenv-whatis.git","ssh_url":"git@github.com:rkh/rbenv-whatis.git","git_url":"git://github.com/rkh/rbenv-whatis.git","created_at":"2012-02-22T13:52:44Z","id":3514978,"open_issues":0},{"html_url":"https://github.com/rkh/sinatra-template","pushed_at":"2012-03-14T15:07:40Z","updated_at":"2012-03-14T15:07:41Z","homepage":"","url":"https://api.github.com/repos/rkh/sinatra-template","has_downloads":true,"watchers":6,"fork":false,"svn_url":"https://github.com/rkh/sinatra-template","has_wiki":true,"has_issues":true,"size":124,"private":false,"mirror_url":null,"forks":5,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"sinatra-template","language":"Ruby","description":"base
36
- template for classic sinatra apps","clone_url":"https://github.com/rkh/sinatra-template.git","ssh_url":"git@github.com:rkh/sinatra-template.git","git_url":"git://github.com/rkh/sinatra-template.git","created_at":"2012-02-25T13:39:12Z","id":3544708,"open_issues":0},{"html_url":"https://github.com/rkh/rbenv-update","pushed_at":"2012-02-25T14:17:43Z","updated_at":"2012-05-17T00:03:11Z","homepage":"","url":"https://api.github.com/repos/rkh/rbenv-update","has_downloads":true,"watchers":3,"fork":false,"svn_url":"https://github.com/rkh/rbenv-update","has_wiki":true,"has_issues":true,"size":84,"private":false,"mirror_url":null,"forks":2,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"rbenv-update","language":"Shell","description":"update
37
- rbenv and plugins","clone_url":"https://github.com/rkh/rbenv-update.git","ssh_url":"git@github.com:rkh/rbenv-update.git","git_url":"git://github.com/rkh/rbenv-update.git","created_at":"2012-02-25T14:17:01Z","id":3544886,"open_issues":1},{"html_url":"https://github.com/rkh/call-for-proposals","pushed_at":"2012-03-06T09:42:48Z","updated_at":"2012-03-06T09:42:48Z","homepage":"","url":"https://api.github.com/repos/rkh/call-for-proposals","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/call-for-proposals","has_wiki":true,"has_issues":false,"size":160,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"call-for-proposals","language":null,"description":"Want
38
- to make a talk proposal for EuRuKo 2012? This is the place to be!","clone_url":"https://github.com/rkh/call-for-proposals.git","ssh_url":"git@github.com:rkh/call-for-proposals.git","git_url":"git://github.com/rkh/call-for-proposals.git","created_at":"2012-02-29T14:04:31Z","id":3582162,"open_issues":0},{"html_url":"https://github.com/rkh/socialshareprivacy","pushed_at":"2012-03-01T11:20:47Z","updated_at":"2012-03-01T11:21:49Z","homepage":"","url":"https://api.github.com/repos/rkh/socialshareprivacy","has_downloads":true,"watchers":1,"fork":false,"svn_url":"https://github.com/rkh/socialshareprivacy","has_wiki":false,"has_issues":false,"size":216,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"socialshareprivacy","language":"JavaScript","description":"this
39
- is just a mirror","clone_url":"https://github.com/rkh/socialshareprivacy.git","ssh_url":"git@github.com:rkh/socialshareprivacy.git","git_url":"git://github.com/rkh/socialshareprivacy.git","created_at":"2012-03-01T11:20:28Z","id":3591314,"open_issues":0},{"html_url":"https://github.com/rkh/Smallest-Federated-Wiki","pushed_at":"2012-03-01T21:36:10Z","updated_at":"2012-03-01T21:36:11Z","homepage":"http://wardcunningham.github.com/","url":"https://api.github.com/repos/rkh/Smallest-Federated-Wiki","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/Smallest-Federated-Wiki","has_wiki":true,"has_issues":false,"size":112,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"Smallest-Federated-Wiki","language":"JavaScript","description":"Our
40
- new wiki innovates three ways. It shares through federation, composes by refactoring
41
- and wraps data with visualization.","clone_url":"https://github.com/rkh/Smallest-Federated-Wiki.git","ssh_url":"git@github.com:rkh/Smallest-Federated-Wiki.git","git_url":"git://github.com/rkh/Smallest-Federated-Wiki.git","created_at":"2012-03-01T21:34:49Z","id":3596336,"open_issues":0},{"html_url":"https://github.com/rkh/gh","pushed_at":"2012-05-23T13:30:33Z","updated_at":"2012-05-23T13:30:35Z","homepage":"http://gh.rkh.im/","url":"https://api.github.com/repos/rkh/gh","has_downloads":true,"watchers":11,"fork":false,"svn_url":"https://github.com/rkh/gh","has_wiki":true,"has_issues":true,"size":244,"private":false,"mirror_url":null,"forks":3,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"gh","language":"Ruby","description":"Layered
42
- GitHub API client","clone_url":"https://github.com/rkh/gh.git","ssh_url":"git@github.com:rkh/gh.git","git_url":"git://github.com/rkh/gh.git","created_at":"2012-03-05T13:07:41Z","id":3627076,"open_issues":0},{"html_url":"https://github.com/rkh/trinidad","pushed_at":"2012-03-10T15:56:37Z","updated_at":"2012-03-10T15:56:37Z","homepage":"","url":"https://api.github.com/repos/rkh/trinidad","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/trinidad","has_wiki":true,"has_issues":false,"size":152,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"trinidad","language":"Ruby","description":"Simple
43
- library to run rails and rackup applications into an embedded Apache Tomcat","clone_url":"https://github.com/rkh/trinidad.git","ssh_url":"git@github.com:rkh/trinidad.git","git_url":"git://github.com/rkh/trinidad.git","created_at":"2012-03-10T15:55:36Z","id":3680426,"open_issues":0},{"html_url":"https://github.com/rkh/prefix","pushed_at":"2012-03-20T15:01:24Z","updated_at":"2012-03-20T15:21:14Z","homepage":null,"url":"https://api.github.com/repos/rkh/prefix","has_downloads":true,"watchers":2,"fork":false,"svn_url":"https://github.com/rkh/prefix","has_wiki":true,"has_issues":true,"size":92,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"prefix","language":"Ruby","description":null,"clone_url":"https://github.com/rkh/prefix.git","ssh_url":"git@github.com:rkh/prefix.git","git_url":"git://github.com/rkh/prefix.git","created_at":"2012-03-20T14:47:08Z","id":3776230,"open_issues":0},{"html_url":"https://github.com/rkh/hearts","pushed_at":"2012-03-25T16:45:47Z","updated_at":"2012-03-25T16:45:48Z","homepage":"","url":"https://api.github.com/repos/rkh/hearts","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/hearts","has_wiki":true,"has_issues":false,"size":108,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"hearts","language":"Ruby","description":"I
44
- love hearts!","clone_url":"https://github.com/rkh/hearts.git","ssh_url":"git@github.com:rkh/hearts.git","git_url":"git://github.com/rkh/hearts.git","created_at":"2012-03-25T16:45:16Z","id":3825575,"open_issues":0},{"html_url":"https://github.com/rkh/test-project-matrix-1","pushed_at":"2012-04-15T16:21:18Z","updated_at":"2012-04-15T16:21:18Z","homepage":"","url":"https://api.github.com/repos/rkh/test-project-matrix-1","has_downloads":true,"watchers":1,"master_branch":"master","fork":true,"svn_url":"https://github.com/rkh/test-project-matrix-1","has_wiki":true,"has_issues":false,"size":112,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"test-project-matrix-1","language":"Ruby","description":"Test
45
- dummy repository for testing Travis CI","clone_url":"https://github.com/rkh/test-project-matrix-1.git","ssh_url":"git@github.com:rkh/test-project-matrix-1.git","git_url":"git://github.com/rkh/test-project-matrix-1.git","created_at":"2012-04-15T16:20:55Z","id":4033173,"open_issues":0},{"html_url":"https://github.com/rkh/euruko-golf","pushed_at":"2012-05-04T11:54:45Z","updated_at":"2012-05-10T10:03:45Z","homepage":"","url":"https://api.github.com/repos/rkh/euruko-golf","has_downloads":true,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/euruko-golf","has_wiki":true,"has_issues":false,"size":108,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"euruko-golf","language":"Ruby","description":"Tweetable
46
- ruby programs that output EuRuKo ASCII art.","clone_url":"https://github.com/rkh/euruko-golf.git","ssh_url":"git@github.com:rkh/euruko-golf.git","git_url":"git://github.com/rkh/euruko-golf.git","created_at":"2012-05-04T11:51:10Z","id":4224272,"open_issues":0},{"html_url":"https://github.com/rkh/github-services","pushed_at":"2012-05-15T12:00:57Z","updated_at":"2012-05-15T12:00:57Z","homepage":"http://github.com/blog/53-github-services-ipo","url":"https://api.github.com/repos/rkh/github-services","has_downloads":false,"watchers":1,"fork":true,"svn_url":"https://github.com/rkh/github-services","has_wiki":false,"has_issues":false,"size":120,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"github-services","language":"Ruby","description":"Official
47
- GitHub Services Integration - You can set these up in your repo admin screen under
48
- Service Hooks","clone_url":"https://github.com/rkh/github-services.git","ssh_url":"git@github.com:rkh/github-services.git","git_url":"git://github.com/rkh/github-services.git","created_at":"2012-05-15T11:35:46Z","id":4335034,"open_issues":0},{"html_url":"https://github.com/rkh/bundler","pushed_at":"2012-05-22T13:26:25Z","updated_at":"2012-05-22T13:26:25Z","homepage":"http://gembundler.com","url":"https://api.github.com/repos/rkh/bundler","has_downloads":false,"watchers":1,"master_branch":"master","fork":true,"svn_url":"https://github.com/rkh/bundler","has_wiki":true,"has_issues":false,"size":140,"private":false,"mirror_url":null,"forks":0,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"bundler","language":"Ruby","description":"Manage
49
- your application''s gem dependencies with less pain","clone_url":"https://github.com/rkh/bundler.git","ssh_url":"git@github.com:rkh/bundler.git","git_url":"git://github.com/rkh/bundler.git","created_at":"2012-05-21T14:05:57Z","id":4394235,"open_issues":0},{"html_url":"https://github.com/rkh/gh-store","pushed_at":"2012-05-22T12:50:46Z","updated_at":"2012-05-22T13:11:14Z","homepage":null,"url":"https://api.github.com/repos/rkh/gh-store","has_downloads":true,"watchers":2,"fork":false,"svn_url":"https://github.com/rkh/gh-store","has_wiki":true,"has_issues":true,"size":92,"private":false,"mirror_url":null,"forks":1,"owner":{"url":"https://api.github.com/users/rkh","login":"rkh","avatar_url":"https://secure.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5c2b452f6eea4a6d84c105ebd971d2a4","id":30442},"name":"gh-store","language":"Ruby","description":null,"clone_url":"https://github.com/rkh/gh-store.git","ssh_url":"git@github.com:rkh/gh-store.git","git_url":"git://github.com/rkh/gh-store.git","created_at":"2012-05-22T12:50:34Z","id":4406633,"open_issues":0}]'