contributors_stats 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.travis.yml +11 -0
- data/Gemfile +5 -0
- data/LICENSE.md +14 -0
- data/README.md +43 -0
- data/Rakefile +28 -0
- data/contributors_stats.gemspec +24 -0
- data/lib/contributors_stats.rb +28 -0
- data/lib/contributors_stats/base.rb +29 -0
- data/lib/contributors_stats/calculator.rb +50 -0
- data/lib/contributors_stats/formatter.rb +57 -0
- data/lib/contributors_stats/json_helper.rb +49 -0
- data/lib/contributors_stats/reader.rb +52 -0
- data/lib/contributors_stats/version.rb +4 -0
- data/lib/example_data.rb +58 -0
- data/lib/plugins/contributors_stats/formatter/html.rb +26 -0
- data/lib/plugins/contributors_stats/reader/gh_org.rb +21 -0
- data/lib/plugins/contributors_stats/reader/gh_repo.rb +19 -0
- data/lib/plugins/contributors_stats/updater/html.rb +36 -0
- data/lib/plugins/contributors_stats/user_data/fetch.rb +16 -0
- data/lib/plugins/contributors_stats/user_data/simple.rb +23 -0
- data/test/contributors_stats/base_test.rb +36 -0
- data/test/contributors_stats/calculator_test.rb +70 -0
- data/test/contributors_stats/formatter_test.rb +77 -0
- data/test/contributors_stats/json_helper_test.rb +76 -0
- data/test/contributors_stats/reader_test.rb +59 -0
- data/test/contributors_stats_test.rb +13 -0
- data/test/fixtures-gh/orgs/railsinstaller/repos.json +269 -0
- data/test/fixtures-gh/repos/mpapis/rubygems-bundler/contributors.json +173 -0
- data/test/fixtures-gh/repos/railsinstaller/railsinstaller-nix/contributors.json +40 -0
- data/test/fixtures-gh/repos/railsinstaller/railsinstaller-windows/contributors.json +116 -0
- data/test/fixtures-gh/repos/railsinstaller/website/contributors.json +192 -0
- data/test/fixtures-gh/repos/rvm/pluginator/contributors.json +40 -0
- data/test/fixtures-gh/users/acco.json +31 -0
- data/test/fixtures-gh/users/alexch.json +31 -0
- data/test/fixtures-gh/users/biow0lf.json +31 -0
- data/test/fixtures-gh/users/drnic.json +31 -0
- data/test/fixtures-gh/users/ebertech.json +31 -0
- data/test/fixtures-gh/users/edwardchiu38.json +31 -0
- data/test/fixtures-gh/users/emachnic.json +31 -0
- data/test/fixtures-gh/users/envygeeks.json +31 -0
- data/test/fixtures-gh/users/gpxl.json +31 -0
- data/test/fixtures-gh/users/jc00ke.json +31 -0
- data/test/fixtures-gh/users/joshbuddy.json +31 -0
- data/test/fixtures-gh/users/luigidr.json +31 -0
- data/test/fixtures-gh/users/luislavena.json +31 -0
- data/test/fixtures-gh/users/metaskills.json +31 -0
- data/test/fixtures-gh/users/mpapis.json +31 -0
- data/test/fixtures-gh/users/parndt.json +31 -0
- data/test/fixtures-gh/users/pw.json +31 -0
- data/test/fixtures-gh/users/tjouan.json +31 -0
- data/test/fixtures-gh/users/veganstraightedge.json +31 -0
- data/test/fixtures-gh/users/wayneeseguin.json +31 -0
- data/test/fixtures-gh/users/whitequark.json +31 -0
- data/test/plugins/formatter/html_test.rb +28 -0
- data/test/plugins/reader/gh_org_test.rb +32 -0
- data/test/plugins/reader/gh_repo_test.rb +31 -0
- data/test/plugins/updater/html_test.rb +55 -0
- data/test/plugins/user_data/fetch_test.rb +16 -0
- data/test/plugins/user_data/simple_test.rb +18 -0
- data/test/test_helper.rb +27 -0
- metadata +229 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "biow0lf",
|
3
|
+
"id": 93578,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/fcb760f377e8544848df4550ea5ac55b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "fcb760f377e8544848df4550ea5ac55b",
|
6
|
+
"url": "users/biow0lf.json",
|
7
|
+
"html_url": "https://github.com/biow0lf",
|
8
|
+
"followers_url": "users/biow0lf/followers.json",
|
9
|
+
"following_url": "users/biow0lf/following{/other_user}.json",
|
10
|
+
"gists_url": "users/biow0lf/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/biow0lf/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/biow0lf/subscriptions.json",
|
13
|
+
"organizations_url": "users/biow0lf/orgs.json",
|
14
|
+
"repos_url": "users/biow0lf/repos.json",
|
15
|
+
"events_url": "users/biow0lf/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/biow0lf/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Igor Zubkov",
|
19
|
+
"company": "Freelance, available for hire!",
|
20
|
+
"blog": "http://biow0lf.pp.ua",
|
21
|
+
"location": "Donetsk, Ukraine",
|
22
|
+
"email": "igor.zubkov@gmail.com",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 73,
|
26
|
+
"followers": 14,
|
27
|
+
"following": 22,
|
28
|
+
"created_at": "2009-06-09T14:05:33Z",
|
29
|
+
"updated_at": "2013-05-15T15:26:29Z",
|
30
|
+
"public_gists": 16
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "drnic",
|
3
|
+
"id": 108,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/cb2b768a5e546b24052ea03334e43676?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "cb2b768a5e546b24052ea03334e43676",
|
6
|
+
"url": "users/drnic.json",
|
7
|
+
"html_url": "https://github.com/drnic",
|
8
|
+
"followers_url": "users/drnic/followers.json",
|
9
|
+
"following_url": "users/drnic/following{/other_user}.json",
|
10
|
+
"gists_url": "users/drnic/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/drnic/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/drnic/subscriptions.json",
|
13
|
+
"organizations_url": "users/drnic/orgs.json",
|
14
|
+
"repos_url": "users/drnic/repos.json",
|
15
|
+
"events_url": "users/drnic/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/drnic/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Dr Nic Williams",
|
19
|
+
"company": "Stark & Wayne LLC",
|
20
|
+
"blog": "http://drnicwilliams.com",
|
21
|
+
"location": "Palo Alto, CA, USA",
|
22
|
+
"email": "drnicwilliams@gmail.com",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "",
|
25
|
+
"public_repos": 289,
|
26
|
+
"followers": 1290,
|
27
|
+
"following": 13,
|
28
|
+
"created_at": "2008-01-30T23:19:18Z",
|
29
|
+
"updated_at": "2013-05-15T22:17:20Z",
|
30
|
+
"public_gists": 112
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "ebertech",
|
3
|
+
"id": 344626,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/611e334464725c2a13b9bab38981aacb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "611e334464725c2a13b9bab38981aacb",
|
6
|
+
"url": "users/ebertech.json",
|
7
|
+
"html_url": "https://github.com/ebertech",
|
8
|
+
"followers_url": "users/ebertech/followers.json",
|
9
|
+
"following_url": "users/ebertech/following{/other_user}.json",
|
10
|
+
"gists_url": "users/ebertech/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/ebertech/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/ebertech/subscriptions.json",
|
13
|
+
"organizations_url": "users/ebertech/orgs.json",
|
14
|
+
"repos_url": "users/ebertech/repos.json",
|
15
|
+
"events_url": "users/ebertech/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/ebertech/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Andrew Eberbach",
|
19
|
+
"company": "EberTech Inc",
|
20
|
+
"blog": "http://ebertech.ca",
|
21
|
+
"location": "Toronto",
|
22
|
+
"email": "github@ebertech.ca",
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 72,
|
26
|
+
"followers": 7,
|
27
|
+
"following": 11,
|
28
|
+
"created_at": "2010-07-26T15:20:26Z",
|
29
|
+
"updated_at": "2013-05-13T00:50:18Z",
|
30
|
+
"public_gists": 4
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "edwardchiu38",
|
3
|
+
"id": 1634593,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/54b526a3d07ad65cb861a5f0225372ba?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "54b526a3d07ad65cb861a5f0225372ba",
|
6
|
+
"url": "users/edwardchiu38.json",
|
7
|
+
"html_url": "https://github.com/edwardchiu38",
|
8
|
+
"followers_url": "users/edwardchiu38/followers.json",
|
9
|
+
"following_url": "users/edwardchiu38/following{/other_user}.json",
|
10
|
+
"gists_url": "users/edwardchiu38/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/edwardchiu38/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/edwardchiu38/subscriptions.json",
|
13
|
+
"organizations_url": "users/edwardchiu38/orgs.json",
|
14
|
+
"repos_url": "users/edwardchiu38/repos.json",
|
15
|
+
"events_url": "users/edwardchiu38/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/edwardchiu38/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Edward Chiu",
|
19
|
+
"company": "Engine Yard",
|
20
|
+
"blog": null,
|
21
|
+
"location": "San Francisco",
|
22
|
+
"email": null,
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 5,
|
26
|
+
"followers": 2,
|
27
|
+
"following": 0,
|
28
|
+
"created_at": "2012-04-11T21:16:57Z",
|
29
|
+
"updated_at": "2013-05-08T20:30:32Z",
|
30
|
+
"public_gists": 0
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "emachnic",
|
3
|
+
"id": 169018,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/964c068a0bce23ae74d183fa6e3f9798?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "964c068a0bce23ae74d183fa6e3f9798",
|
6
|
+
"url": "users/emachnic.json",
|
7
|
+
"html_url": "https://github.com/emachnic",
|
8
|
+
"followers_url": "users/emachnic/followers.json",
|
9
|
+
"following_url": "users/emachnic/following{/other_user}.json",
|
10
|
+
"gists_url": "users/emachnic/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/emachnic/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/emachnic/subscriptions.json",
|
13
|
+
"organizations_url": "users/emachnic/orgs.json",
|
14
|
+
"repos_url": "users/emachnic/repos.json",
|
15
|
+
"events_url": "users/emachnic/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/emachnic/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Evan Machnic",
|
19
|
+
"company": "Broadmac",
|
20
|
+
"blog": "http://broadmac.net",
|
21
|
+
"location": "Tallahassee, FL",
|
22
|
+
"email": "emachnic@broadmac.net",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "# Evan Machnic #\r\n850.307.0313 <emachnic@broadmac.net>\r\n## Passionate Web Developer ##\r\n- - -\r\nSuccessful background in implementing and maintaining high-quality web applications and sites. Strong knowledge in web-based program de-bugging. Excellent reputation for clearly defining system requirements, skillfully designing applications, and managing technical systems.\r\n\r\n## Career Excellence ##\r\n- - -\r\n\r\n### AIT Environmental Technology, 2009-Present\r\n\r\n**Webmaster and Systems Administrator**\r\n\r\nDesigned, built and maintained main web site at <http://www.aitenvirotech.com>. Set up and configured account with hosting company [RailsPlayground](http://railsplayground.com) using cPanel to manage domains and email. Arranged existing content and created new content for web site. Currently redesigned site using [Ruby on Rails 3](http://rubyonrails.org) , [HTML5](http://en.wikipedia.org/wiki/HTML5) , and [CSS3](http://en.wikipedia.org/wiki/CSS3#CSS_3).\r\n\r\n* Created and maintained web site, email, and networking for company.\r\n* [Redesigned Site](http://aitenvirotech.com)\r\n\r\n### AdRelevancy, 2009-2010\r\n\r\n**Web Developer and Conversion Specialist**\r\n\r\nRapidly developed web pages using [HTML](http://en.wikipedia.org/wiki/HTML) , [CSS](http://en.wikipedia.org/wiki/CSS) and [PHP/MySQL](http://en.wikipedia.org/wiki/CSS). Used conversion metrics to split test different components of web pages to increase conversions. Developed and implemented a detailed testing plan to ensure that conversion rates would increase a certain amount every week.\r\n\r\n* Developed multiple web pages on a daily basis and split tested page elements to increase conversion rates.\r\n\r\n### State of Florida Department of Management Services, 2009 \r\n\r\n**Web Developer Intern**\r\n\r\nWorked in [Project SPARTA](http://projectsparta.org/) as an intern in charge of taking a project from conception to implementation. Created a detailed project plan that had to be approved by management for an internal application. Developed a web-based application using [Ruby on Rails](http://rubyonrails.org) to track which state employees were being used on certain projects/tasks.\r\n\r\n* Created a detailed project plan, developed an application based on the specifications of the project plan and deployed the application.\r\n\r\n## Technical Skills ##\r\n- - -\r\n* **Operating Systems:** MS Windows XP, Vista, and 7; MS Windows Server 2008; Ubuntu Linux Desktop and Server\r\n* **Networking:** Local Area Network (LAN); Home Wireless Network; File, Print, and Web Servers including Apache and IIS7\r\n* **Software:** MS Office; Adobe Photoshop; Adobe Dreamweaver; Eclipse; Aptana; Vim; VirtualBox; VMWare; Command Line (UNIX and DOS)\r\n* **Languages:** HTML 4 and 5; CSS 2 and 3; Ruby on Rails 2 and 3; PHP; MySQL; ASP.NET with C#; Classic ASP with Visual Basic; Javascript; JQuery; JQuery Mobile; Prototype and Scriptaculous; Basic Shell Scripting\r\n\r\n## Education ##\r\n- - -\r\n**Bachelor of Science, Information Technology, Computer Science Minor**\r\n\r\nFlorida State University, Tallahassee, FL, 2009",
|
25
|
+
"public_repos": 81,
|
26
|
+
"followers": 15,
|
27
|
+
"following": 7,
|
28
|
+
"created_at": "2009-12-17T16:54:34Z",
|
29
|
+
"updated_at": "2013-05-10T16:29:11Z",
|
30
|
+
"public_gists": 15
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "envygeeks",
|
3
|
+
"id": 99763,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/52f3528c40e9cf28ad0900886eecb128?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "52f3528c40e9cf28ad0900886eecb128",
|
6
|
+
"url": "users/envygeeks.json",
|
7
|
+
"html_url": "https://github.com/envygeeks",
|
8
|
+
"followers_url": "users/envygeeks/followers.json",
|
9
|
+
"following_url": "users/envygeeks/following{/other_user}.json",
|
10
|
+
"gists_url": "users/envygeeks/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/envygeeks/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/envygeeks/subscriptions.json",
|
13
|
+
"organizations_url": "users/envygeeks/orgs.json",
|
14
|
+
"repos_url": "users/envygeeks/repos.json",
|
15
|
+
"events_url": "users/envygeeks/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/envygeeks/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Jordon Bedwell",
|
19
|
+
"company": "EnvyGeeks",
|
20
|
+
"blog": "http://envygeeks.com/",
|
21
|
+
"location": "Wichita, KS",
|
22
|
+
"email": "envygeeks@gmail.com",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "",
|
25
|
+
"public_repos": 11,
|
26
|
+
"followers": 10,
|
27
|
+
"following": 6,
|
28
|
+
"created_at": "2009-06-28T21:25:28Z",
|
29
|
+
"updated_at": "2013-05-15T18:53:44Z",
|
30
|
+
"public_gists": 9
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "gpxl",
|
3
|
+
"id": 154019,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/572edfb30fef086b8347f7d1a3c2725f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "572edfb30fef086b8347f7d1a3c2725f",
|
6
|
+
"url": "users/gpxl.json",
|
7
|
+
"html_url": "https://github.com/gpxl",
|
8
|
+
"followers_url": "users/gpxl/followers.json",
|
9
|
+
"following_url": "users/gpxl/following{/other_user}.json",
|
10
|
+
"gists_url": "users/gpxl/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/gpxl/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/gpxl/subscriptions.json",
|
13
|
+
"organizations_url": "users/gpxl/orgs.json",
|
14
|
+
"repos_url": "users/gpxl/repos.json",
|
15
|
+
"events_url": "users/gpxl/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/gpxl/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Gerlando Piro",
|
19
|
+
"company": "Engine Yard",
|
20
|
+
"blog": null,
|
21
|
+
"location": "Portland",
|
22
|
+
"email": null,
|
23
|
+
"hireable": false,
|
24
|
+
"bio": "",
|
25
|
+
"public_repos": 19,
|
26
|
+
"followers": 4,
|
27
|
+
"following": 6,
|
28
|
+
"created_at": "2009-11-16T19:20:52Z",
|
29
|
+
"updated_at": "2013-05-15T15:33:31Z",
|
30
|
+
"public_gists": 2
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "jc00ke",
|
3
|
+
"id": 18191,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/8c94d965389694bd5adc14679977fd5d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "8c94d965389694bd5adc14679977fd5d",
|
6
|
+
"url": "users/jc00ke.json",
|
7
|
+
"html_url": "https://github.com/jc00ke",
|
8
|
+
"followers_url": "users/jc00ke/followers.json",
|
9
|
+
"following_url": "users/jc00ke/following{/other_user}.json",
|
10
|
+
"gists_url": "users/jc00ke/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/jc00ke/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/jc00ke/subscriptions.json",
|
13
|
+
"organizations_url": "users/jc00ke/orgs.json",
|
14
|
+
"repos_url": "users/jc00ke/repos.json",
|
15
|
+
"events_url": "users/jc00ke/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/jc00ke/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Jesse Cooke",
|
19
|
+
"company": "jc00ke llc",
|
20
|
+
"blog": "jc00ke.com",
|
21
|
+
"location": "Portland, OR",
|
22
|
+
"email": "jesse@jc00ke.com",
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 124,
|
26
|
+
"followers": 60,
|
27
|
+
"following": 2,
|
28
|
+
"created_at": "2008-07-23T21:54:14Z",
|
29
|
+
"updated_at": "2013-05-15T02:13:09Z",
|
30
|
+
"public_gists": 233
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "joshbuddy",
|
3
|
+
"id": 8898,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/c7e2ce5b40f683dfb6c1bdf5e6af0c72?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "c7e2ce5b40f683dfb6c1bdf5e6af0c72",
|
6
|
+
"url": "users/joshbuddy.json",
|
7
|
+
"html_url": "https://github.com/joshbuddy",
|
8
|
+
"followers_url": "users/joshbuddy/followers.json",
|
9
|
+
"following_url": "users/joshbuddy/following{/other_user}.json",
|
10
|
+
"gists_url": "users/joshbuddy/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/joshbuddy/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/joshbuddy/subscriptions.json",
|
13
|
+
"organizations_url": "users/joshbuddy/orgs.json",
|
14
|
+
"repos_url": "users/joshbuddy/repos.json",
|
15
|
+
"events_url": "users/joshbuddy/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/joshbuddy/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Joshua Hull",
|
19
|
+
"company": "",
|
20
|
+
"blog": null,
|
21
|
+
"location": "San Francisco, CA",
|
22
|
+
"email": "joshbuddy@gmail.com",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "",
|
25
|
+
"public_repos": 126,
|
26
|
+
"followers": 371,
|
27
|
+
"following": 341,
|
28
|
+
"created_at": "2008-04-30T03:02:45Z",
|
29
|
+
"updated_at": "2013-05-13T08:20:11Z",
|
30
|
+
"public_gists": 33
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "luigidr",
|
3
|
+
"id": 1466597,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/dffd882a3240d3c7984347dd2579cfe4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "dffd882a3240d3c7984347dd2579cfe4",
|
6
|
+
"url": "users/luigidr.json",
|
7
|
+
"html_url": "https://github.com/luigidr",
|
8
|
+
"followers_url": "users/luigidr/followers.json",
|
9
|
+
"following_url": "users/luigidr/following{/other_user}.json",
|
10
|
+
"gists_url": "users/luigidr/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/luigidr/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/luigidr/subscriptions.json",
|
13
|
+
"organizations_url": "users/luigidr/orgs.json",
|
14
|
+
"repos_url": "users/luigidr/repos.json",
|
15
|
+
"events_url": "users/luigidr/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/luigidr/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Luigi",
|
19
|
+
"company": null,
|
20
|
+
"blog": "http://elite.polito.it/people/derussis",
|
21
|
+
"location": null,
|
22
|
+
"email": "",
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 1,
|
26
|
+
"followers": 1,
|
27
|
+
"following": 2,
|
28
|
+
"created_at": "2012-02-23T18:20:22Z",
|
29
|
+
"updated_at": "2013-05-15T06:39:33Z",
|
30
|
+
"public_gists": 0
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "luislavena",
|
3
|
+
"id": 4182,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e7cff3cfd41c495e1012227d7dc24202?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "e7cff3cfd41c495e1012227d7dc24202",
|
6
|
+
"url": "users/luislavena.json",
|
7
|
+
"html_url": "https://github.com/luislavena",
|
8
|
+
"followers_url": "users/luislavena/followers.json",
|
9
|
+
"following_url": "users/luislavena/following{/other_user}.json",
|
10
|
+
"gists_url": "users/luislavena/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/luislavena/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/luislavena/subscriptions.json",
|
13
|
+
"organizations_url": "users/luislavena/orgs.json",
|
14
|
+
"repos_url": "users/luislavena/repos.json",
|
15
|
+
"events_url": "users/luislavena/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/luislavena/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Luis Lavena",
|
19
|
+
"company": "AREA 17",
|
20
|
+
"blog": "http://blog.mmediasys.com",
|
21
|
+
"location": "Tucuman, Argentina",
|
22
|
+
"email": "luislavena@gmail.com",
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 47,
|
26
|
+
"followers": 122,
|
27
|
+
"following": 7,
|
28
|
+
"created_at": "2008-03-31T23:55:19Z",
|
29
|
+
"updated_at": "2013-05-15T13:00:51Z",
|
30
|
+
"public_gists": 393
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "metaskills",
|
3
|
+
"id": 2381,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f0b14b7dbae1e90259eb946d1c841a17?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "f0b14b7dbae1e90259eb946d1c841a17",
|
6
|
+
"url": "users/metaskills.json",
|
7
|
+
"html_url": "https://github.com/metaskills",
|
8
|
+
"followers_url": "users/metaskills/followers.json",
|
9
|
+
"following_url": "users/metaskills/following{/other_user}.json",
|
10
|
+
"gists_url": "users/metaskills/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/metaskills/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/metaskills/subscriptions.json",
|
13
|
+
"organizations_url": "users/metaskills/orgs.json",
|
14
|
+
"repos_url": "users/metaskills/repos.json",
|
15
|
+
"events_url": "users/metaskills/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/metaskills/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Ken Collins",
|
19
|
+
"company": "Action Moniker LLC",
|
20
|
+
"blog": "http://www.metaskills.net",
|
21
|
+
"location": "Portsmouth, VA",
|
22
|
+
"email": "ken@metaskills.net",
|
23
|
+
"hireable": false,
|
24
|
+
"bio": null,
|
25
|
+
"public_repos": 62,
|
26
|
+
"followers": 126,
|
27
|
+
"following": 1,
|
28
|
+
"created_at": "2008-03-06T13:53:31Z",
|
29
|
+
"updated_at": "2013-05-15T22:30:00Z",
|
30
|
+
"public_gists": 260
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "mpapis",
|
3
|
+
"id": 48054,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/3ec52ed58eb92026d86e62c39bdb7589?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "3ec52ed58eb92026d86e62c39bdb7589",
|
6
|
+
"url": "users/mpapis.json",
|
7
|
+
"html_url": "https://github.com/mpapis",
|
8
|
+
"followers_url": "users/mpapis/followers.json",
|
9
|
+
"following_url": "users/mpapis/following{/other_user}.json",
|
10
|
+
"gists_url": "users/mpapis/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/mpapis/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/mpapis/subscriptions.json",
|
13
|
+
"organizations_url": "users/mpapis/orgs.json",
|
14
|
+
"repos_url": "users/mpapis/repos.json",
|
15
|
+
"events_url": "users/mpapis/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/mpapis/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Michal Papis",
|
19
|
+
"company": "Engine Yard",
|
20
|
+
"blog": "http://niczsoft.com",
|
21
|
+
"location": "Europe->Poland->Gorzow",
|
22
|
+
"email": "mpapis@gmail.com",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "software developer and linux administrator with passion to learn\r\n\r\nactive developer in [RVM][1], [SM Framework][2], [DTF][3] and [few other projects][4]\r\n\r\nRelease Manager for [RVM][1]\r\n\r\n[](http://coderwall.com/mpapis)\r\n\r\n [1]: https://rvm.io/\r\n [2]: https://smf.sh/\r\n [3]: https://github.com/dtf-gems/dtf/\r\n [4]: https://github.com/mpapis/",
|
25
|
+
"public_repos": 93,
|
26
|
+
"followers": 70,
|
27
|
+
"following": 8,
|
28
|
+
"created_at": "2009-01-20T21:30:33Z",
|
29
|
+
"updated_at": "2013-05-15T21:09:24Z",
|
30
|
+
"public_gists": 130
|
31
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"login": "parndt",
|
3
|
+
"id": 10128,
|
4
|
+
"avatar_url": "https://secure.gravatar.com/avatar/1d676127a3e4c0531e2d37dabef0a12d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
5
|
+
"gravatar_id": "1d676127a3e4c0531e2d37dabef0a12d",
|
6
|
+
"url": "users/parndt.json",
|
7
|
+
"html_url": "https://github.com/parndt",
|
8
|
+
"followers_url": "users/parndt/followers.json",
|
9
|
+
"following_url": "users/parndt/following{/other_user}.json",
|
10
|
+
"gists_url": "users/parndt/gists{/gist_id}.json",
|
11
|
+
"starred_url": "users/parndt/starred{/owner}{/repo}.json",
|
12
|
+
"subscriptions_url": "users/parndt/subscriptions.json",
|
13
|
+
"organizations_url": "users/parndt/orgs.json",
|
14
|
+
"repos_url": "users/parndt/repos.json",
|
15
|
+
"events_url": "users/parndt/events{/privacy}.json",
|
16
|
+
"received_events_url": "users/parndt/received_events.json",
|
17
|
+
"type": "User",
|
18
|
+
"name": "Philip Arndt",
|
19
|
+
"company": "Freelance. Available for hire!",
|
20
|
+
"blog": "http://philiparndt.name",
|
21
|
+
"location": "Christchurch, New Zealand",
|
22
|
+
"email": "",
|
23
|
+
"hireable": true,
|
24
|
+
"bio": "Core developer of http://github.com/resolve/refinerycms",
|
25
|
+
"public_repos": 170,
|
26
|
+
"followers": 188,
|
27
|
+
"following": 16,
|
28
|
+
"created_at": "2008-05-13T04:30:57Z",
|
29
|
+
"updated_at": "2013-05-15T21:58:03Z",
|
30
|
+
"public_gists": 100
|
31
|
+
}
|