diff --git a/lib/jekyll-github-metadata.rb b/lib/jekyll-github-metadata.rb index e6810a2..a462b95 100644 --- a/lib/jekyll-github-metadata.rb +++ b/lib/jekyll-github-metadata.rb @@ -81,6 +81,7 @@ def init! # The Juicy Stuff register_value('public_repositories', proc { |_,r| r.owner_public_repositories }) + register_value('private_repositories', proc { |_,r| r.accessible_private_repositories }) register_value('organization_members', proc { |_,r| r.organization_public_members }) register_value('build_revision', proc { ENV['JEKYLL_BUILD_REVISION'] || `git rev-parse HEAD`.strip diff --git a/lib/jekyll-github-metadata/repository.rb b/lib/jekyll-github-metadata/repository.rb index d25987a..a390729 100644 --- a/lib/jekyll-github-metadata/repository.rb +++ b/lib/jekyll-github-metadata/repository.rb @@ -72,6 +72,10 @@ def owner_public_repositories memoize_value :@owner_public_repositories, Value.new(proc { |c| c.list_repos(owner, "type" => "public") }) end + def accessible_private_repositories + memoize_value :@accessible_private_repositories, Value.new(proc { |c| c.list_repos(nil, "type" => "private") }) + end + def organization_public_members memoize_value :@organization_public_members, Value.new(proc { |c| c.organization_public_members(owner) if organization_repository? diff --git a/spec/integration_spec.rb b/spec/integration_spec.rb index d1f9d43..b4f2d31 100644 --- a/spec/integration_spec.rb +++ b/spec/integration_spec.rb @@ -22,6 +22,7 @@ def initialize(path, file) API_STUBS = { "/users/jekyll/repos?per_page=100&type=public" => "owner_repos", + "/user/repos?per_page=100&type=private" => "accessible_private_repos", "/repos/jekyll/github-metadata" => "repo", "/orgs/jekyll" => "org", "/orgs/jekyll/public_members?per_page=100" => "org_members", diff --git a/spec/webmock/api_get_accessible_private_repos.json b/spec/webmock/api_get_accessible_private_repos.json new file mode 100644 index 0000000..af7a904 --- /dev/null +++ b/spec/webmock/api_get_accessible_private_repos.json @@ -0,0 +1 @@ +[{"id":17261694,"name":"atom-jekyll","full_name":"jekyll/atom-jekyll","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/atom-jekyll","description":"An editor built on top of a web browser? How 'bout some static site previewing?","fork":false,"url":"https://api.github.com/repos/jekyll/atom-jekyll","forks_url":"https://api.github.com/repos/jekyll/atom-jekyll/forks","keys_url":"https://api.github.com/repos/jekyll/atom-jekyll/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/atom-jekyll/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/atom-jekyll/teams","hooks_url":"https://api.github.com/repos/jekyll/atom-jekyll/hooks","issue_events_url":"https://api.github.com/repos/jekyll/atom-jekyll/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/atom-jekyll/events","assignees_url":"https://api.github.com/repos/jekyll/atom-jekyll/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/atom-jekyll/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/atom-jekyll/tags","blobs_url":"https://api.github.com/repos/jekyll/atom-jekyll/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/atom-jekyll/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/atom-jekyll/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/atom-jekyll/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/atom-jekyll/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/atom-jekyll/languages","stargazers_url":"https://api.github.com/repos/jekyll/atom-jekyll/stargazers","contributors_url":"https://api.github.com/repos/jekyll/atom-jekyll/contributors","subscribers_url":"https://api.github.com/repos/jekyll/atom-jekyll/subscribers","subscription_url":"https://api.github.com/repos/jekyll/atom-jekyll/subscription","commits_url":"https://api.github.com/repos/jekyll/atom-jekyll/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/atom-jekyll/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/atom-jekyll/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/atom-jekyll/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/atom-jekyll/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/atom-jekyll/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/atom-jekyll/merges","archive_url":"https://api.github.com/repos/jekyll/atom-jekyll/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/atom-jekyll/downloads","issues_url":"https://api.github.com/repos/jekyll/atom-jekyll/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/atom-jekyll/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/atom-jekyll/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/atom-jekyll/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/atom-jekyll/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/atom-jekyll/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/atom-jekyll/deployments","created_at":"2014-02-27T19:39:46Z","updated_at":"2014-12-24T23:55:51Z","pushed_at":"2014-02-27T19:39:46Z","git_url":"git://github.com/jekyll/atom-jekyll.git","ssh_url":"git@github.com:jekyll/atom-jekyll.git","clone_url":"https://github.com/jekyll/atom-jekyll.git","svn_url":"https://github.com/jekyll/atom-jekyll","homepage":null,"size":116,"stargazers_count":14,"watchers_count":14,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":14,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":46322268,"name":"benchmarking","full_name":"jekyll/benchmarking","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/benchmarking","description":"Benchmarking tools for Jekyll","fork":false,"url":"https://api.github.com/repos/jekyll/benchmarking","forks_url":"https://api.github.com/repos/jekyll/benchmarking/forks","keys_url":"https://api.github.com/repos/jekyll/benchmarking/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/benchmarking/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/benchmarking/teams","hooks_url":"https://api.github.com/repos/jekyll/benchmarking/hooks","issue_events_url":"https://api.github.com/repos/jekyll/benchmarking/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/benchmarking/events","assignees_url":"https://api.github.com/repos/jekyll/benchmarking/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/benchmarking/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/benchmarking/tags","blobs_url":"https://api.github.com/repos/jekyll/benchmarking/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/benchmarking/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/benchmarking/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/benchmarking/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/benchmarking/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/benchmarking/languages","stargazers_url":"https://api.github.com/repos/jekyll/benchmarking/stargazers","contributors_url":"https://api.github.com/repos/jekyll/benchmarking/contributors","subscribers_url":"https://api.github.com/repos/jekyll/benchmarking/subscribers","subscription_url":"https://api.github.com/repos/jekyll/benchmarking/subscription","commits_url":"https://api.github.com/repos/jekyll/benchmarking/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/benchmarking/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/benchmarking/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/benchmarking/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/benchmarking/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/benchmarking/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/benchmarking/merges","archive_url":"https://api.github.com/repos/jekyll/benchmarking/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/benchmarking/downloads","issues_url":"https://api.github.com/repos/jekyll/benchmarking/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/benchmarking/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/benchmarking/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/benchmarking/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/benchmarking/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/benchmarking/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/benchmarking/deployments","created_at":"2015-11-17T04:01:44Z","updated_at":"2015-11-18T08:57:30Z","pushed_at":"2015-11-17T04:02:45Z","git_url":"git://github.com/jekyll/benchmarking.git","ssh_url":"git@github.com:jekyll/benchmarking.git","clone_url":"https://github.com/jekyll/benchmarking.git","svn_url":"https://github.com/jekyll/benchmarking","homepage":null,"size":4,"stargazers_count":4,"watchers_count":4,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":4,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":12510425,"name":"brand","full_name":"jekyll/brand","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/brand","description":"Logo files for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/brand","forks_url":"https://api.github.com/repos/jekyll/brand/forks","keys_url":"https://api.github.com/repos/jekyll/brand/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/brand/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/brand/teams","hooks_url":"https://api.github.com/repos/jekyll/brand/hooks","issue_events_url":"https://api.github.com/repos/jekyll/brand/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/brand/events","assignees_url":"https://api.github.com/repos/jekyll/brand/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/brand/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/brand/tags","blobs_url":"https://api.github.com/repos/jekyll/brand/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/brand/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/brand/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/brand/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/brand/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/brand/languages","stargazers_url":"https://api.github.com/repos/jekyll/brand/stargazers","contributors_url":"https://api.github.com/repos/jekyll/brand/contributors","subscribers_url":"https://api.github.com/repos/jekyll/brand/subscribers","subscription_url":"https://api.github.com/repos/jekyll/brand/subscription","commits_url":"https://api.github.com/repos/jekyll/brand/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/brand/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/brand/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/brand/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/brand/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/brand/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/brand/merges","archive_url":"https://api.github.com/repos/jekyll/brand/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/brand/downloads","issues_url":"https://api.github.com/repos/jekyll/brand/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/brand/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/brand/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/brand/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/brand/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/brand/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/brand/deployments","created_at":"2013-08-31T19:22:23Z","updated_at":"2015-12-05T17:56:39Z","pushed_at":"2015-02-23T06:39:32Z","git_url":"git://github.com/jekyll/brand.git","ssh_url":"git@github.com:jekyll/brand.git","clone_url":"https://github.com/jekyll/brand.git","svn_url":"https://github.com/jekyll/brand","homepage":"http://jekyllrb.com","size":1993,"stargazers_count":23,"watchers_count":23,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":5,"mirror_url":null,"open_issues_count":1,"forks":5,"open_issues":1,"watchers":23,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":21139332,"name":"cases","full_name":"jekyll/cases","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/cases","description":"Test cases to aid in exploring bugs with Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/cases","forks_url":"https://api.github.com/repos/jekyll/cases/forks","keys_url":"https://api.github.com/repos/jekyll/cases/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/cases/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/cases/teams","hooks_url":"https://api.github.com/repos/jekyll/cases/hooks","issue_events_url":"https://api.github.com/repos/jekyll/cases/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/cases/events","assignees_url":"https://api.github.com/repos/jekyll/cases/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/cases/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/cases/tags","blobs_url":"https://api.github.com/repos/jekyll/cases/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/cases/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/cases/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/cases/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/cases/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/cases/languages","stargazers_url":"https://api.github.com/repos/jekyll/cases/stargazers","contributors_url":"https://api.github.com/repos/jekyll/cases/contributors","subscribers_url":"https://api.github.com/repos/jekyll/cases/subscribers","subscription_url":"https://api.github.com/repos/jekyll/cases/subscription","commits_url":"https://api.github.com/repos/jekyll/cases/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/cases/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/cases/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/cases/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/cases/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/cases/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/cases/merges","archive_url":"https://api.github.com/repos/jekyll/cases/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/cases/downloads","issues_url":"https://api.github.com/repos/jekyll/cases/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/cases/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/cases/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/cases/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/cases/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/cases/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/cases/deployments","created_at":"2014-06-23T19:28:23Z","updated_at":"2014-08-22T17:43:13Z","pushed_at":"2014-08-22T17:43:13Z","git_url":"git://github.com/jekyll/cases.git","ssh_url":"git@github.com:jekyll/cases.git","clone_url":"https://github.com/jekyll/cases.git","svn_url":"https://github.com/jekyll/cases","homepage":null,"size":168,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":22818441,"name":"classifier-reborn","full_name":"jekyll/classifier-reborn","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/classifier-reborn","description":"A general classifier module to allow Bayesian and other types of classifications. A fork of cardmagic/classifier.","fork":false,"url":"https://api.github.com/repos/jekyll/classifier-reborn","forks_url":"https://api.github.com/repos/jekyll/classifier-reborn/forks","keys_url":"https://api.github.com/repos/jekyll/classifier-reborn/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/classifier-reborn/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/classifier-reborn/teams","hooks_url":"https://api.github.com/repos/jekyll/classifier-reborn/hooks","issue_events_url":"https://api.github.com/repos/jekyll/classifier-reborn/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/classifier-reborn/events","assignees_url":"https://api.github.com/repos/jekyll/classifier-reborn/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/classifier-reborn/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/classifier-reborn/tags","blobs_url":"https://api.github.com/repos/jekyll/classifier-reborn/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/classifier-reborn/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/classifier-reborn/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/classifier-reborn/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/classifier-reborn/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/classifier-reborn/languages","stargazers_url":"https://api.github.com/repos/jekyll/classifier-reborn/stargazers","contributors_url":"https://api.github.com/repos/jekyll/classifier-reborn/contributors","subscribers_url":"https://api.github.com/repos/jekyll/classifier-reborn/subscribers","subscription_url":"https://api.github.com/repos/jekyll/classifier-reborn/subscription","commits_url":"https://api.github.com/repos/jekyll/classifier-reborn/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/classifier-reborn/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/classifier-reborn/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/classifier-reborn/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/classifier-reborn/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/classifier-reborn/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/classifier-reborn/merges","archive_url":"https://api.github.com/repos/jekyll/classifier-reborn/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/classifier-reborn/downloads","issues_url":"https://api.github.com/repos/jekyll/classifier-reborn/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/classifier-reborn/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/classifier-reborn/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/classifier-reborn/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/classifier-reborn/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/classifier-reborn/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/classifier-reborn/deployments","created_at":"2014-08-10T20:54:45Z","updated_at":"2016-02-03T20:04:34Z","pushed_at":"2016-01-25T23:38:35Z","git_url":"git://github.com/jekyll/classifier-reborn.git","ssh_url":"git@github.com:jekyll/classifier-reborn.git","clone_url":"https://github.com/jekyll/classifier-reborn.git","svn_url":"https://github.com/jekyll/classifier-reborn","homepage":null,"size":175,"stargazers_count":165,"watchers_count":165,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":24,"mirror_url":null,"open_issues_count":12,"forks":24,"open_issues":12,"watchers":165,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":49910655,"name":"dashboard","full_name":"jekyll/dashboard","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/dashboard","description":"A dashboard for at-a-glance knowledge of the health of the Jekyll ecosystem.","fork":false,"url":"https://api.github.com/repos/jekyll/dashboard","forks_url":"https://api.github.com/repos/jekyll/dashboard/forks","keys_url":"https://api.github.com/repos/jekyll/dashboard/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/dashboard/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/dashboard/teams","hooks_url":"https://api.github.com/repos/jekyll/dashboard/hooks","issue_events_url":"https://api.github.com/repos/jekyll/dashboard/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/dashboard/events","assignees_url":"https://api.github.com/repos/jekyll/dashboard/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/dashboard/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/dashboard/tags","blobs_url":"https://api.github.com/repos/jekyll/dashboard/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/dashboard/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/dashboard/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/dashboard/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/dashboard/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/dashboard/languages","stargazers_url":"https://api.github.com/repos/jekyll/dashboard/stargazers","contributors_url":"https://api.github.com/repos/jekyll/dashboard/contributors","subscribers_url":"https://api.github.com/repos/jekyll/dashboard/subscribers","subscription_url":"https://api.github.com/repos/jekyll/dashboard/subscription","commits_url":"https://api.github.com/repos/jekyll/dashboard/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/dashboard/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/dashboard/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/dashboard/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/dashboard/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/dashboard/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/dashboard/merges","archive_url":"https://api.github.com/repos/jekyll/dashboard/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/dashboard/downloads","issues_url":"https://api.github.com/repos/jekyll/dashboard/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/dashboard/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/dashboard/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/dashboard/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/dashboard/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/dashboard/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/dashboard/deployments","created_at":"2016-01-18T22:50:11Z","updated_at":"2016-02-05T08:47:29Z","pushed_at":"2016-02-01T22:42:16Z","git_url":"git://github.com/jekyll/dashboard.git","ssh_url":"git@github.com:jekyll/dashboard.git","clone_url":"https://github.com/jekyll/dashboard.git","svn_url":"https://github.com/jekyll/dashboard","homepage":"https://jekyll-dashboard.herokuapp.com","size":159,"stargazers_count":4,"watchers_count":4,"language":"Go","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":4,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":31336061,"name":"docker","full_name":"jekyll/docker","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/docker","description":":ship: Docker images and builders for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/docker","forks_url":"https://api.github.com/repos/jekyll/docker/forks","keys_url":"https://api.github.com/repos/jekyll/docker/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/docker/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/docker/teams","hooks_url":"https://api.github.com/repos/jekyll/docker/hooks","issue_events_url":"https://api.github.com/repos/jekyll/docker/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/docker/events","assignees_url":"https://api.github.com/repos/jekyll/docker/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/docker/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/docker/tags","blobs_url":"https://api.github.com/repos/jekyll/docker/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/docker/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/docker/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/docker/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/docker/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/docker/languages","stargazers_url":"https://api.github.com/repos/jekyll/docker/stargazers","contributors_url":"https://api.github.com/repos/jekyll/docker/contributors","subscribers_url":"https://api.github.com/repos/jekyll/docker/subscribers","subscription_url":"https://api.github.com/repos/jekyll/docker/subscription","commits_url":"https://api.github.com/repos/jekyll/docker/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/docker/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/docker/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/docker/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/docker/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/docker/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/docker/merges","archive_url":"https://api.github.com/repos/jekyll/docker/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/docker/downloads","issues_url":"https://api.github.com/repos/jekyll/docker/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/docker/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/docker/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/docker/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/docker/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/docker/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/docker/deployments","created_at":"2015-02-25T21:12:24Z","updated_at":"2016-02-04T12:19:51Z","pushed_at":"2016-01-23T13:00:28Z","git_url":"git://github.com/jekyll/docker.git","ssh_url":"git@github.com:jekyll/docker.git","clone_url":"https://github.com/jekyll/docker.git","svn_url":"https://github.com/jekyll/docker","homepage":"","size":258,"stargazers_count":88,"watchers_count":88,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":29,"mirror_url":null,"open_issues_count":9,"forks":29,"open_issues":9,"watchers":88,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":25408465,"name":"example","full_name":"jekyll/example","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/example","description":"Jekyll example Project site. Do not clone.","fork":false,"url":"https://api.github.com/repos/jekyll/example","forks_url":"https://api.github.com/repos/jekyll/example/forks","keys_url":"https://api.github.com/repos/jekyll/example/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/example/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/example/teams","hooks_url":"https://api.github.com/repos/jekyll/example/hooks","issue_events_url":"https://api.github.com/repos/jekyll/example/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/example/events","assignees_url":"https://api.github.com/repos/jekyll/example/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/example/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/example/tags","blobs_url":"https://api.github.com/repos/jekyll/example/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/example/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/example/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/example/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/example/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/example/languages","stargazers_url":"https://api.github.com/repos/jekyll/example/stargazers","contributors_url":"https://api.github.com/repos/jekyll/example/contributors","subscribers_url":"https://api.github.com/repos/jekyll/example/subscribers","subscription_url":"https://api.github.com/repos/jekyll/example/subscription","commits_url":"https://api.github.com/repos/jekyll/example/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/example/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/example/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/example/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/example/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/example/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/example/merges","archive_url":"https://api.github.com/repos/jekyll/example/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/example/downloads","issues_url":"https://api.github.com/repos/jekyll/example/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/example/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/example/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/example/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/example/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/example/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/example/deployments","created_at":"2014-10-18T19:58:02Z","updated_at":"2015-11-24T19:54:30Z","pushed_at":"2014-10-18T20:01:26Z","git_url":"git://github.com/jekyll/example.git","ssh_url":"git@github.com:jekyll/example.git","clone_url":"https://github.com/jekyll/example.git","svn_url":"https://github.com/jekyll/example","homepage":"http://jekyll.github.io/example/","size":117,"stargazers_count":2,"watchers_count":2,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":3,"mirror_url":null,"open_issues_count":0,"forks":3,"open_issues":0,"watchers":2,"default_branch":"gh-pages","permissions":{"admin":true,"push":true,"pull":true}},{"id":24088214,"name":"github-metadata","full_name":"jekyll/github-metadata","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/github-metadata","description":":octocat: `site.github`","fork":false,"url":"https://api.github.com/repos/jekyll/github-metadata","forks_url":"https://api.github.com/repos/jekyll/github-metadata/forks","keys_url":"https://api.github.com/repos/jekyll/github-metadata/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/github-metadata/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/github-metadata/teams","hooks_url":"https://api.github.com/repos/jekyll/github-metadata/hooks","issue_events_url":"https://api.github.com/repos/jekyll/github-metadata/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/github-metadata/events","assignees_url":"https://api.github.com/repos/jekyll/github-metadata/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/github-metadata/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/github-metadata/tags","blobs_url":"https://api.github.com/repos/jekyll/github-metadata/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/github-metadata/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/github-metadata/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/github-metadata/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/github-metadata/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/github-metadata/languages","stargazers_url":"https://api.github.com/repos/jekyll/github-metadata/stargazers","contributors_url":"https://api.github.com/repos/jekyll/github-metadata/contributors","subscribers_url":"https://api.github.com/repos/jekyll/github-metadata/subscribers","subscription_url":"https://api.github.com/repos/jekyll/github-metadata/subscription","commits_url":"https://api.github.com/repos/jekyll/github-metadata/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/github-metadata/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/github-metadata/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/github-metadata/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/github-metadata/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/github-metadata/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/github-metadata/merges","archive_url":"https://api.github.com/repos/jekyll/github-metadata/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/github-metadata/downloads","issues_url":"https://api.github.com/repos/jekyll/github-metadata/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/github-metadata/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/github-metadata/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/github-metadata/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/github-metadata/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/github-metadata/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/github-metadata/deployments","created_at":"2014-09-16T06:32:03Z","updated_at":"2016-01-30T15:32:29Z","pushed_at":"2016-02-05T20:28:20Z","git_url":"git://github.com/jekyll/github-metadata.git","ssh_url":"git@github.com:jekyll/github-metadata.git","clone_url":"https://github.com/jekyll/github-metadata.git","svn_url":"https://github.com/jekyll/github-metadata","homepage":"https://help.github.com/articles/repository-metadata-on-github-pages","size":67,"stargazers_count":22,"watchers_count":22,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":4,"mirror_url":null,"open_issues_count":5,"forks":4,"open_issues":5,"watchers":22,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":16748614,"name":"hubot-pr-status","full_name":"jekyll/hubot-pr-status","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/hubot-pr-status","description":"Determine the status of a given pull request on GitHub.","fork":false,"url":"https://api.github.com/repos/jekyll/hubot-pr-status","forks_url":"https://api.github.com/repos/jekyll/hubot-pr-status/forks","keys_url":"https://api.github.com/repos/jekyll/hubot-pr-status/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/hubot-pr-status/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/hubot-pr-status/teams","hooks_url":"https://api.github.com/repos/jekyll/hubot-pr-status/hooks","issue_events_url":"https://api.github.com/repos/jekyll/hubot-pr-status/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/hubot-pr-status/events","assignees_url":"https://api.github.com/repos/jekyll/hubot-pr-status/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/hubot-pr-status/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/hubot-pr-status/tags","blobs_url":"https://api.github.com/repos/jekyll/hubot-pr-status/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/hubot-pr-status/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/hubot-pr-status/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/hubot-pr-status/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/hubot-pr-status/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/hubot-pr-status/languages","stargazers_url":"https://api.github.com/repos/jekyll/hubot-pr-status/stargazers","contributors_url":"https://api.github.com/repos/jekyll/hubot-pr-status/contributors","subscribers_url":"https://api.github.com/repos/jekyll/hubot-pr-status/subscribers","subscription_url":"https://api.github.com/repos/jekyll/hubot-pr-status/subscription","commits_url":"https://api.github.com/repos/jekyll/hubot-pr-status/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/hubot-pr-status/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/hubot-pr-status/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/hubot-pr-status/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/hubot-pr-status/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/hubot-pr-status/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/hubot-pr-status/merges","archive_url":"https://api.github.com/repos/jekyll/hubot-pr-status/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/hubot-pr-status/downloads","issues_url":"https://api.github.com/repos/jekyll/hubot-pr-status/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/hubot-pr-status/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/hubot-pr-status/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/hubot-pr-status/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/hubot-pr-status/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/hubot-pr-status/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/hubot-pr-status/deployments","created_at":"2014-02-11T22:55:12Z","updated_at":"2016-02-04T13:55:44Z","pushed_at":"2014-03-05T05:30:40Z","git_url":"git://github.com/jekyll/hubot-pr-status.git","ssh_url":"git@github.com:jekyll/hubot-pr-status.git","clone_url":"https://github.com/jekyll/hubot-pr-status.git","svn_url":"https://github.com/jekyll/hubot-pr-status","homepage":null,"size":258,"stargazers_count":6,"watchers_count":6,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":6,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":15125259,"name":"hyde","full_name":"jekyll/hyde","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/hyde","description":"Our Campfire Hubot. Helps us maintain Jekyll even better. :heart:","fork":false,"url":"https://api.github.com/repos/jekyll/hyde","forks_url":"https://api.github.com/repos/jekyll/hyde/forks","keys_url":"https://api.github.com/repos/jekyll/hyde/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/hyde/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/hyde/teams","hooks_url":"https://api.github.com/repos/jekyll/hyde/hooks","issue_events_url":"https://api.github.com/repos/jekyll/hyde/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/hyde/events","assignees_url":"https://api.github.com/repos/jekyll/hyde/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/hyde/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/hyde/tags","blobs_url":"https://api.github.com/repos/jekyll/hyde/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/hyde/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/hyde/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/hyde/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/hyde/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/hyde/languages","stargazers_url":"https://api.github.com/repos/jekyll/hyde/stargazers","contributors_url":"https://api.github.com/repos/jekyll/hyde/contributors","subscribers_url":"https://api.github.com/repos/jekyll/hyde/subscribers","subscription_url":"https://api.github.com/repos/jekyll/hyde/subscription","commits_url":"https://api.github.com/repos/jekyll/hyde/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/hyde/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/hyde/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/hyde/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/hyde/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/hyde/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/hyde/merges","archive_url":"https://api.github.com/repos/jekyll/hyde/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/hyde/downloads","issues_url":"https://api.github.com/repos/jekyll/hyde/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/hyde/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/hyde/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/hyde/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/hyde/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/hyde/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/hyde/deployments","created_at":"2013-12-12T02:40:46Z","updated_at":"2015-11-04T16:44:01Z","pushed_at":"2015-12-18T05:39:42Z","git_url":"git://github.com/jekyll/hyde.git","ssh_url":"git@github.com:jekyll/hyde.git","clone_url":"https://github.com/jekyll/hyde.git","svn_url":"https://github.com/jekyll/hyde","homepage":null,"size":58,"stargazers_count":8,"watchers_count":8,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":8,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":65252,"name":"jekyll","full_name":"jekyll/jekyll","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll","description":":globe_with_meridians: Jekyll is a blog-aware, static site generator in Ruby","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll","forks_url":"https://api.github.com/repos/jekyll/jekyll/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll/deployments","created_at":"2008-10-20T06:29:03Z","updated_at":"2016-02-05T19:57:54Z","pushed_at":"2016-02-05T17:22:45Z","git_url":"git://github.com/jekyll/jekyll.git","ssh_url":"git@github.com:jekyll/jekyll.git","clone_url":"https://github.com/jekyll/jekyll.git","svn_url":"https://github.com/jekyll/jekyll","homepage":"http://jekyllrb.com","size":21874,"stargazers_count":23654,"watchers_count":23654,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":5049,"mirror_url":null,"open_issues_count":135,"forks":5049,"open_issues":135,"watchers":23654,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":23051369,"name":"jekyll-archives","full_name":"jekyll/jekyll-archives","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-archives","description":":books: Archive pages for your Jekyll tags and categories.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-archives","forks_url":"https://api.github.com/repos/jekyll/jekyll-archives/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-archives/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-archives/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-archives/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-archives/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-archives/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-archives/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-archives/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-archives/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-archives/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-archives/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-archives/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-archives/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-archives/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-archives/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-archives/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-archives/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-archives/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-archives/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-archives/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-archives/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-archives/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-archives/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-archives/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-archives/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-archives/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-archives/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-archives/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-archives/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-archives/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-archives/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-archives/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-archives/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-archives/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-archives/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-archives/deployments","created_at":"2014-08-17T21:55:22Z","updated_at":"2016-02-05T14:52:16Z","pushed_at":"2016-01-10T04:23:45Z","git_url":"git://github.com/jekyll/jekyll-archives.git","ssh_url":"git@github.com:jekyll/jekyll-archives.git","clone_url":"https://github.com/jekyll/jekyll-archives.git","svn_url":"https://github.com/jekyll/jekyll-archives","homepage":"","size":56,"stargazers_count":92,"watchers_count":92,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":18,"mirror_url":null,"open_issues_count":10,"forks":18,"open_issues":10,"watchers":92,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":6326522,"name":"jekyll-assets","full_name":"jekyll/jekyll-assets","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-assets","description":":art: Asset pipelines for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-assets","forks_url":"https://api.github.com/repos/jekyll/jekyll-assets/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-assets/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-assets/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-assets/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-assets/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-assets/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-assets/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-assets/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-assets/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-assets/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-assets/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-assets/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-assets/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-assets/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-assets/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-assets/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-assets/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-assets/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-assets/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-assets/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-assets/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-assets/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-assets/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-assets/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-assets/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-assets/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-assets/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-assets/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-assets/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-assets/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-assets/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-assets/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-assets/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-assets/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-assets/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-assets/deployments","created_at":"2012-10-21T22:43:15Z","updated_at":"2016-02-05T16:30:01Z","pushed_at":"2016-01-31T10:50:26Z","git_url":"git://github.com/jekyll/jekyll-assets.git","ssh_url":"git@github.com:jekyll/jekyll-assets.git","clone_url":"https://github.com/jekyll/jekyll-assets.git","svn_url":"https://github.com/jekyll/jekyll-assets","homepage":"https://jekyll.github.io/jekyll-assets","size":2033,"stargazers_count":531,"watchers_count":531,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":69,"mirror_url":null,"open_issues_count":19,"forks":69,"open_issues":19,"watchers":531,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":16242718,"name":"jekyll-coffeescript","full_name":"jekyll/jekyll-coffeescript","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-coffeescript","description":"A CoffeeScript converter for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-coffeescript","forks_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-coffeescript/deployments","created_at":"2014-01-25T23:39:39Z","updated_at":"2015-12-11T02:29:36Z","pushed_at":"2015-11-24T23:32:29Z","git_url":"git://github.com/jekyll/jekyll-coffeescript.git","ssh_url":"git@github.com:jekyll/jekyll-coffeescript.git","clone_url":"https://github.com/jekyll/jekyll-coffeescript.git","svn_url":"https://github.com/jekyll/jekyll-coffeescript","homepage":null,"size":27,"stargazers_count":16,"watchers_count":16,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":3,"mirror_url":null,"open_issues_count":2,"forks":3,"open_issues":2,"watchers":16,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":19650204,"name":"jekyll-compose","full_name":"jekyll/jekyll-compose","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-compose","description":":memo: Streamline your writing in Jekyll with these commands.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-compose","forks_url":"https://api.github.com/repos/jekyll/jekyll-compose/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-compose/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-compose/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-compose/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-compose/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-compose/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-compose/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-compose/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-compose/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-compose/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-compose/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-compose/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-compose/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-compose/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-compose/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-compose/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-compose/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-compose/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-compose/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-compose/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-compose/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-compose/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-compose/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-compose/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-compose/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-compose/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-compose/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-compose/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-compose/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-compose/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-compose/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-compose/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-compose/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-compose/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-compose/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-compose/deployments","created_at":"2014-05-10T19:36:09Z","updated_at":"2016-02-01T07:24:08Z","pushed_at":"2016-02-01T18:57:32Z","git_url":"git://github.com/jekyll/jekyll-compose.git","ssh_url":"git@github.com:jekyll/jekyll-compose.git","clone_url":"https://github.com/jekyll/jekyll-compose.git","svn_url":"https://github.com/jekyll/jekyll-compose","homepage":"http://rubygems.org/gems/jekyll-compose","size":68,"stargazers_count":98,"watchers_count":98,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":21,"mirror_url":null,"open_issues_count":1,"forks":21,"open_issues":1,"watchers":98,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":28570080,"name":"jekyll-docs","full_name":"jekyll/jekyll-docs","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-docs","description":"Offline usage documentation for Jekyll. Requires Jekyll 3 and above.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-docs","forks_url":"https://api.github.com/repos/jekyll/jekyll-docs/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-docs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-docs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-docs/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-docs/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-docs/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-docs/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-docs/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-docs/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-docs/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-docs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-docs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-docs/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-docs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-docs/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-docs/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-docs/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-docs/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-docs/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-docs/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-docs/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-docs/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-docs/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-docs/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-docs/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-docs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-docs/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-docs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-docs/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-docs/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-docs/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-docs/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-docs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-docs/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-docs/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-docs/deployments","created_at":"2014-12-28T19:46:31Z","updated_at":"2016-02-04T18:00:01Z","pushed_at":"2015-10-17T22:10:01Z","git_url":"git://github.com/jekyll/jekyll-docs.git","ssh_url":"git@github.com:jekyll/jekyll-docs.git","clone_url":"https://github.com/jekyll/jekyll-docs.git","svn_url":"https://github.com/jekyll/jekyll-docs","homepage":"","size":184,"stargazers_count":10,"watchers_count":10,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":6,"mirror_url":null,"open_issues_count":1,"forks":6,"open_issues":1,"watchers":10,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":35489567,"name":"jekyll-feed","full_name":"jekyll/jekyll-feed","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-feed","description":":memo: A Jekyll plugin to generate an Atom (RSS-like) feed of your Jekyll posts","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-feed","forks_url":"https://api.github.com/repos/jekyll/jekyll-feed/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-feed/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-feed/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-feed/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-feed/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-feed/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-feed/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-feed/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-feed/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-feed/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-feed/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-feed/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-feed/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-feed/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-feed/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-feed/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-feed/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-feed/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-feed/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-feed/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-feed/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-feed/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-feed/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-feed/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-feed/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-feed/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-feed/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-feed/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-feed/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-feed/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-feed/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-feed/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-feed/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-feed/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-feed/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-feed/deployments","created_at":"2015-05-12T13:28:32Z","updated_at":"2016-02-05T10:06:11Z","pushed_at":"2016-02-02T15:51:01Z","git_url":"git://github.com/jekyll/jekyll-feed.git","ssh_url":"git@github.com:jekyll/jekyll-feed.git","clone_url":"https://github.com/jekyll/jekyll-feed.git","svn_url":"https://github.com/jekyll/jekyll-feed","homepage":"","size":211,"stargazers_count":192,"watchers_count":192,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":31,"mirror_url":null,"open_issues_count":12,"forks":31,"open_issues":12,"watchers":192,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":20381687,"name":"jekyll-gist","full_name":"jekyll/jekyll-gist","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-gist","description":":page_with_curl: Liquid tag for displaying GitHub Gists in Jekyll sites.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-gist","forks_url":"https://api.github.com/repos/jekyll/jekyll-gist/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-gist/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-gist/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-gist/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-gist/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-gist/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-gist/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-gist/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-gist/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-gist/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-gist/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-gist/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-gist/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-gist/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-gist/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-gist/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-gist/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-gist/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-gist/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-gist/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-gist/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-gist/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-gist/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-gist/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-gist/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-gist/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-gist/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-gist/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-gist/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-gist/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-gist/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-gist/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-gist/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-gist/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-gist/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-gist/deployments","created_at":"2014-06-01T16:59:34Z","updated_at":"2016-02-04T09:05:43Z","pushed_at":"2015-12-01T18:29:59Z","git_url":"git://github.com/jekyll/jekyll-gist.git","ssh_url":"git@github.com:jekyll/jekyll-gist.git","clone_url":"https://github.com/jekyll/jekyll-gist.git","svn_url":"https://github.com/jekyll/jekyll-gist","homepage":"https://rubygems.org/gems/jekyll-gist","size":68,"stargazers_count":40,"watchers_count":40,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":10,"mirror_url":null,"open_issues_count":4,"forks":10,"open_issues":4,"watchers":40,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":18193834,"name":"jekyll-help","full_name":"jekyll/jekyll-help","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-help","description":"NO LONGER MAINTAINED. USE JEKYLL TALK INSTEAD.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-help","forks_url":"https://api.github.com/repos/jekyll/jekyll-help/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-help/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-help/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-help/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-help/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-help/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-help/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-help/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-help/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-help/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-help/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-help/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-help/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-help/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-help/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-help/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-help/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-help/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-help/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-help/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-help/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-help/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-help/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-help/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-help/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-help/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-help/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-help/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-help/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-help/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-help/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-help/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-help/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-help/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-help/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-help/deployments","created_at":"2014-03-27T22:35:36Z","updated_at":"2016-02-05T14:56:17Z","pushed_at":"2015-12-19T00:08:22Z","git_url":"git://github.com/jekyll/jekyll-help.git","ssh_url":"git@github.com:jekyll/jekyll-help.git","clone_url":"https://github.com/jekyll/jekyll-help.git","svn_url":"https://github.com/jekyll/jekyll-help","homepage":"https://talk.jekyllrb.com","size":38560,"stargazers_count":163,"watchers_count":163,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":18,"mirror_url":null,"open_issues_count":0,"forks":18,"open_issues":0,"watchers":163,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":7923443,"name":"jekyll-import","full_name":"jekyll/jekyll-import","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-import","description":":inbox_tray: The \"jekyll import\" command for importing from various blogs to Jekyll format.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-import","forks_url":"https://api.github.com/repos/jekyll/jekyll-import/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-import/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-import/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-import/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-import/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-import/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-import/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-import/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-import/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-import/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-import/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-import/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-import/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-import/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-import/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-import/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-import/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-import/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-import/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-import/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-import/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-import/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-import/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-import/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-import/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-import/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-import/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-import/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-import/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-import/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-import/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-import/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-import/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-import/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-import/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-import/deployments","created_at":"2013-01-30T20:46:46Z","updated_at":"2016-02-04T07:02:39Z","pushed_at":"2016-01-26T02:29:53Z","git_url":"git://github.com/jekyll/jekyll-import.git","ssh_url":"git@github.com:jekyll/jekyll-import.git","clone_url":"https://github.com/jekyll/jekyll-import.git","svn_url":"https://github.com/jekyll/jekyll-import","homepage":"http://import.jekyllrb.com","size":819,"stargazers_count":157,"watchers_count":157,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":168,"mirror_url":null,"open_issues_count":23,"forks":168,"open_issues":23,"watchers":157,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":16053994,"name":"jekyll-mentions","full_name":"jekyll/jekyll-mentions","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-mentions","description":":busts_in_silhouette: @mention support for your Jekyll site","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-mentions","forks_url":"https://api.github.com/repos/jekyll/jekyll-mentions/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-mentions/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-mentions/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-mentions/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-mentions/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-mentions/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-mentions/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-mentions/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-mentions/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-mentions/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-mentions/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-mentions/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-mentions/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-mentions/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-mentions/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-mentions/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-mentions/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-mentions/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-mentions/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-mentions/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-mentions/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-mentions/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-mentions/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-mentions/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-mentions/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-mentions/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-mentions/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-mentions/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-mentions/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-mentions/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-mentions/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-mentions/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-mentions/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-mentions/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-mentions/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-mentions/deployments","created_at":"2014-01-19T20:45:49Z","updated_at":"2016-01-24T12:11:14Z","pushed_at":"2016-01-05T02:28:17Z","git_url":"git://github.com/jekyll/jekyll-mentions.git","ssh_url":"git@github.com:jekyll/jekyll-mentions.git","clone_url":"https://github.com/jekyll/jekyll-mentions.git","svn_url":"https://github.com/jekyll/jekyll-mentions","homepage":"http://rubygems.org/gems/jekyll-mentions","size":14718,"stargazers_count":70,"watchers_count":70,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":15,"mirror_url":null,"open_issues_count":2,"forks":15,"open_issues":2,"watchers":70,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":20872403,"name":"jekyll-opal","full_name":"jekyll/jekyll-opal","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-opal","description":"Let Jekyll convert your Ruby into JavaScript using Opal","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-opal","forks_url":"https://api.github.com/repos/jekyll/jekyll-opal/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-opal/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-opal/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-opal/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-opal/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-opal/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-opal/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-opal/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-opal/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-opal/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-opal/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-opal/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-opal/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-opal/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-opal/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-opal/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-opal/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-opal/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-opal/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-opal/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-opal/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-opal/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-opal/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-opal/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-opal/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-opal/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-opal/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-opal/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-opal/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-opal/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-opal/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-opal/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-opal/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-opal/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-opal/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-opal/deployments","created_at":"2014-06-16T04:09:23Z","updated_at":"2016-01-15T04:13:13Z","pushed_at":"2015-11-25T17:27:29Z","git_url":"git://github.com/jekyll/jekyll-opal.git","ssh_url":"git@github.com:jekyll/jekyll-opal.git","clone_url":"https://github.com/jekyll/jekyll-opal.git","svn_url":"https://github.com/jekyll/jekyll-opal","homepage":"https://rubygems.org/gems/jekyll-opal","size":22,"stargazers_count":11,"watchers_count":11,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":11,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":20192686,"name":"jekyll-paginate","full_name":"jekyll/jekyll-paginate","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-paginate","description":"RETIRED as of Jekyll 3: Pagination Generator for Jekyll","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-paginate","forks_url":"https://api.github.com/repos/jekyll/jekyll-paginate/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-paginate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-paginate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-paginate/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-paginate/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-paginate/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-paginate/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-paginate/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-paginate/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-paginate/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-paginate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-paginate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-paginate/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-paginate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-paginate/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-paginate/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-paginate/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-paginate/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-paginate/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-paginate/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-paginate/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-paginate/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-paginate/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-paginate/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-paginate/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-paginate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-paginate/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-paginate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-paginate/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-paginate/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-paginate/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-paginate/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-paginate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-paginate/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-paginate/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-paginate/deployments","created_at":"2014-05-26T16:53:29Z","updated_at":"2016-01-17T19:43:05Z","pushed_at":"2016-01-25T22:53:55Z","git_url":"git://github.com/jekyll/jekyll-paginate.git","ssh_url":"git@github.com:jekyll/jekyll-paginate.git","clone_url":"https://github.com/jekyll/jekyll-paginate.git","svn_url":"https://github.com/jekyll/jekyll-paginate","homepage":"","size":48,"stargazers_count":30,"watchers_count":30,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":28,"mirror_url":null,"open_issues_count":14,"forks":28,"open_issues":14,"watchers":30,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":49383548,"name":"jekyll-pry","full_name":"jekyll/jekyll-pry","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-pry","description":"Use and Debug Jekyll from Pry.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-pry","forks_url":"https://api.github.com/repos/jekyll/jekyll-pry/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-pry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-pry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-pry/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-pry/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-pry/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-pry/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-pry/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-pry/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-pry/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-pry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-pry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-pry/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-pry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-pry/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-pry/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-pry/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-pry/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-pry/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-pry/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-pry/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-pry/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-pry/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-pry/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-pry/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-pry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-pry/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-pry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-pry/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-pry/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-pry/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-pry/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-pry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-pry/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-pry/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-pry/deployments","created_at":"2016-01-10T20:15:31Z","updated_at":"2016-01-10T20:15:31Z","pushed_at":"2016-01-10T20:15:31Z","git_url":"git://github.com/jekyll/jekyll-pry.git","ssh_url":"git@github.com:jekyll/jekyll-pry.git","clone_url":"https://github.com/jekyll/jekyll-pry.git","svn_url":"https://github.com/jekyll/jekyll-pry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":15208514,"name":"jekyll-redirect-from","full_name":"jekyll/jekyll-redirect-from","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-redirect-from","description":":twisted_rightwards_arrows: Seamlessly specify multiple redirections URLs for your pages and posts.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-redirect-from","forks_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-redirect-from/deployments","created_at":"2013-12-15T18:34:22Z","updated_at":"2016-02-05T02:10:54Z","pushed_at":"2016-01-30T00:57:59Z","git_url":"git://github.com/jekyll/jekyll-redirect-from.git","ssh_url":"git@github.com:jekyll/jekyll-redirect-from.git","clone_url":"https://github.com/jekyll/jekyll-redirect-from.git","svn_url":"https://github.com/jekyll/jekyll-redirect-from","homepage":"","size":110,"stargazers_count":197,"watchers_count":197,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":29,"mirror_url":null,"open_issues_count":15,"forks":29,"open_issues":15,"watchers":197,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":16243570,"name":"jekyll-sass-converter","full_name":"jekyll/jekyll-sass-converter","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-sass-converter","description":"A Sass converter for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-sass-converter","forks_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-sass-converter/deployments","created_at":"2014-01-26T00:42:50Z","updated_at":"2016-02-03T03:17:05Z","pushed_at":"2015-12-26T00:24:11Z","git_url":"git://github.com/jekyll/jekyll-sass-converter.git","ssh_url":"git@github.com:jekyll/jekyll-sass-converter.git","clone_url":"https://github.com/jekyll/jekyll-sass-converter.git","svn_url":"https://github.com/jekyll/jekyll-sass-converter","homepage":"http://rubygems.org/gems/jekyll-sass-converter","size":68,"stargazers_count":37,"watchers_count":37,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":37,"mirror_url":null,"open_issues_count":5,"forks":37,"open_issues":5,"watchers":37,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":17327535,"name":"jekyll-sitemap","full_name":"jekyll/jekyll-sitemap","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-sitemap","description":"Jekyll plugin to silently generate a sitemaps.org compliant sitemap for your Jekyll site","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-sitemap","forks_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-sitemap/deployments","created_at":"2014-03-02T00:17:43Z","updated_at":"2016-02-03T21:51:55Z","pushed_at":"2016-01-22T10:47:44Z","git_url":"git://github.com/jekyll/jekyll-sitemap.git","ssh_url":"git@github.com:jekyll/jekyll-sitemap.git","clone_url":"https://github.com/jekyll/jekyll-sitemap.git","svn_url":"https://github.com/jekyll/jekyll-sitemap","homepage":"http://rubygems.org/gems/jekyll-sitemap","size":168,"stargazers_count":242,"watchers_count":242,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":33,"mirror_url":null,"open_issues_count":4,"forks":33,"open_issues":4,"watchers":242,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":15639149,"name":"jekyll-test","full_name":"jekyll/jekyll-test","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-test","description":"Testing helpers for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-test","forks_url":"https://api.github.com/repos/jekyll/jekyll-test/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-test/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-test/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-test/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-test/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-test/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-test/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-test/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-test/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-test/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-test/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-test/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-test/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-test/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-test/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-test/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-test/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-test/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-test/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-test/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-test/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-test/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-test/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-test/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-test/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-test/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-test/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-test/deployments","created_at":"2014-01-04T20:34:16Z","updated_at":"2015-09-03T16:31:44Z","pushed_at":"2014-01-04T20:55:16Z","git_url":"git://github.com/jekyll/jekyll-test.git","ssh_url":"git@github.com:jekyll/jekyll-test.git","clone_url":"https://github.com/jekyll/jekyll-test.git","svn_url":"https://github.com/jekyll/jekyll-test","homepage":null,"size":116,"stargazers_count":3,"watchers_count":3,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":3,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":13332983,"name":"jekyll-test-gem-plugin","full_name":"jekyll/jekyll-test-gem-plugin","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-test-gem-plugin","description":"Wouldn't it be cool if you could ship Jekyll plugins as gems?","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin","forks_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-test-gem-plugin/deployments","created_at":"2013-10-04T19:36:25Z","updated_at":"2015-11-06T05:36:35Z","pushed_at":"2015-11-06T05:36:33Z","git_url":"git://github.com/jekyll/jekyll-test-gem-plugin.git","ssh_url":"git@github.com:jekyll/jekyll-test-gem-plugin.git","clone_url":"https://github.com/jekyll/jekyll-test-gem-plugin.git","svn_url":"https://github.com/jekyll/jekyll-test-gem-plugin","homepage":null,"size":118,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":14974374,"name":"jekyll-test-plugin-malicious","full_name":"jekyll/jekyll-test-plugin-malicious","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-test-plugin-malicious","description":"A MALICIOUS I WILL EAT ALL YOUR CODE plugin. Use at your own risk.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious","forks_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-test-plugin-malicious/deployments","created_at":"2013-12-06T05:04:00Z","updated_at":"2016-01-28T19:56:06Z","pushed_at":"2016-01-03T03:13:17Z","git_url":"git://github.com/jekyll/jekyll-test-plugin-malicious.git","ssh_url":"git@github.com:jekyll/jekyll-test-plugin-malicious.git","clone_url":"https://github.com/jekyll/jekyll-test-plugin-malicious.git","svn_url":"https://github.com/jekyll/jekyll-test-plugin-malicious","homepage":null,"size":3,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":29403356,"name":"jekyll-textile-converter","full_name":"jekyll/jekyll-textile-converter","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-textile-converter","description":"Textile converter for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-textile-converter","forks_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-textile-converter/deployments","created_at":"2015-01-17T19:47:33Z","updated_at":"2015-06-22T07:27:06Z","pushed_at":"2015-11-18T18:10:30Z","git_url":"git://github.com/jekyll/jekyll-textile-converter.git","ssh_url":"git@github.com:jekyll/jekyll-textile-converter.git","clone_url":"https://github.com/jekyll/jekyll-textile-converter.git","svn_url":"https://github.com/jekyll/jekyll-textile-converter","homepage":null,"size":13,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"open_issues_count":0,"forks":3,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":21257282,"name":"jekyll-watch","full_name":"jekyll/jekyll-watch","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jekyll-watch","description":":eyes: Rebuild your Jekyll site when a file changes with the `--watch` switch.","fork":false,"url":"https://api.github.com/repos/jekyll/jekyll-watch","forks_url":"https://api.github.com/repos/jekyll/jekyll-watch/forks","keys_url":"https://api.github.com/repos/jekyll/jekyll-watch/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jekyll-watch/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jekyll-watch/teams","hooks_url":"https://api.github.com/repos/jekyll/jekyll-watch/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jekyll-watch/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jekyll-watch/events","assignees_url":"https://api.github.com/repos/jekyll/jekyll-watch/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jekyll-watch/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jekyll-watch/tags","blobs_url":"https://api.github.com/repos/jekyll/jekyll-watch/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jekyll-watch/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jekyll-watch/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jekyll-watch/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jekyll-watch/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jekyll-watch/languages","stargazers_url":"https://api.github.com/repos/jekyll/jekyll-watch/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jekyll-watch/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jekyll-watch/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jekyll-watch/subscription","commits_url":"https://api.github.com/repos/jekyll/jekyll-watch/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jekyll-watch/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jekyll-watch/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jekyll-watch/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jekyll-watch/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jekyll-watch/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jekyll-watch/merges","archive_url":"https://api.github.com/repos/jekyll/jekyll-watch/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jekyll-watch/downloads","issues_url":"https://api.github.com/repos/jekyll/jekyll-watch/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jekyll-watch/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jekyll-watch/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jekyll-watch/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jekyll-watch/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jekyll-watch/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jekyll-watch/deployments","created_at":"2014-06-26T22:41:48Z","updated_at":"2016-01-19T18:34:08Z","pushed_at":"2016-01-19T18:34:09Z","git_url":"git://github.com/jekyll/jekyll-watch.git","ssh_url":"git@github.com:jekyll/jekyll-watch.git","clone_url":"https://github.com/jekyll/jekyll-watch.git","svn_url":"https://github.com/jekyll/jekyll-watch","homepage":"","size":54,"stargazers_count":27,"watchers_count":27,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":6,"mirror_url":null,"open_issues_count":5,"forks":6,"open_issues":5,"watchers":27,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":15657578,"name":"jemoji","full_name":"jekyll/jemoji","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/jemoji","description":"GitHub-flavored emoji plugin for Jekyll","fork":false,"url":"https://api.github.com/repos/jekyll/jemoji","forks_url":"https://api.github.com/repos/jekyll/jemoji/forks","keys_url":"https://api.github.com/repos/jekyll/jemoji/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/jemoji/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/jemoji/teams","hooks_url":"https://api.github.com/repos/jekyll/jemoji/hooks","issue_events_url":"https://api.github.com/repos/jekyll/jemoji/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/jemoji/events","assignees_url":"https://api.github.com/repos/jekyll/jemoji/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/jemoji/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/jemoji/tags","blobs_url":"https://api.github.com/repos/jekyll/jemoji/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/jemoji/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/jemoji/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/jemoji/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/jemoji/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/jemoji/languages","stargazers_url":"https://api.github.com/repos/jekyll/jemoji/stargazers","contributors_url":"https://api.github.com/repos/jekyll/jemoji/contributors","subscribers_url":"https://api.github.com/repos/jekyll/jemoji/subscribers","subscription_url":"https://api.github.com/repos/jekyll/jemoji/subscription","commits_url":"https://api.github.com/repos/jekyll/jemoji/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/jemoji/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/jemoji/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/jemoji/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/jemoji/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/jemoji/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/jemoji/merges","archive_url":"https://api.github.com/repos/jekyll/jemoji/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/jemoji/downloads","issues_url":"https://api.github.com/repos/jekyll/jemoji/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/jemoji/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/jemoji/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/jemoji/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/jemoji/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/jemoji/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/jemoji/deployments","created_at":"2014-01-05T19:47:40Z","updated_at":"2016-02-02T17:16:16Z","pushed_at":"2015-11-01T17:56:23Z","git_url":"git://github.com/jekyll/jemoji.git","ssh_url":"git@github.com:jekyll/jemoji.git","clone_url":"https://github.com/jekyll/jemoji.git","svn_url":"https://github.com/jekyll/jemoji","homepage":"http://rubygems.org/gems/jemoji","size":25074,"stargazers_count":122,"watchers_count":122,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":15,"mirror_url":null,"open_issues_count":7,"forks":15,"open_issues":7,"watchers":122,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":14183504,"name":"mercenary","full_name":"jekyll/mercenary","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/mercenary","description":"An easier way to build your command-line scripts in Ruby.","fork":false,"url":"https://api.github.com/repos/jekyll/mercenary","forks_url":"https://api.github.com/repos/jekyll/mercenary/forks","keys_url":"https://api.github.com/repos/jekyll/mercenary/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/mercenary/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/mercenary/teams","hooks_url":"https://api.github.com/repos/jekyll/mercenary/hooks","issue_events_url":"https://api.github.com/repos/jekyll/mercenary/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/mercenary/events","assignees_url":"https://api.github.com/repos/jekyll/mercenary/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/mercenary/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/mercenary/tags","blobs_url":"https://api.github.com/repos/jekyll/mercenary/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/mercenary/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/mercenary/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/mercenary/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/mercenary/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/mercenary/languages","stargazers_url":"https://api.github.com/repos/jekyll/mercenary/stargazers","contributors_url":"https://api.github.com/repos/jekyll/mercenary/contributors","subscribers_url":"https://api.github.com/repos/jekyll/mercenary/subscribers","subscription_url":"https://api.github.com/repos/jekyll/mercenary/subscription","commits_url":"https://api.github.com/repos/jekyll/mercenary/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/mercenary/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/mercenary/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/mercenary/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/mercenary/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/mercenary/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/mercenary/merges","archive_url":"https://api.github.com/repos/jekyll/mercenary/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/mercenary/downloads","issues_url":"https://api.github.com/repos/jekyll/mercenary/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/mercenary/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/mercenary/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/mercenary/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/mercenary/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/mercenary/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/mercenary/deployments","created_at":"2013-11-06T19:45:55Z","updated_at":"2016-02-02T19:03:19Z","pushed_at":"2014-11-12T23:53:33Z","git_url":"git://github.com/jekyll/mercenary.git","ssh_url":"git@github.com:jekyll/mercenary.git","clone_url":"https://github.com/jekyll/mercenary.git","svn_url":"https://github.com/jekyll/mercenary","homepage":"","size":1131,"stargazers_count":83,"watchers_count":83,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":12,"mirror_url":null,"open_issues_count":0,"forks":12,"open_issues":0,"watchers":83,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":20628543,"name":"mojobot","full_name":"jekyll/mojobot","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/mojobot","description":"The #jekyll IRC bot.","fork":false,"url":"https://api.github.com/repos/jekyll/mojobot","forks_url":"https://api.github.com/repos/jekyll/mojobot/forks","keys_url":"https://api.github.com/repos/jekyll/mojobot/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/mojobot/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/mojobot/teams","hooks_url":"https://api.github.com/repos/jekyll/mojobot/hooks","issue_events_url":"https://api.github.com/repos/jekyll/mojobot/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/mojobot/events","assignees_url":"https://api.github.com/repos/jekyll/mojobot/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/mojobot/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/mojobot/tags","blobs_url":"https://api.github.com/repos/jekyll/mojobot/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/mojobot/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/mojobot/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/mojobot/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/mojobot/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/mojobot/languages","stargazers_url":"https://api.github.com/repos/jekyll/mojobot/stargazers","contributors_url":"https://api.github.com/repos/jekyll/mojobot/contributors","subscribers_url":"https://api.github.com/repos/jekyll/mojobot/subscribers","subscription_url":"https://api.github.com/repos/jekyll/mojobot/subscription","commits_url":"https://api.github.com/repos/jekyll/mojobot/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/mojobot/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/mojobot/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/mojobot/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/mojobot/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/mojobot/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/mojobot/merges","archive_url":"https://api.github.com/repos/jekyll/mojobot/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/mojobot/downloads","issues_url":"https://api.github.com/repos/jekyll/mojobot/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/mojobot/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/mojobot/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/mojobot/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/mojobot/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/mojobot/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/mojobot/deployments","created_at":"2014-06-08T23:01:39Z","updated_at":"2015-11-04T16:44:07Z","pushed_at":"2015-01-03T21:24:22Z","git_url":"git://github.com/jekyll/mojobot.git","ssh_url":"git@github.com:jekyll/mojobot.git","clone_url":"https://github.com/jekyll/mojobot.git","svn_url":"https://github.com/jekyll/mojobot","homepage":null,"size":172,"stargazers_count":2,"watchers_count":2,"language":"CoffeeScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":25141910,"name":"omnibus-jekyll","full_name":"jekyll/omnibus-jekyll","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/omnibus-jekyll","description":"NOT UNDER ACTIVE DEVELOPMENT: Build standalone installers for Jekyll & its dependencies.","fork":false,"url":"https://api.github.com/repos/jekyll/omnibus-jekyll","forks_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/forks","keys_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/teams","hooks_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/hooks","issue_events_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/events","assignees_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/tags","blobs_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/languages","stargazers_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/stargazers","contributors_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/contributors","subscribers_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/subscribers","subscription_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/subscription","commits_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/merges","archive_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/downloads","issues_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/omnibus-jekyll/deployments","created_at":"2014-10-13T03:50:53Z","updated_at":"2015-11-08T17:40:07Z","pushed_at":"2014-11-26T22:55:22Z","git_url":"git://github.com/jekyll/omnibus-jekyll.git","ssh_url":"git@github.com:jekyll/omnibus-jekyll.git","clone_url":"https://github.com/jekyll/omnibus-jekyll.git","svn_url":"https://github.com/jekyll/omnibus-jekyll","homepage":"","size":305,"stargazers_count":5,"watchers_count":5,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":5,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":11265709,"name":"plugins","full_name":"jekyll/plugins","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/plugins","description":"Plugins discovery for Jekyll, built with Jekyll – A proposal.","fork":false,"url":"https://api.github.com/repos/jekyll/plugins","forks_url":"https://api.github.com/repos/jekyll/plugins/forks","keys_url":"https://api.github.com/repos/jekyll/plugins/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/plugins/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/plugins/teams","hooks_url":"https://api.github.com/repos/jekyll/plugins/hooks","issue_events_url":"https://api.github.com/repos/jekyll/plugins/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/plugins/events","assignees_url":"https://api.github.com/repos/jekyll/plugins/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/plugins/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/plugins/tags","blobs_url":"https://api.github.com/repos/jekyll/plugins/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/plugins/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/plugins/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/plugins/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/plugins/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/plugins/languages","stargazers_url":"https://api.github.com/repos/jekyll/plugins/stargazers","contributors_url":"https://api.github.com/repos/jekyll/plugins/contributors","subscribers_url":"https://api.github.com/repos/jekyll/plugins/subscribers","subscription_url":"https://api.github.com/repos/jekyll/plugins/subscription","commits_url":"https://api.github.com/repos/jekyll/plugins/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/plugins/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/plugins/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/plugins/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/plugins/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/plugins/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/plugins/merges","archive_url":"https://api.github.com/repos/jekyll/plugins/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/plugins/downloads","issues_url":"https://api.github.com/repos/jekyll/plugins/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/plugins/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/plugins/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/plugins/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/plugins/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/plugins/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/plugins/deployments","created_at":"2013-07-08T21:18:11Z","updated_at":"2016-02-05T08:52:29Z","pushed_at":"2016-01-23T19:18:02Z","git_url":"git://github.com/jekyll/plugins.git","ssh_url":"git@github.com:jekyll/plugins.git","clone_url":"https://github.com/jekyll/plugins.git","svn_url":"https://github.com/jekyll/plugins","homepage":"http://jekyll.github.io/plugins/","size":152,"stargazers_count":9,"watchers_count":9,"language":"CSS","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":5,"mirror_url":null,"open_issues_count":2,"forks":5,"open_issues":2,"watchers":9,"default_branch":"gh-pages","permissions":{"admin":true,"push":true,"pull":true}},{"id":23177457,"name":"profiling","full_name":"jekyll/profiling","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/profiling","description":"Profiling the build time of various types of sites.","fork":false,"url":"https://api.github.com/repos/jekyll/profiling","forks_url":"https://api.github.com/repos/jekyll/profiling/forks","keys_url":"https://api.github.com/repos/jekyll/profiling/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/profiling/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/profiling/teams","hooks_url":"https://api.github.com/repos/jekyll/profiling/hooks","issue_events_url":"https://api.github.com/repos/jekyll/profiling/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/profiling/events","assignees_url":"https://api.github.com/repos/jekyll/profiling/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/profiling/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/profiling/tags","blobs_url":"https://api.github.com/repos/jekyll/profiling/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/profiling/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/profiling/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/profiling/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/profiling/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/profiling/languages","stargazers_url":"https://api.github.com/repos/jekyll/profiling/stargazers","contributors_url":"https://api.github.com/repos/jekyll/profiling/contributors","subscribers_url":"https://api.github.com/repos/jekyll/profiling/subscribers","subscription_url":"https://api.github.com/repos/jekyll/profiling/subscription","commits_url":"https://api.github.com/repos/jekyll/profiling/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/profiling/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/profiling/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/profiling/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/profiling/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/profiling/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/profiling/merges","archive_url":"https://api.github.com/repos/jekyll/profiling/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/profiling/downloads","issues_url":"https://api.github.com/repos/jekyll/profiling/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/profiling/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/profiling/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/profiling/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/profiling/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/profiling/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/profiling/deployments","created_at":"2014-08-21T07:00:24Z","updated_at":"2014-08-21T07:00:45Z","pushed_at":"2015-06-15T22:44:58Z","git_url":"git://github.com/jekyll/profiling.git","ssh_url":"git@github.com:jekyll/profiling.git","clone_url":"https://github.com/jekyll/profiling.git","svn_url":"https://github.com/jekyll/profiling","homepage":null,"size":164,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":16127624,"name":"screencast","full_name":"jekyll/screencast","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/screencast","description":"A collection of Jekyll screencast ideas.","fork":false,"url":"https://api.github.com/repos/jekyll/screencast","forks_url":"https://api.github.com/repos/jekyll/screencast/forks","keys_url":"https://api.github.com/repos/jekyll/screencast/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/screencast/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/screencast/teams","hooks_url":"https://api.github.com/repos/jekyll/screencast/hooks","issue_events_url":"https://api.github.com/repos/jekyll/screencast/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/screencast/events","assignees_url":"https://api.github.com/repos/jekyll/screencast/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/screencast/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/screencast/tags","blobs_url":"https://api.github.com/repos/jekyll/screencast/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/screencast/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/screencast/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/screencast/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/screencast/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/screencast/languages","stargazers_url":"https://api.github.com/repos/jekyll/screencast/stargazers","contributors_url":"https://api.github.com/repos/jekyll/screencast/contributors","subscribers_url":"https://api.github.com/repos/jekyll/screencast/subscribers","subscription_url":"https://api.github.com/repos/jekyll/screencast/subscription","commits_url":"https://api.github.com/repos/jekyll/screencast/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/screencast/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/screencast/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/screencast/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/screencast/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/screencast/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/screencast/merges","archive_url":"https://api.github.com/repos/jekyll/screencast/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/screencast/downloads","issues_url":"https://api.github.com/repos/jekyll/screencast/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/screencast/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/screencast/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/screencast/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/screencast/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/screencast/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/screencast/deployments","created_at":"2014-01-22T03:33:13Z","updated_at":"2015-09-28T20:58:00Z","pushed_at":"2015-06-15T22:51:17Z","git_url":"git://github.com/jekyll/screencast.git","ssh_url":"git@github.com:jekyll/screencast.git","clone_url":"https://github.com/jekyll/screencast.git","svn_url":"https://github.com/jekyll/screencast","homepage":null,"size":113,"stargazers_count":3,"watchers_count":3,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":3,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":36165365,"name":"talk.jekyllrb.com-docker-configs","full_name":"jekyll/talk.jekyllrb.com-docker-configs","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/talk.jekyllrb.com-docker-configs","description":"The publically available Discourse configurations for talk.jekyllrb.com","fork":false,"url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs","forks_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/forks","keys_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/teams","hooks_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/hooks","issue_events_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/events","assignees_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/tags","blobs_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/languages","stargazers_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/stargazers","contributors_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/contributors","subscribers_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/subscribers","subscription_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/subscription","commits_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/merges","archive_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/downloads","issues_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/talk.jekyllrb.com-docker-configs/deployments","created_at":"2015-05-24T09:40:29Z","updated_at":"2015-11-08T17:39:55Z","pushed_at":"2015-05-24T10:06:30Z","git_url":"git://github.com/jekyll/talk.jekyllrb.com-docker-configs.git","ssh_url":"git@github.com:jekyll/talk.jekyllrb.com-docker-configs.git","clone_url":"https://github.com/jekyll/talk.jekyllrb.com-docker-configs.git","svn_url":"https://github.com/jekyll/talk.jekyllrb.com-docker-configs","homepage":null,"size":100,"stargazers_count":2,"watchers_count":2,"language":"DIGITAL Command Language","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":2,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":9329380,"name":"test-site","full_name":"jekyll/test-site","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/test-site","description":"A very, very simple, barebones test site for Jekyll.","fork":false,"url":"https://api.github.com/repos/jekyll/test-site","forks_url":"https://api.github.com/repos/jekyll/test-site/forks","keys_url":"https://api.github.com/repos/jekyll/test-site/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/test-site/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/test-site/teams","hooks_url":"https://api.github.com/repos/jekyll/test-site/hooks","issue_events_url":"https://api.github.com/repos/jekyll/test-site/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/test-site/events","assignees_url":"https://api.github.com/repos/jekyll/test-site/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/test-site/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/test-site/tags","blobs_url":"https://api.github.com/repos/jekyll/test-site/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/test-site/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/test-site/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/test-site/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/test-site/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/test-site/languages","stargazers_url":"https://api.github.com/repos/jekyll/test-site/stargazers","contributors_url":"https://api.github.com/repos/jekyll/test-site/contributors","subscribers_url":"https://api.github.com/repos/jekyll/test-site/subscribers","subscription_url":"https://api.github.com/repos/jekyll/test-site/subscription","commits_url":"https://api.github.com/repos/jekyll/test-site/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/test-site/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/test-site/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/test-site/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/test-site/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/test-site/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/test-site/merges","archive_url":"https://api.github.com/repos/jekyll/test-site/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/test-site/downloads","issues_url":"https://api.github.com/repos/jekyll/test-site/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/test-site/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/test-site/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/test-site/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/test-site/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/test-site/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/test-site/deployments","created_at":"2013-04-09T19:12:09Z","updated_at":"2015-05-20T06:28:52Z","pushed_at":"2013-06-08T17:31:13Z","git_url":"git://github.com/jekyll/test-site.git","ssh_url":"git@github.com:jekyll/test-site.git","clone_url":"https://github.com/jekyll/test-site.git","svn_url":"https://github.com/jekyll/test-site","homepage":null,"size":140,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":10,"mirror_url":null,"open_issues_count":0,"forks":10,"open_issues":0,"watchers":5,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":19109677,"name":"themes-site","full_name":"jekyll/themes-site","owner":{"login":"jekyll","id":3083652,"avatar_url":"https://avatars.githubusercontent.com/u/3083652?v=3","gravatar_id":"","url":"https://api.github.com/users/jekyll","html_url":"https://github.com/jekyll","followers_url":"https://api.github.com/users/jekyll/followers","following_url":"https://api.github.com/users/jekyll/following{/other_user}","gists_url":"https://api.github.com/users/jekyll/gists{/gist_id}","starred_url":"https://api.github.com/users/jekyll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jekyll/subscriptions","organizations_url":"https://api.github.com/users/jekyll/orgs","repos_url":"https://api.github.com/users/jekyll/repos","events_url":"https://api.github.com/users/jekyll/events{/privacy}","received_events_url":"https://api.github.com/users/jekyll/received_events","type":"Organization","site_admin":false},"private":true,"html_url":"https://github.com/jekyll/themes-site","description":"A list of third-party themes.","fork":false,"url":"https://api.github.com/repos/jekyll/themes-site","forks_url":"https://api.github.com/repos/jekyll/themes-site/forks","keys_url":"https://api.github.com/repos/jekyll/themes-site/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jekyll/themes-site/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jekyll/themes-site/teams","hooks_url":"https://api.github.com/repos/jekyll/themes-site/hooks","issue_events_url":"https://api.github.com/repos/jekyll/themes-site/issues/events{/number}","events_url":"https://api.github.com/repos/jekyll/themes-site/events","assignees_url":"https://api.github.com/repos/jekyll/themes-site/assignees{/user}","branches_url":"https://api.github.com/repos/jekyll/themes-site/branches{/branch}","tags_url":"https://api.github.com/repos/jekyll/themes-site/tags","blobs_url":"https://api.github.com/repos/jekyll/themes-site/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jekyll/themes-site/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jekyll/themes-site/git/refs{/sha}","trees_url":"https://api.github.com/repos/jekyll/themes-site/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jekyll/themes-site/statuses/{sha}","languages_url":"https://api.github.com/repos/jekyll/themes-site/languages","stargazers_url":"https://api.github.com/repos/jekyll/themes-site/stargazers","contributors_url":"https://api.github.com/repos/jekyll/themes-site/contributors","subscribers_url":"https://api.github.com/repos/jekyll/themes-site/subscribers","subscription_url":"https://api.github.com/repos/jekyll/themes-site/subscription","commits_url":"https://api.github.com/repos/jekyll/themes-site/commits{/sha}","git_commits_url":"https://api.github.com/repos/jekyll/themes-site/git/commits{/sha}","comments_url":"https://api.github.com/repos/jekyll/themes-site/comments{/number}","issue_comment_url":"https://api.github.com/repos/jekyll/themes-site/issues/comments{/number}","contents_url":"https://api.github.com/repos/jekyll/themes-site/contents/{+path}","compare_url":"https://api.github.com/repos/jekyll/themes-site/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jekyll/themes-site/merges","archive_url":"https://api.github.com/repos/jekyll/themes-site/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jekyll/themes-site/downloads","issues_url":"https://api.github.com/repos/jekyll/themes-site/issues{/number}","pulls_url":"https://api.github.com/repos/jekyll/themes-site/pulls{/number}","milestones_url":"https://api.github.com/repos/jekyll/themes-site/milestones{/number}","notifications_url":"https://api.github.com/repos/jekyll/themes-site/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jekyll/themes-site/labels{/name}","releases_url":"https://api.github.com/repos/jekyll/themes-site/releases{/id}","deployments_url":"https://api.github.com/repos/jekyll/themes-site/deployments","created_at":"2014-04-24T13:37:00Z","updated_at":"2015-11-04T16:44:05Z","pushed_at":"2014-08-31T20:17:32Z","git_url":"git://github.com/jekyll/themes-site.git","ssh_url":"git@github.com:jekyll/themes-site.git","clone_url":"https://github.com/jekyll/themes-site.git","svn_url":"https://github.com/jekyll/themes-site","homepage":null,"size":428,"stargazers_count":5,"watchers_count":5,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":true,"forks_count":3,"mirror_url":null,"open_issues_count":0,"forks":3,"open_issues":0,"watchers":5,"default_branch":"gh-pages","permissions":{"admin":true,"push":true,"pull":true}}]