githu3 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. data/README.md +179 -0
  2. data/bin/githu3 +7 -0
  3. data/lib/faraday/response/parse_json.rb +22 -0
  4. data/lib/githu3/cache/disk.rb +43 -0
  5. data/lib/githu3/cache/redis.rb +35 -0
  6. data/lib/githu3/cache.rb +8 -0
  7. data/lib/githu3/cli.rb +25 -0
  8. data/lib/githu3/client.rb +46 -30
  9. data/lib/githu3/comment.rb +15 -0
  10. data/lib/githu3/commit.rb +13 -0
  11. data/lib/githu3/connection.rb +47 -0
  12. data/lib/githu3/core_ext/hash.rb +18 -0
  13. data/lib/githu3/download.rb +4 -0
  14. data/lib/githu3/event.rb +6 -0
  15. data/lib/githu3/git_commit.rb +5 -0
  16. data/lib/githu3/issue.rb +10 -1
  17. data/lib/githu3/org.rb +1 -1
  18. data/lib/githu3/pull.rb +9 -0
  19. data/lib/githu3/ref.rb +9 -0
  20. data/lib/githu3/relations.rb +22 -2
  21. data/lib/githu3/repo.rb +14 -4
  22. data/lib/githu3/resource.rb +19 -4
  23. data/lib/githu3/resource_collection.rb +26 -9
  24. data/lib/githu3/store.rb +2 -2
  25. data/lib/githu3/team.rb +4 -0
  26. data/lib/githu3/tree.rb +4 -0
  27. data/lib/githu3/user.rb +5 -0
  28. data/lib/githu3/version.rb +1 -1
  29. data/lib/githu3.rb +23 -1
  30. metadata +94 -119
  31. data/.autotest +0 -3
  32. data/.document +0 -5
  33. data/.gitignore +0 -22
  34. data/.rspec +0 -4
  35. data/.travis.yml +0 -6
  36. data/Gemfile +0 -16
  37. data/Rakefile +0 -16
  38. data/githu3.gemspec +0 -34
  39. data/spec/fixtures/all_repos.json +0 -54
  40. data/spec/fixtures/error.json +0 -1
  41. data/spec/fixtures/issues/comments.json +0 -41
  42. data/spec/fixtures/issues/event.json +0 -12
  43. data/spec/fixtures/issues/events.json +0 -14
  44. data/spec/fixtures/me.json +0 -31
  45. data/spec/fixtures/orgs/github.json +0 -18
  46. data/spec/fixtures/orgs/rails.json +0 -18
  47. data/spec/fixtures/orgs.json +0 -14
  48. data/spec/fixtures/public_repos.json +0 -132
  49. data/spec/fixtures/repos/branches.json +0 -23
  50. data/spec/fixtures/repos/contributors.json +0 -58
  51. data/spec/fixtures/repos/faraday.json +0 -31
  52. data/spec/fixtures/repos/issue.json +0 -53
  53. data/spec/fixtures/repos/issues.json +0 -55
  54. data/spec/fixtures/repos/label.json +0 -5
  55. data/spec/fixtures/repos/labels.json +0 -7
  56. data/spec/fixtures/repos/milestone.json +0 -17
  57. data/spec/fixtures/repos/milestones.json +0 -19
  58. data/spec/fixtures/repos/tags.json +0 -164
  59. data/spec/fixtures/repos/teams.json +0 -17
  60. data/spec/fixtures/teams/1.json +0 -8
  61. data/spec/fixtures/teams/members.json +0 -8
  62. data/spec/fixtures/teams/repos.json +0 -28
  63. data/spec/fixtures/users/followers.json +0 -80
  64. data/spec/fixtures/users/following.json +0 -182
  65. data/spec/fixtures/users/orgs.json +0 -8
  66. data/spec/fixtures/users/repos.json +0 -132
  67. data/spec/fixtures/users/sbellity.json +0 -20
  68. data/spec/githu3/client_spec.rb +0 -66
  69. data/spec/githu3/error_spec.rb +0 -0
  70. data/spec/githu3/issue_spec.rb +0 -54
  71. data/spec/githu3/org_spec.rb +0 -79
  72. data/spec/githu3/repo_spec.rb +0 -100
  73. data/spec/githu3/resource_collection_spec.rb +0 -64
  74. data/spec/githu3/team_spec.rb +0 -47
  75. data/spec/githu3/user_spec.rb +0 -47
  76. data/spec/githu3_spec.rb +0 -7
  77. data/spec/helper.rb +0 -21
