octopussy 0.0.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 +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.markdown +64 -0
- data/Rakefile +59 -0
- data/VERSION +1 -0
- data/changelog.markdown +5 -0
- data/lib/octopussy.rb +134 -0
- data/lib/octopussy/client.rb +393 -0
- data/lib/octopussy/repo.rb +33 -0
- data/test/fixtures/blob.json +10 -0
- data/test/fixtures/branches.json +6 -0
- data/test/fixtures/close_issue.json +1 -0
- data/test/fixtures/collaborators.json +1 -0
- data/test/fixtures/comment.json +1 -0
- data/test/fixtures/emails.json +1 -0
- data/test/fixtures/followers.json +3 -0
- data/test/fixtures/full_user.json +27 -0
- data/test/fixtures/issue.json +14 -0
- data/test/fixtures/issues.json +50 -0
- data/test/fixtures/keys.json +1 -0
- data/test/fixtures/labels.json +1 -0
- data/test/fixtures/languages.json +1 -0
- data/test/fixtures/network.json +26 -0
- data/test/fixtures/network_data.json +1 -0
- data/test/fixtures/network_meta.json +109 -0
- data/test/fixtures/open_issue.json +1 -0
- data/test/fixtures/raw_git_data.json +7 -0
- data/test/fixtures/reopen_issue.json +1 -0
- data/test/fixtures/repo.json +14 -0
- data/test/fixtures/repo_search.json +452 -0
- data/test/fixtures/repos.json +830 -0
- data/test/fixtures/search.json +44 -0
- data/test/fixtures/tags.json +8 -0
- data/test/fixtures/trees.json +140 -0
- data/test/fixtures/user.json +16 -0
- data/test/helper.rb +45 -0
- data/test/test_octopussy.rb +397 -0
- data/test/test_repo.rb +42 -0
- metadata +156 -0
| @@ -0,0 +1,33 @@ | |
| 1 | 
            +
            class Repo
         | 
| 2 | 
            +
              attr_accessor :username, :name
         | 
| 3 | 
            +
              
         | 
| 4 | 
            +
              def initialize(repo)
         | 
| 5 | 
            +
                if repo.is_a?(String)
         | 
| 6 | 
            +
                  repo = repo.split("/")
         | 
| 7 | 
            +
                  @name = repo.pop
         | 
| 8 | 
            +
                  @username = repo.pop
         | 
| 9 | 
            +
                elsif repo.is_a?(Repo)
         | 
| 10 | 
            +
                  @username = repo.username
         | 
| 11 | 
            +
                  @name = repo.name
         | 
| 12 | 
            +
                elsif repo.is_a?(Hash)
         | 
| 13 | 
            +
                  @name = repo[:repo] ||= repo[:name] 
         | 
| 14 | 
            +
                  @username = repo[:username] ||= repo[:user] ||= repo[:owner]
         | 
| 15 | 
            +
                end
         | 
| 16 | 
            +
              end
         | 
| 17 | 
            +
              
         | 
| 18 | 
            +
              def slug
         | 
| 19 | 
            +
                "#{@username}/#{@name}"
         | 
| 20 | 
            +
              end
         | 
| 21 | 
            +
              
         | 
| 22 | 
            +
              def user
         | 
| 23 | 
            +
                @username
         | 
| 24 | 
            +
              end
         | 
| 25 | 
            +
              
         | 
| 26 | 
            +
              def repo
         | 
| 27 | 
            +
                @name
         | 
| 28 | 
            +
              end
         | 
| 29 | 
            +
              
         | 
| 30 | 
            +
              def user=(val)
         | 
| 31 | 
            +
                @username = val
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
            end
         | 
| @@ -0,0 +1,10 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "blob": {
         | 
| 3 | 
            +
                    "name": "README.txt",
         | 
| 4 | 
            +
                    "size": 178,
         | 
| 5 | 
            +
                    "sha": "d4fc2d5e810d9b4bc1ce67702603080e3086a4ed",
         | 
| 6 | 
            +
                    "data": "Please visit http://famspam.com/facebox/ or open index.html in your favorite browser.nnNeed help?  Join our Google Groups mailing list:n  http://groups.google.com/group/facebox/n",
         | 
| 7 | 
            +
                    "mode": "100644",
         | 
| 8 | 
            +
                    "mime_type": "text/plain"
         | 
| 9 | 
            +
                }
         | 
| 10 | 
            +
            }
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"issue":{"number":2,"votes":0,"created_at":"2009/12/10 12:14:34 -0800","body":"testing api","title":"testing","updated_at":"2009/12/10 12:18:52 -0800","closed_at":"2009/12/10 12:18:52 -0800","user":"pengwynn","labels":[],"state":"closed"}}
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"collaborators":["pengwynn","adamstac"]}
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"comment": {"comment": "Nice catch!", "status": "saved"}}
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"emails":["wynn@squeejee.com","wynn.netherland@gmail.com","wynn@orrka.com"]}
         | 
| @@ -0,0 +1,3 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "users": ["cglee", "mattsa", "zachinglis", "seaofclouds", "njonsson", "davidnorth", "stephp", "polomasta", "webiest", "mchelen", "brogers", "marclove", "adamstac", "marshall", "handcrafted", "asenchi", "piyush", "rmetzler", "nileshtrivedi", "erikvold", "thechangelog"]
         | 
| 3 | 
            +
            }
         | 
| @@ -0,0 +1,27 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "user": {
         | 
| 3 | 
            +
                    "plan": {
         | 
| 4 | 
            +
                        "name": "free",
         | 
| 5 | 
            +
                        "collaborators": 0,
         | 
| 6 | 
            +
                        "space": 307200,
         | 
| 7 | 
            +
                        "private_repos": 0
         | 
| 8 | 
            +
                    },
         | 
| 9 | 
            +
                    "name": "Wynn Netherland",
         | 
| 10 | 
            +
                    "company": "Orrka",
         | 
| 11 | 
            +
                    "location": "Dallas, TX",
         | 
| 12 | 
            +
                    "created_at": "2008/02/25 10:24:19 -0800",
         | 
| 13 | 
            +
                    "collaborators": 0,
         | 
| 14 | 
            +
                    "disk_usage": 85605,
         | 
| 15 | 
            +
                    "public_gist_count": 3,
         | 
| 16 | 
            +
                    "public_repo_count": 15,
         | 
| 17 | 
            +
                    "blog": "http://wynnnetherland.com",
         | 
| 18 | 
            +
                    "following_count": 55,
         | 
| 19 | 
            +
                    "id": 865,
         | 
| 20 | 
            +
                    "private_gist_count": 1,
         | 
| 21 | 
            +
                    "owned_private_repo_count": 0,
         | 
| 22 | 
            +
                    "total_private_repo_count": 0,
         | 
| 23 | 
            +
                    "followers_count": 21,
         | 
| 24 | 
            +
                    "login": "pengwynn",
         | 
| 25 | 
            +
                    "email": "wynn.netherland@gmail.com"
         | 
| 26 | 
            +
                }
         | 
| 27 | 
            +
            }
         | 
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "issue": {
         | 
| 3 | 
            +
                    "number": 3,
         | 
| 4 | 
            +
                    "votes": 2,
         | 
| 5 | 
            +
                    "created_at": "2009/05/06 17:28:29 -0700",
         | 
| 6 | 
            +
                    "body": "Not sure if this is an issue with Crack or with this lib, but every time I try to create a friendship, I get this error:rnrn>> base.friendship_create('anyone')rnCrack::ParseError: Invalid JSON stringrntfrom /Library/Ruby/Gems/1.8/gems/crack-0.1.2/lib/crack/json.rb:14:in `parse'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:73:in `parse'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:48:in `make_friendly'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:34:in `perform'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:10:in `post'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:162:in `perform_post'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:76:in `friendship_create'rn",
         | 
| 7 | 
            +
                    "title": "Crack error when creating friendship",
         | 
| 8 | 
            +
                    "updated_at": "2009/08/17 14:25:17 -0700",
         | 
| 9 | 
            +
                    "closed_at": null,
         | 
| 10 | 
            +
                    "user": "shanev",
         | 
| 11 | 
            +
                    "labels": [],
         | 
| 12 | 
            +
                    "state": "open"
         | 
| 13 | 
            +
                }
         | 
