githu3 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/.autotest +3 -0
  2. data/.document +5 -0
  3. data/.gitignore +22 -0
  4. data/.rspec +4 -0
  5. data/.travis.yml +8 -0
  6. data/Gemfile +11 -0
  7. data/LICENSE.txt +20 -0
  8. data/README.rdoc +20 -0
  9. data/Rakefile +16 -0
  10. data/githu3.gemspec +34 -0
  11. data/lib/githu3/branch.rb +4 -0
  12. data/lib/githu3/client.rb +68 -0
  13. data/lib/githu3/comment.rb +5 -0
  14. data/lib/githu3/event.rb +5 -0
  15. data/lib/githu3/issue.rb +9 -0
  16. data/lib/githu3/key.rb +4 -0
  17. data/lib/githu3/label.rb +5 -0
  18. data/lib/githu3/milestone.rb +5 -0
  19. data/lib/githu3/org.rb +20 -0
  20. data/lib/githu3/repo.rb +16 -0
  21. data/lib/githu3/resource.rb +64 -0
  22. data/lib/githu3/tag.rb +4 -0
  23. data/lib/githu3/team.rb +14 -0
  24. data/lib/githu3/user.rb +13 -0
  25. data/lib/githu3/version.rb +3 -0
  26. data/lib/githu3.rb +30 -0
  27. data/spec/fixtures/all_repos.json +54 -0
  28. data/spec/fixtures/issues/comments.json +41 -0
  29. data/spec/fixtures/issues/event.json +12 -0
  30. data/spec/fixtures/issues/events.json +14 -0
  31. data/spec/fixtures/me.json +31 -0
  32. data/spec/fixtures/orgs/github.json +18 -0
  33. data/spec/fixtures/orgs/rails.json +18 -0
  34. data/spec/fixtures/orgs.json +14 -0
  35. data/spec/fixtures/public_repos.json +132 -0
  36. data/spec/fixtures/repos/branches.json +23 -0
  37. data/spec/fixtures/repos/contributors.json +58 -0
  38. data/spec/fixtures/repos/faraday.json +31 -0
  39. data/spec/fixtures/repos/issue.json +53 -0
  40. data/spec/fixtures/repos/issues.json +55 -0
  41. data/spec/fixtures/repos/label.json +5 -0
  42. data/spec/fixtures/repos/labels.json +7 -0
  43. data/spec/fixtures/repos/milestone.json +17 -0
  44. data/spec/fixtures/repos/milestones.json +19 -0
  45. data/spec/fixtures/repos/tags.json +164 -0
  46. data/spec/fixtures/repos/teams.json +17 -0
  47. data/spec/fixtures/teams/1.json +8 -0
  48. data/spec/fixtures/teams/members.json +8 -0
  49. data/spec/fixtures/teams/repos.json +28 -0
  50. data/spec/fixtures/users/followers.json +80 -0
  51. data/spec/fixtures/users/following.json +182 -0
  52. data/spec/fixtures/users/orgs.json +8 -0
  53. data/spec/fixtures/users/repos.json +132 -0
  54. data/spec/fixtures/users/sbellity.json +20 -0
  55. data/spec/githu3/client_spec.rb +66 -0
  56. data/spec/githu3/issue_spec.rb +54 -0
  57. data/spec/githu3/org_spec.rb +79 -0
  58. data/spec/githu3/repo_spec.rb +100 -0
  59. data/spec/githu3/team_spec.rb +47 -0
  60. data/spec/githu3/user_spec.rb +47 -0
  61. data/spec/githu3_spec.rb +7 -0
  62. data/spec/helper.rb +21 -0
  63. metadata +334 -0
