onebox 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +4 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +154 -113
  5. data/lib/onebox.rb +6 -3
  6. data/lib/onebox/engine.rb +28 -26
  7. data/lib/onebox/engine/amazon_onebox.rb +4 -2
  8. data/lib/onebox/engine/bliptv_onebox.rb +4 -2
  9. data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
  10. data/lib/onebox/engine/college_humor_onebox.rb +3 -2
  11. data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
  12. data/lib/onebox/engine/dotsub_onebox.rb +4 -2
  13. data/lib/onebox/engine/example_onebox.rb +4 -5
  14. data/lib/onebox/engine/flickr_onebox.rb +3 -2
  15. data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
  16. data/lib/onebox/engine/github_blob_onebox.rb +28 -0
  17. data/lib/onebox/engine/github_commit_onebox.rb +43 -0
  18. data/lib/onebox/engine/github_gist_onebox.rb +33 -0
  19. data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
  20. data/lib/onebox/engine/html.rb +1 -1
  21. data/lib/onebox/engine/hulu_onebox.rb +5 -2
  22. data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
  23. data/lib/onebox/engine/itunes_onebox.rb +28 -0
  24. data/lib/onebox/engine/json.rb +11 -0
  25. data/lib/onebox/engine/kinomap_onebox.rb +27 -0
  26. data/lib/onebox/engine/nfb_onebox.rb +5 -2
  27. data/lib/onebox/engine/open_graph.rb +1 -1
  28. data/lib/onebox/engine/qik_onebox.rb +4 -2
  29. data/lib/onebox/engine/revision3_onebox.rb +3 -2
  30. data/lib/onebox/engine/slideshare_onebox.rb +4 -2
  31. data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
  32. data/lib/onebox/engine/spotify_onebox.rb +27 -0
  33. data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
  34. data/lib/onebox/engine/ted_onebox.rb +5 -2
  35. data/lib/onebox/engine/twitter_onebox.rb +31 -0
  36. data/lib/onebox/engine/viddler_onebox.rb +5 -3
  37. data/lib/onebox/engine/vimeo_onebox.rb +3 -2
  38. data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
  39. data/lib/onebox/engine/yfrog_onebox.rb +5 -2
  40. data/lib/onebox/version.rb +1 -1
  41. data/lib/onebox/view.rb +21 -0
  42. data/onebox.gemspec +1 -1
  43. data/spec/fixtures/githubblob.response +922 -0
  44. data/spec/fixtures/githubcommit.response +87 -0
  45. data/spec/fixtures/githubgist.response +468 -0
  46. data/spec/fixtures/githubpullrequest.response +216 -0
  47. data/spec/fixtures/imguralbum.response +941 -0
  48. data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
  49. data/spec/fixtures/itunes.response +402 -0
  50. data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
  51. data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
  52. data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
  53. data/spec/fixtures/spotify.response +250 -0
  54. data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
  55. data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
  56. data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
  57. data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
  58. data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
  59. data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
  60. data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
  61. data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
  62. data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
  63. data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
  64. data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
  65. data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
  66. data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
  67. data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
  68. data/spec/lib/onebox/engine/html_spec.rb +27 -0
  69. data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
  70. data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
  71. data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
  72. data/spec/lib/onebox/engine/json_spec.rb +27 -0
  73. data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
  74. data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
  75. data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
  76. data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
  77. data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
  78. data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
  79. data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
  80. data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
  81. data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
  82. data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
  83. data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
  84. data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
  85. data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
  86. data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
  87. data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
  88. data/spec/lib/onebox/engine_spec.rb +38 -27
  89. data/spec/lib/onebox/preview_spec.rb +3 -1
  90. data/spec/lib/onebox/view_spec.rb +16 -0
  91. data/spec/lib/onebox_spec.rb +1 -1
  92. data/spec/spec_helper.rb +8 -3
  93. data/spec/support/html_spec_helper.rb +1 -1
  94. data/templates/_layout.mustache +4 -0
  95. data/templates/amazon.mustache +5 -0
  96. data/templates/bliptv.mustache +5 -0
  97. data/templates/clikthrough.mustache +4 -0
  98. data/templates/collegehumor.mustache +5 -0
  99. data/templates/dailymotion.mustache +5 -0
  100. data/templates/dotsub.mustache +5 -0
  101. data/templates/example.mustache +2 -0
  102. data/templates/flickr.mustache +4 -0
  103. data/templates/funnyordie.mustache +6 -0
  104. data/templates/githubblob.mustache +5 -0
  105. data/templates/githubcommit.mustache +11 -0
  106. data/templates/githubgist.mustache +3 -0
  107. data/templates/githubpullrequest.mustache +14 -0
  108. data/templates/hulu.mustache +6 -0
  109. data/templates/imgurimage.mustache +3 -0
  110. data/templates/itunes.mustache +4 -0
  111. data/templates/kinomap.mustache +5 -0
  112. data/templates/nfb.mustache +5 -0
  113. data/templates/qik.mustache +4 -0
  114. data/templates/revision3.mustache +5 -0
  115. data/templates/slideshare.mustache +4 -0
  116. data/templates/soundcloud.mustache +5 -0
  117. data/templates/spotify.mustache +4 -0
  118. data/templates/stackexchange.mustache +3 -0
  119. data/templates/ted.mustache +5 -0
  120. data/templates/twitter.mustache +7 -0
  121. data/templates/viddler.mustache +5 -0
  122. data/templates/vimeo.mustache +5 -0
  123. data/templates/wikipedia.mustache +4 -0
  124. data/templates/yfrog.mustache +4 -0
  125. metadata +139 -90
  126. data/spec/fixtures/apple.response +0 -391
  127. data/spec/fixtures/clickthrough.response +0 -1472
  128. data/spec/fixtures/gist.response +0 -282
  129. data/spec/fixtures/github_blob.response +0 -706
  130. data/spec/fixtures/github_commit.response +0 -881
  131. data/spec/fixtures/github_pullrequest.response +0 -1619
  132. data/spec/lib/onebox/engine/example_spec.rb +0 -18
  133. data/templates/amazon.handlebars +0 -9
  134. data/templates/bliptv.handlebars +0 -10
  135. data/templates/clickthrough.handlebars +0 -8
  136. data/templates/clikthrough.handlebars +0 -8
  137. data/templates/collegehumor.handlebars +0 -9
  138. data/templates/dailymotion.handlebars +0 -9
  139. data/templates/dotsub.handlebars +0 -9
  140. data/templates/flickr.handlebars +0 -8
  141. data/templates/funnyordie.handlebars +0 -9
  142. data/templates/hulu.handlebars +0 -9
  143. data/templates/nfb.handlebars +0 -8
  144. data/templates/qik.handlebars +0 -7
  145. data/templates/revision3.handlebars +0 -9
  146. data/templates/slideshare.handlebars +0 -8
  147. data/templates/soundcloud.handlebars +0 -9
  148. data/templates/stackexchange.handlebars +0 -7
  149. data/templates/ted.handlebars +0 -8
  150. data/templates/viddler.handlebars +0 -9
  151. data/templates/vimeo.handlebars +0 -9
  152. data/templates/wikipedia.handlebars +0 -8
  153. data/templates/yfrog.handlebars +0 -8