| 14 | 
            +
            }
         | 
| @@ -0,0 +1,50 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "issues": [{
         | 
| 3 | 
            +
                    "number": 3,
         | 
| 4 | 
            +
                    "votes": 2,
         | 
| 5 | 
            +
                    "created_at": "2009/05/06 17:28:29 -0700",
         | 
| 6 | 
            +
                    "body": "Not sure if this is an issue with Crack or with this lib, but every time I try to create a friendship, I get this error:\r\n\r\n>> base.friendship_create('anyone')\r\nCrack::ParseError: Invalid JSON string\r\n\tfrom /Library/Ruby/Gems/1.8/gems/crack-0.1.2/lib/crack/json.rb:14:in `parse'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:73:in `parse'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:48:in `make_friendly'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:34:in `perform'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:10:in `post'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:162:in `perform_post'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:76:in `friendship_create'\r\n",
         | 
| 7 | 
            +
                    "title": "Crack error when creating friendship",
         | 
| 8 | 
            +
                    "updated_at": "2009/08/17 14:25:17 -0700",
         | 
| 9 | 
            +
                    "closed_at": null,
         | 
| 10 | 
            +
                    "user": "shanev",
         | 
| 11 | 
            +
                    "labels": [],
         | 
| 12 | 
            +
                    "state": "open"
         | 
| 13 | 
            +
                },
         | 
| 14 | 
            +
                {
         | 
| 15 | 
            +
                    "number": 6,
         | 
| 16 | 
            +
                    "votes": 2,
         | 
| 17 | 
            +
                    "created_at": "2009/06/07 12:28:24 -0700",
         | 
| 18 | 
            +
                    "body": "The methods on the Twitter class (firehose, friend_ids, follower_ids, status, user) assume that no errors will occur, but all of them can at least return a 50x error. An example using FakeWeb:\r\n\r\n<pre>\r\n>> FakeWeb.register_uri(:get, 'http://twitter.com/statuses/public_timeline.json',\r\n?> :string => '{\"request\":\"\\/statuses\\/public_timeline.json\",\"error\":\"Bad gateway\"}',\r\n?> :status => ['502', 'Bad Gateway'])\r\n=> [#<FakeWeb::Responder:0x7f3b2138 @options={:status=>[\"502\", \"Bad Gateway\"], :string=>\"{\\\"request\\\":\\\"\\\\/statuses\\\\/public_timeline.json\\\",\\\"error\\\":\\\"Bad gateway\\\"}\"}, @method=:get, @uri=\"http://twitter.com/statuses/public_timeline.json\", @times=1>]\r\n>> Twitter.firehose\r\nNoMethodError: undefined method `stringify_keys' for [\"request\", \"/statuses/public_timeline.json\"]:Array\r\n        from /usr/lib/ruby/gems/1.8/gems/mash-0.0.3/lib/mash.rb:131:in `deep_update'\r\n        from /usr/lib/ruby/gems/1.8/gems/mash-0.0.3/lib/mash.rb:50:in `initialize'\r\n        from /usr/lib/ruby/gems/1.8/gems/twitter-0.6.11/lib/twitter.rb:34:in `new'\r\n        from /usr/lib/ruby/gems/1.8/gems/twitter-0.6.11/lib/twitter.rb:34:in `firehose' \r\n</pre>",
         | 
| 19 | 
            +
                    "title": "Methods on Twitter class don't check for errors",
         | 
| 20 | 
            +
                    "updated_at": "2009/10/29 16:28:45 -0700",
         | 
| 21 | 
            +
                    "closed_at": null,
         | 
| 22 | 
            +
                    "user": "bkocik",
         | 
| 23 | 
            +
                    "labels": [],
         | 
| 24 | 
            +
                    "state": "open"
         | 
| 25 | 
            +
                },
         | 
| 26 | 
            +
                {
         | 
| 27 | 
            +
                    "number": 8,
         | 
| 28 | 
            +
                    "votes": 0,
         | 
| 29 | 
            +
                    "created_at": "2009/06/17 14:40:43 -0700",
         | 
| 30 | 
            +
                    "body": "When you request a search with a :since_id parameter too old, according to [Twitter](http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search):\r\n\r\n> This method will return an HTTP 404 error if since_id is used and is too old to be in the search index\r\n\r\nwhich results in a +Crack::ParseError+ exception",
         | 
| 31 | 
            +
                    "title": "Error handling 404 from Twitter::Search (JSON error)",
         | 
| 32 | 
            +
                    "updated_at": "2009/06/17 14:40:43 -0700",
         | 
| 33 | 
            +
                    "closed_at": null,
         | 
| 34 | 
            +
                    "user": "chubas",
         | 
| 35 | 
            +
                    "labels": [],
         | 
| 36 | 
            +
                    "state": "open"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                    "number": 9,
         | 
| 40 | 
            +
                    "votes": 3,
         | 
| 41 | 
            +
                    "created_at": "2009/06/18 07:53:09 -0700",
         | 
| 42 | 
            +
                    "body": "happens periodically, presumably when twitter search services returns a string for a response instead of a hash?",
         | 
| 43 | 
            +
                    "title": "stringify_keys error in Mash.new when using Twitter::search",
         | 
| 44 | 
            +
                    "updated_at": "2009/11/12 08:52:13 -0800",
         | 
| 45 | 
            +
                    "closed_at": null,
         | 
| 46 | 
            +
                    "user": "metrostar",
         | 
| 47 | 
            +
                    "labels": [],
         | 
| 48 | 
            +
                    "state": "open"
         | 
| 49 | 
            +
                }]
         | 