data/githu3.gemspec DELETED
@@ -1,34 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/githu3/version', __FILE__)
3
-
4
- Gem::Specification.new do |s|
5
- s.name = 'githu3'
6
- s.version = Githu3::VERSION.dup
7
- s.summary = %q{Ruby wrapper for the GitHub's v3' API}
8
- s.description = %q{Ruby wrapper for the GitHub's v3' API}
9
- s.homepage = 'https://github.com/sbellity/githu3'
10
- s.authors = ["Stephane Bellity"]
11
- s.email = ['sbellity@gmail.com']
12
-
13
- s.files = `git ls-files`.split("\n")
14
- s.test_files = `git ls-files -- spec/*`.split("\n")
15
-
16
- s.platform = Gem::Platform::RUBY
17
- s.require_paths = ['lib']
18
-
19
- s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
20
-
21
- s.add_runtime_dependency 'activesupport', '~> 3.0.0'
22
- s.add_runtime_dependency 'i18n', '~> 0.5.0'
23
- s.add_runtime_dependency 'faraday', '~> 0.6.0'
24
- s.add_runtime_dependency 'faraday_middleware', '~> 0.6.0'
25
- s.add_runtime_dependency 'multi_json', '~> 1.0.2'
26
-
27
-
28
- s.add_development_dependency 'ZenTest', '~> 4.5'
29
- s.add_development_dependency 'rake', '~> 0.9'
30
- s.add_development_dependency 'rspec', '~> 2.6'
31
- s.add_development_dependency 'simplecov', '~> 0.4'
32
- s.add_development_dependency 'webmock', '~> 1.6'
33
- s.add_development_dependency 'yajl-ruby', '~> 0.8'
34
- end
@@ -1,54 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/mathieuravaux/brm-ruby-logger",
4
- "clone_url": "https://github.com/mathieuravaux/brm-ruby-logger.git",
5
- "open_issues": 0,
6
- "homepage": "http://github.com/mathieuravaux/brm-ruby-logger",
7
- "html_url": "https://github.com/mathieuravaux/brm-ruby-logger",
8
- "git_url": "git://github.com/mathieuravaux/brm-ruby-logger.git",
9
- "language": null,
10
- "forks": 1,
11
- "svn_url": "https://svn.github.com/mathieuravaux/brm-ruby-logger",
12
- "fork": false,
13
- "watchers": 3,
14
- "pushed_at": "2010-03-09T17:10:00Z",
15
- "created_at": "2010-03-08T13:40:45Z",
16
- "private": true,
17
- "size": 404,
18
- "owner": {
19
- "url": "https://api.github.com/users/mathieuravaux",
20
- "avatar_url": "https://secure.gravatar.com/avatar/0ef5aaa4d393b0fbc1a8300d18b30c51?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
21
- "login": "mathieuravaux",
22
- "id": 38495
23
- },
24
- "name": "brm-ruby-logger",
25
- "description": "Ruby event logger for the BRM real-time analytics and BI solution",
26
- "ssh_url": "git@github.com:mathieuravaux/brm-ruby-logger.git"
27
- },
28
- {
29
- "url": "https://api.github.com/repos/mimesis/brm-gateway",
30
- "clone_url": "https://github.com/mimesis/brm-gateway.git",
31
- "open_issues": 0,
32
- "homepage": "",
33
- "html_url": "https://github.com/mimesis/brm-gateway",
34
- "git_url": "git://github.com/mimesis/brm-gateway.git",
35
- "language": "Ruby",
36
- "forks": 0,
37
- "svn_url": "https://svn.github.com/mimesis/brm-gateway",
38
- "fork": false,
39
- "watchers": 5,
40
- "pushed_at": "2011-06-17T13:03:18Z",
41
- "created_at": "2010-10-25T17:21:08Z",
42
- "private": true,
43
- "size": 644,
44
- "owner": {
45
- "url": "https://api.github.com/users/mimesis",
46
- "avatar_url": "https://secure.gravatar.com/avatar/990ba1d39ec58f60bc46847924da1668?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
47
- "login": "mimesis",
48
- "id": 220610
49
- },
50
- "name": "brm-gateway",
51
- "description": "Brm Gateway distributed as a gem",
52
- "ssh_url": "git@github.com:mimesis/brm-gateway.git"
53
- }
54
- ]
@@ -1 +0,0 @@
1
- {"message":"You just hit a wall"}
@@ -1,41 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/comments/226158",
4
- "user": {
5
- "url": "https://api.github.com/users/technoweenie",
6
- "login": "technoweenie",
7
- "id": 21,
8
- "avatar_url": "https://secure.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
9
- },
10
- "updated_at": "2010-04-30T16:57:29Z",
11
- "created_at": "2010-04-30T16:57:29Z",
12
- "body": "I've set a dependency on the latest Faraday on 2.1.1 until someone can fix this issue.",
13
- "id": 226158
14
- },
15
- {
16
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/comments/467139",
17
- "user": {
18
- "url": "https://api.github.com/users/sferik",
19
- "login": "sferik",
20
- "id": 10308,
21
- "avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
22
- },
23
- "updated_at": "2010-10-13T22:18:39Z",
24
- "created_at": "2010-10-13T22:18:39Z",
25
- "body": "This should be fixed by updating addressable to ~> 2.2.2 in #21 (includes pull request).",
26
- "id": 467139
27
- },
28
- {
29
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/comments/821861",
30
- "user": {
31
- "url": "https://api.github.com/users/mislav",
32
- "login": "mislav",
33
- "id": 887,
34
- "avatar_url": "https://secure.gravatar.com/avatar/8f93a872e399bc1353cc8d4e791d5401?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
35
- },
36
- "updated_at": "2011-03-01T12:17:11Z",
37
- "created_at": "2011-03-01T12:17:11Z",
38
- "body": "Since this seems to be fixed in #21 I'll go ahead and close this issue",
39
- "id": 821861
40
- }
41
- ]
@@ -1,12 +0,0 @@
1
- {
2
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/events/1",
3
- "actor": {
4
- "login": "octocat",
5
- "id": 1,
6
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
7
- "url": "https://api.github.com/users/octocat"
8
- },
9
- "event": "closed",
10
- "commit_id": "SHA",
11
- "created_at": "2011-04-14T16:00:49Z"
12
- }
@@ -1,14 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/events/1",
4
- "actor": {
5
- "login": "technoweenie",
6
- "id": 1,
7
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
8
- "url": "https://api.github.com/users/technoweenie"
9
- },
10
- "event": "closed",
11
- "commit_id": "SHA",
12
- "created_at": "2011-04-14T16:00:49Z"
13
- }
14
- ]
@@ -1,31 +0,0 @@
1
- {
2
- "type": "User",
3
- "url": "https://api.github.com/users/sbellity",
4
- "public_gists": 3,
5
- "collaborators": 2,
6
- "blog": null,
7
- "private_gists": 1,
8
- "hireable": false,
9
- "html_url": "https://github.com/sbellity",
10
- "disk_usage": 11079,
11
- "plan": {
12
- "private_repos": 5,
13
- "collaborators": 1,
14
- "space": 614400,
15
- "name": "micro"
16
- },
17
- "bio": null,
18
- "login": "sbellity",
19
- "total_private_repos": 4,
20
- "following": 53,
21
- "created_at": "2008-04-02T18:24:06Z",
22
- "email": "sbellity@gmail.com",
23
- "public_repos": 19,
24
- "followers": 13,
25
- "name": "Stephane Bellity",
26
- "company": null,
27
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
28
- "owned_private_repos": 3,
29
- "location": "Paris, France",
30
- "id": 4250
31
- }
@@ -1,18 +0,0 @@
1
- {
2
- "type": "Organization",
3
- "blog": "https://github.com/about",
4
- "url": "https://api.github.com/orgs/github",
5
- "avatar_url": "https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
6
- "login": "github",
7
- "public_repos": 27,
8
- "html_url": "https://github.com/github",
9
- "following": 0,
10
- "created_at": "2008-05-11T04:37:31Z",
11
- "email": "support@github.com",
12
- "followers": 575,
13
- "name": "GitHub",
14
- "company": null,
15
- "public_gists": 0,
16
- "location": "San Francisco, CA",
17
- "id": 9919
18
- }
@@ -1,18 +0,0 @@
1
- {
2
- "type": "Organization",
3
- "url": "https://api.github.com/orgs/rails",
4
- "public_gists": 3,
5
- "blog": "http://weblog.rubyonrails.org/",
6
- "html_url": "https://github.com/rails",
7
- "login": "rails",
8
- "following": 0,
9
- "created_at": "2008-04-02T01:59:25Z",
10
- "email": null,
11
- "name": null,
12
- "company": null,
13
- "location": null,
14
- "id": 4223,
15
- "public_repos": 44,
16
- "followers": 1936,
17
- "avatar_url": "https://secure.gravatar.com/avatar/30f39a09e233e8369dddf6feb4be0308?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png"
18
- }
@@ -1,14 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/orgs/nuvoli",
4
- "login": "nuvoli",
5
- "avatar_url": "https://secure.gravatar.com/avatar/e7490ca7d2111a4f2283495aef71f409?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
6
- "id": 578134
7
- },
8
- {
9
- "url": "https://api.github.com/orgs/sixdegrees",
10
- "login": "sixdegrees",
11
- "avatar_url": "https://secure.gravatar.com/avatar/1605f681326408ae4ce7136509af5205?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
12
- "id": 334012
13
- }
14
- ]
@@ -1,132 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/sbellity/futon4mongo",
4
- "clone_url": "https://github.com/sbellity/futon4mongo.git",
5
- "open_issues": 1,
6
- "homepage": "",
7
- "html_url": "https://github.com/sbellity/futon4mongo",
8
- "git_url": "git://github.com/sbellity/futon4mongo.git",
9
- "language": "JavaScript",
10
- "forks": 17,
11
- "svn_url": "https://svn.github.com/sbellity/futon4mongo",
12
- "fork": false,
13
- "watchers": 164,
14
- "pushed_at": "2010-10-09T12:30:08Z",
15
- "created_at": "2009-08-30T17:47:27Z",
16
- "private": false,
17
- "size": 856,
18
- "owner": {
19
- "url": "https://api.github.com/users/sbellity",
20
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
21
- "login": "sbellity",
22
- "id": 4250
23
- },
24
- "name": "futon4mongo",
25
- "description": "A port of CouchDB's Futon web interface to MongoDB",
26
- "ssh_url": "git@github.com:sbellity/futon4mongo.git"
27
- },
28
- {
29
- "url": "https://api.github.com/repos/sbellity/serializr",
30
- "clone_url": "https://github.com/sbellity/serializr.git",
31
- "open_issues": 0,
32
- "homepage": null,
33
- "html_url": "https://github.com/sbellity/serializr",
34
- "git_url": "git://github.com/sbellity/serializr.git",
35
- "language": null,
36
- "forks": 1,
37
- "svn_url": "https://svn.github.com/sbellity/serializr",
38
- "fork": false,
39
- "watchers": 2,
40
- "pushed_at": "2010-06-30T08:35:05Z",
41
- "created_at": "2010-06-26T16:45:55Z",
42
- "private": false,
43
- "size": 504,
44
- "owner": {
45
- "url": "https://api.github.com/users/sbellity",
46
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
47
- "login": "sbellity",
48
- "id": 4250
49
- },
50
- "name": "serializr",
51
- "description": "TODO: one-line summary of your gem",
52
- "ssh_url": "git@github.com:sbellity/serializr.git"
53
- },
54
- {
55
- "url": "https://api.github.com/repos/sbellity/graylog2-web-interface",
56
- "clone_url": "https://github.com/sbellity/graylog2-web-interface.git",
57
- "open_issues": 0,
58
- "homepage": "http://www.graylog2.org/",
59
- "html_url": "https://github.com/sbellity/graylog2-web-interface",
60
- "git_url": "git://github.com/sbellity/graylog2-web-interface.git",
61
- "language": null,
62
- "forks": 0,
63
- "svn_url": "https://svn.github.com/sbellity/graylog2-web-interface",
64
- "fork": true,
65
- "watchers": 1,
66
- "pushed_at": "2010-12-15T19:57:41Z",
67
- "created_at": "2010-12-15T10:12:29Z",
68
- "private": false,
69
- "size": 1660,
70
- "owner": {
71
- "url": "https://api.github.com/users/sbellity",
72
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
73
- "login": "sbellity",
74
- "id": 4250
75
- },
76
- "name": "graylog2-web-interface",
77
- "description": " Graylog2 is an open source syslog implementation that stores your logs in MongoDB. It consists of a server written in Java that accepts your syslog messages via TCP or UDP and stores it in the database. The second part is a Ruby on Rails web interface that allows you to view the log messages.",
78
- "ssh_url": "git@github.com:sbellity/graylog2-web-interface.git"
79
- },
80
- {
81
- "url": "https://api.github.com/repos/sbellity/homebrew",
82
- "clone_url": "https://github.com/sbellity/homebrew.git",
83
- "open_issues": 0,
84
- "homepage": "http://mxcl.github.com/homebrew",
85
- "html_url": "https://github.com/sbellity/homebrew",
86
- "git_url": "git://github.com/sbellity/homebrew.git",
87
- "language": "Ruby",
88
- "forks": 0,
89
- "svn_url": "https://svn.github.com/sbellity/homebrew",
90
- "fork": true,
91
- "watchers": 1,
92
- "pushed_at": "2011-04-12T14:10:38Z",
93
- "created_at": "2011-04-12T14:09:04Z",
94
- "private": false,
95
- "size": 5228,
96
- "owner": {
97
- "url": "https://api.github.com/users/sbellity",
98
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
99
- "login": "sbellity",
100
- "id": 4250
101
- },
102
- "name": "homebrew",
103
- "description": "The missing package manager for OS X.",
104
- "ssh_url": "git@github.com:sbellity/homebrew.git"
105
- },
106
- {
107
- "url": "https://api.github.com/repos/sbellity/hope",
108
- "clone_url": "https://github.com/sbellity/hope.git",
109
- "open_issues": 0,
110
- "homepage": "",
111
- "html_url": "https://github.com/sbellity/hope",
112
- "git_url": "git://github.com/sbellity/hope.git",
113
- "language": "Ruby",
114
- "forks": 1,
115
- "svn_url": "https://svn.github.com/sbellity/hope",
116
- "fork": false,
117
- "watchers": 1,
118
- "pushed_at": "2011-06-16T15:27:05Z",
119
- "created_at": "2011-06-16T15:25:47Z",
120
- "private": false,
121
- "size": 92,
122
- "owner": {
123
- "url": "https://api.github.com/users/sbellity",
124
- "avatar_url": "https://secure.gravatar.com/avatar/9abf3d284748357bb044d3386796ecd6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
125
- "login": "sbellity",
126
- "id": 4250
127
- },
128
- "name": "hope",
129
- "description": "jruby wrapper for Esper (Stream Event Processing)",
130
- "ssh_url": "git@github.com:sbellity/hope.git"
131
- }
132
- ]
@@ -1,23 +0,0 @@
1
- [
2
- {
3
- "commit": {
4
- "url": "https://api.github.com/repos/technoweenie/faraday/commits/91df303b8615efdf5f52dad75cff9a4735cdb8d2",
5
- "sha": "91df303b8615efdf5f52dad75cff9a4735cdb8d2"
6
- },
7
- "name": "master"
8
- },
9
- {
10
- "commit": {
11
- "url": "https://api.github.com/repos/technoweenie/faraday/commits/bc4f92bc8325afd1a4cdd105ef98462205e8aced",
12
- "sha": "bc4f92bc8325afd1a4cdd105ef98462205e8aced"
13
- },
14
- "name": "typhoeus-parse-blank-header-lines"
15
- },
16
- {
17
- "commit": {
18
- "url": "https://api.github.com/repos/technoweenie/faraday/commits/03e39d92ac65d777be3c10bf125b4c516c5cdc77",
19
- "sha": "03e39d92ac65d777be3c10bf125b4c516c5cdc77"
20
- },
21
- "name": "0.5.6.pre"
22
- }
23
- ]
@@ -1,58 +0,0 @@
1
- [
2
- {
3
- "contributions": 165,
4
- "url": "https://api.github.com/users/technoweenie",
5
- "login": "technoweenie",
6
- "id": 21,
7
- "avatar_url": "https://secure.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
8
- },
9
- {
10
- "contributions": 60,
11
- "url": "https://api.github.com/users/sferik",
12
- "login": "sferik",
13
- "id": 10308,
14
- "avatar_url": "https://secure.gravatar.com/avatar/1f74b13f1e5c6c69cb5d7fbaabb1e2cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
15
- },
16
- {
17
- "contributions": 49,
18
- "url": "https://api.github.com/users/mislav",
19
- "login": "mislav",
20
- "id": 887,
21
- "avatar_url": "https://secure.gravatar.com/avatar/8f93a872e399bc1353cc8d4e791d5401?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
22
- },
23
- {
24
- "contributions": 29,
25
- "url": "https://api.github.com/users/zenhob",
26
- "login": "zenhob",
27
- "id": 12092,
28
- "avatar_url": "https://secure.gravatar.com/avatar/1001027e42c80c1e6d76a0d613c9aa59?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
29
- },
30
- {
31
- "contributions": 7,
32
- "url": "https://api.github.com/users/eric",
33
- "login": "eric",
34
- "id": 470,
35
- "avatar_url": "https://secure.gravatar.com/avatar/6ec4980d1d5c39bc44bff4170bfd0313?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
36
- },
37
- {
38
- "contributions": 4,
39
- "url": "https://api.github.com/users/josevalim",
40
- "login": "josevalim",
41
- "id": 9582,
42
- "avatar_url": "https://secure.gravatar.com/avatar/e837f6b7fd146ab16ed3d663476c063e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
43
- },
44
- {
45
- "contributions": 3,
46
- "url": "https://api.github.com/users/Flameeyes",
47
- "login": "Flameeyes",
48
- "id": 74834,
49
- "avatar_url": "https://secure.gravatar.com/avatar/7298d3f690c8bdf6b3bd628b6bef1f91?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
50
- },
51
- {
52
- "contributions": 1,
53
- "url": "https://api.github.com/users/smparkes",
54
- "login": "smparkes",
55
- "id": 4292,
56
- "avatar_url": "https://secure.gravatar.com/avatar/22a6f7874e255566c4f6797e7b78f188?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"
57
- }
58
- ]
@@ -1,31 +0,0 @@
1
- {
2
- "master_branch": "master",
3
- "url": "https://api.github.com/repos/technoweenie/faraday",
4
- "has_wiki": true,
5
- "clone_url": "https://github.com/technoweenie/faraday.git",
6
- "open_issues": 8,
7
- "homepage": "",
8
- "html_url": "https://github.com/technoweenie/faraday",
9
- "git_url": "git://github.com/technoweenie/faraday.git",
10
- "has_issues": true,
11
- "language": "Ruby",
12
- "forks": 40,
13
- "svn_url": "https://svn.github.com/technoweenie/faraday",
14
- "integrate_branch": "master",
15
- "fork": false,
16
- "watchers": 301,
17
- "pushed_at": "2011-06-22T17:50:59Z",
18
- "created_at": "2009-12-10T17:14:55Z",
19
- "private": false,
20
- "size": 144,
21
- "has_downloads": true,
22
- "owner": {
23
- "url": "https://api.github.com/users/technoweenie",
24
- "avatar_url": "https://secure.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
25
- "login": "technoweenie",
26
- "id": 21
27
- },
28
- "name": "faraday",
29
- "description": "Experiments in a rest api lib.",
30
- "ssh_url": "git@github.com:technoweenie/faraday.git"
31
- }
@@ -1,53 +0,0 @@
1
- {
2
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/1",
3
- "html_url": "https://github.com/technoweenie/faraday/issues/1",
4
- "number": 1347,
5
- "state": "open",
6
- "title": "Found a bug",
7
- "body": "I'm having a problem with this.",
8
- "user": {
9
- "login": "octocat",
10
- "id": 1,
11
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
12
- "url": "https://api.github.com/users/octocat"
13
- },
14
- "labels": [
15
- {
16
- "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
17
- "name": "bug",
18
- "color": "f29513"
19
- }
20
- ],
21
- "assignee": {
22
- "login": "octocat",
23
- "id": 1,
24
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
25
- "url": "https://api.github.com/users/octocat"
26
- },
27
- "milestone": {
28
- "url": "https://api.github.com/repos/technoweenie/faraday/milestones/1",
29
- "number": 1,
30
- "state": "open",
31
- "title": "v1.0",
32
- "description": "",
33
- "creator": {
34
- "login": "octocat",
35
- "id": 1,
36
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
37
- "url": "https://api.github.com/users/octocat"
38
- },
39
- "open_issues": 4,
40
- "closed_issues": 8,
41
- "created_at": "2011-04-10T20:09:31Z",
42
- "due_on": null
43
- },
44
- "comments": 0,
45
- "pull_request": {
46
- "html_url": "https://github.com/technoweenie/faraday/issues/1",
47
- "diff_url": "https://github.com/technoweenie/faraday/issues/1.diff",
48
- "patch_url": "https://github.com/technoweenie/faraday/issues/1.patch"
49
- },
50
- "closed_at": null,
51
- "created_at": "2011-04-22T13:33:48Z",
52
- "updated_at": "2011-04-22T13:33:48Z"
53
- }
@@ -1,55 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/technoweenie/faraday/issues/1",
4
- "html_url": "https://github.com/technoweenie/faraday/issues/1",
5
- "number": 1347,
6
- "state": "open",
7
- "title": "Found a bug",
8
- "body": "I'm having a problem with this.",
9
- "user": {
10
- "login": "octocat",
11
- "id": 1,
12
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
13
- "url": "https://api.github.com/users/octocat"
14
- },
15
- "labels": [
16
- {
17
- "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
18
- "name": "bug",
19
- "color": "f29513"
20
- }
21
- ],
22
- "assignee": {
23
- "login": "octocat",
24
- "id": 1,
25
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
26
- "url": "https://api.github.com/users/octocat"
27
- },
28
- "milestone": {
29
- "url": "https://api.github.com/repos/technoweenie/faraday/milestones/1",
30
- "number": 1,
31
- "state": "open",
32
- "title": "v1.0",
33
- "description": "",
34
- "creator": {
35
- "login": "octocat",
36
- "id": 1,
37
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
38
- "url": "https://api.github.com/users/octocat"
39
- },
40
- "open_issues": 4,
41
- "closed_issues": 8,
42
- "created_at": "2011-04-10T20:09:31Z",
43
- "due_on": null
44
- },
45
- "comments": 0,
46
- "pull_request": {
47
- "html_url": "https://github.com/technoweenie/faraday/issues/1",
48
- "diff_url": "https://github.com/technoweenie/faraday/issues/1.diff",
49
- "patch_url": "https://github.com/technoweenie/faraday/issues/1.patch"
50
- },
51
- "closed_at": null,
52
- "created_at": "2011-04-22T13:33:48Z",
53
- "updated_at": "2011-04-22T13:33:48Z"
54
- }
55
- ]
@@ -1,5 +0,0 @@
1
- {
2
- "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
3
- "name": "bug",
4
- "color": "f29513"
5
- }
@@ -1,7 +0,0 @@
1
- [
2
- {
3
- "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
4
- "name": "bug",
5
- "color": "f29513"
6
- }
7
- ]
@@ -1,17 +0,0 @@
1
- {
2
- "url": "https://api.github.com/repos/technoweenie/faraday/milestones/1",
3
- "number": 1,
4
- "state": "open",
5
- "title": "v1.0",
6
- "description": "",
7
- "creator": {
8
- "login": "octocat",
9
- "id": 1,
10
- "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
11
- "url": "https://api.github.com/users/octocat"
12
- },
13
- "open_issues": 4,
14
- "closed_issues": 8,
15
- "created_at": "2011-04-10T20:09:31Z",
16
- "due_on": null
17
- }