@@ -0,0 +1,87 @@
1
+ {
2
+ "sha": "803d023e2307309f8b776ab3b8b7e38ba91c0919",
3
+ "commit": {
4
+ "author": {
5
+ "name": "Sam",
6
+ "email": "sam.saffron@gmail.com",
7
+ "date": "2013-08-02T02:03:53Z"
8
+ },
9
+ "committer": {
10
+ "name": "Sam",
11
+ "email": "sam.saffron@gmail.com",
12
+ "date": "2013-08-02T02:16:44Z"
13
+ },
14
+ "message": "Fixed GitHub auth, GitHub can provide us with a valid email - so automatically log in for those cases",
15
+ "tree": {
16
+ "sha": "8e0f3e17bb5ee3edc5701229dc1ad82dc5a41de6",
17
+ "url": "https://api.github.com/repos/discourse/discourse/git/trees/8e0f3e17bb5ee3edc5701229dc1ad82dc5a41de6"
18
+ },
19
+ "url": "https://api.github.com/repos/discourse/discourse/git/commits/803d023e2307309f8b776ab3b8b7e38ba91c0919",
20
+ "comment_count": 0
21
+ },
22
+ "url": "https://api.github.com/repos/discourse/discourse/commits/803d023e2307309f8b776ab3b8b7e38ba91c0919",
23
+ "html_url": "https://github.com/discourse/discourse/commit/803d023e2307309f8b776ab3b8b7e38ba91c0919",
24
+ "comments_url": "https://api.github.com/repos/discourse/discourse/commits/803d023e2307309f8b776ab3b8b7e38ba91c0919/comments",
25
+ "author": {
26
+ "login": "SamSaffron",
27
+ "id": 5213,
28
+ "avatar_url": "https://2.gravatar.com/avatar/3dcae8378d46c244172a115c28ca49ce?d=https%3A%2F%2Fidenticons.github.com%2F7d3010c11d08cf990b7614d2c2ca9098.png",
29
+ "gravatar_id": "3dcae8378d46c244172a115c28ca49ce",
30
+ "url": "https://api.github.com/users/SamSaffron",
31
+ "html_url": "https://github.com/SamSaffron",
32
+ "followers_url": "https://api.github.com/users/SamSaffron/followers",
33
+ "following_url": "https://api.github.com/users/SamSaffron/following{/other_user}",
34
+ "gists_url": "https://api.github.com/users/SamSaffron/gists{/gist_id}",
35
+ "starred_url": "https://api.github.com/users/SamSaffron/starred{/owner}{/repo}",
36
+ "subscriptions_url": "https://api.github.com/users/SamSaffron/subscriptions",
37
+ "organizations_url": "https://api.github.com/users/SamSaffron/orgs",
38
+ "repos_url": "https://api.github.com/users/SamSaffron/repos",
39
+ "events_url": "https://api.github.com/users/SamSaffron/events{/privacy}",
40
+ "received_events_url": "https://api.github.com/users/SamSaffron/received_events",
41
+ "type": "User"
42
+ },
43
+ "committer": {
44
+ "login": "SamSaffron",
45
+ "id": 5213,
46
+ "avatar_url": "https://2.gravatar.com/avatar/3dcae8378d46c244172a115c28ca49ce?d=https%3A%2F%2Fidenticons.github.com%2F7d3010c11d08cf990b7614d2c2ca9098.png",
47
+ "gravatar_id": "3dcae8378d46c244172a115c28ca49ce",
48
+ "url": "https://api.github.com/users/SamSaffron",
49
+ "html_url": "https://github.com/SamSaffron",
50
+ "followers_url": "https://api.github.com/users/SamSaffron/followers",
51
+ "following_url": "https://api.github.com/users/SamSaffron/following{/other_user}",
52
+ "gists_url": "https://api.github.com/users/SamSaffron/gists{/gist_id}",
53
+ "starred_url": "https://api.github.com/users/SamSaffron/starred{/owner}{/repo}",
54
+ "subscriptions_url": "https://api.github.com/users/SamSaffron/subscriptions",
55
+ "organizations_url": "https://api.github.com/users/SamSaffron/orgs",
56
+ "repos_url": "https://api.github.com/users/SamSaffron/repos",
57
+ "events_url": "https://api.github.com/users/SamSaffron/events{/privacy}",
58
+ "received_events_url": "https://api.github.com/users/SamSaffron/received_events",
59
+ "type": "User"
60
+ },
61
+ "parents": [
62
+ {
63
+ "sha": "cf333268d5b48946a659f173716aecc1096d7e66",
64
+ "url": "https://api.github.com/repos/discourse/discourse/commits/cf333268d5b48946a659f173716aecc1096d7e66",
65
+ "html_url": "https://github.com/discourse/discourse/commit/cf333268d5b48946a659f173716aecc1096d7e66"
66
+ }
67
+ ],
68
+ "stats": {
69
+ "total": 20,
70
+ "additions": 18,
71
+ "deletions": 2
72
+ },
73
+ "files": [
74
+ {
75
+ "sha": "0edc93bbf3d28a5020ee8b2d44ed68d4e3706a1f",
76
+ "filename": "app/controllers/users/omniauth_callbacks_controller.rb",
77
+ "status": "modified",
78
+ "additions": 18,
79
+ "deletions": 2,
80
+ "changes": 20,
81
+ "blob_url": "https://github.com/discourse/discourse/blob/803d023e2307309f8b776ab3b8b7e38ba91c0919/app/controllers/users/omniauth_callbacks_controller.rb",
82
+ "raw_url": "https://github.com/discourse/discourse/raw/803d023e2307309f8b776ab3b8b7e38ba91c0919/app/controllers/users/omniauth_callbacks_controller.rb",
83
+ "contents_url": "https://api.github.com/repos/discourse/discourse/contents/app/controllers/users/omniauth_callbacks_controller.rb?ref=803d023e2307309f8b776ab3b8b7e38ba91c0919",
84
+ "patch": "@@ -210,6 +210,8 @@ def create_or_sign_on_user_using_openid(auth_token)\n \n if user_open_id.blank? && user = User.find_by_email(email)\n # we trust so do an email lookup\n+ # TODO some openid providers may not be trust worthy, allow for that\n+ # for now we are good (google, yahoo are trust worthy)\n user_open_id = UserOpenId.create(url: identity_url , user_id: user.id, email: email, active: true)\n end\n \n@@ -250,18 +252,32 @@ def create_or_sign_on_user_using_github(auth_token)\n \n data = auth_token[:info]\n screen_name = data[\"nickname\"]\n+ email = data[\"email\"]\n github_user_id = auth_token[\"uid\"]\n \n session[:authentication] = {\n github_user_id: github_user_id,\n- github_screen_name: screen_name\n+ github_screen_name: screen_name,\n+ email: email,\n+ email_valid: true\n }\n \n user_info = GithubUserInfo.where(github_user_id: github_user_id).first\n \n+ if !user_info && user = User.find_by_email(email)\n+ # we trust so do an email lookup\n+ user_info = GithubUserInfo.create(\n+ user_id: user.id,\n+ screen_name: screen_name,\n+ github_user_id: github_user_id\n+ )\n+ end\n+\n @data = {\n username: screen_name,\n- auth_provider: \"Github\"\n+ auth_provider: \"Github\",\n+ email: email,\n+ email_valid: true\n }\n \n process_user_info(user_info, screen_name)"
85
+ }
86
+ ]
87
+ }
@@ -0,0 +1,468 @@
1
+ {
2
+ "url": "https://api.github.com/gists/153044e9bea3331cc103",
3
+ "forks_url": "https://api.github.com/gists/153044e9bea3331cc103/forks",
4
+ "commits_url": "https://api.github.com/gists/153044e9bea3331cc103/commits",
5
+ "id": "153044e9bea3331cc103",
6
+ "git_pull_url": "https://gist.github.com/153044e9bea3331cc103.git",
7
+ "git_push_url": "https://gist.github.com/153044e9bea3331cc103.git",
8
+ "html_url": "https://gist.github.com/153044e9bea3331cc103",
9
+ "files": {
10
+ "gistfile1.md": {
11
+ "filename": "gistfile1.md",
12
+ "type": "text/plain",
13
+ "language": "Markdown",
14
+ "raw_url": "https://gist.github.com/raw/153044e9bea3331cc103/1f2450da387d06ceacd104f4ed08228c02f3af64/gistfile1.md",
15
+ "size": 2878,
16
+ "content": "# Create a new blog post on GitHub\n\n**1. Navigate to the `blog/_posts` directory**\n\nhttps://github.com/rails-girls-summer-of-code/summer-of-code/tree/gh-pages/blog/_posts\n\n**2. Add a new file for your post**\n\nby clicking on the little plus-sign: \n\n![screen shot 2013-08-01 at 12 42 22 pm](https://f.cloud.github.com/assets/1711357/893124/2f4a8ea4-fa97-11e2-9cf6-9193d78cfadb.png)\n\n*how-to: https://github.com/blog/1327-creating-files-on-github*\n\nThe filename should follow the naming convention of the existing blog posts:\n2013-month-day-blogposttitle. The file extension will determine the format used. Use `.md` for Markdown. Don't worry, Markdown is really easy (https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).\nHere an example:\n\n```\n---\ntitle: Introducing inchworms\nlayout: post\ncreated_at: Mon July 15 2013\npermalink: blog/introducing-inchworms\ncurrent: blog\nauthor: Anja and Carla\ntwitter: _tyranja_\n---\n\nHej Everbody,\n\n**We are the inchworms** and we chose that name because the coding process for us is like crawling inch by inch.\n\nAlso we like this [video](https://www.youtube.com/watch?v=cyasgr9mn3s).\n\n```\n\n\nbut you don't even have to learn that: you also can just mix in html. \nHere is an example: \n\n```\n---\ntitle: The beginning\nlayout: post\ncreated_at: Sat July 13 2013\npermalink: blog/the-beginning\ncurrent: blog\nauthor: Anika\ntwitter: langziehohr\n---\n<img src=\"https://f.cloud.github.com/assets/1711357/792581/fdabc3fc-eba7-11e2-9fcc-b114f9a1d44f.png\" align=\"middle\" height=\"300\">\n\n\nOur journey has begun and we're right on track, **code island starboard ahead!**\n\n*Since July 1st* we wrote 222 emails,<a href=\"http://teams.railsgirlssummerofcode.org/\"> 133 blog posts </a> have been posted by the teams, they spent more than 99 hours of coding - and this is only the beginning!\n\nIt's been now 12 days since the summer of code officially started and here are the students of 12 teams saying hello world and obviously being super happy about their Summer of Code! Thanks to everybody who made this happen &hearts;\n\n<img src=\"https://f.cloud.github.com/assets/1711357/792560/1d1326d8-eba6-11e2-8fb3-2de8298fb07b.png\" width=\"600\">\n\n```\n\n**4. Add the Jekyll header for the meta data**\n\nThis is the header:\n\n```\n---\ntitle: The beginning\nlayout: post\ncreated_at: Sat July 13 2013\npermalink: blog/the-beginning\ncurrent: blog\nauthor: Anika\ntwitter: langziehohr\n---\n```\n\nOf course you have to change it so it will have your name and date in it.\n\n\n**5. Add your blog post text**\n**6. Save the file**\n**7. Send a pull request**\n\nYou should see that grey \"pull request\" button. push it, give your request a title and confirm.\n\n![screen shot 2013-07-26 at 5 31 50 pm](https://f.cloud.github.com/assets/1711357/893147/102c669a-fa98-11e2-86e3-4c60d8484833.png)\n\n\n*how-to: https://help.github.com/articles/creating-a-pull-request*\n\n**8. Ready! &hearts;**\n\n\n\n "
17
+ }
18
+ },
19
+ "public": false,
20
+ "created_at": "2013-08-01T10:31:26Z",
21
+ "updated_at": "2013-08-01T11:07:40Z",
22
+ "description": "",
23
+ "comments": 0,
24
+ "user": {
25
+ "login": "anikalindtner",
26
+ "id": 1711357,
27
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
28
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
29
+ "url": "https://api.github.com/users/anikalindtner",
30
+ "html_url": "https://github.com/anikalindtner",
31
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
32
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
33
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
34
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
35
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
36
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
37
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
38
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
39
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
40
+ "type": "User"
41
+ },
42
+ "comments_url": "https://api.github.com/gists/153044e9bea3331cc103/comments",
43
+ "forks": [
44
+
45
+ ],
46
+ "history": [
47
+ {
48
+ "user": {
49
+ "login": "anikalindtner",
50
+ "id": 1711357,
51
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
52
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
53
+ "url": "https://api.github.com/users/anikalindtner",
54
+ "html_url": "https://github.com/anikalindtner",
55
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
56
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
57
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
58
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
59
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
60
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
61
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
62
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
63
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
64
+ "type": "User"
65
+ },
66
+ "version": "a015b5da4dcda99437431fc4da60c66792293e08",
67
+ "committed_at": "2013-08-01T11:07:40Z",
68
+ "change_status": {
69
+ "total": 4,
70
+ "additions": 3,
71
+ "deletions": 1
72
+ },
73
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/a015b5da4dcda99437431fc4da60c66792293e08"
74
+ },
75
+ {
76
+ "user": {
77
+ "login": "anikalindtner",
78
+ "id": 1711357,
79
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
80
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
81
+ "url": "https://api.github.com/users/anikalindtner",
82
+ "html_url": "https://github.com/anikalindtner",
83
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
84
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
85
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
86
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
87
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
88
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
89
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
90
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
91
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
92
+ "type": "User"
93
+ },
94
+ "version": "559fbac4ecb84a4b00ed15cb987fa46a49ca7332",
95
+ "committed_at": "2013-08-01T11:07:15Z",
96
+ "change_status": {
97
+ "total": 27,
98
+ "additions": 24,
99
+ "deletions": 3
100
+ },
101
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/559fbac4ecb84a4b00ed15cb987fa46a49ca7332"
102
+ },
103
+ {
104
+ "user": {
105
+ "login": "anikalindtner",
106
+ "id": 1711357,
107
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
108
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
109
+ "url": "https://api.github.com/users/anikalindtner",
110
+ "html_url": "https://github.com/anikalindtner",
111
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
112
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
113
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
114
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
115
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
116
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
117
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
118
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
119
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
120
+ "type": "User"
121
+ },
122
+ "version": "6b7a92b9312d2ab30d7b8c8613950af682ee95f3",
123
+ "committed_at": "2013-08-01T11:03:00Z",
124
+ "change_status": {
125
+ "total": 25,
126
+ "additions": 23,
127
+ "deletions": 2
128
+ },
129
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/6b7a92b9312d2ab30d7b8c8613950af682ee95f3"
130
+ },
131
+ {
132
+ "user": {
133
+ "login": "anikalindtner",
134
+ "id": 1711357,
135
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
136
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
137
+ "url": "https://api.github.com/users/anikalindtner",
138
+ "html_url": "https://github.com/anikalindtner",
139
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
140
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
141
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
142
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
143
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
144
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
145
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
146
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
147
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
148
+ "type": "User"
149
+ },
150
+ "version": "38cac6a18aa0e8e70e41595f574de280bc8ee32b",
151
+ "committed_at": "2013-08-01T10:58:47Z",
152
+ "change_status": {
153
+ "total": 12,
154
+ "additions": 11,
155
+ "deletions": 1
156
+ },
157
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/38cac6a18aa0e8e70e41595f574de280bc8ee32b"
158
+ },
159
+ {
160
+ "user": {
161
+ "login": "anikalindtner",
162
+ "id": 1711357,
163
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
164
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
165
+ "url": "https://api.github.com/users/anikalindtner",
166
+ "html_url": "https://github.com/anikalindtner",
167
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
168
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
169
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
170
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
171
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
172
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
173
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
174
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
175
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
176
+ "type": "User"
177
+ },
178
+ "version": "1d56f9394eab6bceee2f11fa2c6afd8a81305f06",
179
+ "committed_at": "2013-08-01T10:55:53Z",
180
+ "change_status": {
181
+ "total": 2,
182
+ "additions": 1,
183
+ "deletions": 1
184
+ },
185
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/1d56f9394eab6bceee2f11fa2c6afd8a81305f06"
186
+ },
187
+ {
188
+ "user": {
189
+ "login": "anikalindtner",
190
+ "id": 1711357,
191
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
192
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
193
+ "url": "https://api.github.com/users/anikalindtner",
194
+ "html_url": "https://github.com/anikalindtner",
195
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
196
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
197
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
198
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
199
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
200
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
201
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
202
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
203
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
204
+ "type": "User"
205
+ },
206
+ "version": "f0afe4584d0b9b5d733fe039eca6c16bd9380243",
207
+ "committed_at": "2013-08-01T10:55:26Z",
208
+ "change_status": {
209
+ "total": 20,
210
+ "additions": 11,
211
+ "deletions": 9
212
+ },
213
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/f0afe4584d0b9b5d733fe039eca6c16bd9380243"
214
+ },
215
+ {
216
+ "user": {
217
+ "login": "anikalindtner",
218
+ "id": 1711357,
219
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
220
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
221
+ "url": "https://api.github.com/users/anikalindtner",
222
+ "html_url": "https://github.com/anikalindtner",
223
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
224
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
225
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
226
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
227
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
228
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
229
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
230
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
231
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
232
+ "type": "User"
233
+ },
234
+ "version": "899df3a918c73452b06582bf98609aaf2af3f4c7",
235
+ "committed_at": "2013-08-01T10:54:29Z",
236
+ "change_status": {
237
+ "total": 30,
238
+ "additions": 16,
239
+ "deletions": 14
240
+ },
241
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/899df3a918c73452b06582bf98609aaf2af3f4c7"
242
+ },
243
+ {
244
+ "user": {
245
+ "login": "anikalindtner",
246
+ "id": 1711357,
247
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
248
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
249
+ "url": "https://api.github.com/users/anikalindtner",
250
+ "html_url": "https://github.com/anikalindtner",
251
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
252
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
253
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
254
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
255
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
256
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
257
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
258
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
259
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
260
+ "type": "User"
261
+ },
262
+ "version": "0afd51f2c3e993a073cbff8c4f434100b823a696",
263
+ "committed_at": "2013-08-01T10:52:36Z",
264
+ "change_status": {
265
+ "total": 10,
266
+ "additions": 1,
267
+ "deletions": 9
268
+ },
269
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/0afd51f2c3e993a073cbff8c4f434100b823a696"
270
+ },
271
+ {
272
+ "user": {
273
+ "login": "anikalindtner",
274
+ "id": 1711357,
275
+ "avatar_url": "https://0.gravatar.com/avatar/de4c05b637f469f1b2b1571da7599ffd?d=https%3A%2F%2Fidenticons.github.com%2F33d3c01e1eea78d0bc096af28c29f896.png",
276
+ "gravatar_id": "de4c05b637f469f1b2b1571da7599ffd",
277
+ "url": "https://api.github.com/users/anikalindtner",
278
+ "html_url": "https://github.com/anikalindtner",
279
+ "followers_url": "https://api.github.com/users/anikalindtner/followers",
280
+ "following_url": "https://api.github.com/users/anikalindtner/following{/other_user}",
281
+ "gists_url": "https://api.github.com/users/anikalindtner/gists{/gist_id}",
282
+ "starred_url": "https://api.github.com/users/anikalindtner/starred{/owner}{/repo}",
283
+ "subscriptions_url": "https://api.github.com/users/anikalindtner/subscriptions",
284
+ "organizations_url": "https://api.github.com/users/anikalindtner/orgs",
285
+ "repos_url": "https://api.github.com/users/anikalindtner/repos",
286
+ "events_url": "https://api.github.com/users/anikalindtner/events{/privacy}",
287
+ "received_events_url": "https://api.github.com/users/anikalindtner/received_events",
288
+ "type": "User"
289
+ },
290
+ "version": "78c5b6ba8d4f1893122a9bac1ec0e794204fe669",
291
+ "committed_at": "2013-08-01T10:51:41Z",
292
+ "change_status": {
293
+ "total": 42,
294
+ "additions": 33,
295
+ "deletions": 9
296
+ },
297
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/78c5b6ba8d4f1893122a9bac1ec0e794204fe669"
298
+ },
299
+ {
300
+ "user": {
301
+ "login": "svenfuchs",
302
+ "id": 2208,
303
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
304
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
305
+ "url": "https://api.github.com/users/svenfuchs",
306
+ "html_url": "https://github.com/svenfuchs",
307
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
308
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
309
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
310
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
311
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
312
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
313
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
314
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
315
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
316
+ "type": "User"
317
+ },
318
+ "version": "f4facca4e097a40edcd3f68f6746c39d2b69c32f",
319
+ "committed_at": "2013-07-23T13:24:22Z",
320
+ "change_status": {
321
+ "total": 2,
322
+ "additions": 1,
323
+ "deletions": 1
324
+ },
325
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/f4facca4e097a40edcd3f68f6746c39d2b69c32f"
326
+ },
327
+ {
328
+ "user": {
329
+ "login": "svenfuchs",
330
+ "id": 2208,
331
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
332
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
333
+ "url": "https://api.github.com/users/svenfuchs",
334
+ "html_url": "https://github.com/svenfuchs",
335
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
336
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
337
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
338
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
339
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
340
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
341
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
342
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
343
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
344
+ "type": "User"
345
+ },
346
+ "version": "2d5c1b38d32d694e35c06881ca0c59b81315b7ca",
347
+ "committed_at": "2013-06-20T10:22:38Z",
348
+ "change_status": {
349
+
350
+ },
351
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/2d5c1b38d32d694e35c06881ca0c59b81315b7ca"
352
+ },
353
+ {
354
+ "user": {
355
+ "login": "svenfuchs",
356
+ "id": 2208,
357
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
358
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
359
+ "url": "https://api.github.com/users/svenfuchs",
360
+ "html_url": "https://github.com/svenfuchs",
361
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
362
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
363
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
364
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
365
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
366
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
367
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
368
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
369
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
370
+ "type": "User"
371
+ },
372
+ "version": "3a9c5e19452dadcaacd0efaa2428d9c0d5664efc",
373
+ "committed_at": "2013-06-20T10:22:26Z",
374
+ "change_status": {
375
+
376
+ },
377
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/3a9c5e19452dadcaacd0efaa2428d9c0d5664efc"
378
+ },
379
+ {
380
+ "user": {
381
+ "login": "svenfuchs",
382
+ "id": 2208,
383
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
384
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
385
+ "url": "https://api.github.com/users/svenfuchs",
386
+ "html_url": "https://github.com/svenfuchs",
387
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
388
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
389
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
390
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
391
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
392
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
393
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
394
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
395
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
396
+ "type": "User"
397
+ },
398
+ "version": "f66a9ca8330fe880d6c82e48fd07e2dbd8eb6e0b",
399
+ "committed_at": "2013-06-20T10:22:05Z",
400
+ "change_status": {
401
+
402
+ },
403
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/f66a9ca8330fe880d6c82e48fd07e2dbd8eb6e0b"
404
+ },
405
+ {
406
+ "user": {
407
+ "login": "svenfuchs",
408
+ "id": 2208,
409
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
410
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
411
+ "url": "https://api.github.com/users/svenfuchs",
412
+ "html_url": "https://github.com/svenfuchs",
413
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
414
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
415
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
416
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
417
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
418
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
419
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
420
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
421
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
422
+ "type": "User"
423
+ },
424
+ "version": "835307f4e04072f76efa5f5be35bac998c87327e",
425
+ "committed_at": "2013-06-20T10:21:55Z",
426
+ "change_status": {
427
+
428
+ },
429
+ "url": "https://api.github.com/gists/153044e9bea3331cc103/835307f4e04072f76efa5f5be35bac998c87327e"
430
+ }
431
+ ],
432
+ "fork_of": {
433
+ "url": "https://api.github.com/gists/b83fc36b45bcb0338399",
434
+ "forks_url": "https://api.github.com/gists/b83fc36b45bcb0338399/forks",
435
+ "commits_url": "https://api.github.com/gists/b83fc36b45bcb0338399/commits",
436
+ "id": "b83fc36b45bcb0338399",
437
+ "git_pull_url": "https://gist.github.com/b83fc36b45bcb0338399.git",
438
+ "git_push_url": "https://gist.github.com/b83fc36b45bcb0338399.git",
439
+ "html_url": "https://gist.github.com/b83fc36b45bcb0338399",
440
+ "files": {
441
+
442
+ },
443
+ "public": false,
444
+ "created_at": "2013-06-20T10:21:55Z",
445
+ "updated_at": "2013-08-26T07:15:52Z",
446
+ "description": "",
447
+ "comments": 2,
448
+ "user": {
449
+ "login": "svenfuchs",
450
+ "id": 2208,
451
+ "avatar_url": "https://1.gravatar.com/avatar/2f042f300d1249917adf6f13d3f698b2?d=https%3A%2F%2Fidenticons.github.com%2Fcd3afef9b8b89558cd56638c3631868a.png",
452
+ "gravatar_id": "2f042f300d1249917adf6f13d3f698b2",
453
+ "url": "https://api.github.com/users/svenfuchs",
454
+ "html_url": "https://github.com/svenfuchs",
455
+ "followers_url": "https://api.github.com/users/svenfuchs/followers",
456
+ "following_url": "https://api.github.com/users/svenfuchs/following{/other_user}",
457
+ "gists_url": "https://api.github.com/users/svenfuchs/gists{/gist_id}",
458
+ "starred_url": "https://api.github.com/users/svenfuchs/starred{/owner}{/repo}",
459
+ "subscriptions_url": "https://api.github.com/users/svenfuchs/subscriptions",
460
+ "organizations_url": "https://api.github.com/users/svenfuchs/orgs",
461
+ "repos_url": "https://api.github.com/users/svenfuchs/repos",
462
+ "events_url": "https://api.github.com/users/svenfuchs/events{/privacy}",
463
+ "received_events_url": "https://api.github.com/users/svenfuchs/received_events",
464
+ "type": "User"
465
+ },
466
+ "comments_url": "https://api.github.com/gists/b83fc36b45bcb0338399/comments"
467
+ }
468
+ }