| 50 | 
            +
            }
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"public_keys":[{"title":null,"id":2102,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAAddBIwAAAasdfasdfQEAxfm4eG+Dasd3b/d41W3BR8h9IOv63ISyaVTVXLsiwAfGZw17Kc9xpdp1NblqvDIj+T1bI6U420/Jb5tBw0MlltgUxwwySVH1f37w89VzdC7ArsR6X3KOIz/fhtmUCNyPakO+BjKjK3MtLcQvrNY5s0B91D/klP1pgcGVUzJxw5kCtZ6By3HjGXDK5lW9qMAG93ncrFc6tTE3WQ30Wgcsqf+uNmc9tyR5cO0asKneDaz1t486ydF9P97dzwM+SMY9GcpZ2gvOp0UHdA59Wr3LEE6/EqGxAxRDrT/1wtPk5Ya1TEWWX+WdlfZ1zttd3h7dkVom1cKWCa262mU3THoe5aytJw=="},{"title":null,"id":2686,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAw4GP0832tasCsbl2QcEehotpcjfMMgbep9xWuf0T6fmMXgLI9QkiPdjA2oqxdJp7l33Echsb5gVjbY+96KPd9Q6Q7FM9Si9srfJpw2folq89+LJWBYe0qw3BMDFfmBtcmTMZT1NWzZ1RT/crPqDSEGYMny9s2jR3spL2K8R9dcWalFgpasRbfEacr7xUvFbIcxeU2xsWvTjA8+YwoU2pc3tG8XX8LMMRdzadN5L9rOrxlo6XybOH6KgKPA02jKbdmsbIZ3umHylMdTckjLWSDut+7ACD+7ztuPkH9Ya9lYWBzn8kVzwL91+4T8RbYndD0VqS4GpuL2AOqVrDHMrsjw=="},{"title":null,"id":17725,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxvbvBp9ugiuHPr8LvhAjO1qHmzNSJp/SpJoP0ZXfVVR4+m9fti2Kuf5efgDIKsW4l1ODCuhuQLaa5TB+X4/uZB8PUKtZaUswNRfN/w8fzX24+pEMq9Jf2l++Nz7xyA1PngSLeZ/FWbFP5Nl8DnOnb1GiLIcGPb0rMZ4CvoxwNtp8bb2F5HVVSF0n2cyJvsb+ZqQRZwejYmLlrzagUAfrz0BWDkGw2QitZhIsy7XaqK+jDM8k9qugk19n69e5VVYZYLvFUJ16aX+zhWsx5+Li2jXFlJcYpadV3KjY4+KF2I26idO/qhQv31+QH9/gTQxKZKsWWbjFMfDlzoquG9FtZw=="},{"title":null,"id":22206,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6JdBPCEoeH3nl93pjzkw88bJ3YSaZLUhe3rWULadU/fL0vxtRBaiRAfsSIq1/ank8fLnrl3TquQq26DOrZWyam4ODHQRzHdN4MlE3kH8tSHoRedwuzFyAjCC23QpLD+4vGwhyrJmuebT13mn2t0rbnOZMpKY1f9r97Tbhx6/sMIE+n6zaWBg/miOWMaR2rQ048vNuaA+hhJz+MdU6VL94GxchuQ7eeCP1tucbEG6qQraRhvWqV2GRDJ86Xc34uC2eMQaybk+UHH4TSe9DNYSRRpHWS5IgAPZHO267X3uOhSDOOXHQx/liVVWd6PTcJQkQ6u0W8hNBQVUZAHnTgG9cQ=="},{"title":"pengwynn","id":42883,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA2QU45StpDGCM9KJgaIzv6/GXsUO8mrpOkfevd2ht7IMN5Fdl2R7jjCjv9eZmIWieBWsKiFUq2T5/+royc7jjHjGd9s8FGYIi9nACNblzDLT1w6WX6ORuS2LuUuq9uUdtAghbWImQSQDOpGaW73OCvBSuZKKKvqwSXsOFhstfwYaOLzfF9xdCVd02DJY75QSiUkNaaB4300yqQlVYdrtz2akXLXpxlzojALcoAHefuCOK7C8/J3LCiPVGftBZ7Fab6k6LV7rguhcfkyg4bwzAMMOcwx+AUj1WLv4rdDJOi4X6xJzEBitvhJFTQ4ynGXmaalKGwSzaIhByG74JsGq7Ew=="},{"title":"wynn@pengwynn.local","id":111978,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAlugsW063BAHaUOYSJa+6T1/lKCIptIBXjppAXwnALKYJCfSTnQjEXhAv8CDXLkVDlF11A1rqYrHuVs/CdVJblRXfmHAhSy+3GcYqyrBNdRJtu/R1+ziDiAnSOTyZjLFwJwovy7coRJ4o2ZaZZkYhBQe6Th6cTtPFIho8yab3plxWzL7MvF6MPwIW3vJO38Z8c91SHBWQqbKBtLwjkWYjZSyu+MSB5BUXBIB6AcHcQOP0/0q/4rO4dk4qjkH5rXqa29knoCBHjpMJB7L3v0BedSzPN3/O7xwE85mok1OZaIYjFqNgSnEw3VVOiuJ95EVHN6ELR/gWbEYddvkRZUo8Pw=="}]}
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"labels":["oauth"]}
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"languages":{"Ruby":21515}}
         | 
| @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "network": [{
         | 
| 3 | 
            +
                    "url": "http://github.com/pengwynn/linkedin",
         | 
| 4 | 
            +
                    "description": "Ruby wrapper for the LinkedIn API",
         | 
| 5 | 
            +
                    "homepage": "http://bit.ly/ruby-linkedin",
         | 
| 6 | 
            +
                    "fork": false,
         | 
| 7 | 
            +
                    "open_issues": 2,
         | 
| 8 | 
            +
                    "private": false,
         | 
| 9 | 
            +
                    "name": "linkedin",
         | 
| 10 | 
            +
                    "owner": "pengwynn",
         | 
| 11 | 
            +
                    "watchers": 36,
         | 
| 12 | 
            +
                    "forks": 1
         | 
| 13 | 
            +
                },
         | 
| 14 | 
            +
                {
         | 
| 15 | 
            +
                    "url": "http://github.com/nfo/linkedin",
         | 
| 16 | 
            +
                    "description": "Ruby wrapper for the LinkedIn API",
         | 
| 17 | 
            +
                    "homepage": "http://bit.ly/ruby-linkedin",
         | 
| 18 | 
            +
                    "fork": true,
         | 
| 19 | 
            +
                    "open_issues": 0,
         | 
| 20 | 
            +
                    "private": false,
         | 
| 21 | 
            +
                    "name": "linkedin",
         | 
| 22 | 
            +
                    "owner": "nfo",
         | 
| 23 | 
            +
                    "watchers": 1,
         | 
| 24 | 
            +
                    "forks": 0
         | 
| 25 | 
            +
                }]
         | 
| 26 | 
            +
            }
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"commits": []}
         | 
| @@ -0,0 +1,109 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "blocks": [{
         | 
| 3 | 
            +
                    "name": "schacon",
         | 
| 4 | 
            +
                    "count": 3,
         | 
| 5 | 
            +
                    "start": 0
         | 
| 6 | 
            +
                },
         | 
| 7 | 
            +
                {
         | 
| 8 | 
            +
                    "name": "anlek",
         | 
| 9 | 
            +
                    "count": 3,
         | 
| 10 | 
            +
                    "start": 3
         | 
| 11 | 
            +
                },
         | 
| 12 | 
            +
                {
         | 
| 13 | 
            +
                    "name": "gitflow",
         | 
| 14 | 
            +
                    "count": 2,
         | 
| 15 | 
            +
                    "start": 6
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                    "name": "tamtam",
         | 
| 19 | 
            +
                    "count": 1,
         | 
| 20 | 
            +
                    "start": 8
         | 
| 21 | 
            +
                }],
         | 
| 22 | 
            +
                "nethash": "c4589cdab8567be257cbb3509d22d4b937831c79",
         | 
| 23 | 
            +
                "focus": 77,
         | 
