hybridgroup-octokit 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +4 -0
- data/.gemtest +0 -0
- data/.gitignore +24 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/Gemfile +3 -0
- data/LICENSE +20 -0
- data/README.markdown +73 -0
- data/Rakefile +8 -0
- data/changelog.markdown +42 -0
- data/lib/faraday/response/raise_error.rb +33 -0
- data/lib/octokit/client/authentication.rb +23 -0
- data/lib/octokit/client/commits.rb +16 -0
- data/lib/octokit/client/connection.rb +34 -0
- data/lib/octokit/client/issues.rb +60 -0
- data/lib/octokit/client/network.rb +15 -0
- data/lib/octokit/client/objects.rb +33 -0
- data/lib/octokit/client/organizations.rb +90 -0
- data/lib/octokit/client/pulls.rb +25 -0
- data/lib/octokit/client/repositories.rb +138 -0
- data/lib/octokit/client/request.rb +41 -0
- data/lib/octokit/client/timelines.rb +22 -0
- data/lib/octokit/client/users.rb +75 -0
- data/lib/octokit/client.rb +40 -0
- data/lib/octokit/configuration.rb +61 -0
- data/lib/octokit/repository.rb +39 -0
- data/lib/octokit/version.rb +3 -0
- data/lib/octokit.rb +53 -0
- data/octokit.gemspec +33 -0
- data/spec/faraday/response_spec.rb +34 -0
- data/spec/fixtures/blob.json +1 -0
- data/spec/fixtures/blob_metadata.json +1 -0
- data/spec/fixtures/blobs.json +1 -0
- data/spec/fixtures/branches.json +1 -0
- data/spec/fixtures/collaborators.json +1 -0
- data/spec/fixtures/comment.json +1 -0
- data/spec/fixtures/comments.json +1 -0
- data/spec/fixtures/commit.json +1 -0
- data/spec/fixtures/commits.json +1 -0
- data/spec/fixtures/contributors.json +1 -0
- data/spec/fixtures/delete_token.json +1 -0
- data/spec/fixtures/emails.json +1 -0
- data/spec/fixtures/followers.json +1 -0
- data/spec/fixtures/following.json +1 -0
- data/spec/fixtures/issue.json +1 -0
- data/spec/fixtures/issues.json +1 -0
- data/spec/fixtures/labels.json +1 -0
- data/spec/fixtures/languages.json +1 -0
- data/spec/fixtures/network.json +1 -0
- data/spec/fixtures/network_data.json +1 -0
- data/spec/fixtures/network_meta.json +1 -0
- data/spec/fixtures/organization.json +1 -0
- data/spec/fixtures/organizations.json +1 -0
- data/spec/fixtures/public_keys.json +1 -0
- data/spec/fixtures/pull.json +1 -0
- data/spec/fixtures/pulls.json +1 -0
- data/spec/fixtures/raw.txt +7 -0
- data/spec/fixtures/repositories.json +1 -0
- data/spec/fixtures/repository.json +1 -0
- data/spec/fixtures/tags.json +1 -0
- data/spec/fixtures/team.json +1 -0
- data/spec/fixtures/teams.json +1 -0
- data/spec/fixtures/timeline.json +1237 -0
- data/spec/fixtures/tree.json +1 -0
- data/spec/fixtures/tree_metadata.json +1 -0
- data/spec/fixtures/user.json +1 -0
- data/spec/fixtures/users.json +1 -0
- data/spec/fixtures/watchers.json +1 -0
- data/spec/helper.rb +64 -0
- data/spec/octokit/client/commits_spec.rb +32 -0
- data/spec/octokit/client/issues_spec.rb +154 -0
- data/spec/octokit/client/network_spec.rb +32 -0
- data/spec/octokit/client/objects_spec.rb +81 -0
- data/spec/octokit/client/organizations_spec.rb +234 -0
- data/spec/octokit/client/pulls_spec.rb +44 -0
- data/spec/octokit/client/repositories_spec.rb +331 -0
- data/spec/octokit/client/timelines_spec.rb +42 -0
- data/spec/octokit/client/users_spec.rb +274 -0
- data/spec/octokit/client_spec.rb +12 -0
- data/spec/octokit_spec.rb +15 -0
- data/spec/repository_spec.rb +54 -0
- metadata +403 -0
| @@ -0,0 +1,1237 @@ | |
| 1 | 
            +
            [{
         | 
| 2 | 
            +
                "actor_attributes": {
         | 
| 3 | 
            +
                    "name": "Edward George",
         | 
| 4 | 
            +
                    "gravatar_id": "a6a6262b5fe436a9342d2d77488e983e",
         | 
| 5 | 
            +
                    "location": "London, UK",
         | 
| 6 | 
            +
                    "blog": "http://insectsarerubbish.org",
         | 
| 7 | 
            +
                    "type": "User",
         | 
| 8 | 
            +
                    "login": "edwardgeorge",
         | 
| 9 | 
            +
                    "email": "this username / gmail"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                "repository": {
         | 
| 12 | 
            +
                    "has_issues": false,
         | 
| 13 | 
            +
                    "language": "Ruby",
         | 
| 14 | 
            +
                    "pushed_at": "2011/01/18 11:42:10 -0800",
         | 
| 15 | 
            +
                    "url": "https://github.com/edwardgeorge/homebrew",
         | 
| 16 | 
            +
                    "has_downloads": false,
         | 
| 17 | 
            +
                    "homepage": "http://mxcl.github.com/homebrew",
         | 
| 18 | 
            +
                    "watchers": 1,
         | 
| 19 | 
            +
                    "created_at": "2010/04/13 14:03:14 -0700",
         | 
| 20 | 
            +
                    "forks": 1,
         | 
| 21 | 
            +
                    "fork": true,
         | 
| 22 | 
            +
                    "has_wiki": true,
         | 
| 23 | 
            +
                    "size": 2348,
         | 
| 24 | 
            +
                    "private": false,
         | 
| 25 | 
            +
                    "name": "homebrew",
         | 
| 26 | 
            +
                    "owner": "edwardgeorge",
         | 
| 27 | 
            +
                    "open_issues": 0,
         | 
| 28 | 
            +
                    "description": "The missing package manager for OS X"
         | 
| 29 | 
            +
                },
         | 
| 30 | 
            +
                "created_at": "2011/01/18 11:42:14 -0800",
         | 
| 31 | 
            +
                "public": true,
         | 
| 32 | 
            +
                "actor": "edwardgeorge",
         | 
| 33 | 
            +
                "payload": {
         | 
| 34 | 
            +
                    "repo": "edwardgeorge/homebrew",
         | 
| 35 | 
            +
                    "head": "7f1b4a4b8223fca486f2b9d10bb7a2a57a96b727",
         | 
| 36 | 
            +
                    "size": 3,
         | 
| 37 | 
            +
                    "actor": "edwardgeorge",
         | 
| 38 | 
            +
                    "actor_gravatar": "a6a6262b5fe436a9342d2d77488e983e",
         | 
| 39 | 
            +
                    "shas": [["03eff409125f8e6abccc057d94032179b07612dc", "justin@justinhileman.info", "Version bump git-flow completion.\n\nSigned-off-by: Adam Vandenberg <flangy@gmail.com>", "Justin Hileman"], ["b8771541976f61d3acf5094f121a31e8be822bfb", "uri.laserson@gmail.com", "Added formula for unafold\n\nunafold is an extremely popular tool for computing secondary structures\nof nucleic acids, and it's a standard part of the bioinformatics\nrepertoire.\n\nSigned-off-by: Adam Vandenberg <flangy@gmail.com>", "Uri Laserson"], ["7f1b4a4b8223fca486f2b9d10bb7a2a57a96b727", "edwardgeorge@gmail.com", "Merge branch 'master' of http://github.com/mxcl/homebrew", "Edward George"]],
         | 
| 40 | 
            +
                    "ref": "refs/heads/master"
         | 
| 41 | 
            +
                },
         | 
| 42 | 
            +
                "url": "https://github.com//edwardgeorge/homebrew/compare/9be0b4fb2c...7f1b4a4b82",
         | 
| 43 | 
            +
                "times": 0,
         | 
| 44 | 
            +
                "type": "PushEvent"
         | 
| 45 | 
            +
            },
         | 
| 46 | 
            +
            {
         | 
| 47 | 
            +
                "actor_attributes": {
         | 
| 48 | 
            +
                    "name": "JW",
         | 
| 49 | 
            +
                    "gravatar_id": "ca45063da41a9f3aa9028295d8b66d89",
         | 
| 50 | 
            +
                    "blog": "",
         | 
| 51 | 
            +
                    "type": "User",
         | 
| 52 | 
            +
                    "login": "jw-00000",
         | 
| 53 | 
            +
                    "email": "JW00000@gmail.com"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                "repository": {
         | 
| 56 | 
            +
                    "has_issues": true,
         | 
| 57 | 
            +
                    "language": "Python",
         | 
| 58 | 
            +
                    "pushed_at": "2011/01/18 11:42:11 -0800",
         | 
| 59 | 
            +
                    "url": "https://github.com/jw-00000/TV.be-reminder-parser",
         | 
| 60 | 
            +
                    "has_downloads": false,
         | 
| 61 | 
            +
                    "homepage": "",
         | 
| 62 | 
            +
                    "watchers": 1,
         | 
| 63 | 
            +
                    "created_at": "2010/09/18 12:25:40 -0700",
         | 
| 64 | 
            +
                    "forks": 1,
         | 
| 65 | 
            +
                    "fork": false,
         | 
| 66 | 
            +
                    "has_wiki": true,
         | 
| 67 | 
            +
                    "size": 452,
         | 
| 68 | 
            +
                    "private": false,
         | 
| 69 | 
            +
                    "name": "TV.be-reminder-parser",
         | 
| 70 | 
            +
                    "owner": "jw-00000",
         | 
| 71 | 
            +
                    "open_issues": 1,
         | 
| 72 | 
            +
                    "description": "This script parses your reminders on TV.be, and outputs them in a nice format. I then use this in Conky to display it in the background."
         | 
| 73 | 
            +
                },
         | 
| 74 | 
            +
                "created_at": "2011/01/18 11:42:12 -0800",
         | 
| 75 | 
            +
                "public": true,
         | 
| 76 | 
            +
                "actor": "jw-00000",
         | 
| 77 | 
            +
                "payload": {
         | 
| 78 | 
            +
                    "repo": "jw-00000/TV.be-reminder-parser",
         | 
| 79 | 
            +
                    "head": "2a3494ee454b55ea5db4dea86e3d69f56628a710",
         | 
| 80 | 
            +
                    "size": 1,
         | 
| 81 | 
            +
                    "actor": "jw-00000",
         | 
| 82 | 
            +
                    "actor_gravatar": "ca45063da41a9f3aa9028295d8b66d89",
         | 
| 83 | 
            +
                    "shas": [["2a3494ee454b55ea5db4dea86e3d69f56628a710", "JW00000@gmail.com", "Rename 'tv.be' everywhere to 'yelo', the new name of the site.", "JW"]],
         | 
| 84 | 
            +
                    "ref": "refs/heads/master"
         | 
| 85 | 
            +
                },
         | 
| 86 | 
            +
                "url": "https://github.com//jw-00000/TV.be-reminder-parser/compare/d3d7cf1a0d...2a3494ee45",
         | 
| 87 | 
            +
                "times": 0,
         | 
| 88 | 
            +
                "type": "PushEvent"
         | 
| 89 | 
            +
            },
         | 
| 90 | 
            +
            {
         | 
| 91 | 
            +
                "actor_attributes": {
         | 
| 92 | 
            +
                    "name": "Enjector",
         | 
| 93 | 
            +
                    "company": "Enjector Software",
         | 
| 94 | 
            +
                    "gravatar_id": "703d982517566c5f2f78ac894717da71",
         | 
| 95 | 
            +
                    "location": "Northampton, UK",
         | 
| 96 | 
            +
                    "type": "User",
         | 
| 97 | 
            +
                    "login": "enjector",
         | 
| 98 | 
            +
                    "email": "contact@enjector.com"
         | 
| 99 | 
            +
                },
         | 
| 100 | 
            +
                "repository": {
         | 
| 101 | 
            +
                    "has_issues": true,
         | 
| 102 | 
            +
                    "language": "C#",
         | 
| 103 | 
            +
                    "pushed_at": "2011/01/18 11:42:10 -0800",
         | 
| 104 | 
            +
                    "url": "https://github.com/enjector/ToolBlox",
         | 
| 105 | 
            +
                    "has_downloads": true,
         | 
| 106 | 
            +
                    "homepage": "http://www.enjector.com",
         | 
| 107 | 
            +
                    "watchers": 1,
         | 
| 108 | 
            +
                    "created_at": "2011/01/18 08:09:07 -0800",
         | 
| 109 | 
            +
                    "forks": 1,
         | 
| 110 | 
            +
                    "fork": false,
         | 
| 111 | 
            +
                    "has_wiki": true,
         | 
| 112 | 
            +
                    "size": 212,
         | 
| 113 | 
            +
                    "private": false,
         | 
| 114 | 
            +
                    "name": "ToolBlox",
         | 
| 115 | 
            +
                    "owner": "enjector",
         | 
| 116 | 
            +
                    "open_issues": 0,
         | 
| 117 | 
            +
                    "description": "Some useful tools that we use in our software projects."
         | 
| 118 | 
            +
                },
         | 
| 119 | 
            +
                "created_at": "2011/01/18 11:42:10 -0800",
         | 
| 120 | 
            +
                "public": true,
         | 
| 121 | 
            +
                "actor": "enjector",
         | 
| 122 | 
            +
                "payload": {
         | 
| 123 | 
            +
                    "repo": "enjector/ToolBlox",
         | 
| 124 | 
            +
                    "head": "03d52e3cf0458e4adf5fab8a029dbbdf0de110f3",
         | 
| 125 | 
            +
                    "size": 1,
         | 
| 126 | 
            +
                    "actor": "enjector",
         | 
| 127 | 
            +
                    "actor_gravatar": "703d982517566c5f2f78ac894717da71",
         | 
| 128 | 
            +
                    "shas": [["03d52e3cf0458e4adf5fab8a029dbbdf0de110f3", "ajay.soni@enjector.com", "first commit", "Ajay Soni"]],
         | 
| 129 | 
            +
                    "ref": "refs/heads/master"
         | 
| 130 | 
            +
                },
         | 
| 131 | 
            +
                "url": "https://github.com//enjector/ToolBlox/compare/cd4124c190...03d52e3cf0",
         | 
| 132 | 
            +
                "times": 0,
         | 
| 133 | 
            +
                "type": "PushEvent"
         | 
| 134 | 
            +
            },
         | 
| 135 | 
            +
            {
         | 
| 136 | 
            +
                "actor_attributes": {
         | 
| 137 | 
            +
                    "name": "Stephen Lewis",
         | 
| 138 | 
            +
                    "company": "Experience Internet",
         | 
| 139 | 
            +
                    "gravatar_id": "316c6066d51dacd1b216faba3cf6a259",
         | 
| 140 | 
            +
                    "location": "UK",
         | 
| 141 | 
            +
                    "blog": "http://experienceinternet.co.uk/",
         | 
| 142 | 
            +
                    "type": "User",
         | 
| 143 | 
            +
                    "login": "experience",
         | 
| 144 | 
            +
                    "email": "github.com@experienceinternet.co.uk"
         | 
| 145 | 
            +
                },
         | 
| 146 | 
            +
                "repository": {
         | 
| 147 | 
            +
                    "has_issues": true,
         | 
| 148 | 
            +
                    "pushed_at": "2011/01/18 11:42:09 -0800",
         | 
| 149 | 
            +
                    "url": "https://github.com/experience/YUI-Compressor-TextMate-Bundle",
         | 
| 150 | 
            +
                    "has_downloads": true,
         | 
| 151 | 
            +
                    "homepage": "",
         | 
| 152 | 
            +
                    "watchers": 1,
         | 
| 153 | 
            +
                    "created_at": "2011/01/18 11:33:38 -0800",
         | 
| 154 | 
            +
                    "forks": 1,
         | 
| 155 | 
            +
                    "fork": false,
         | 
| 156 | 
            +
                    "has_wiki": true,
         | 
| 157 | 
            +
                    "size": 984,
         | 
| 158 | 
            +
                    "private": false,
         | 
| 159 | 
            +
                    "name": "YUI-Compressor-TextMate-Bundle",
         | 
| 160 | 
            +
                    "owner": "experience",
         | 
| 161 | 
            +
                    "open_issues": 0,
         | 
| 162 | 
            +
                    "description": "Easily combine and compress JavaScript and CSS files, right from within TextMate."
         | 
| 163 | 
            +
                },
         | 
| 164 | 
            +
                "created_at": "2011/01/18 11:42:10 -0800",
         | 
| 165 | 
            +
                "public": true,
         | 
| 166 | 
            +
                "actor": "experience",
         | 
| 167 | 
            +
                "payload": {
         | 
| 168 | 
            +
                    "name": "YUI-Compressor-TextMate-Bundle",
         | 
| 169 | 
            +
                    "object_name": "master",
         | 
| 170 | 
            +
                    "object": "branch"
         | 
| 171 | 
            +
                },
         | 
| 172 | 
            +
                "url": "https://github.com//experience/YUI-Compressor-TextMate-Bundle/compare/master",
         | 
| 173 | 
            +
                "times": 0,
         | 
| 174 | 
            +
                "type": "CreateEvent"
         | 
| 175 | 
            +
            },
         | 
| 176 | 
            +
            {
         | 
| 177 | 
            +
                "actor_attributes": {
         | 
| 178 | 
            +
                    "name": "Alex Tambellini",
         | 
| 179 | 
            +
                    "company": "",
         | 
| 180 | 
            +
                    "gravatar_id": "302c6c56b99912a673f1213b0709c902",
         | 
| 181 | 
            +
                    "location": "Pittsburgh",
         | 
| 182 | 
            +
                    "blog": "http://www.alextambellini.com",
         | 
| 183 | 
            +
                    "type": "User",
         | 
| 184 | 
            +
                    "login": "atambo",
         | 
| 185 | 
            +
                    "email": "atambellini@gmail.com"
         | 
| 186 | 
            +
                },
         | 
| 187 | 
            +
                "created_at": "2011/01/18 11:42:07 -0800",
         | 
| 188 | 
            +
                "public": true,
         | 
| 189 | 
            +
                "actor": "atambo",
         | 
| 190 | 
            +
                "payload": {
         | 
| 191 | 
            +
                    "name": "gist: 785005",
         | 
| 192 | 
            +
                    "actor": "atambo",
         | 
| 193 | 
            +
                    "action": "create",
         | 
| 194 | 
            +
                    "url": "https://gist.github.com/785005",
         | 
| 195 | 
            +
                    "actor_gravatar": "302c6c56b99912a673f1213b0709c902",
         | 
| 196 | 
            +
                    "snippet": "SEVERE: Application Error\norg.jruby.rack.RackInitializationException: OpenSSL::Cipher requires the jruby-openssl gem\n\tfrom file:/C:/application-framework/tomcat/webapps/scrapple/WEB-INF/lib/jruby-stdlib-1.5.6.jar!/META-INF/jruby.home/lib/ruby/site_ruby/shared/jruby/openssl/autoloads/cipher.rb:14"
         | 
| 197 | 
            +
                },
         | 
| 198 | 
            +
                "times": 0,
         | 
| 199 | 
            +
                "type": "GistEvent"
         | 
| 200 | 
            +
            },
         | 
| 201 | 
            +
            {
         | 
| 202 | 
            +
                "actor_attributes": {
         | 
| 203 | 
            +
                    "gravatar_id": "a240724c57c69b7fbd6d71af3cd43fe8",
         | 
| 204 | 
            +
                    "type": "User",
         | 
| 205 | 
            +
                    "login": "grubeklee"
         | 
| 206 | 
            +
                },
         | 
| 207 | 
            +
                "repository": {
         | 
| 208 | 
            +
                    "has_issues": true,
         | 
| 209 | 
            +
                    "pushed_at": "2011/01/18 11:42:06 -0800",
         | 
| 210 | 
            +
                    "url": "https://github.com/starchimpsgroup/3dvv",
         | 
| 211 | 
            +
                    "has_downloads": true,
         | 
| 212 | 
            +
                    "homepage": "",
         | 
| 213 | 
            +
                    "watchers": 2,
         | 
| 214 | 
            +
                    "created_at": "2011/01/17 12:51:00 -0800",
         | 
| 215 | 
            +
                    "forks": 1,
         | 
| 216 | 
            +
                    "fork": false,
         | 
| 217 | 
            +
                    "has_wiki": true,
         | 
| 218 | 
            +
                    "size": 108,
         | 
| 219 | 
            +
                    "private": false,
         | 
| 220 | 
            +
                    "name": "3dvv",
         | 
| 221 | 
            +
                    "owner": "starchimpsgroup",
         | 
| 222 | 
            +
                    "open_issues": 0,
         | 
| 223 | 
            +
                    "description": "Qt 3D Vector Viewer"
         | 
| 224 | 
            +
                },
         | 
| 225 | 
            +
                "created_at": "2011/01/18 11:42:06 -0800",
         | 
| 226 | 
            +
                "public": true,
         | 
| 227 | 
            +
                "actor": "grubeklee",
         | 
| 228 | 
            +
                "payload": {
         | 
| 229 | 
            +
                    "repo": "starchimpsgroup/3dvv",
         | 
| 230 | 
            +
                    "head": "ead1c462b8588b47660c072bf7729cd066f8ccfd",
         | 
| 231 | 
            +
                    "size": 2,
         | 
| 232 | 
            +
                    "actor": "grubeklee",
         | 
| 233 | 
            +
                    "actor_gravatar": "a240724c57c69b7fbd6d71af3cd43fe8",
         | 
| 234 | 
            +
                    "shas": [["c6d2d8fbf467c79bb26c82bbaa8eccc262c30b49", "sevennation@web.de", "English", "Grubeklee"], ["ead1c462b8588b47660c072bf7729cd066f8ccfd", "sevennation@web.de", "MenuBar Item translate from german to english", "Grubeklee"]],
         | 
| 235 | 
            +
                    "ref": "refs/heads/master"
         | 
| 236 | 
            +
                },
         | 
| 237 | 
            +
                "url": "https://github.com//starchimpsgroup/3dvv/compare/ee3d010d6e...ead1c462b8",
         | 
| 238 | 
            +
                "times": 0,
         | 
| 239 | 
            +
                "type": "PushEvent"
         | 
| 240 | 
            +
            },
         | 
| 241 | 
            +
            {
         | 
| 242 | 
            +
                "actor_attributes": {
         | 
| 243 | 
            +
                    "gravatar_id": "578b18228651d59023d4644ba57f101d",
         | 
| 244 | 
            +
                    "type": "User",
         | 
| 245 | 
            +
                    "login": "Birdman84"
         | 
| 246 | 
            +
                },
         | 
| 247 | 
            +
                "repository": {
         | 
| 248 | 
            +
                    "has_issues": true,
         | 
| 249 | 
            +
                    "language": "PHP",
         | 
| 250 | 
            +
                    "pushed_at": "2011/01/18 11:42:04 -0800",
         | 
| 251 | 
            +
                    "url": "https://github.com/MateuszWijas/Lightsaber",
         | 
| 252 | 
            +
                    "has_downloads": true,
         | 
| 253 | 
            +
                    "homepage": "",
         | 
| 254 | 
            +
                    "watchers": 2,
         | 
| 255 | 
            +
                    "created_at": "2011/01/15 17:02:13 -0800",
         | 
| 256 | 
            +
                    "forks": 2,
         | 
| 257 | 
            +
                    "fork": false,
         | 
| 258 | 
            +
                    "has_wiki": true,
         | 
| 259 | 
            +
                    "size": 612,
         | 
| 260 | 
            +
                    "private": false,
         | 
| 261 | 
            +
                    "name": "Lightsaber",
         | 
| 262 | 
            +
                    "owner": "MateuszWijas",
         | 
| 263 | 
            +
                    "open_issues": 0,
         | 
| 264 | 
            +
                    "description": "Simple blogging engine."
         | 
| 265 | 
            +
                },
         | 
| 266 | 
            +
                "created_at": "2011/01/18 11:42:05 -0800",
         | 
| 267 | 
            +
                "public": true,
         | 
| 268 | 
            +
                "actor": "Birdman84",
         | 
| 269 | 
            +
                "payload": {
         | 
| 270 | 
            +
                    "repo": "MateuszWijas/Lightsaber",
         | 
| 271 | 
            +
                    "head": "5b08f24c66ffe8548e696cb31f5c9165fb8d21fa",
         | 
| 272 | 
            +
                    "size": 1,
         | 
| 273 | 
            +
                    "actor": "Birdman84",
         | 
| 274 | 
            +
                    "actor_gravatar": "578b18228651d59023d4644ba57f101d",
         | 
| 275 | 
            +
                    "shas": [["5b08f24c66ffe8548e696cb31f5c9165fb8d21fa", "brian.hamelin@gmail.com", "This commit is to undo the changes that I made to the README file", "Brian Hamelin"]],
         | 
| 276 | 
            +
                    "ref": "refs/heads/master"
         | 
| 277 | 
            +
                },
         | 
| 278 | 
            +
                "url": "https://github.com//MateuszWijas/Lightsaber/compare/cee8471703...5b08f24c66",
         | 
| 279 | 
            +
                "times": 0,
         | 
| 280 | 
            +
                "type": "PushEvent"
         | 
| 281 | 
            +
            },
         | 
| 282 | 
            +
            {
         | 
| 283 | 
            +
                "actor_attributes": {
         | 
| 284 | 
            +
                    "name": "Lukasz",
         | 
| 285 | 
            +
                    "gravatar_id": "c94c7589b846ae4be09bc90faaefa91b",
         | 
| 286 | 
            +
                    "blog": "www.acidbits.org",
         | 
| 287 | 
            +
                    "type": "User",
         | 
| 288 | 
            +
                    "login": "kukems"
         | 
| 289 | 
            +
                },
         | 
| 290 | 
            +
                "repository": {
         | 
| 291 | 
            +
                    "has_issues": true,
         | 
| 292 | 
            +
                    "url": "https://github.com/kukems/scala-examples",
         | 
| 293 | 
            +
                    "has_downloads": true,
         | 
| 294 | 
            +
                    "homepage": "",
         | 
| 295 | 
            +
                    "watchers": 1,
         | 
| 296 | 
            +
                    "created_at": "2011/01/18 11:42:04 -0800",
         | 
| 297 | 
            +
                    "forks": 1,
         | 
| 298 | 
            +
                    "fork": false,
         | 
| 299 | 
            +
                    "has_wiki": true,
         | 
| 300 | 
            +
                    "size": 0,
         | 
| 301 | 
            +
                    "private": false,
         | 
| 302 | 
            +
                    "name": "scala-examples",
         | 
| 303 | 
            +
                    "owner": "kukems",
         | 
| 304 | 
            +
                    "open_issues": 0,
         | 
| 305 | 
            +
                    "description": ""
         | 
| 306 | 
            +
                },
         | 
| 307 | 
            +
                "created_at": "2011/01/18 11:42:05 -0800",
         | 
| 308 | 
            +
                "public": true,
         | 
| 309 | 
            +
                "actor": "kukems",
         | 
| 310 | 
            +
                "payload": {
         | 
| 311 | 
            +
                    "name": "scala-examples",
         | 
| 312 | 
            +
                    "object_name": null,
         | 
| 313 | 
            +
                    "object": "repository"
         | 
| 314 | 
            +
                },
         | 
| 315 | 
            +
                "url": "https://github.com//kukems/scala-examples",
         | 
| 316 | 
            +
                "times": 0,
         | 
| 317 | 
            +
                "type": "CreateEvent"
         | 
| 318 | 
            +
            },
         | 
| 319 | 
            +
            {
         | 
| 320 | 
            +
                "actor_attributes": {
         | 
| 321 | 
            +
                    "name": "Michael Borgwardt",
         | 
| 322 | 
            +
                    "company": "Object Vision Software AG",
         | 
| 323 | 
            +
                    "gravatar_id": "0382297f273df0a544b0c6c2734de096",
         | 
| 324 | 
            +
                    "location": "Munich, Germany",
         | 
| 325 | 
            +
                    "blog": "http://www.brazzy.de/",
         | 
| 326 | 
            +
                    "type": "User",
         | 
| 327 | 
            +
                    "login": "brazzy",
         | 
| 328 | 
            +
                    "email": "brazzy@gmail.com"
         | 
| 329 | 
            +
                },
         | 
| 330 | 
            +
                "repository": {
         | 
| 331 | 
            +
                    "has_issues": true,
         | 
| 332 | 
            +
                    "language": "Groovy",
         | 
| 333 | 
            +
                    "pushed_at": "2010/12/24 08:44:56 -0800",
         | 
| 334 | 
            +
                    "url": "https://github.com/brazzy/nikki",
         | 
| 335 | 
            +
                    "has_downloads": true,
         | 
| 336 | 
            +
                    "homepage": "http://www.brazzy.de/nikki/",
         | 
| 337 | 
            +
                    "watchers": 1,
         | 
| 338 | 
            +
                    "created_at": "2010/04/05 07:01:21 -0700",
         | 
| 339 | 
            +
                    "forks": 1,
         | 
| 340 | 
            +
                    "fork": false,
         | 
| 341 | 
            +
                    "has_wiki": true,
         | 
| 342 | 
            +
                    "size": 54694,
         | 
| 343 | 
            +
                    "private": false,
         | 
| 344 | 
            +
                    "name": "nikki",
         | 
| 345 | 
            +
                    "owner": "brazzy",
         | 
| 346 | 
            +
                    "open_issues": 16,
         | 
| 347 | 
            +
                    "description": "GPS Photo diary - standalone Java app, geotagging, export to KMZ"
         | 
| 348 | 
            +
                },
         | 
| 349 | 
            +
                "created_at": "2011/01/18 11:42:05 -0800",
         | 
| 350 | 
            +
                "public": true,
         | 
| 351 | 
            +
                "actor": "brazzy",
         | 
| 352 | 
            +
                "payload": {
         | 
| 353 | 
            +
                    "url": "http://cloud.github.com/downloads/brazzy/nikki/Nikki_1.0.jar.pack.gz",
         | 
| 354 | 
            +
                    "id": 72892
         | 
| 355 | 
            +
                },
         | 
| 356 | 
            +
                "url": "https://github.com/",
         | 
| 357 | 
            +
                "times": 0,
         | 
| 358 | 
            +
                "type": "DownloadEvent"
         | 
| 359 | 
            +
            },
         | 
| 360 | 
            +
            {
         | 
| 361 | 
            +
                "actor_attributes": {
         | 
| 362 | 
            +
                    "name": "Karsten Dambekalns",
         | 
| 363 | 
            +
                    "gravatar_id": "db9c76fa80a365925ca64c4c4818f371",
         | 
| 364 | 
            +
                    "location": "",
         | 
| 365 | 
            +
                    "type": "User",
         | 
| 366 | 
            +
                    "login": "k-fish",
         | 
| 367 | 
            +
                    "email": "karsten@typo3.org"
         | 
| 368 | 
            +
                },
         | 
| 369 | 
            +
                "repository": {
         | 
| 370 | 
            +
                    "has_issues": true,
         | 
| 371 | 
            +
                    "language": "JavaScript",
         | 
| 372 | 
            +
                    "pushed_at": "2011/01/18 11:42:03 -0800",
         | 
| 373 | 
            +
                    "url": "https://github.com/k-fish/Plat_Forms-2011",
         | 
| 374 | 
            +
                    "has_downloads": true,
         | 
| 375 | 
            +
                    "homepage": "",
         | 
| 376 | 
            +
                    "watchers": 3,
         | 
| 377 | 
            +
                    "created_at": "2011/01/14 07:21:37 -0800",
         | 
| 378 | 
            +
                    "forks": 1,
         | 
| 379 | 
            +
                    "fork": false,
         | 
| 380 | 
            +
                    "has_wiki": true,
         | 
| 381 | 
            +
                    "size": 9568,
         | 
| 382 | 
            +
                    "private": false,
         | 
| 383 | 
            +
                    "name": "Plat_Forms-2011",
         | 
| 384 | 
            +
                    "owner": "k-fish",
         | 
| 385 | 
            +
                    "open_issues": 0,
         | 
| 386 | 
            +
                    "description": "The FLOW3 project for the contest"
         | 
| 387 | 
            +
                },
         | 
| 388 | 
            +
                "created_at": "2011/01/18 11:42:04 -0800",
         | 
| 389 | 
            +
                "public": true,
         | 
| 390 | 
            +
                "actor": "k-fish",
         | 
| 391 | 
            +
                "payload": {
         | 
| 392 | 
            +
                    "repo": "k-fish/Plat_Forms-2011",
         | 
| 393 | 
            +
                    "head": "adb9c120584f156c02933c812f3a5a34df9aee8e",
         | 
| 394 | 
            +
                    "size": 4,
         | 
| 395 | 
            +
                    "actor": "k-fish",
         | 
| 396 | 
            +
                    "actor_gravatar": "db9c76fa80a365925ca64c4c4818f371",
         | 
| 397 | 
            +
                    "shas": [["a7b5f7e9ee42156c21651e8f531e30906301559e", "karsten@typo3.org", "Enhance conference listing\n\nThe portal front now displays categories (M8) for drill-down (M13, M14)\nand lists upcoming conferences (M9), further seperated by start date\n(S10, m11, m12).", "Karsten Dambekalns"], ["3c716681f1282362d717ba4c450c0510ef3e5f03", "karsten@typo3.org", "Fix findCurrent methods in ConferenceRepository\n\n\"Running now\" query was broken and the filtering by category didn't work.", "Karsten Dambekalns"], ["4beae417e7291510c264ebcf6df13515b5646d45", "karsten@typo3.org", "Add conference single view", "Karsten Dambekalns"], ["adb9c120584f156c02933c812f3a5a34df9aee8e", "karsten@typo3.org", "Small documentation fix in FLOW3 base Repository", "Karsten Dambekalns"]],
         | 
| 398 | 
            +
                    "ref": "refs/heads/master"
         | 
| 399 | 
            +
                },
         | 
| 400 | 
            +
                "url": "https://github.com//k-fish/Plat_Forms-2011/compare/cc14b27d4c...adb9c12058",
         | 
| 401 | 
            +
                "times": 0,
         | 
| 402 | 
            +
                "type": "PushEvent"
         | 
| 403 | 
            +
            },
         | 
| 404 | 
            +
            {
         | 
| 405 | 
            +
                "actor_attributes": {
         | 
| 406 | 
            +
                    "name": "Kevin McCarthy",
         | 
| 407 | 
            +
                    "gravatar_id": "b3b78ba1acbf09ba202987d2d93ab72f",
         | 
| 408 | 
            +
                    "location": "Kailua, Hawaii",
         | 
| 409 | 
            +
                    "blog": "http://kevinmccarthy.org/",
         | 
| 410 | 
            +
                    "type": "User",
         | 
| 411 | 
            +
                    "login": "kevin1024",
         | 
| 412 | 
            +
                    "email": "me@kevinmccarthy.org"
         | 
| 413 | 
            +
                },
         | 
| 414 | 
            +
                "repository": {
         | 
| 415 | 
            +
                    "has_issues": true,
         | 
| 416 | 
            +
                    "language": "JavaScript",
         | 
| 417 | 
            +
                    "pushed_at": "2011/01/17 15:32:47 -0800",
         | 
| 418 | 
            +
                    "url": "https://github.com/coopernurse/node-pool",
         | 
| 419 | 
            +
                    "has_downloads": true,
         | 
| 420 | 
            +
                    "homepage": "",
         | 
| 421 | 
            +
                    "watchers": 33,
         | 
| 422 | 
            +
                    "created_at": "2010/10/01 18:39:40 -0700",
         | 
| 423 | 
            +
                    "forks": 4,
         | 
| 424 | 
            +
                    "fork": false,
         | 
| 425 | 
            +
                    "has_wiki": true,
         | 
| 426 | 
            +
                    "size": 428,
         | 
| 427 | 
            +
                    "private": false,
         | 
| 428 | 
            +
                    "name": "node-pool",
         | 
| 429 | 
            +
                    "owner": "coopernurse",
         | 
| 430 | 
            +
                    "open_issues": 1,
         | 
| 431 | 
            +
                    "description": "Generic resource pooling for node.js"
         | 
| 432 | 
            +
                },
         | 
| 433 | 
            +
                "created_at": "2011/01/18 11:42:00 -0800",
         | 
| 434 | 
            +
                "public": true,
         | 
| 435 | 
            +
                "actor": "kevin1024",
         | 
| 436 | 
            +
                "payload": {
         | 
| 437 | 
            +
                    "repo": "coopernurse/node-pool",
         | 
| 438 | 
            +
                    "actor": "kevin1024",
         | 
| 439 | 
            +
                    "action": "started",
         | 
| 440 | 
            +
                    "actor_gravatar": "b3b78ba1acbf09ba202987d2d93ab72f"
         | 
| 441 | 
            +
                },
         | 
| 442 | 
            +
                "url": "https://github.com//coopernurse/node-pool",
         | 
| 443 | 
            +
                "times": 0,
         | 
| 444 | 
            +
                "type": "WatchEvent"
         | 
| 445 | 
            +
            },
         | 
| 446 | 
            +
            {
         | 
| 447 | 
            +
                "actor_attributes": {
         | 
| 448 | 
            +
                    "name": "Renaudeau Gaetan",
         | 
| 449 | 
            +
                    "company": "Zenexity",
         | 
| 450 | 
            +
                    "gravatar_id": "58ffb06383a945fe614248a01a288343",
         | 
| 451 | 
            +
                    "location": "France",
         | 
| 452 | 
            +
                    "blog": "http:/grenlibre.fr",
         | 
| 453 | 
            +
                    "type": "User",
         | 
| 454 | 
            +
                    "login": "gre",
         | 
| 455 | 
            +
                    "email": "pro@grenlibre.fr"
         | 
| 456 | 
            +
                },
         | 
| 457 | 
            +
                "repository": {
         | 
| 458 | 
            +
                    "has_issues": true,
         | 
| 459 | 
            +
                    "pushed_at": "2011/01/18 11:41:56 -0800",
         | 
| 460 | 
            +
                    "url": "https://github.com/gre/play-packages",
         | 
| 461 | 
            +
                    "has_downloads": true,
         | 
| 462 | 
            +
                    "homepage": "http://playframework.org/",
         | 
| 463 | 
            +
                    "watchers": 1,
         | 
| 464 | 
            +
                    "created_at": "2011/01/17 11:22:23 -0800",
         | 
| 465 | 
            +
                    "forks": 1,
         | 
| 466 | 
            +
                    "fork": false,
         | 
| 467 | 
            +
                    "has_wiki": true,
         | 
| 468 | 
            +
                    "size": 380,
         | 
| 469 | 
            +
                    "private": false,
         | 
| 470 | 
            +
                    "name": "play-packages",
         | 
| 471 | 
            +
                    "owner": "gre",
         | 
| 472 | 
            +
                    "open_issues": 0,
         | 
| 473 | 
            +
                    "description": "Play Framework package sources for Linux distributions : ArchLinux, (more soon...)"
         | 
| 474 | 
            +
                },
         | 
| 475 | 
            +
                "created_at": "2011/01/18 11:41:57 -0800",
         | 
| 476 | 
            +
                "public": true,
         | 
| 477 | 
            +
                "actor": "gre",
         | 
| 478 | 
            +
                "payload": {
         | 
| 479 | 
            +
                    "repo": "gre/play-packages",
         | 
| 480 | 
            +
                    "head": "059b471b601c798190f2c479f0b534da906c7e67",
         | 
| 481 | 
            +
                    "size": 1,
         | 
| 482 | 
            +
                    "actor": "gre",
         | 
| 483 | 
            +
                    "actor_gravatar": "58ffb06383a945fe614248a01a288343",
         | 
| 484 | 
            +
                    "shas": [["059b471b601c798190f2c479f0b534da906c7e67", "gre@zenexity.com", "Using a patch for python2 replace instead of a sed", "Gaetan Renaudeau"]],
         | 
| 485 | 
            +
                    "ref": "refs/heads/master"
         | 
| 486 | 
            +
                },
         | 
| 487 | 
            +
                "url": "https://github.com//gre/play-packages/compare/93d86eb5fb...059b471b60",
         | 
| 488 | 
            +
                "times": 0,
         | 
| 489 | 
            +
                "type": "PushEvent"
         | 
| 490 | 
            +
            },
         | 
| 491 | 
            +
            {
         | 
| 492 | 
            +
                "actor_attributes": {
         | 
| 493 | 
            +
                    "name": "James Herdman",
         | 
| 494 | 
            +
                    "company": "Celect.org",
         | 
| 495 | 
            +
                    "gravatar_id": "afd42fff23928a20972d60744fcdca4a",
         | 
| 496 | 
            +
                    "location": "Toronto, ON",
         | 
| 497 | 
            +
                    "blog": "http://jherdman.github.com",
         | 
| 498 | 
            +
                    "type": "User",
         | 
| 499 | 
            +
                    "login": "jherdman",
         | 
| 500 | 
            +
                    "email": "james.herdman@me.com"
         | 
| 501 | 
            +
                },
         | 
| 502 | 
            +
                "repository": {
         | 
| 503 | 
            +
                    "has_issues": false,
         | 
| 504 | 
            +
                    "language": "Ruby",
         | 
| 505 | 
            +
                    "pushed_at": "2010/08/01 15:15:10 -0700",
         | 
| 506 | 
            +
                    "url": "https://github.com/pluginaweek/state_machine",
         | 
| 507 | 
            +
                    "has_downloads": true,
         | 
| 508 | 
            +
                    "organization": "pluginaweek",
         | 
| 509 | 
            +
                    "homepage": "http://www.pluginaweek.org",
         | 
| 510 | 
            +
                    "watchers": 877,
         | 
| 511 | 
            +
                    "created_at": "2008/06/24 20:41:05 -0700",
         | 
| 512 | 
            +
                    "forks": 52,
         | 
| 513 | 
            +
                    "fork": false,
         | 
| 514 | 
            +
                    "has_wiki": true,
         | 
| 515 | 
            +
                    "size": 4564,
         | 
| 516 | 
            +
                    "private": false,
         | 
| 517 | 
            +
                    "name": "state_machine",
         | 
| 518 | 
            +
                    "owner": "pluginaweek",
         | 
| 519 | 
            +
                    "open_issues": 3,
         | 
| 520 | 
            +
                    "description": "Adds support for creating state machines for attributes on any Ruby class"
         | 
| 521 | 
            +
                },
         | 
| 522 | 
            +
                "created_at": "2011/01/18 11:41:56 -0800",
         | 
| 523 | 
            +
                "public": true,
         | 
| 524 | 
            +
                "actor": "jherdman",
         | 
| 525 | 
            +
                "payload": {
         | 
| 526 | 
            +
                    "repo": "pluginaweek/state_machine",
         | 
| 527 | 
            +
                    "actor": "jherdman",
         | 
| 528 | 
            +
                    "action": "started",
         | 
| 529 | 
            +
                    "actor_gravatar": "afd42fff23928a20972d60744fcdca4a"
         | 
| 530 | 
            +
                },
         | 
| 531 | 
            +
                "url": "https://github.com//pluginaweek/state_machine",
         | 
| 532 | 
            +
                "times": 0,
         | 
| 533 | 
            +
                "type": "WatchEvent"
         | 
| 534 | 
            +
            },
         | 
| 535 | 
            +
            {
         | 
| 536 | 
            +
                "actor_attributes": {
         | 
| 537 | 
            +
                    "name": "David Grudl",
         | 
| 538 | 
            +
                    "gravatar_id": "583bcf76466286a687368ef66a21e5cd",
         | 
| 539 | 
            +
                    "blog": "http://davidgrudl.com",
         | 
| 540 | 
            +
                    "type": "User",
         | 
| 541 | 
            +
                    "login": "dg"
         | 
| 542 | 
            +
                },
         | 
| 543 | 
            +
                "repository": {
         | 
| 544 | 
            +
                    "has_issues": true,
         | 
| 545 | 
            +
                    "language": "PHP",
         | 
| 546 | 
            +
                    "pushed_at": "2011/01/18 11:41:55 -0800",
         | 
| 547 | 
            +
                    "url": "https://github.com/nette/sandbox",
         | 
| 548 | 
            +
                    "has_downloads": true,
         | 
| 549 | 
            +
                    "organization": "nette",
         | 
| 550 | 
            +
                    "homepage": "",
         | 
| 551 | 
            +
                    "watchers": 26,
         | 
| 552 | 
            +
                    "created_at": "2010/10/09 13:50:19 -0700",
         | 
| 553 | 
            +
                    "forks": 4,
         | 
| 554 | 
            +
                    "fork": false,
         | 
| 555 | 
            +
                    "has_wiki": true,
         | 
| 556 | 
            +
                    "size": 1032,
         | 
| 557 | 
            +
                    "private": false,
         | 
| 558 | 
            +
                    "name": "sandbox",
         | 
| 559 | 
            +
                    "owner": "nette",
         | 
| 560 | 
            +
                    "open_issues": 0,
         | 
| 561 | 
            +
                    "description": "The sandbox is a pre-packaged Nette Framework project, basic configured structure for your application."
         | 
| 562 | 
            +
                },
         | 
| 563 | 
            +
                "created_at": "2011/01/18 11:41:55 -0800",
         | 
| 564 | 
            +
                "public": true,
         | 
| 565 | 
            +
                "actor": "dg",
         | 
| 566 | 
            +
                "payload": {
         | 
| 567 | 
            +
                    "repo": "nette/sandbox",
         | 
| 568 | 
            +
                    "head": "241773b2cb4cc289208e3b99a99dce5ec7887e52",
         | 
| 569 | 
            +
                    "size": 1,
         | 
| 570 | 
            +
                    "actor": "dg",
         | 
| 571 | 
            +
                    "actor_gravatar": "583bcf76466286a687368ef66a21e5cd",
         | 
| 572 | 
            +
                    "shas": [["241773b2cb4cc289208e3b99a99dce5ec7887e52", "david@grudl.com", "adminer: improved CSS and link to table", "David Grudl"]],
         | 
| 573 | 
            +
                    "ref": "refs/heads/master"
         | 
| 574 | 
            +
                },
         | 
| 575 | 
            +
                "url": "https://github.com//nette/sandbox/compare/39adac41a3...241773b2cb",
         | 
| 576 | 
            +
                "times": 0,
         | 
| 577 | 
            +
                "type": "PushEvent"
         | 
| 578 | 
            +
            },
         | 
| 579 | 
            +
            {
         | 
| 580 | 
            +
                "actor_attributes": {
         | 
| 581 | 
            +
                    "name": "Dustin Webber",
         | 
| 582 | 
            +
                    "company": "LookyCode",
         | 
| 583 | 
            +
                    "gravatar_id": "4547f77730a1dcf64d10f842cd1f2042",
         | 
| 584 | 
            +
                    "location": "Detroit, Michigan",
         | 
| 585 | 
            +
                    "blog": "http://www.lookycode.com",
         | 
| 586 | 
            +
                    "type": "User",
         | 
| 587 | 
            +
                    "login": "mephux",
         | 
| 588 | 
            +
                    "email": "dustin.webber@gmail.com"
         | 
| 589 | 
            +
                },
         | 
| 590 | 
            +
                "repository": {
         | 
| 591 | 
            +
                    "has_issues": true,
         | 
| 592 | 
            +
                    "language": "JavaScript",
         | 
| 593 | 
            +
                    "pushed_at": "2011/01/18 11:41:53 -0800",
         | 
| 594 | 
            +
                    "url": "https://github.com/Snorby/snorby",
         | 
| 595 | 
            +
                    "has_downloads": true,
         | 
| 596 | 
            +
                    "organization": "Snorby",
         | 
| 597 | 
            +
                    "homepage": "http://www.snorby.org",
         | 
| 598 | 
            +
                    "watchers": 39,
         | 
| 599 | 
            +
                    "created_at": "2010/10/09 12:09:49 -0700",
         | 
| 600 | 
            +
                    "forks": 1,
         | 
| 601 | 
            +
                    "fork": false,
         | 
| 602 | 
            +
                    "has_wiki": true,
         | 
| 603 | 
            +
                    "size": 8372,
         | 
| 604 | 
            +
                    "private": false,
         | 
| 605 | 
            +
                    "name": "snorby",
         | 
| 606 | 
            +
                    "owner": "Snorby",
         | 
| 607 | 
            +
                    "open_issues": 7,
         | 
| 608 | 
            +
                    "description": "The Official Snorby 2.0 Repository"
         | 
| 609 | 
            +
                },
         | 
| 610 | 
            +
                "created_at": "2011/01/18 11:41:54 -0800",
         | 
| 611 | 
            +
                "public": true,
         | 
| 612 | 
            +
                "actor": "mephux",
         | 
| 613 | 
            +
                "payload": {
         | 
| 614 | 
            +
                    "repo": "Snorby/snorby",
         | 
| 615 | 
            +
                    "head": "a3a17b1767d4da4d8d9a3b00892f6092d1641309",
         | 
| 616 | 
            +
                    "size": 1,
         | 
| 617 | 
            +
                    "actor": "mephux",
         | 
| 618 | 
            +
                    "actor_gravatar": "4547f77730a1dcf64d10f842cd1f2042",
         | 
| 619 | 
            +
                    "shas": [["a3a17b1767d4da4d8d9a3b00892f6092d1641309", "dustin.webber@gmail.com", "version bump: 2.2.1", "Dustin Willis Webber"]],
         | 
| 620 | 
            +
                    "ref": "refs/heads/2.2.1"
         | 
| 621 | 
            +
                },
         | 
| 622 | 
            +
                "url": "https://github.com//Snorby/snorby/compare/f9f6df2aa7...a3a17b1767",
         | 
| 623 | 
            +
                "times": 0,
         | 
| 624 | 
            +
                "type": "PushEvent"
         | 
| 625 | 
            +
            },
         | 
| 626 | 
            +
            {
         | 
| 627 | 
            +
                "actor_attributes": {
         | 
| 628 | 
            +
                    "name": "Ralf Vogler",
         | 
| 629 | 
            +
                    "gravatar_id": "07c5d07f7a669cfcb9d1fb5a35c1762d",
         | 
| 630 | 
            +
                    "location": "Munich",
         | 
| 631 | 
            +
                    "type": "User",
         | 
| 632 | 
            +
                    "login": "vogler"
         | 
| 633 | 
            +
                },
         | 
| 634 | 
            +
                "repository": {
         | 
| 635 | 
            +
                    "has_issues": true,
         | 
| 636 | 
            +
                    "language": "C++",
         | 
| 637 | 
            +
                    "pushed_at": "2011/01/18 11:41:53 -0800",
         | 
| 638 | 
            +
                    "url": "https://github.com/vogler/AR-Project",
         | 
| 639 | 
            +
                    "has_downloads": true,
         | 
| 640 | 
            +
                    "homepage": "",
         | 
| 641 | 
            +
                    "watchers": 1,
         | 
| 642 | 
            +
                    "created_at": "2011/01/18 11:33:09 -0800",
         | 
| 643 | 
            +
                    "forks": 1,
         | 
| 644 | 
            +
                    "fork": false,
         | 
| 645 | 
            +
                    "has_wiki": true,
         | 
| 646 | 
            +
                    "size": 144,
         | 
| 647 | 
            +
                    "private": false,
         | 
| 648 | 
            +
                    "name": "AR-Project",
         | 
| 649 | 
            +
                    "owner": "vogler",
         | 
| 650 | 
            +
                    "open_issues": 0,
         | 
| 651 | 
            +
                    "description": ""
         | 
| 652 | 
            +
                },
         | 
| 653 | 
            +
                "created_at": "2011/01/18 11:41:53 -0800",
         | 
| 654 | 
            +
                "public": true,
         | 
| 655 | 
            +
                "actor": "vogler",
         | 
| 656 | 
            +
                "payload": {
         | 
| 657 | 
            +
                    "name": "AR-Project",
         | 
| 658 | 
            +
                    "object_name": "master",
         | 
| 659 | 
            +
                    "object": "branch"
         | 
| 660 | 
            +
                },
         | 
| 661 | 
            +
                "url": "https://github.com//vogler/AR-Project/compare/master",
         | 
| 662 | 
            +
                "times": 0,
         | 
| 663 | 
            +
                "type": "CreateEvent"
         | 
| 664 | 
            +
            },
         | 
| 665 | 
            +
            {
         | 
| 666 | 
            +
                "actor_attributes": {
         | 
| 667 | 
            +
                    "gravatar_id": "2b8b97fdeb23a1760eb4aae62d6e696b",
         | 
| 668 | 
            +
                    "type": "User",
         | 
| 669 | 
            +
                    "login": "nzeer"
         | 
| 670 | 
            +
                },
         | 
| 671 | 
            +
                "repository": {
         | 
| 672 | 
            +
                    "has_issues": true,
         | 
| 673 | 
            +
                    "language": "Lua",
         | 
| 674 | 
            +
                    "pushed_at": "2011/01/18 11:41:51 -0800",
         | 
| 675 | 
            +
                    "url": "https://github.com/nzeer/Addons",
         | 
| 676 | 
            +
                    "has_downloads": true,
         | 
| 677 | 
            +
                    "homepage": "",
         | 
| 678 | 
            +
                    "watchers": 1,
         | 
| 679 | 
            +
                    "created_at": "2011/01/15 15:45:18 -0800",
         | 
| 680 | 
            +
                    "forks": 1,
         | 
| 681 | 
            +
                    "fork": false,
         | 
| 682 | 
            +
                    "has_wiki": true,
         | 
| 683 | 
            +
                    "size": 58268,
         | 
| 684 | 
            +
                    "private": false,
         | 
| 685 | 
            +
                    "name": "Addons",
         | 
| 686 | 
            +
                    "owner": "nzeer",
         | 
| 687 | 
            +
                    "open_issues": 0,
         | 
| 688 | 
            +
                    "description": ""
         | 
| 689 | 
            +
                },
         | 
| 690 | 
            +
                "created_at": "2011/01/18 11:41:51 -0800",
         | 
| 691 | 
            +
                "public": true,
         | 
| 692 | 
            +
                "actor": "nzeer",
         | 
| 693 | 
            +
                "payload": {
         | 
| 694 | 
            +
                    "repo": "nzeer/Addons",
         | 
| 695 | 
            +
                    "head": "552d89311431d99e5a3bce0acc599f337152d01a",
         | 
| 696 | 
            +
                    "size": 1,
         | 
| 697 | 
            +
                    "actor": "nzeer",
         | 
| 698 | 
            +
                    "actor_gravatar": "2b8b97fdeb23a1760eb4aae62d6e696b",
         | 
| 699 | 
            +
                    "shas": [["552d89311431d99e5a3bce0acc599f337152d01a", "rmjackson@gmail.com", "updated addongit to 1.1-1", "Robert Jackson"]],
         | 
| 700 | 
            +
                    "ref": "refs/heads/master"
         | 
| 701 | 
            +
                },
         | 
| 702 | 
            +
                "url": "https://github.com//nzeer/Addons/compare/55c3e9e1bb...552d893114",
         | 
| 703 | 
            +
                "times": 0,
         | 
| 704 | 
            +
                "type": "PushEvent"
         | 
| 705 | 
            +
            },
         | 
| 706 | 
            +
            {
         | 
| 707 | 
            +
                "actor_attributes": {
         | 
| 708 | 
            +
                    "gravatar_id": "9730f3c36682db465037642fec551497",
         | 
| 709 | 
            +
                    "type": "User",
         | 
| 710 | 
            +
                    "login": "cyril95"
         | 
| 711 | 
            +
                },
         | 
| 712 | 
            +
                "repository": {
         | 
| 713 | 
            +
                    "has_issues": true,
         | 
| 714 | 
            +
                    "language": "Perl",
         | 
| 715 | 
            +
                    "pushed_at": "2011/01/18 11:41:50 -0800",
         | 
| 716 | 
            +
                    "url": "https://github.com/cyril95/directory-generator-snom",
         | 
| 717 | 
            +
                    "has_downloads": true,
         | 
| 718 | 
            +
                    "homepage": "",
         | 
| 719 | 
            +
                    "watchers": 1,
         | 
| 720 | 
            +
                    "created_at": "2010/12/15 07:06:10 -0800",
         | 
| 721 | 
            +
                    "forks": 1,
         | 
| 722 | 
            +
                    "fork": false,
         | 
| 723 | 
            +
                    "has_wiki": true,
         | 
| 724 | 
            +
                    "size": 172,
         | 
| 725 | 
            +
                    "private": false,
         | 
| 726 | 
            +
                    "name": "directory-generator-snom",
         | 
| 727 | 
            +
                    "owner": "cyril95",
         | 
| 728 | 
            +
                    "open_issues": 0,
         | 
| 729 | 
            +
                    "description": "Generate an SNOM tbook.xml directory from LDAP ."
         | 
| 730 | 
            +
                },
         | 
| 731 | 
            +
                "created_at": "2011/01/18 11:41:50 -0800",
         | 
| 732 | 
            +
                "public": true,
         | 
| 733 | 
            +
                "actor": "cyril95",
         | 
| 734 | 
            +
                "payload": {
         | 
| 735 | 
            +
                    "repo": "cyril95/directory-generator-snom",
         | 
| 736 | 
            +
                    "head": "5c9b4a60fac5bfa5888010f9f5e5807ffbc9c9d1",
         | 
| 737 | 
            +
                    "size": 1,
         | 
| 738 | 
            +
                    "actor": "cyril95",
         | 
| 739 | 
            +
                    "actor_gravatar": "9730f3c36682db465037642fec551497",
         | 
| 740 | 
            +
                    "shas": [["5c9b4a60fac5bfa5888010f9f5e5807ffbc9c9d1", "cyril@levis-heb.net", "init annuaire", "Cyril Levis"]],
         | 
| 741 | 
            +
                    "ref": "refs/heads/master"
         | 
| 742 | 
            +
                },
         | 
| 743 | 
            +
                "url": "https://github.com//cyril95/directory-generator-snom/compare/b9ac9f31d7...5c9b4a60fa",
         | 
| 744 | 
            +
                "times": 0,
         | 
| 745 | 
            +
                "type": "PushEvent"
         | 
| 746 | 
            +
            },
         | 
| 747 | 
            +
            {
         | 
| 748 | 
            +
                "actor_attributes": {
         | 
| 749 | 
            +
                    "name": "john salvatier",
         | 
| 750 | 
            +
                    "gravatar_id": "ef51b6c49b0e2ee4c3bcced82868f4ec",
         | 
| 751 | 
            +
                    "type": "User",
         | 
| 752 | 
            +
                    "login": "jsalvatier"
         | 
| 753 | 
            +
                },
         | 
| 754 | 
            +
                "repository": {
         | 
| 755 | 
            +
                    "has_issues": true,
         | 
| 756 | 
            +
                    "language": "Python",
         | 
| 757 | 
            +
                    "pushed_at": "2011/01/18 11:41:45 -0800",
         | 
| 758 | 
            +
                    "url": "https://github.com/jsalvatier/multichain_mcmc",
         | 
| 759 | 
            +
                    "has_downloads": true,
         | 
| 760 | 
            +
                    "homepage": "pypi.python.org/pypi/multichain_mcmc",
         | 
| 761 | 
            +
                    "watchers": 2,
         | 
| 762 | 
            +
                    "created_at": "2010/05/10 14:18:54 -0700",
         | 
| 763 | 
            +
                    "forks": 1,
         | 
| 764 | 
            +
                    "fork": false,
         | 
| 765 | 
            +
                    "has_wiki": true,
         | 
| 766 | 
            +
                    "size": 5144,
         | 
| 767 | 
            +
                    "private": false,
         | 
| 768 | 
            +
                    "name": "multichain_mcmc",
         | 
| 769 | 
            +
                    "owner": "jsalvatier",
         | 
| 770 | 
            +
                    "open_issues": 0,
         | 
| 771 | 
            +
                    "description": "Multichain MCMC framework and algorithms based on PyMC."
         | 
| 772 | 
            +
                },
         | 
| 773 | 
            +
                "created_at": "2011/01/18 11:41:46 -0800",
         | 
| 774 | 
            +
                "public": true,
         | 
| 775 | 
            +
                "actor": "jsalvatier",
         | 
| 776 | 
            +
                "payload": {
         | 
| 777 | 
            +
                    "repo": "jsalvatier/multichain_mcmc",
         | 
| 778 | 
            +
                    "head": "cab59ad64ecbbc4a85bc0f8a21f7470b3718a832",
         | 
| 779 | 
            +
                    "size": 1,
         | 
| 780 | 
            +
                    "actor": "jsalvatier",
         | 
| 781 | 
            +
                    "actor_gravatar": "ef51b6c49b0e2ee4c3bcced82868f4ec",
         | 
| 782 | 
            +
                    "shas": [["cab59ad64ecbbc4a85bc0f8a21f7470b3718a832", "jsalvatier@gmail.com", "added missing file", "john salvatier"]],
         | 
| 783 | 
            +
                    "ref": "refs/heads/master"
         | 
| 784 | 
            +
                },
         | 
| 785 | 
            +
                "url": "https://github.com//jsalvatier/multichain_mcmc/compare/ea974483d2...cab59ad64e",
         | 
| 786 | 
            +
                "times": 0,
         | 
| 787 | 
            +
                "type": "PushEvent"
         | 
| 788 | 
            +
            },
         | 
| 789 | 
            +
            {
         | 
| 790 | 
            +
                "actor_attributes": {
         | 
| 791 | 
            +
                    "name": "flopez",
         | 
| 792 | 
            +
                    "gravatar_id": "81e618836ebb88a27d5c38e79037c2b2",
         | 
| 793 | 
            +
                    "type": "User",
         | 
| 794 | 
            +
                    "login": "flopezluis",
         | 
| 795 | 
            +
                    "email": "hola@flopezluis.es"
         | 
| 796 | 
            +
                },
         | 
| 797 | 
            +
                "repository": {
         | 
| 798 | 
            +
                    "has_issues": false,
         | 
| 799 | 
            +
                    "language": "Python",
         | 
| 800 | 
            +
                    "pushed_at": "2011/01/18 11:41:43 -0800",
         | 
| 801 | 
            +
                    "url": "https://github.com/flopezluis/python_koans",
         | 
| 802 | 
            +
                    "has_downloads": true,
         | 
| 803 | 
            +
                    "homepage": "http://bitbucket.org/gregmalcolm/python_koans/",
         | 
| 804 | 
            +
                    "watchers": 1,
         | 
| 805 | 
            +
                    "created_at": "2011/01/17 06:56:25 -0800",
         | 
| 806 | 
            +
                    "forks": 0,
         | 
| 807 | 
            +
                    "fork": true,
         | 
| 808 | 
            +
                    "has_wiki": true,
         | 
| 809 | 
            +
                    "size": 184,
         | 
| 810 | 
            +
                    "private": false,
         | 
| 811 | 
            +
                    "name": "python_koans",
         | 
| 812 | 
            +
                    "owner": "flopezluis",
         | 
| 813 | 
            +
                    "open_issues": 0,
         | 
| 814 | 
            +
                    "description": "Mirror of Python Koans project"
         | 
| 815 | 
            +
                },
         | 
| 816 | 
            +
                "created_at": "2011/01/18 11:41:44 -0800",
         | 
| 817 | 
            +
                "public": true,
         | 
| 818 | 
            +
                "actor": "flopezluis",
         | 
| 819 | 
            +
                "payload": {
         | 
| 820 | 
            +
                    "repo": "flopezluis/python_koans",
         | 
| 821 | 
            +
                    "head": "b22f202c63cab7a0bdff0977a524c6adb20cfecf",
         | 
| 822 | 
            +
                    "size": 1,
         | 
| 823 | 
            +
                    "actor": "flopezluis",
         | 
| 824 | 
            +
                    "actor_gravatar": "81e618836ebb88a27d5c38e79037c2b2",
         | 
| 825 | 
            +
                    "shas": [["b22f202c63cab7a0bdff0977a524c6adb20cfecf", "hola@flopezluis.es", "added two cases", "flopezluis"]],
         | 
| 826 | 
            +
                    "ref": "refs/heads/master"
         | 
| 827 | 
            +
                },
         | 
| 828 | 
            +
                "url": "https://github.com//flopezluis/python_koans/compare/45e72b2c25...b22f202c63",
         | 
| 829 | 
            +
                "times": 0,
         | 
| 830 | 
            +
                "type": "PushEvent"
         | 
| 831 | 
            +
            },
         | 
| 832 | 
            +
            {
         | 
| 833 | 
            +
                "actor_attributes": {
         | 
| 834 | 
            +
                    "name": "Francois Lafortune",
         | 
| 835 | 
            +
                    "gravatar_id": "8f04f964f253fb9729392065c8583847",
         | 
| 836 | 
            +
                    "location": "Montreal",
         | 
| 837 | 
            +
                    "blog": "http://quickredfox.at",
         | 
| 838 | 
            +
                    "type": "User",
         | 
| 839 | 
            +
                    "login": "quickredfox",
         | 
| 840 | 
            +
                    "email": "me@quickredfox.at"
         | 
| 841 | 
            +
                },
         | 
| 842 | 
            +
                "repository": {
         | 
| 843 | 
            +
                    "has_issues": true,
         | 
| 844 | 
            +
                    "pushed_at": "2011/01/18 11:38:54 -0800",
         | 
| 845 | 
            +
                    "url": "https://github.com/quickredfox/overlord",
         | 
| 846 | 
            +
                    "has_downloads": true,
         | 
| 847 | 
            +
                    "homepage": "",
         | 
| 848 | 
            +
                    "watchers": 1,
         | 
| 849 | 
            +
                    "created_at": "2011/01/18 11:37:25 -0800",
         | 
| 850 | 
            +
                    "forks": 1,
         | 
| 851 | 
            +
                    "fork": false,
         | 
| 852 | 
            +
                    "has_wiki": true,
         | 
| 853 | 
            +
                    "size": 108,
         | 
| 854 | 
            +
                    "private": false,
         | 
| 855 | 
            +
                    "name": "overlord",
         | 
| 856 | 
            +
                    "owner": "quickredfox",
         | 
| 857 | 
            +
                    "open_issues": 1,
         | 
| 858 | 
            +
                    "description": "An attempt at building flexible, nodejs-based automation tools without magical assumptions. "
         | 
| 859 | 
            +
                },
         | 
| 860 | 
            +
                "created_at": "2011/01/18 11:41:41 -0800",
         | 
| 861 | 
            +
                "public": true,
         | 
| 862 | 
            +
                "actor": "quickredfox",
         | 
| 863 | 
            +
                "payload": {
         | 
| 864 | 
            +
                    "repo": "quickredfox/overlord",
         | 
| 865 | 
            +
                    "number": 1,
         | 
| 866 | 
            +
                    "actor": "quickredfox",
         | 
| 867 | 
            +
                    "action": "opened",
         | 
| 868 | 
            +
                    "actor_gravatar": "8f04f964f253fb9729392065c8583847",
         | 
| 869 | 
            +
                    "issue": 534932
         | 
| 870 | 
            +
                },
         | 
| 871 | 
            +
                "url": "https://github.com//quickredfox/overlord/issues/1/find",
         | 
| 872 | 
            +
                "times": 0,
         | 
| 873 | 
            +
                "type": "IssuesEvent"
         | 
| 874 | 
            +
            },
         | 
| 875 | 
            +
            {
         | 
| 876 | 
            +
                "actor_attributes": {
         | 
| 877 | 
            +
                    "name": "Vadim A. Byshovets",
         | 
| 878 | 
            +
                    "gravatar_id": "dad9366cb3534ffc3135bd71419d86a1",
         | 
| 879 | 
            +
                    "type": "User",
         | 
| 880 | 
            +
                    "login": "byshovets",
         | 
| 881 | 
            +
                    "email": "byshovets@gmail.com"
         | 
| 882 | 
            +
                },
         | 
| 883 | 
            +
                "repository": {
         | 
| 884 | 
            +
                    "has_issues": false,
         | 
| 885 | 
            +
                    "pushed_at": "2011/01/18 11:41:38 -0800",
         | 
| 886 | 
            +
                    "url": "https://github.com/byshovets/diploma",
         | 
| 887 | 
            +
                    "has_downloads": true,
         | 
| 888 | 
            +
                    "homepage": "http://bva.ath.cx",
         | 
| 889 | 
            +
                    "watchers": 1,
         | 
| 890 | 
            +
                    "created_at": "2011/01/09 14:01:45 -0800",
         | 
| 891 | 
            +
                    "forks": 1,
         | 
| 892 | 
            +
                    "fork": false,
         | 
| 893 | 
            +
                    "has_wiki": false,
         | 
| 894 | 
            +
                    "size": 864,
         | 
| 895 | 
            +
                    "private": false,
         | 
| 896 | 
            +
                    "name": "diploma",
         | 
| 897 | 
            +
                    "owner": "byshovets",
         | 
| 898 | 
            +
                    "open_issues": 0,
         | 
| 899 | 
            +
                    "description": "Дипломный проект"
         | 
| 900 | 
            +
                },
         | 
| 901 | 
            +
                "created_at": "2011/01/18 11:41:38 -0800",
         | 
| 902 | 
            +
                "public": true,
         | 
| 903 | 
            +
                "actor": "byshovets",
         | 
| 904 | 
            +
                "payload": {
         | 
| 905 | 
            +
                    "repo": "byshovets/diploma",
         | 
| 906 | 
            +
                    "head": "c462ada7d0d4ff0c3fcc281db1c8e147cce2b971",
         | 
| 907 | 
            +
                    "size": 1,
         | 
| 908 | 
            +
                    "actor": "byshovets",
         | 
| 909 | 
            +
                    "actor_gravatar": "dad9366cb3534ffc3135bd71419d86a1",
         | 
| 910 | 
            +
                    "shas": [["c462ada7d0d4ff0c3fcc281db1c8e147cce2b971", "byshovets@gmail.com", "готовим src", "Vadim A. Byshovets"]],
         | 
| 911 | 
            +
                    "ref": "refs/heads/master"
         | 
| 912 | 
            +
                },
         | 
| 913 | 
            +
                "url": "https://github.com//byshovets/diploma/compare/8341c8485f...c462ada7d0",
         | 
| 914 | 
            +
                "times": 0,
         | 
| 915 | 
            +
                "type": "PushEvent"
         | 
| 916 | 
            +
            },
         | 
| 917 | 
            +
            {
         | 
| 918 | 
            +
                "actor_attributes": {
         | 
| 919 | 
            +
                    "gravatar_id": "67988ff9685be91c891ee6b26a97cfb3",
         | 
| 920 | 
            +
                    "type": "User",
         | 
| 921 | 
            +
                    "login": "tc0nn"
         | 
| 922 | 
            +
                },
         | 
| 923 | 
            +
                "repository": {
         | 
| 924 | 
            +
                    "has_issues": true,
         | 
| 925 | 
            +
                    "language": "Python",
         | 
| 926 | 
            +
                    "pushed_at": "2011/01/18 11:41:35 -0800",
         | 
| 927 | 
            +
                    "url": "https://github.com/tc0nn/scripts",
         | 
| 928 | 
            +
                    "has_downloads": true,
         | 
| 929 | 
            +
                    "homepage": "",
         | 
| 930 | 
            +
                    "watchers": 1,
         | 
| 931 | 
            +
                    "created_at": "2010/06/10 07:13:02 -0700",
         | 
| 932 | 
            +
                    "forks": 1,
         | 
| 933 | 
            +
                    "fork": false,
         | 
| 934 | 
            +
                    "has_wiki": true,
         | 
| 935 | 
            +
                    "size": 31744,
         | 
| 936 | 
            +
                    "private": false,
         | 
| 937 | 
            +
                    "name": "scripts",
         | 
| 938 | 
            +
                    "owner": "tc0nn",
         | 
| 939 | 
            +
                    "open_issues": 0,
         | 
| 940 | 
            +
                    "description": "Home Directory Scripts"
         | 
| 941 | 
            +
                },
         | 
| 942 | 
            +
                "created_at": "2011/01/18 11:41:36 -0800",
         | 
| 943 | 
            +
                "public": true,
         | 
| 944 | 
            +
                "actor": "tc0nn",
         | 
| 945 | 
            +
                "payload": {
         | 
| 946 | 
            +
                    "repo": "tc0nn/scripts",
         | 
| 947 | 
            +
                    "head": "261c22a6720262f4e436aa38248500f24089c5a4",
         | 
| 948 | 
            +
                    "size": 1,
         | 
| 949 | 
            +
                    "actor": "tc0nn",
         | 
| 950 | 
            +
                    "actor_gravatar": "67988ff9685be91c891ee6b26a97cfb3",
         | 
| 951 | 
            +
                    "shas": [["261c22a6720262f4e436aa38248500f24089c5a4", "tim@timsnet.com", "Tue Jan 18 13:41:34 CST 2011 from itbox02", "Tim Connolly"]],
         | 
| 952 | 
            +
                    "ref": "refs/heads/master"
         | 
| 953 | 
            +
                },
         | 
| 954 | 
            +
                "url": "https://github.com//tc0nn/scripts/compare/782458a20c...261c22a672",
         | 
| 955 | 
            +
                "times": 0,
         | 
| 956 | 
            +
                "type": "PushEvent"
         | 
| 957 | 
            +
            },
         | 
| 958 | 
            +
            {
         | 
| 959 | 
            +
                "actor_attributes": {
         | 
| 960 | 
            +
                    "name": "Michael Granger",
         | 
| 961 | 
            +
                    "company": "LAIKA, Inc.",
         | 
| 962 | 
            +
                    "gravatar_id": "04cdb622ce0aac272b61f23f373e2abf",
         | 
| 963 | 
            +
                    "location": "Portland, OR",
         | 
| 964 | 
            +
                    "blog": "http://deveiate.org/",
         | 
| 965 | 
            +
                    "type": "User",
         | 
| 966 | 
            +
                    "login": "ged",
         | 
| 967 | 
            +
                    "email": "ged@FaerieMUD.org"
         | 
| 968 | 
            +
                },
         | 
| 969 | 
            +
                "repository": {
         | 
| 970 | 
            +
                    "has_issues": true,
         | 
| 971 | 
            +
                    "language": "Ruby",
         | 
| 972 | 
            +
                    "pushed_at": "2011/01/18 11:41:35 -0800",
         | 
| 973 | 
            +
                    "url": "https://github.com/ged/treequel",
         | 
| 974 | 
            +
                    "has_downloads": true,
         | 
| 975 | 
            +
                    "homepage": "http://deveiate.org/projects/Treequel",
         | 
| 976 | 
            +
                    "watchers": 5,
         | 
| 977 | 
            +
                    "created_at": "2010/10/02 19:47:06 -0700",
         | 
| 978 | 
            +
                    "forks": 2,
         | 
| 979 | 
            +
                    "fork": false,
         | 
| 980 | 
            +
                    "has_wiki": true,
         | 
| 981 | 
            +
                    "size": 1392,
         | 
| 982 | 
            +
                    "private": false,
         | 
| 983 | 
            +
                    "name": "treequel",
         | 
| 984 | 
            +
                    "owner": "ged",
         | 
| 985 | 
            +
                    "open_issues": 0,
         | 
| 986 | 
            +
                    "description": "An LDAP toolkit for Ruby, intended to allow quick, easy access to LDAP directories in a manner consistent with LDAP's hierarchical, free-form nature. "
         | 
| 987 | 
            +
                },
         | 
| 988 | 
            +
                "created_at": "2011/01/18 11:41:36 -0800",
         | 
| 989 | 
            +
                "public": true,
         | 
| 990 | 
            +
                "actor": "ged",
         | 
| 991 | 
            +
                "payload": {
         | 
| 992 | 
            +
                    "repo": "ged/treequel",
         | 
| 993 | 
            +
                    "head": "e247b1362b23720dfe249d82e37b923a3d59b291",
         | 
| 994 | 
            +
                    "size": 1,
         | 
| 995 | 
            +
                    "actor": "ged",
         | 
| 996 | 
            +
                    "actor_gravatar": "04cdb622ce0aac272b61f23f373e2abf",
         | 
| 997 | 
            +
                    "shas": [["e247b1362b23720dfe249d82e37b923a3d59b291", "ged@FaerieMUD.org", "Bump patch version; simplify Treequel::Model#apply_applicable_mixins", "Michael Granger"]],
         | 
| 998 | 
            +
                    "ref": "refs/heads/master"
         | 
| 999 | 
            +
                },
         | 
| 1000 | 
            +
                "url": "https://github.com//ged/treequel/compare/a85f86e419...e247b1362b",
         | 
| 1001 | 
            +
                "times": 0,
         | 
| 1002 | 
            +
                "type": "PushEvent"
         | 
| 1003 | 
            +
            },
         | 
| 1004 | 
            +
            {
         | 
| 1005 | 
            +
                "actor_attributes": {
         | 
| 1006 | 
            +
                    "name": "Joel Brown",
         | 
| 1007 | 
            +
                    "company": "Perception Design",
         | 
| 1008 | 
            +
                    "gravatar_id": "b293d93a09584a463212bcc133d674a0",
         | 
| 1009 | 
            +
                    "location": "Toronto, Ontario",
         | 
| 1010 | 
            +
                    "blog": "www.perceptiondesign.ca",
         | 
| 1011 | 
            +
                    "type": "User",
         | 
| 1012 | 
            +
                    "login": "surfer-43",
         | 
| 1013 | 
            +
                    "email": "surfer_43@hotmail.com"
         | 
| 1014 | 
            +
                },
         | 
| 1015 | 
            +
                "created_at": "2011/01/18 11:41:33 -0800",
         | 
| 1016 | 
            +
                "public": true,
         | 
| 1017 | 
            +
                "actor": "surfer-43",
         | 
| 1018 | 
            +
                "payload": {
         | 
| 1019 | 
            +
                    "actor": "surfer-43",
         | 
| 1020 | 
            +
                    "actor_gravatar": "b293d93a09584a463212bcc133d674a0",
         | 
| 1021 | 
            +
                    "target": {
         | 
| 1022 | 
            +
                        "repos": 3,
         | 
| 1023 | 
            +
                        "followers": 10,
         | 
| 1024 | 
            +
                        "login": "pnitsch",
         | 
| 1025 | 
            +
                        "gravatar_id": "1b346806896108e27a5e90349ac7a281"
         | 
| 1026 | 
            +
                    }
         | 
| 1027 | 
            +
                },
         | 
| 1028 | 
            +
                "times": 0,
         | 
| 1029 | 
            +
                "type": "FollowEvent"
         | 
| 1030 | 
            +
            },
         | 
| 1031 | 
            +
            {
         | 
| 1032 | 
            +
                "actor_attributes": {
         | 
| 1033 | 
            +
                    "name": "",
         | 
| 1034 | 
            +
                    "gravatar_id": "c92497f11cb4bacfdf0e27ebb18dfe4f",
         | 
| 1035 | 
            +
                    "blog": "www.12meses12katas.com",
         | 
| 1036 | 
            +
                    "type": "User",
         | 
| 1037 | 
            +
                    "login": "12meses12katas"
         | 
| 1038 | 
            +
                },
         | 
| 1039 | 
            +
                "repository": {
         | 
| 1040 | 
            +
                    "has_issues": true,
         | 
| 1041 | 
            +
                    "pushed_at": "2011/01/14 08:07:57 -0800",
         | 
| 1042 | 
            +
                    "url": "https://github.com/12meses12katas/Enero-String-Calculator",
         | 
| 1043 | 
            +
                    "has_downloads": true,
         | 
| 1044 | 
            +
                    "homepage": "www.12meses12katas.com",
         | 
| 1045 | 
            +
                    "watchers": 20,
         | 
| 1046 | 
            +
                    "created_at": "2011/01/14 01:31:27 -0800",
         | 
| 1047 | 
            +
                    "forks": 3,
         | 
| 1048 | 
            +
                    "fork": false,
         | 
| 1049 | 
            +
                    "has_wiki": true,
         | 
| 1050 | 
            +
                    "size": 108,
         | 
| 1051 | 
            +
                    "private": false,
         | 
| 1052 | 
            +
                    "name": "Enero-String-Calculator",
         | 
| 1053 | 
            +
                    "owner": "12meses12katas",
         | 
| 1054 | 
            +
                    "open_issues": 1,
         | 
| 1055 | 
            +
                    "description": "Kata del mes de Enero del 2011: String Calculator"
         | 
| 1056 | 
            +
                },
         | 
| 1057 | 
            +
                "created_at": "2011/01/18 11:41:28 -0800",
         | 
| 1058 | 
            +
                "public": true,
         | 
| 1059 | 
            +
                "actor": "12meses12katas",
         | 
| 1060 | 
            +
                "payload": {
         | 
| 1061 | 
            +
                    "repo": "12meses12katas/Enero-String-Calculator",
         | 
| 1062 | 
            +
                    "actor": "12meses12katas",
         | 
| 1063 | 
            +
                    "member": "GermanDZ",
         | 
| 1064 | 
            +
                    "action": "added",
         | 
| 1065 | 
            +
                    "actor_gravatar": "c92497f11cb4bacfdf0e27ebb18dfe4f"
         | 
| 1066 | 
            +
                },
         | 
| 1067 | 
            +
                "url": "https://github.com//12meses12katas/Enero-String-Calculator",
         | 
| 1068 | 
            +
                "times": 0,
         | 
| 1069 | 
            +
                "type": "MemberEvent"
         | 
| 1070 | 
            +
            },
         | 
| 1071 | 
            +
            {
         | 
| 1072 | 
            +
                "actor_attributes": {
         | 
| 1073 | 
            +
                    "gravatar_id": "5365a5d8c7b7389ef6c20a50189c8572",
         | 
| 1074 | 
            +
                    "type": "User",
         | 
| 1075 | 
            +
                    "login": "opatut"
         | 
| 1076 | 
            +
                },
         | 
| 1077 | 
            +
                "repository": {
         | 
| 1078 | 
            +
                    "has_issues": true,
         | 
| 1079 | 
            +
                    "pushed_at": "2011/01/18 11:41:14 -0800",
         | 
| 1080 | 
            +
                    "url": "https://github.com/opatut/Shaders",
         | 
| 1081 | 
            +
                    "has_downloads": true,
         | 
| 1082 | 
            +
                    "homepage": "",
         | 
| 1083 | 
            +
                    "watchers": 1,
         | 
| 1084 | 
            +
                    "created_at": "2011/01/18 09:52:20 -0800",
         | 
| 1085 | 
            +
                    "forks": 1,
         | 
| 1086 | 
            +
                    "fork": false,
         | 
| 1087 | 
            +
                    "has_wiki": true,
         | 
| 1088 | 
            +
                    "size": 108,
         | 
| 1089 | 
            +
                    "private": false,
         | 
| 1090 | 
            +
                    "name": "Shaders",
         | 
| 1091 | 
            +
                    "owner": "opatut",
         | 
| 1092 | 
            +
                    "open_issues": 0,
         | 
| 1093 | 
            +
                    "description": "Playing around with SFML and GLSL Shaders "
         | 
| 1094 | 
            +
                },
         | 
| 1095 | 
            +
                "created_at": "2011/01/18 11:41:15 -0800",
         | 
| 1096 | 
            +
                "public": true,
         | 
| 1097 | 
            +
                "actor": "opatut",
         | 
| 1098 | 
            +
                "payload": {
         | 
| 1099 | 
            +
                    "repo": "opatut/Shaders",
         | 
| 1100 | 
            +
                    "head": "1b467e61a6b6f9c737dfc08d1542ce82a37a3bc7",
         | 
| 1101 | 
            +
                    "size": 1,
         | 
| 1102 | 
            +
                    "actor": "opatut",
         | 
| 1103 | 
            +
                    "actor_gravatar": "5365a5d8c7b7389ef6c20a50189c8572",
         | 
| 1104 | 
            +
                    "shas": [["1b467e61a6b6f9c737dfc08d1542ce82a37a3bc7", "opatutlol@aol.com", "Funny mosaic.", "opatut"]],
         | 
| 1105 | 
            +
                    "ref": "refs/heads/master"
         | 
| 1106 | 
            +
                },
         | 
| 1107 | 
            +
                "url": "https://github.com//opatut/Shaders/compare/348bcef71a...1b467e61a6",
         | 
| 1108 | 
            +
                "times": 0,
         | 
| 1109 | 
            +
                "type": "PushEvent"
         | 
| 1110 | 
            +
            },
         | 
| 1111 | 
            +
            {
         | 
| 1112 | 
            +
                "actor_attributes": {
         | 
| 1113 | 
            +
                    "name": "Paweł Pacana",
         | 
| 1114 | 
            +
                    "gravatar_id": "fcc3bb4ff848693a7532e74299aba106",
         | 
| 1115 | 
            +
                    "location": "Wrocław",
         | 
| 1116 | 
            +
                    "blog": "http://bitbucket.org/sensei",
         | 
| 1117 | 
            +
                    "type": "User",
         | 
| 1118 | 
            +
                    "login": "pawelpacana"
         | 
| 1119 | 
            +
                },
         | 
| 1120 | 
            +
                "repository": {
         | 
| 1121 | 
            +
                    "has_issues": true,
         | 
| 1122 | 
            +
                    "language": "Ruby",
         | 
| 1123 | 
            +
                    "pushed_at": "2011/01/18 11:41:11 -0800",
         | 
| 1124 | 
            +
                    "url": "https://github.com/drugpl/drug-site",
         | 
| 1125 | 
            +
                    "has_downloads": true,
         | 
| 1126 | 
            +
                    "organization": "drugpl",
         | 
| 1127 | 
            +
                    "homepage": "http://drug.org.pl",
         | 
| 1128 | 
            +
                    "watchers": 3,
         | 
| 1129 | 
            +
                    "created_at": "2011/01/18 08:20:14 -0800",
         | 
| 1130 | 
            +
                    "forks": 2,
         | 
| 1131 | 
            +
                    "fork": false,
         | 
| 1132 | 
            +
                    "has_wiki": true,
         | 
| 1133 | 
            +
                    "size": 712,
         | 
| 1134 | 
            +
                    "private": false,
         | 
| 1135 | 
            +
                    "name": "drug-site",
         | 
| 1136 | 
            +
                    "owner": "drugpl",
         | 
| 1137 | 
            +
                    "open_issues": 0,
         | 
| 1138 | 
            +
                    "description": "strona drug.org.pl"
         | 
| 1139 | 
            +
                },
         | 
| 1140 | 
            +
                "created_at": "2011/01/18 11:41:12 -0800",
         | 
| 1141 | 
            +
                "public": true,
         | 
| 1142 | 
            +
                "actor": "pawelpacana",
         | 
| 1143 | 
            +
                "payload": {
         | 
| 1144 | 
            +
                    "repo": "drugpl/drug-site",
         | 
| 1145 | 
            +
                    "head": "fb6c6b7597f0f40b7b16bae75681cd689d66d227",
         | 
| 1146 | 
            +
                    "size": 1,
         | 
| 1147 | 
            +
                    "actor": "pawelpacana",
         | 
| 1148 | 
            +
                    "actor_gravatar": "fcc3bb4ff848693a7532e74299aba106",
         | 
| 1149 | 
            +
                    "shas": [["fb6c6b7597f0f40b7b16bae75681cd689d66d227", "pawel.pacana@gmail.com", "clickable header logo areat", "Paweł Pacana"]],
         | 
| 1150 | 
            +
                    "ref": "refs/heads/master"
         | 
| 1151 | 
            +
                },
         | 
| 1152 | 
            +
                "url": "https://github.com//drugpl/drug-site/compare/984584cd6c...fb6c6b7597",
         | 
| 1153 | 
            +
                "times": 0,
         | 
| 1154 | 
            +
                "type": "PushEvent"
         | 
| 1155 | 
            +
            },
         | 
| 1156 | 
            +
            {
         | 
| 1157 | 
            +
                "actor_attributes": {
         | 
| 1158 | 
            +
                    "gravatar_id": "8d99b6b5c23fe7b25b1ea7da1a9dfe1a",
         | 
| 1159 | 
            +
                    "type": "User",
         | 
| 1160 | 
            +
                    "login": "torriem"
         | 
| 1161 | 
            +
                },
         | 
| 1162 | 
            +
                "repository": {
         | 
| 1163 | 
            +
                    "has_issues": true,
         | 
| 1164 | 
            +
                    "language": "C",
         | 
| 1165 | 
            +
                    "pushed_at": "2011/01/17 05:20:50 -0800",
         | 
| 1166 | 
            +
                    "url": "https://github.com/zfs-linux/zfs",
         | 
| 1167 | 
            +
                    "has_downloads": true,
         | 
| 1168 | 
            +
                    "organization": "zfs-linux",
         | 
| 1169 | 
            +
                    "homepage": "http://wiki.github.com/behlendorf/zfs/",
         | 
| 1170 | 
            +
                    "watchers": 14,
         | 
| 1171 | 
            +
                    "created_at": "2010/10/07 22:44:53 -0700",
         | 
| 1172 | 
            +
                    "forks": 1,
         | 
| 1173 | 
            +
                    "fork": true,
         | 
| 1174 | 
            +
                    "has_wiki": true,
         | 
| 1175 | 
            +
                    "size": 4216,
         | 
| 1176 | 
            +
                    "private": false,
         | 
| 1177 | 
            +
                    "name": "zfs",
         | 
| 1178 | 
            +
                    "owner": "zfs-linux",
         | 
| 1179 | 
            +
                    "open_issues": 15,
         | 
| 1180 | 
            +
                    "description": "Native ZFS for Linux"
         | 
| 1181 | 
            +
                },
         | 
| 1182 | 
            +
                "created_at": "2011/01/18 11:41:09 -0800",
         | 
| 1183 | 
            +
                "public": true,
         | 
| 1184 | 
            +
                "actor": "torriem",
         | 
| 1185 | 
            +
                "payload": {
         | 
| 1186 | 
            +
                    "repo": "zfs-linux/zfs",
         | 
| 1187 | 
            +
                    "number": 103,
         | 
| 1188 | 
            +
                    "actor": "torriem",
         | 
| 1189 | 
            +
                    "action": "opened",
         | 
| 1190 | 
            +
                    "actor_gravatar": "8d99b6b5c23fe7b25b1ea7da1a9dfe1a",
         | 
| 1191 | 
            +
                    "issue": 534928
         | 
| 1192 | 
            +
                },
         | 
| 1193 | 
            +
                "url": "https://github.com//zfs-linux/zfs/issues/103/find",
         | 
| 1194 | 
            +
                "times": 0,
         | 
| 1195 | 
            +
                "type": "IssuesEvent"
         | 
| 1196 | 
            +
            },
         | 
| 1197 | 
            +
            {
         | 
| 1198 | 
            +
                "actor_attributes": {
         | 
| 1199 | 
            +
                    "gravatar_id": "67988ff9685be91c891ee6b26a97cfb3",
         | 
| 1200 | 
            +
                    "type": "User",
         | 
| 1201 | 
            +
                    "login": "tc0nn"
         | 
| 1202 | 
            +
                },
         | 
| 1203 | 
            +
                "repository": {
         | 
| 1204 | 
            +
                    "has_issues": true,
         | 
| 1205 | 
            +
                    "language": "Python",
         | 
| 1206 | 
            +
                    "pushed_at": "2011/01/18 11:41:35 -0800",
         | 
| 1207 | 
            +
                    "url": "https://github.com/tc0nn/scripts",
         | 
| 1208 | 
            +
                    "has_downloads": true,
         | 
| 1209 | 
            +
                    "homepage": "",
         | 
| 1210 | 
            +
                    "watchers": 1,
         | 
| 1211 | 
            +
                    "created_at": "2010/06/10 07:13:02 -0700",
         | 
| 1212 | 
            +
                    "forks": 1,
         | 
| 1213 | 
            +
                    "fork": false,
         | 
| 1214 | 
            +
                    "has_wiki": true,
         | 
| 1215 | 
            +
                    "size": 31744,
         | 
| 1216 | 
            +
                    "private": false,
         | 
| 1217 | 
            +
                    "name": "scripts",
         | 
| 1218 | 
            +
                    "owner": "tc0nn",
         | 
| 1219 | 
            +
                    "open_issues": 0,
         | 
| 1220 | 
            +
                    "description": "Home Directory Scripts"
         | 
| 1221 | 
            +
                },
         | 
| 1222 | 
            +
                "created_at": "2011/01/18 11:41:08 -0800",
         | 
| 1223 | 
            +
                "public": true,
         | 
| 1224 | 
            +
                "actor": "tc0nn",
         | 
| 1225 | 
            +
                "payload": {
         | 
| 1226 | 
            +
                    "repo": "tc0nn/scripts",
         | 
| 1227 | 
            +
                    "head": "782458a20c2f073ce510256d9dcc0a270ec565e6",
         | 
| 1228 | 
            +
                    "size": 1,
         | 
| 1229 | 
            +
                    "actor": "tc0nn",
         | 
| 1230 | 
            +
                    "actor_gravatar": "67988ff9685be91c891ee6b26a97cfb3",
         | 
| 1231 | 
            +
                    "shas": [["782458a20c2f073ce510256d9dcc0a270ec565e6", "tim@timsnet.com", "Tue Jan 18 13:41:06 CST 2011 from itbox02", "Tim Connolly"]],
         | 
| 1232 | 
            +
                    "ref": "refs/heads/master"
         | 
| 1233 | 
            +
                },
         | 
| 1234 | 
            +
                "url": "https://github.com//tc0nn/scripts/compare/efd0de7b3b...782458a20c",
         | 
| 1235 | 
            +
                "times": 0,
         | 
| 1236 | 
            +
                "type": "PushEvent"
         | 
| 1237 | 
            +
            }]
         |