@@ -0,0 +1,132 @@
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
+ ]
@@ -0,0 +1,23 @@
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
+ ]
@@ -0,0 +1,58 @@
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
+ ]
@@ -0,0 +1,31 @@
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
+ }
@@ -0,0 +1,53 @@
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
+ }
@@ -0,0 +1,55 @@
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
+ ]
@@ -0,0 +1,5 @@
1
+ {
2
+ "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
3
+ "name": "bug",
4
+ "color": "f29513"
5
+ }
@@ -0,0 +1,7 @@
1
+ [
2
+ {
3
+ "url": "https://api.github.com/repos/technoweenie/faraday/labels/bug",
4
+ "name": "bug",
5
+ "color": "f29513"
6
+ }
7
+ ]
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,19 @@
1
+ [
2
+ {
3
+ "url": "https://api.github.com/repos/technoweenie/faraday/milestones/1",
4
+ "number": 1,
5
+ "state": "open",
6
+ "title": "v1.0",
7
+ "description": "",
8
+ "creator": {
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
+ "open_issues": 4,
15
+ "closed_issues": 8,
16
+ "created_at": "2011-04-10T20:09:31Z",
17
+ "due_on": null
18
+ }
19
+ ]
@@ -0,0 +1,164 @@
1
+ [
2
+ {
3
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.6",
4
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.6",
5
+ "commit": {
6
+ "sha": "deb794faad098f83335c11710203e23a7241319c",
7
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/deb794faad098f83335c11710203e23a7241319c"
8
+ },
9
+ "name": "v0.5.6"
10
+ },
11
+ {
12
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.7",
13
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.7",
14
+ "commit": {
15
+ "sha": "cb03cd2eb924129fd12cd501ee4178fc0dccaefe",
16
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/cb03cd2eb924129fd12cd501ee4178fc0dccaefe"
17
+ },
18
+ "name": "v0.5.7"
19
+ },
20
+ {
21
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.1.1",
22
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.1.1",
23
+ "commit": {
24
+ "sha": "3c166066ca364d9caebd3710adebd6ebde61cddb",
25
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/3c166066ca364d9caebd3710adebd6ebde61cddb"
26
+ },
27
+ "name": "v0.1.1"
28
+ },
29
+ {
30
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.3.0",
31
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.3.0",
32
+ "commit": {
33
+ "sha": "3313836ae9c016e835c03f186de641b11a8cc3a8",
34
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/3313836ae9c016e835c03f186de641b11a8cc3a8"
35
+ },
36
+ "name": "v0.3.0"
37
+ },
38
+ {
39
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.2.1",
40
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.2.1",
41
+ "commit": {
42
+ "sha": "ba31dbf39a3bfb7100c580751f31edc3513cba20",
43
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/ba31dbf39a3bfb7100c580751f31edc3513cba20"
44
+ },
45
+ "name": "v0.2.1"
46
+ },
47
+ {
48
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.1.2",
49
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.1.2",
50
+ "commit": {
51
+ "sha": "86f5a2a83dae49db9f015ef5fca7816b2f9c6203",
52
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/86f5a2a83dae49db9f015ef5fca7816b2f9c6203"
53
+ },
54
+ "name": "v0.1.2"
55
+ },
56
+ {
57
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.3.1",
58
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.3.1",
59
+ "commit": {
60
+ "sha": "4d266f42b68013139c6015606f2cfbe4b492d49f",
61
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/4d266f42b68013139c6015606f2cfbe4b492d49f"
62
+ },
63
+ "name": "v0.3.1"
64
+ },
65
+ {
66
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.0",
67
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.0",
68
+ "commit": {
69
+ "sha": "101c55f10b5995d40141be3b35a78fe5dd947cc6",
70
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/101c55f10b5995d40141be3b35a78fe5dd947cc6"
71
+ },
72
+ "name": "v0.5.0"
73
+ },
74
+ {
75
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.1",
76
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.1",
77
+ "commit": {
78
+ "sha": "54d4813c98606f712f55904925b122e8881e19d0",
79
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/54d4813c98606f712f55904925b122e8881e19d0"
80
+ },
81
+ "name": "v0.5.1"
82
+ },
83
+ {
84
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.6.0",
85
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.6.0",
86
+ "commit": {
87
+ "sha": "74c8201857c0ddb77aa51dbfee8d8d6a2ecd9200",
88
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/74c8201857c0ddb77aa51dbfee8d8d6a2ecd9200"
89
+ },
90
+ "name": "v0.6.0"
91
+ },
92
+ {
93
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.2",
94
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.2",
95
+ "commit": {
96
+ "sha": "53397635da83a2f4b5e862b5e59cc66f6c39f9c6",
97
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/53397635da83a2f4b5e862b5e59cc66f6c39f9c6"
98
+ },
99
+ "name": "v0.5.2"
100
+ },
101
+ {
102
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.6.1",
103
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.6.1",
104
+ "commit": {
105
+ "sha": "6411855dce705d873e64139d9f97f92dcfae7956",
106
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/6411855dce705d873e64139d9f97f92dcfae7956"
107
+ },
108
+ "name": "v0.6.1"
109
+ },
110
+ {
111
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.7.0",
112
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.7.0",
113
+ "commit": {
114
+ "sha": "d7c23bc2e8ad3a309a96f4d09a0fb26fd9c524bc",
115
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/d7c23bc2e8ad3a309a96f4d09a0fb26fd9c524bc"
116
+ },
117
+ "name": "v0.7.0"
118
+ },
119
+ {
120
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.3",
121
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.3",
122
+ "commit": {
123
+ "sha": "53d4244e97e199b9ceecbd4a41c712e116c69a31",
124
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/53d4244e97e199b9ceecbd4a41c712e116c69a31"
125
+ },
126
+ "name": "v0.5.3"
127
+ },
128
+ {
129
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.7.1",
130
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.7.1",
131
+ "commit": {
132
+ "sha": "41c3e49e672b54bef2fe8d383afc2f8623dd4a90",
133
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/41c3e49e672b54bef2fe8d383afc2f8623dd4a90"
134
+ },
135
+ "name": "v0.7.1"
136
+ },
137
+ {
138
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.4",
139
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.4",
140
+ "commit": {
141
+ "sha": "67f5c0b580f7bc5d77030bca27d24542eb8f85f0",
142
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/67f5c0b580f7bc5d77030bca27d24542eb8f85f0"
143
+ },
144
+ "name": "v0.5.4"
145
+ },
146
+ {
147
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.7.2",
148
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.7.2",
149
+ "commit": {
150
+ "sha": "2ce28e9a81a77bc396850991d86564fd09a9b150",
151
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/2ce28e9a81a77bc396850991d86564fd09a9b150"
152
+ },
153
+ "name": "v0.7.2"
154
+ },
155
+ {
156
+ "tarball_url": "https://github.com/technoweenie/faraday/tarball/v0.5.5",
157
+ "zipball_url": "https://github.com/technoweenie/faraday/zipball/v0.5.5",
158
+ "commit": {
159
+ "sha": "825c86d4c4dd7f65667f4c4b18b73fb2f07e9076",
160
+ "url": "https://api.github.com/repos/technoweenie/faraday/commits/825c86d4c4dd7f65667f4c4b18b73fb2f07e9076"
161
+ },
162
+ "name": "v0.5.5"
163
+ }
164
+ ]
@@ -0,0 +1,17 @@
1
+ [
2
+ {
3
+ "url": "https://api.github.com/teams/17383",
4
+ "name": "Developers",
5
+ "id": 17383
6
+ },
7
+ {
8
+ "url": "https://api.github.com/teams/129199",
9
+ "name": "Freelances",
10
+ "id": 129199
11
+ },
12
+ {
13
+ "url": "https://api.github.com/teams/32067002",
14
+ "name": "Guests",
15
+ "id": 32067002
16
+ }
17
+ ]
@@ -0,0 +1,8 @@
1
+ {
2
+ "url": "https://api.github.com/teams/1",
3
+ "name": "Owners",
4
+ "id": 1,
5
+ "permission": "admin",
6
+ "members_count": 3,
7
+ "repos_count": 10
8
+ }
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "login": "octocat",
4
+ "id": 1,
5
+ "gravatar_url": "https://github.com/images/error/octocat_happy.gif",
6
+ "url": "https://api.github.com/users/octocat"
7
+ }
8
+ ]
@@ -0,0 +1,28 @@
1
+ [
2
+ {
3
+ "url": "https://api.github.com/repos/octocat/Hello-World",
4
+ "html_url": "https://github.com/octocat/Hello-World",
5
+ "clone_url": "https://github.com/octocat/Hello-World.git",
6
+ "git_url": "git://github.com/octocat/Hello-World.git",
7
+ "ssh_url": "git@github.com:octocat/Hello-World.git",
8
+ "svn_url": "https://svn.github.com/octocat/Hello-World",
9
+ "owner": {
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
+ "name": "Hello-World",
16
+ "description": "This your first repo!",
17
+ "homepage": "https://github.com",
18
+ "language": null,
19
+ "private": false,
20
+ "fork": false,
21
+ "forks": 9,
22
+ "watchers": 80,
23
+ "size": 108,
24
+ "open_issues": 0,
25
+ "pushed_at": "2011-01-26T19:06:43Z",
26
+ "created_at": "2011-01-26T19:01:12Z"
27
+ }
28
+ ]