| 24 | 
            +
                "dates": ["2008-03-15", "2008-03-15", "2008-03-17", "2008-03-17", "2008-04-05", "2008-04-05", "2008-04-05", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-06", "2008-04-13", "2008-04-13", "2008-04-13", "2008-04-13", "2008-04-13", "2008-04-13", "2008-04-27", "2008-04-27", "2008-04-27", "2008-04-28", "2008-04-28", "2008-04-28", "2008-04-28", "2008-04-28", "2008-04-28", "2008-04-28", "2008-05-28", "2008-05-28", "2008-06-12", "2008-06-12", "2008-06-21", "2008-06-21", "2008-07-04", "2008-07-04", "2008-07-04", "2008-07-04", "2008-07-05", "2008-07-05", "2008-07-05", "2008-07-05", "2008-07-05", "2008-07-05", "2008-07-05", "2008-07-05", "2008-08-09", "2008-09-03", "2008-09-03", "2008-09-03", "2008-09-23", "2008-09-23", "2008-09-23", "2008-09-23", "2008-09-23", "2008-09-25", "2008-09-25", "2009-01-15", "2009-01-15", "2009-02-08", "2009-02-08", "2009-02-08", "2009-02-08", "2009-02-08", "2009-02-10", "2009-02-15", "2009-02-15", "2009-02-15", "2009-02-15", "2009-04-17", "2009-04-17", "2009-08-23", "2009-08-23", "2009-08-23", "2009-08-23", "2009-08-23", "2009-10-27", "2009-10-27", "2009-10-27", "2009-10-27", "2009-10-27", "2009-10-27"],
         | 
| 25 | 
            +
                "users": [{
         | 
| 26 | 
            +
                    "repo": "simplegit",
         | 
| 27 | 
            +
                    "name": "schacon",
         | 
| 28 | 
            +
                    "heads": [{
         | 
| 29 | 
            +
                        "name": "master",
         | 
| 30 | 
            +
                        "id": "ca82a6dff817ec66f44342007202690a93763949"
         | 
| 31 | 
            +
                    },
         | 
| 32 | 
            +
                    {
         | 
| 33 | 
            +
                        "name": "integration",
         | 
| 34 | 
            +
                        "id": "7e7de73f7bd28f3841b51bf200669b1c392e36f3"
         | 
| 35 | 
            +
                    },
         | 
| 36 | 
            +
                    {
         | 
| 37 | 
            +
                        "name": "nolimit",
         | 
| 38 | 
            +
                        "id": "84958e805cb50f787e948f258e6627681eea5404"
         | 
| 39 | 
            +
                    },
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                        "name": "qa/master",
         | 
| 42 | 
            +
                        "id": "ca82a6dff817ec66f44342007202690a93763949"
         | 
| 43 | 
            +
                    },
         | 
| 44 | 
            +
                    {
         | 
| 45 | 
            +
                        "name": "topic",
         | 
| 46 | 
            +
                        "id": "085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7"
         | 
| 47 | 
            +
                    }]
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                    "repo": "simplegit",
         | 
| 51 | 
            +
                    "name": "anlek",
         | 
| 52 | 
            +
                    "heads": [{
         | 
| 53 | 
            +
                        "name": "master",
         | 
| 54 | 
            +
                        "id": "10c5bc85d9c2ea7f10610ab4e265127eb6f0a918"
         | 
| 55 | 
            +
                    },
         | 
| 56 | 
            +
                    {
         | 
| 57 | 
            +
                        "name": "test",
         | 
| 58 | 
            +
                        "id": "046d3c94ff641afd553d0dcccea3fe7d0e4802f4"
         | 
| 59 | 
            +
                    },
         | 
| 60 | 
            +
                    {
         | 
| 61 | 
            +
                        "name": "website",
         | 
| 62 | 
            +
                        "id": "29ddeaa83de0e300dd576f77a47de8a0ad5a86cd"
         | 
| 63 | 
            +
                    },
         | 
| 64 | 
            +
                    {
         | 
| 65 | 
            +
                        "name": "testing",
         | 
| 66 | 
            +
                        "id": "6529a78a220f944fc3f27a4e5f1c2030b233740e"
         | 
| 67 | 
            +
                    }]
         | 
| 68 | 
            +
                },
         | 
| 69 | 
            +
                {
         | 
| 70 | 
            +
                    "repo": "simplegit",
         | 
| 71 | 
            +
                    "name": "gitflow",
         | 
| 72 | 
            +
                    "heads": [{
         | 
| 73 | 
            +
                        "name": "master",
         | 
| 74 | 
            +
                        "id": "ca82a6dff817ec66f44342007202690a93763949"
         | 
| 75 | 
            +
                    },
         | 
| 76 | 
            +
                    {
         | 
| 77 | 
            +
                        "name": "topic",
         | 
| 78 | 
            +
                        "id": "085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7"
         | 
| 79 | 
            +
                    },
         | 
| 80 | 
            +
                    {
         | 
| 81 | 
            +
                        "name": "add-branching-support",
         | 
| 82 | 
            +
                        "id": "da1000302f62050bef893b022f3ceaf02d73c1ab"
         | 
| 83 | 
            +
                    },
         | 
| 84 | 
            +
                    {
         | 
| 85 | 
            +
                        "name": "nolimit",
         | 
| 86 | 
            +
                        "id": "84958e805cb50f787e948f258e6627681eea5404"
         | 
| 87 | 
            +
                    },
         | 
| 88 | 
            +
                    {
         | 
| 89 | 
            +
                        "name": "add-branch-switching",
         | 
| 90 | 
            +
                        "id": "c6c63002476ed3ba0b0e29cc76b8f87ecaceb60b"
         | 
| 91 | 
            +
                    },
         | 
| 92 | 
            +
                    {
         | 
| 93 | 
            +
                        "name": "add-clone-support",
         | 
| 94 | 
            +
                        "id": "fcef95b81ffc1adf410c15917bcb7f40556ff01a"
         | 
| 95 | 
            +
                    },
         | 
| 96 | 
            +
                    {
         | 
| 97 | 
            +
                        "name": "qa/master",
         | 
| 98 | 
            +
                        "id": "ca82a6dff817ec66f44342007202690a93763949"
         | 
| 99 | 
            +
                    }]
         | 
| 100 | 
            +
                },
         | 
| 101 | 
            +
                {
         | 
| 102 | 
            +
                    "repo": "tam_repo",
         | 
| 103 | 
            +
                    "name": "tamtam",
         | 
| 104 | 
            +
                    "heads": [{
         | 
| 105 | 
            +
                        "name": "master",
         | 
| 106 | 
            +
                        "id": "8bf4aeae935422e7bdbb30660b4f3642728a1397"
         | 
| 107 | 
            +
                    }]
         | 
| 108 | 
            +
                }]
         | 
| 109 | 
            +
            }
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"issue":{"number":2,"votes":0,"created_at":"2009/12/10 12:14:34 -0800","body":"testing api","title":"testing","updated_at":"2009/12/10 12:14:34 -0800","closed_at":null,"user":"pengwynn","labels":[],"state":"open"}}
         | 
| @@ -0,0 +1,7 @@ | |
| 1 | 
            +
            tree f7a5de2e224ec94182a3c2c081f4e7f35f70da4d
         | 
| 2 | 
            +
            parent cd13d9a61288dceb0a7aa73b55ed2fd019f4f1f7
         | 
| 3 | 
            +
            parent 3211367cab73233af66dac2710c94682f3f3b9b2
         | 
| 4 | 
            +
            author Chris Wanstrath <chris@ozmm.org> 1213837237 -0700
         | 
| 5 | 
            +
            committer Chris Wanstrath <chris@ozmm.org> 1213837237 -0700
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            Merge branch 'master' of git://github.com/webweaver/facebox into webweaver/master
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"issue":{"number":2,"votes":0,"created_at":"2009/12/10 12:14:34 -0800","body":"testing api","title":"testing","updated_at":"2009/12/10 12:19:04 -0800","closed_at":null,"user":"pengwynn","labels":[],"state":"open"}}
         | 
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "repository": {
         | 
| 3 | 
            +
                    "url": "http://github.com/pengwynn/linkedin",
         | 
| 4 | 
            +
                    "description": "Ruby wrapper for the LinkedIn API",
         | 
| 5 | 
            +
                    "watchers": 34,
         | 
| 6 | 
            +
                    "homepage": "http://bit.ly/ruby-linkedin",
         | 
| 7 | 
            +
                    "fork": false,
         | 
| 8 | 
            +
                    "private": false,
         | 
| 9 | 
            +
                    "name": "linkedin",
         | 
| 10 | 
            +
                    "owner": "pengwynn",
         | 
| 11 | 
            +
                    "forks": 1,
         | 
| 12 | 
            +
                    "open_issues": 2
         | 
| 13 | 
            +
                }
         | 
| 14 | 
            +
            }
         | 
| @@ -0,0 +1,452 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "repositories": [{
         | 
| 3 | 
            +
                    "name": "compass",
         | 
| 4 | 
            +
                    "size": 6144,
         | 
| 5 | 
            +
                    "followers": 1383,
         | 
| 6 | 
            +
                    "username": "chriseppstein",
         | 
| 7 | 
            +
                    "language": "Ruby",
         | 
| 8 | 
            +
                    "fork": false,
         | 
| 9 | 
            +
                    "id": "repo-45300",
         | 
| 10 | 
            +
                    "type": "repo",
         | 
| 11 | 
            +
                    "pushed": "2009-12-03T08:55:01Z",
         | 
| 12 | 
            +
                    "forks": 70,
         | 
| 13 | 
            +
                    "description": "Compass is a Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.",
         | 
| 14 | 
            +
                    "score": 9.122609,
         | 
| 15 | 
            +
                    "created": "2008-08-23T17:02:18Z"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                    "name": "fancy-buttons",
         | 
| 19 | 
            +
                    "size": 2048,
         | 
| 20 | 
            +
                    "followers": 167,
         | 
| 21 | 
            +
                    "username": "imathis",
         | 
| 22 | 
            +
                    "language": "Ruby",
         | 
| 23 | 
            +
                    "fork": false,
         | 
| 24 | 
            +
                    "id": "repo-311527",
         | 
| 25 | 
            +
                    "type": "repo",
         | 
| 26 | 
            +
                    "pushed": "2009-12-09T22:30:39Z",
         | 
| 27 | 
            +
                    "forks": 4,
         | 
| 28 | 
            +
                    "description": "Fancy CSS Buttons using Compass",
         | 
| 29 | 
            +
                    "score": 0.6754447,
         | 
| 30 | 
            +
                    "created": "2009-09-19T03:40:21Z"
         | 
| 31 | 
            +
                },
         | 
| 32 | 
            +
                {
         | 
| 33 | 
            +
                    "name": "compass-960-plugin",
         | 
| 34 | 
            +
                    "size": 784,
         | 
| 35 | 
            +
                    "followers": 61,
         | 
| 36 | 
            +
                    "username": "chriseppstein",
         | 
| 37 | 
            +
                    "language": "Ruby",
         | 
| 38 | 
            +
                    "fork": false,
         | 
| 39 | 
            +
                    "id": "repo-99778",
         | 
| 40 | 
            +
                    "type": "repo",
         | 
| 41 | 
            +
                    "pushed": "2009-09-27T20:12:01Z",
         | 
| 42 | 
            +
                    "forks": 7,
         | 
| 43 | 
            +
                    "description": "Sass Port of 960.gs as part of the Compass Stylesheet Framework.",
         | 
| 44 | 
            +
                    "score": 5.0737286,
         | 
| 45 | 
            +
                    "created": "2009-01-02T17:36:27Z"
         | 
| 46 | 
            +
                },
         | 
| 47 | 
            +
                {
         | 
| 48 | 
            +
                    "name": "compass-colors",
         | 
| 49 | 
            +
                    "size": 1638,
         | 
| 50 | 
            +
                    "followers": 53,
         | 
| 51 | 
            +
                    "username": "chriseppstein",
         | 
| 52 | 
            +
                    "language": "Ruby",
         | 
| 53 | 
            +
                    "fork": false,
         | 
| 54 | 
            +
                    "id": "repo-266945",
         | 
| 55 | 
            +
                    "type": "repo",
         | 
| 56 | 
            +
                    "pushed": "2009-11-19T19:58:53Z",
         | 
| 57 | 
            +
                    "forks": 4,
         | 
| 58 | 
            +
                    "description": "Color Tools and Theme Support for Compass and Sass",
         | 
| 59 | 
            +
                    "score": 5.2134895,
         | 
| 60 | 
            +
                    "created": "2009-08-02T10:30:07Z"
         | 
| 61 | 
            +
                },
         | 
| 62 | 
            +
                {
         | 
| 63 | 
            +
                    "name": "compass-rails-sample-application",
         | 
| 64 | 
            +
                    "size": 4096,
         | 
| 65 | 
            +
                    "followers": 47,
         | 
| 66 | 
            +
                    "username": "chriseppstein",
         | 
| 67 | 
            +
                    "language": "Ruby",
         | 
| 68 | 
            +
                    "fork": false,
         | 
| 69 | 
            +
                    "id": "repo-58711",
         | 
| 70 | 
            +
                    "type": "repo",
         | 
| 71 | 
            +
                    "pushed": "2009-06-04T16:41:54Z",
         | 
| 72 | 
            +
                    "forks": 1,
         | 
| 73 | 
            +
                    "description": "Demonstrates how to configure a rails application to use Compass",
         | 
| 74 | 
            +
                    "score": 4.550148,
         | 
| 75 | 
            +
                    "created": "2008-10-02T07:20:24Z"
         | 
| 76 | 
            +
                },
         | 
| 77 | 
            +
                {
         | 
| 78 | 
            +
                    "name": "blueprint-sass",
         | 
| 79 | 
            +
                    "size": 204,
         | 
| 80 | 
            +
                    "followers": 36,
         | 
| 81 | 
            +
                    "username": "chriseppstein",
         | 
| 82 | 
            +
                    "language": "Ruby",
         | 
| 83 | 
            +
                    "fork": false,
         | 
| 84 | 
            +
                    "id": "repo-29145",
         | 
| 85 | 
            +
                    "type": "repo",
         | 
| 86 | 
            +
                    "pushed": "2008-08-27T16:41:10Z",
         | 
| 87 | 
            +
                    "forks": 0,
         | 
| 88 | 
            +
                    "description": "The blueprint stylesheet framework in sass. Development has moved to my project named Compass.",
         | 
| 89 | 
            +
                    "score": 0.46580324,
         | 
| 90 | 
            +
                    "created": "2008-06-27T02:44:41Z"
         | 
| 91 | 
            +
                },
         | 
| 92 | 
            +
                {
         | 
| 93 | 
            +
                    "name": "sass-recipes",
         | 
| 94 | 
            +
                    "size": 80,
         | 
| 95 | 
            +
                    "followers": 33,
         | 
| 96 | 
            +
                    "username": "chriseppstein",
         | 
| 97 | 
            +
                    "language": "",
         | 
| 98 | 
            +
                    "fork": false,
         | 
| 99 | 
            +
                    "id": "repo-32364",
         | 
| 100 | 
            +
                    "type": "repo",
         | 
| 101 | 
            +
                    "pushed": "2008-08-10T18:26:15Z",
         | 
| 102 | 
            +
                    "forks": 1,
         | 
| 103 | 
            +
                    "description": "Sass mixin examples and recipes that you can use or modify to suit your needs. Send a request for commit access to add your own. Most of these mixins are now part of my Compass project",
         | 
| 104 | 
            +
                    "score": 0.39592272,
         | 
| 105 | 
            +
                    "created": "2008-07-08T20:12:00Z"
         | 
| 106 | 
            +
                },
         | 
| 107 | 
            +
                {
         | 
| 108 | 
            +
                    "name": "compass-sinatra",
         | 
| 109 | 
            +
                    "size": 288,
         | 
| 110 | 
            +
                    "followers": 27,
         | 
| 111 | 
            +
                    "username": "seaofclouds",
         | 
| 112 | 
            +
                    "language": "Ruby",
         | 
| 113 | 
            +
                    "fork": false,
         | 
| 114 | 
            +
                    "id": "repo-151211",
         | 
| 115 | 
            +
                    "type": "repo",
         | 
| 116 | 
            +
                    "pushed": "2009-03-17T19:45:40Z",
         | 
| 117 | 
            +
                    "forks": 3,
         | 
| 118 | 
            +
                    "description": "a simple starting point for those wanting to explore compass with sinatra.",
         | 
| 119 | 
            +
                    "score": 5.0737286,
         | 
| 120 | 
            +
                    "created": "2009-03-15T07:25:08Z"
         | 
| 121 | 
            +
                },
         | 
| 122 | 
            +
                {
         | 
| 123 | 
            +
                    "name": "compass-jquery",
         | 
| 124 | 
            +
                    "size": 2048,
         | 
| 125 | 
            +
                    "followers": 18,
         | 
| 126 | 
            +
                    "username": "dturnbull",
         | 
| 127 | 
            +
                    "language": "JavaScript",
         | 
| 128 | 
            +
                    "fork": false,
         | 
| 129 | 
            +
                    "id": "repo-243944",
         | 
| 130 | 
            +
                    "type": "repo",
         | 
| 131 | 
            +
                    "pushed": "2009-08-06T23:51:30Z",
         | 
| 132 | 
            +
                    "forks": 2,
         | 
| 133 | 
            +
                    "description": "Integrates jQuery, jQuery UI, Themes, jqGrid, and more into Compass Sass framework.",
         | 
| 134 | 
            +
                    "score": 4.933967,
         | 
| 135 | 
            +
                    "created": "2009-07-06T00:45:52Z"
         | 
| 136 | 
            +
                },
         | 
| 137 | 
            +
                {
         | 
| 138 | 
            +
                    "name": "graphpaper",
         | 
| 139 | 
            +
                    "size": 2150,
         | 
| 140 | 
            +
                    "followers": 15,
         | 
| 141 | 
            +
                    "username": "alexcabrera",
         | 
| 142 | 
            +
                    "language": "Ruby",
         | 
| 143 | 
            +
                    "fork": false,
         | 
| 144 | 
            +
                    "id": "repo-201057",
         | 
| 145 | 
            +
                    "type": "repo",
         | 
| 146 | 
            +
                    "pushed": "2009-10-05T22:20:43Z",
         | 
| 147 | 
            +
                    "forks": 1,
         | 
| 148 | 
            +
                    "description": "A SASS library for use with Compass CSS",
         | 
| 149 | 
            +
                    "score": 0.60556424,
         | 
| 150 | 
            +
                    "created": "2009-05-14T17:46:32Z"
         | 
| 151 | 
            +
                },
         | 
| 152 | 
            +
                {
         | 
| 153 | 
            +
                    "name": "compass_blueprint_tmbundle",
         | 
| 154 | 
            +
                    "size": 2048,
         | 
| 155 | 
            +
                    "followers": 14,
         | 
| 156 | 
            +
                    "username": "grimen",
         | 
| 157 | 
            +
                    "language": "",
         | 
| 158 | 
            +
                    "fork": false,
         | 
| 159 | 
            +
                    "id": "repo-241265",
         | 
| 160 | 
            +
                    "type": "repo",
         | 
| 161 | 
            +
                    "pushed": "2009-07-24T20:06:11Z",
         | 
| 162 | 
            +
                    "forks": 2,
         | 
| 163 | 
            +
                    "description": "Textmate: A TextMate-bundle for more productive Compass + Blueprint development.",
         | 
| 164 | 
            +
                    "score": 4.933967,
         | 
| 165 | 
            +
                    "created": "2009-07-02T03:36:54Z"
         | 
| 166 | 
            +
                },
         | 
| 167 | 
            +
                {
         | 
| 168 | 
            +
                    "name": "staticmatic-compass-susy",
         | 
| 169 | 
            +
                    "size": 0,
         | 
| 170 | 
            +
                    "followers": 14,
         | 
| 171 | 
            +
                    "username": "charlesr",
         | 
| 172 | 
            +
                    "language": "Ruby",
         | 
| 173 | 
            +
                    "fork": false,
         | 
| 174 | 
            +
                    "id": "repo-344073",
         | 
| 175 | 
            +
                    "type": "repo",
         | 
| 176 | 
            +
                    "pushed": "2009-10-30T08:50:37Z",
         | 
| 177 | 
            +
                    "forks": 2,
         | 
| 178 | 
            +
                    "description": "A demo site using Staticmatic, Compass and Susy",
         | 
| 179 | 
            +
                    "score": 5.2134895,
         | 
| 180 | 
            +
                    "created": "2009-10-20T21:57:02Z"
         | 
| 181 | 
            +
                },
         | 
| 182 | 
            +
                {
         | 
| 183 | 
            +
                    "name": "handcrafted-rounded-corners",
         | 
| 184 | 
            +
                    "size": 384,
         | 
| 185 | 
            +
                    "followers": 13,
         | 
| 186 | 
            +
                    "username": "handcrafted",
         | 
| 187 | 
            +
                    "language": "",
         | 
| 188 | 
            +
                    "fork": false,
         | 
| 189 | 
            +
                    "id": "repo-254765",
         | 
| 190 | 
            +
                    "type": "repo",
         | 
| 191 | 
            +
                    "pushed": "2009-08-21T04:48:49Z",
         | 
| 192 | 
            +
                    "forks": 1,
         | 
| 193 | 
            +
                    "description": "Handcrafted Rounded Corners is a simple Compass mixin to round corners in Compass supported projects.",
         | 
| 194 | 
            +
                    "score": 0.58158505,
         | 
| 195 | 
            +
                    "created": "2009-07-19T05:35:19Z"
         | 
| 196 | 
            +
                },
         | 
| 197 | 
            +
                {
         | 
| 198 | 
            +
                    "name": "compass-baseline",
         | 
| 199 | 
            +
                    "size": 536,
         | 
| 200 | 
            +
                    "followers": 11,
         | 
| 201 | 
            +
                    "username": "tdreyno",
         | 
| 202 | 
            +
                    "language": "Ruby",
         | 
| 203 | 
            +
                    "fork": false,
         | 
| 204 | 
            +
                    "id": "repo-288926",
         | 
| 205 | 
            +
                    "type": "repo",
         | 
| 206 | 
            +
                    "pushed": "2009-11-23T18:24:58Z",
         | 
| 207 | 
            +
                    "forks": 1,
         | 
| 208 | 
            +
                    "description": "Implement the Baseline CSS framework in Sass",
         | 
| 209 | 
            +
                    "score": 2.2806022,
         | 
| 210 | 
            +
                    "created": "2009-08-26T17:54:33Z"
         | 
| 211 | 
            +
                },
         | 
| 212 | 
            +
                {
         | 
| 213 | 
            +
                    "name": "staticmatic-bootstrap",
         | 
| 214 | 
            +
                    "size": 916,
         | 
| 215 | 
            +
                    "followers": 11,
         | 
| 216 | 
            +
                    "username": "adamstac",
         | 
| 217 | 
            +
                    "language": "Ruby",
         | 
| 218 | 
            +
                    "fork": false,
         | 
| 219 | 
            +
                    "id": "repo-352479",
         | 
| 220 | 
            +
                    "type": "repo",
         | 
| 221 | 
            +
                    "pushed": "2009-12-08T22:38:13Z",
         | 
| 222 | 
            +
                    "forks": 1,
         | 
| 223 | 
            +
                    "description": "StaticMatic bootstrap with support for Haml, Sass, Compass and jQuery",
         | 
| 224 | 
            +
                    "score": 0.46580324,
         | 
| 225 | 
            +
                    "created": "2009-10-28T09:25:36Z"
         | 
| 226 | 
            +
                },
         | 
| 227 | 
            +
                {
         | 
| 228 | 
            +
                    "name": "CompassTest",
         | 
| 229 | 
            +
                    "size": 76,
         | 
| 230 | 
            +
                    "followers": 10,
         | 
| 231 | 
            +
                    "username": "fspeirs",
         | 
| 232 | 
            +
                    "language": "Objective-C",
         | 
| 233 | 
            +
                    "fork": false,
         | 
| 234 | 
            +
                    "id": "repo-231437",
         | 
| 235 | 
            +
                    "type": "repo",
         | 
| 236 | 
            +
                    "pushed": "2009-06-19T14:48:52Z",
         | 
| 237 | 
            +
                    "forks": 1,
         | 
| 238 | 
            +
                    "description": "Demo app for iPhone 3GS compass data",
         | 
| 239 | 
            +
                    "score": 5.0737286,
         | 
| 240 | 
            +
                    "created": "2009-06-19T14:48:35Z"
         | 
| 241 | 
            +
                },
         | 
| 242 | 
            +
                {
         | 
| 243 | 
            +
                    "name": "newyork",
         | 
| 244 | 
            +
                    "size": 540,
         | 
| 245 | 
            +
                    "followers": 10,
         | 
| 246 | 
            +
                    "username": "nmerouze",
         | 
| 247 | 
            +
                    "language": "JavaScript",
         | 
| 248 | 
            +
                    "fork": false,
         | 
| 249 | 
            +
                    "id": "repo-72801",
         | 
| 250 | 
            +
                    "type": "repo",
         | 
| 251 | 
            +
                    "pushed": "2008-11-26T16:24:09Z",
         | 
| 252 | 
            +
                    "forks": 2,
         | 
| 253 | 
            +
                    "description": "Easy website wireframing with HAML, SASS, Red, Compass, jQuery and Polypage.",
         | 
| 254 | 
            +
                    "score": 0.46580324,
         | 
| 255 | 
            +
                    "created": "2008-11-07T14:01:18Z"
         | 
| 256 | 
            +
                },
         | 
| 257 | 
            +
                {
         | 
| 258 | 
            +
                    "name": "compass-susy-plugin",
         | 
| 259 | 
            +
                    "size": 2662,
         | 
| 260 | 
            +
                    "followers": 9,
         | 
| 261 | 
            +
                    "username": "carljm",
         | 
| 262 | 
            +
                    "language": "Perl",
         | 
| 263 | 
            +
                    "fork": false,
         | 
| 264 | 
            +
                    "id": "repo-250141",
         | 
| 265 | 
            +
                    "type": "repo",
         | 
| 266 | 
            +
                    "pushed": "2009-10-17T01:52:20Z",
         | 
| 267 | 
            +
                    "forks": 2,
         | 
| 268 | 
            +
                    "description": "A grid framework for Compass.",
         | 
| 269 | 
            +
                    "score": 5.4930115,
         | 
| 270 | 
            +
                    "created": "2009-07-13T17:10:51Z"
         | 
| 271 | 
            +
                },
         | 
| 272 | 
            +
                {
         | 
| 273 | 
            +
                    "name": "sinatra-bootstrap",
         | 
| 274 | 
            +
                    "size": 512,
         | 
| 275 | 
            +
                    "followers": 9,
         | 
| 276 | 
            +
                    "username": "adamstac",
         | 
| 277 | 
            +
                    "language": "JavaScript",
         | 
| 278 | 
            +
                    "fork": false,
         | 
| 279 | 
            +
                    "id": "repo-352942",
         | 
| 280 | 
            +
                    "type": "repo",
         | 
| 281 | 
            +
                    "pushed": "2009-12-02T10:49:49Z",
         | 
| 282 | 
            +
                    "forks": 1,
         | 
| 283 | 
            +
                    "description": "Sinatra bootstrap project with support for Haml, Sass, Compass and jQuery",
         | 
| 284 | 
            +
                    "score": 0.53568375,
         | 
| 285 | 
            +
                    "created": "2009-10-28T16:40:04Z"
         | 
| 286 | 
            +
                },
         | 
| 287 | 
            +
                {
         | 
| 288 | 
            +
                    "name": "compass-jquery-plugin",
         | 
| 289 | 
            +
                    "size": 5324,
         | 
| 290 | 
            +
                    "followers": 9,
         | 
| 291 | 
            +
                    "username": "kosmas58",
         | 
| 292 | 
            +
                    "language": "JavaScript",
         | 
| 293 | 
            +
                    "fork": false,
         | 
| 294 | 
            +
                    "id": "repo-305728",
         | 
| 295 | 
            +
                    "type": "repo",
         | 
| 296 | 
            +
                    "pushed": "2009-12-06T19:04:36Z",
         | 
| 297 | 
            +
                    "forks": 1,
         | 
| 298 | 
            +
                    "description": "Plugin adds jQuery to compass framework. ",
         | 
| 299 | 
            +
                    "score": 5.2134895,
         | 
| 300 | 
            +
                    "created": "2009-09-13T13:47:42Z"
         | 
| 301 | 
            +
                },
         | 
| 302 | 
            +
                {
         | 
| 303 | 
            +
                    "name": "Compass.tmbundle",
         | 
| 304 | 
            +
                    "size": 324,
         | 
| 305 | 
            +
                    "followers": 8,
         | 
| 306 | 
            +
                    "username": "dougochris",
         | 
| 307 | 
            +
                    "language": "Ruby",
         | 
| 308 | 
            +
                    "fork": false,
         | 
| 309 | 
            +
                    "id": "repo-277857",
         | 
| 310 | 
            +
                    "type": "repo",
         | 
| 311 | 
            +
                    "pushed": "2009-08-20T01:45:44Z",
         | 
| 312 | 
            +
                    "forks": 1,
         | 
| 313 | 
            +
                    "description": "Compass TextMate bundle",
         | 
| 314 | 
            +
                    "score": 5.3532505,
         | 
| 315 | 
            +
                    "created": "2009-08-14T11:57:52Z"
         | 
| 316 | 
            +
                },
         | 
| 317 | 
            +
                {
         | 
| 318 | 
            +
                    "name": "compass-wordpress",
         | 
| 319 | 
            +
                    "size": 1740,
         | 
| 320 | 
            +
                    "followers": 8,
         | 
| 321 | 
            +
                    "username": "pengwynn",
         | 
| 322 | 
            +
                    "language": "PHP",
         | 
| 323 | 
            +
                    "fork": false,
         | 
| 324 | 
            +
                    "id": "repo-362916",
         | 
| 325 | 
            +
                    "type": "repo",
         | 
| 326 | 
            +
                    "pushed": "2009-12-10T16:29:28Z",
         | 
| 327 | 
            +
                    "forks": 2,
         | 
| 328 | 
            +
                    "description": "Compass plugin for creating WordPress themes using Sass",
         | 
| 329 | 
            +
                    "score": 5.0737286,
         | 
| 330 | 
            +
                    "created": "2009-11-06T04:17:42Z"
         | 
| 331 | 
            +
                },
         | 
| 332 | 
            +
                {
         | 
| 333 | 
            +
                    "name": "compass-style.org",
         | 
| 334 | 
            +
                    "size": 14336,
         | 
| 335 | 
            +
                    "followers": 7,
         | 
| 336 | 
            +
                    "username": "chriseppstein",
         | 
| 337 | 
            +
                    "language": "Ruby",
         | 
| 338 | 
            +
                    "fork": false,
         | 
| 339 | 
            +
                    "id": "repo-82767",
         | 
| 340 | 
            +
                    "type": "repo",
         | 
| 341 | 
            +
                    "pushed": "2009-09-10T15:06:29Z",
         | 
| 342 | 
            +
                    "forks": 3,
         | 
| 343 | 
            +
                    "description": "The Compass Stylesheet Framework's Website",
         | 
| 344 | 
            +
                    "score": 5.4930115,
         | 
| 345 | 
            +
                    "created": "2008-11-30T20:32:38Z"
         | 
| 346 | 
            +
                },
         | 
| 347 | 
            +
                {
         | 
| 348 | 
            +
                    "name": "compass-aristo-plugin",
         | 
| 349 | 
            +
                    "size": 2048,
         | 
| 350 | 
            +
                    "followers": 7,
         | 
| 351 | 
            +
                    "username": "hpoydar",
         | 
| 352 | 
            +
                    "language": "Ruby",
         | 
| 353 | 
            +
                    "fork": false,
         | 
| 354 | 
            +
                    "id": "repo-283188",
         | 
| 355 | 
            +
                    "type": "repo",
         | 
| 356 | 
            +
                    "pushed": "2009-08-24T18:53:35Z",
         | 
| 357 | 
            +
                    "forks": 1,
         | 
| 358 | 
            +
                    "description": "A Compass plugin that provides a CSS3 port of the Aristo UI elements",
         | 
| 359 | 
            +
                    "score": 4.933967,
         | 
| 360 | 
            +
                    "created": "2009-08-20T16:26:00Z"
         | 
| 361 | 
            +
                },
         | 
| 362 | 
            +
                {
         | 
| 363 | 
            +
                    "name": "compass-drupal-zen-plugin",
         | 
| 364 | 
            +
                    "size": 1024,
         | 
| 365 | 
            +
                    "followers": 7,
         | 
| 366 | 
            +
                    "username": "bangpound",
         | 
| 367 | 
            +
                    "language": "PHP",
         | 
| 368 | 
            +
                    "fork": false,
         | 
| 369 | 
            +
                    "id": "repo-184749",
         | 
| 370 | 
            +
                    "type": "repo",
         | 
| 371 | 
            +
                    "pushed": "2009-05-16T16:52:29Z",
         | 
| 372 | 
            +
                    "forks": 0,
         | 
| 373 | 
            +
                    "description": "Sass port of Drupal Zen 2 theme as part of the Compass Stylesheet Framework",
         | 
| 374 | 
            +
                    "score": 4.550148,
         | 
| 375 | 
            +
                    "created": "2009-04-24T18:56:34Z"
         | 
| 376 | 
            +
                },
         | 
| 377 | 
            +
                {
         | 
| 378 | 
            +
                    "name": "handcrafted-compass-mixins",
         | 
| 379 | 
            +
                    "size": 248,
         | 
| 380 | 
            +
                    "followers": 7,
         | 
| 381 | 
            +
                    "username": "handcrafted",
         | 
| 382 | 
            +
                    "language": "",
         | 
| 383 | 
            +
                    "fork": false,
         | 
| 384 | 
            +
                    "id": "repo-286797",
         | 
| 385 | 
            +
                    "type": "repo",
         | 
| 386 | 
            +
                    "pushed": "2009-08-25T18:44:52Z",
         | 
| 387 | 
            +
                    "forks": 2,
         | 
| 388 | 
            +
                    "description": "Handcrafted's various Compass mixins aimed at making life a little more pleasant",
         | 
| 389 | 
            +
                    "score": 4.933967,
         | 
| 390 | 
            +
                    "created": "2009-08-24T18:28:32Z"
         | 
| 391 | 
            +
                },
         | 
| 392 | 
            +
                {
         | 
| 393 | 
            +
                    "name": "compass-slickmap",
         | 
| 394 | 
            +
                    "size": 296,
         | 
| 395 | 
            +
                    "followers": 7,
         | 
| 396 | 
            +
                    "username": "tdreyno",
         | 
| 397 | 
            +
                    "language": "Ruby",
         | 
| 398 | 
            +
                    "fork": false,
         | 
| 399 | 
            +
                    "id": "repo-268168",
         | 
| 400 | 
            +
                    "type": "repo",
         | 
| 401 | 
            +
                    "pushed": "2009-12-03T20:55:49Z",
         | 
| 402 | 
            +
                    "forks": 2,
         | 
| 403 | 
            +
                    "description": "A Compass plugin for the SlickmapCSS sitemap",
         | 
| 404 | 
            +
                    "score": 5.2134895,
         | 
| 405 | 
            +
                    "created": "2009-08-03T22:12:38Z"
         | 
| 406 | 
            +
                },
         | 
| 407 | 
            +
                {
         | 
| 408 | 
            +
                    "name": "pinax-compass-integration",
         | 
| 409 | 
            +
                    "size": 2048,
         | 
| 410 | 
            +
                    "followers": 6,
         | 
| 411 | 
            +
                    "username": "durdn",
         | 
| 412 | 
            +
                    "language": "Python",
         | 
| 413 | 
            +
                    "fork": false,
         | 
| 414 | 
            +
                    "id": "repo-241237",
         | 
| 415 | 
            +
                    "type": "repo",
         | 
| 416 | 
            +
                    "pushed": "2009-09-21T15:28:55Z",
         | 
| 417 | 
            +
                    "forks": 1,
         | 
| 418 | 
            +
                    "description": "Simple integration to use Compass (http://compass-style.org) inside Pinax (http://pinaxproject.com)",
         | 
| 419 | 
            +
                    "score": 5.165531,
         | 
| 420 | 
            +
                    "created": "2009-07-02T02:45:21Z"
         | 
| 421 | 
            +
                },
         | 
| 422 | 
            +
                {
         | 
| 423 | 
            +
                    "name": "nanoc-bootstrap",
         | 
| 424 | 
            +
                    "size": 0,
         | 
| 425 | 
            +
                    "followers": 6,
         | 
| 426 | 
            +
                    "username": "adamstac",
         | 
| 427 | 
            +
                    "language": "Ruby",
         | 
| 428 | 
            +
                    "fork": false,
         | 
| 429 | 
            +
                    "id": "repo-333347",
         | 
| 430 | 
            +
                    "type": "repo",
         | 
| 431 | 
            +
                    "pushed": "2009-10-28T16:48:35Z",
         | 
| 432 | 
            +
                    "forks": 2,
         | 
| 433 | 
            +
                    "description": "Nanoc bootstrap with support for Haml, Sass, Compass and jQuery",
         | 
| 434 | 
            +
                    "score": 0.53568375,
         | 
| 435 | 
            +
                    "created": "2009-10-10T18:23:52Z"
         | 
| 436 | 
            +
                },
         | 
| 437 | 
            +
                {
         | 
| 438 | 
            +
                    "name": "compass-css-lightbox",
         | 
| 439 | 
            +
                    "size": 172,
         | 
| 440 | 
            +
                    "followers": 6,
         | 
| 441 | 
            +
                    "username": "ericam",
         | 
| 442 | 
            +
                    "language": "Ruby",
         | 
| 443 | 
            +
                    "fork": false,
         | 
| 444 | 
            +
                    "id": "repo-409243",
         | 
| 445 | 
            +
                    "type": "repo",
         | 
| 446 | 
            +
                    "pushed": "2009-12-09T09:22:18Z",
         | 
| 447 | 
            +
                    "forks": 1,
         | 
| 448 | 
            +
                    "description": "a css-only lightbox implementation for compass",
         | 
| 449 | 
            +
                    "score": 5.2134895,
         | 
| 450 | 
            +
                    "created": "2009-12-09T00:15:11Z"
         | 
| 451 | 
            +
                }]
         | 
| 452 | 
            +
            }
         |