marmite 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 37b0f442413d4ece6af12178720f9e7b2e004e71
4
+ data.tar.gz: 44906ea72cfb2f102f007d6ca2882869e4093561
5
+ SHA512:
6
+ metadata.gz: ffef9a742d0e26494fb7deebbb9c34c4a38cc000fb45d5ca04a2afadf81a5e39f2f7ddbbd004615d57766512d7443db5250d5b98b558cd35aa3039dcf1d879ca
7
+ data.tar.gz: 66272fc5f56fad6ccf7b08162b0f2af6a3fd4caf332ddbb6dba6c697e12715b0cca77951f23fed162a9832537558e2cb38220101fb51b94430c740516ca1cacd
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in marmite.gemspec
4
+ gemspec
@@ -0,0 +1,24 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :rspec do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+
9
+ # Rails example
10
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
11
+ watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
12
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
13
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
14
+ watch('config/routes.rb') { "spec/routing" }
15
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
16
+
17
+ # Capybara features specs
18
+ watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
19
+
20
+ # Turnip features and steps
21
+ watch(%r{^spec/acceptance/(.+)\.feature$})
22
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
23
+ end
24
+
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Phil Lee
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # Marmite
2
+
3
+ Find out a Github user's favourite programming language
4
+
5
+ ## Installation
6
+
7
+ gem 'marmite'
8
+
9
+ And then execute:
10
+
11
+ $ bundle
12
+
13
+ Or install it yourself as:
14
+
15
+ $ gem install marmite
16
+
17
+ ## Usage
18
+
19
+ On the command line run `marmite`
20
+
21
+ NOTE: If you're using rbenv remember to call `rbenv rehash` otherwise the binary won't be available
22
+
23
+ ## TODO
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'marmite'
4
+
5
+ Marmite::Cli.run!
@@ -0,0 +1,6 @@
1
+ require "marmite/version"
2
+ require 'marmite/user'
3
+ require 'marmite/cli'
4
+
5
+ module Marmite
6
+ end
@@ -0,0 +1,18 @@
1
+ require 'highline/import'
2
+
3
+ module Marmite
4
+ class Cli
5
+ def self.run!
6
+ self.new.run!
7
+ end
8
+
9
+ def run!
10
+ say "Use this tool to find out someone's favourite programming language."
11
+ username = ask("Please enter the their GitHub username:")
12
+ user = User.new username
13
+ say("We think they're favourite language is: #{user.favourite_language}")
14
+ rescue User::NotFound
15
+ say "Looks like that user doesn't exist in Github."
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,41 @@
1
+ require 'octokit'
2
+
3
+ module Marmite
4
+ class User
5
+ class NotFound < Exception; end
6
+
7
+ def initialize(username)
8
+ @user = ::Octokit.user username
9
+ rescue Octokit::NotFound
10
+ raise NotFound
11
+ end
12
+
13
+ def email
14
+ user.email
15
+ end
16
+
17
+ def repos
18
+ @repos ||= user.rels[:repos].get.data
19
+ end
20
+
21
+ def languages
22
+ hash = {}
23
+
24
+ repos.map(&:language).compact.each do |lang|
25
+ hash[lang] = (hash[lang] || 0) + 1
26
+ end
27
+
28
+ hash
29
+ end
30
+
31
+ def favourite_language
32
+ languages.max{|a,b| a.last <=> b.last}.first
33
+ end
34
+
35
+ private
36
+
37
+ def user
38
+ @user
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,3 @@
1
+ module Marmite
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'marmite/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "marmite"
8
+ spec.version = Marmite::VERSION
9
+ spec.authors = ["Phil Lee"]
10
+ spec.email = ["asmega@ph-lee.com"]
11
+ spec.description = "A command line tool to find out a GitHub user's favourite language"
12
+ spec.summary = "A command line tool to find out a GitHub user's favourite language"
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "guard-rspec"
25
+ spec.add_development_dependency "pry"
26
+ spec.add_development_dependency "vcr"
27
+ spec.add_development_dependency "webmock"
28
+
29
+ spec.add_dependency "octokit", "~> 2.0"
30
+ spec.add_dependency "highline"
31
+ end
@@ -0,0 +1,155 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.github.com/users/asmega
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/vnd.github.beta+json
12
+ User-Agent:
13
+ - Octokit Ruby Gem 2.6.0
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - GitHub.com
23
+ Date:
24
+ - Sat, 16 Nov 2013 00:17:00 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Status:
30
+ - 200 OK
31
+ X-Ratelimit-Limit:
32
+ - '60'
33
+ X-Ratelimit-Remaining:
34
+ - '51'
35
+ X-Ratelimit-Reset:
36
+ - '1384564615'
37
+ Cache-Control:
38
+ - public, max-age=60, s-maxage=60
39
+ Last-Modified:
40
+ - Fri, 15 Nov 2013 11:11:42 GMT
41
+ Etag:
42
+ - '"e9e8563f5c7604e1fa40a04ddbb5ecb4"'
43
+ Vary:
44
+ - Accept
45
+ - Accept-Encoding
46
+ X-Github-Media-Type:
47
+ - github.beta; format=json
48
+ X-Content-Type-Options:
49
+ - nosniff
50
+ Access-Control-Allow-Credentials:
51
+ - 'true'
52
+ Access-Control-Expose-Headers:
53
+ - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes,
54
+ X-Accepted-OAuth-Scopes
55
+ Access-Control-Allow-Origin:
56
+ - '*'
57
+ X-Github-Request-Id:
58
+ - 5698E988:071A:403BC64:5286B97B
59
+ body:
60
+ encoding: UTF-8
61
+ string: '{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false,"name":"Phil
62
+ Lee","company":null,"blog":"www.ph-lee.com","location":"Newcastle, UK","email":"asmega@ph-lee.com","hireable":true,"bio":"Ruby
63
+ on Rails developer","public_repos":40,"followers":12,"following":12,"created_at":"2009-06-06T14:39:59Z","updated_at":"2013-11-15T11:11:42Z","public_gists":27}'
64
+ http_version:
65
+ recorded_at: Sat, 16 Nov 2013 00:16:59 GMT
66
+ - request:
67
+ method: get
68
+ uri: https://api.github.com/users/asmega/repos
69
+ body:
70
+ encoding: US-ASCII
71
+ string: ''
72
+ headers:
73
+ Accept:
74
+ - application/vnd.github.beta+json
75
+ User-Agent:
76
+ - Octokit Ruby Gem 2.6.0
77
+ Accept-Encoding:
78
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
79
+ response:
80
+ status:
81
+ code: 200
82
+ message: OK
83
+ headers:
84
+ Server:
85
+ - GitHub.com
86
+ Date:
87
+ - Sat, 16 Nov 2013 00:17:00 GMT
88
+ Content-Type:
89
+ - application/json; charset=utf-8
90
+ Transfer-Encoding:
91
+ - chunked
92
+ Status:
93
+ - 200 OK
94
+ X-Ratelimit-Limit:
95
+ - '60'
96
+ X-Ratelimit-Remaining:
97
+ - '50'
98
+ X-Ratelimit-Reset:
99
+ - '1384564615'
100
+ Cache-Control:
101
+ - public, max-age=60, s-maxage=60
102
+ Etag:
103
+ - '"9c3c4dfe2af84655619c6424e0361c08"'
104
+ Vary:
105
+ - Accept
106
+ - Accept-Encoding
107
+ X-Github-Media-Type:
108
+ - github.beta; format=json
109
+ Link:
110
+ - <https://api.github.com/user/92580/repos?page=2>; rel="next", <https://api.github.com/user/92580/repos?page=2>;
111
+ rel="last"
112
+ X-Content-Type-Options:
113
+ - nosniff
114
+ Access-Control-Allow-Credentials:
115
+ - 'true'
116
+ Access-Control-Expose-Headers:
117
+ - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes,
118
+ X-Accepted-OAuth-Scopes
119
+ Access-Control-Allow-Origin:
120
+ - '*'
121
+ X-Github-Request-Id:
122
+ - 5698E988:071B:465F3B0:5286B97C
123
+ body:
124
+ encoding: UTF-8
125
+ string: '[{"id":1596380,"name":"adhearsion","full_name":"asmega/adhearsion","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/adhearsion","description":"A
126
+ Ruby framework for building telephony applications","fork":true,"url":"https://api.github.com/repos/asmega/adhearsion","forks_url":"https://api.github.com/repos/asmega/adhearsion/forks","keys_url":"https://api.github.com/repos/asmega/adhearsion/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/adhearsion/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/adhearsion/teams","hooks_url":"https://api.github.com/repos/asmega/adhearsion/hooks","issue_events_url":"https://api.github.com/repos/asmega/adhearsion/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/adhearsion/events","assignees_url":"https://api.github.com/repos/asmega/adhearsion/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/adhearsion/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/adhearsion/tags","blobs_url":"https://api.github.com/repos/asmega/adhearsion/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/adhearsion/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/adhearsion/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/adhearsion/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/adhearsion/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/adhearsion/languages","stargazers_url":"https://api.github.com/repos/asmega/adhearsion/stargazers","contributors_url":"https://api.github.com/repos/asmega/adhearsion/contributors","subscribers_url":"https://api.github.com/repos/asmega/adhearsion/subscribers","subscription_url":"https://api.github.com/repos/asmega/adhearsion/subscription","commits_url":"https://api.github.com/repos/asmega/adhearsion/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/adhearsion/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/adhearsion/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/adhearsion/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/adhearsion/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/adhearsion/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/adhearsion/merges","archive_url":"https://api.github.com/repos/asmega/adhearsion/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/adhearsion/downloads","issues_url":"https://api.github.com/repos/asmega/adhearsion/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/adhearsion/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/adhearsion/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/adhearsion/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/adhearsion/labels{/name}","releases_url":"https://api.github.com/repos/asmega/adhearsion/releases{/id}","created_at":"2011-04-10T21:33:48Z","updated_at":"2013-01-01T20:47:53Z","pushed_at":"2011-04-10T01:32:57Z","git_url":"git://github.com/asmega/adhearsion.git","ssh_url":"git@github.com:asmega/adhearsion.git","clone_url":"https://github.com/asmega/adhearsion.git","svn_url":"https://github.com/asmega/adhearsion","homepage":"http://adhearsion.com","size":4004,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":3131560,"name":"amazon-ecs","full_name":"asmega/amazon-ecs","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/amazon-ecs","description":"Generic
127
+ Ruby Amazon Product Advertising API","fork":true,"url":"https://api.github.com/repos/asmega/amazon-ecs","forks_url":"https://api.github.com/repos/asmega/amazon-ecs/forks","keys_url":"https://api.github.com/repos/asmega/amazon-ecs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/amazon-ecs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/amazon-ecs/teams","hooks_url":"https://api.github.com/repos/asmega/amazon-ecs/hooks","issue_events_url":"https://api.github.com/repos/asmega/amazon-ecs/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/amazon-ecs/events","assignees_url":"https://api.github.com/repos/asmega/amazon-ecs/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/amazon-ecs/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/amazon-ecs/tags","blobs_url":"https://api.github.com/repos/asmega/amazon-ecs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/amazon-ecs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/amazon-ecs/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/amazon-ecs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/amazon-ecs/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/amazon-ecs/languages","stargazers_url":"https://api.github.com/repos/asmega/amazon-ecs/stargazers","contributors_url":"https://api.github.com/repos/asmega/amazon-ecs/contributors","subscribers_url":"https://api.github.com/repos/asmega/amazon-ecs/subscribers","subscription_url":"https://api.github.com/repos/asmega/amazon-ecs/subscription","commits_url":"https://api.github.com/repos/asmega/amazon-ecs/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/amazon-ecs/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/amazon-ecs/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/amazon-ecs/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/amazon-ecs/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/amazon-ecs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/amazon-ecs/merges","archive_url":"https://api.github.com/repos/asmega/amazon-ecs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/amazon-ecs/downloads","issues_url":"https://api.github.com/repos/asmega/amazon-ecs/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/amazon-ecs/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/amazon-ecs/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/amazon-ecs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/amazon-ecs/labels{/name}","releases_url":"https://api.github.com/repos/asmega/amazon-ecs/releases{/id}","created_at":"2012-01-08T19:32:41Z","updated_at":"2013-01-05T19:33:23Z","pushed_at":"2012-01-10T21:02:55Z","git_url":"git://github.com/asmega/amazon-ecs.git","ssh_url":"git@github.com:asmega/amazon-ecs.git","clone_url":"https://github.com/asmega/amazon-ecs.git","svn_url":"https://github.com/asmega/amazon-ecs","homepage":"http://www.pluitsolutions.com/projects/amazon-ecs","size":660,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":2449508,"name":"aws_deployment_slides","full_name":"asmega/aws_deployment_slides","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/aws_deployment_slides","description":"Slides
128
+ for example Rails deployment on AWS at Ruby North East","fork":false,"url":"https://api.github.com/repos/asmega/aws_deployment_slides","forks_url":"https://api.github.com/repos/asmega/aws_deployment_slides/forks","keys_url":"https://api.github.com/repos/asmega/aws_deployment_slides/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/aws_deployment_slides/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/aws_deployment_slides/teams","hooks_url":"https://api.github.com/repos/asmega/aws_deployment_slides/hooks","issue_events_url":"https://api.github.com/repos/asmega/aws_deployment_slides/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/aws_deployment_slides/events","assignees_url":"https://api.github.com/repos/asmega/aws_deployment_slides/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/aws_deployment_slides/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/aws_deployment_slides/tags","blobs_url":"https://api.github.com/repos/asmega/aws_deployment_slides/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/aws_deployment_slides/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/aws_deployment_slides/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/aws_deployment_slides/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/aws_deployment_slides/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/aws_deployment_slides/languages","stargazers_url":"https://api.github.com/repos/asmega/aws_deployment_slides/stargazers","contributors_url":"https://api.github.com/repos/asmega/aws_deployment_slides/contributors","subscribers_url":"https://api.github.com/repos/asmega/aws_deployment_slides/subscribers","subscription_url":"https://api.github.com/repos/asmega/aws_deployment_slides/subscription","commits_url":"https://api.github.com/repos/asmega/aws_deployment_slides/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/aws_deployment_slides/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/aws_deployment_slides/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/aws_deployment_slides/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/aws_deployment_slides/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/aws_deployment_slides/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/aws_deployment_slides/merges","archive_url":"https://api.github.com/repos/asmega/aws_deployment_slides/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/aws_deployment_slides/downloads","issues_url":"https://api.github.com/repos/asmega/aws_deployment_slides/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/aws_deployment_slides/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/aws_deployment_slides/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/aws_deployment_slides/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/aws_deployment_slides/labels{/name}","releases_url":"https://api.github.com/repos/asmega/aws_deployment_slides/releases{/id}","created_at":"2011-09-24T12:20:16Z","updated_at":"2013-10-01T16:23:24Z","pushed_at":"2011-09-25T21:06:43Z","git_url":"git://github.com/asmega/aws_deployment_slides.git","ssh_url":"git@github.com:asmega/aws_deployment_slides.git","clone_url":"https://github.com/asmega/aws_deployment_slides.git","svn_url":"https://github.com/asmega/aws_deployment_slides","homepage":"","size":120,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":2923901,"name":"backlog","full_name":"asmega/backlog","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/backlog","description":"Proof
129
+ of concept for managing software backlogs for use in agile environments","fork":false,"url":"https://api.github.com/repos/asmega/backlog","forks_url":"https://api.github.com/repos/asmega/backlog/forks","keys_url":"https://api.github.com/repos/asmega/backlog/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/backlog/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/backlog/teams","hooks_url":"https://api.github.com/repos/asmega/backlog/hooks","issue_events_url":"https://api.github.com/repos/asmega/backlog/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/backlog/events","assignees_url":"https://api.github.com/repos/asmega/backlog/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/backlog/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/backlog/tags","blobs_url":"https://api.github.com/repos/asmega/backlog/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/backlog/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/backlog/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/backlog/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/backlog/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/backlog/languages","stargazers_url":"https://api.github.com/repos/asmega/backlog/stargazers","contributors_url":"https://api.github.com/repos/asmega/backlog/contributors","subscribers_url":"https://api.github.com/repos/asmega/backlog/subscribers","subscription_url":"https://api.github.com/repos/asmega/backlog/subscription","commits_url":"https://api.github.com/repos/asmega/backlog/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/backlog/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/backlog/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/backlog/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/backlog/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/backlog/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/backlog/merges","archive_url":"https://api.github.com/repos/asmega/backlog/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/backlog/downloads","issues_url":"https://api.github.com/repos/asmega/backlog/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/backlog/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/backlog/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/backlog/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/backlog/labels{/name}","releases_url":"https://api.github.com/repos/asmega/backlog/releases{/id}","created_at":"2011-12-06T10:15:22Z","updated_at":"2013-01-04T19:45:15Z","pushed_at":"2011-12-06T10:18:41Z","git_url":"git://github.com/asmega/backlog.git","ssh_url":"git@github.com:asmega/backlog.git","clone_url":"https://github.com/asmega/backlog.git","svn_url":"https://github.com/asmega/backlog","homepage":"","size":368,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":8312323,"name":"bcdatabase","full_name":"asmega/bcdatabase","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/bcdatabase","description":"Server-central
130
+ database configuration for ruby (including rails) apps","fork":true,"url":"https://api.github.com/repos/asmega/bcdatabase","forks_url":"https://api.github.com/repos/asmega/bcdatabase/forks","keys_url":"https://api.github.com/repos/asmega/bcdatabase/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/bcdatabase/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/bcdatabase/teams","hooks_url":"https://api.github.com/repos/asmega/bcdatabase/hooks","issue_events_url":"https://api.github.com/repos/asmega/bcdatabase/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/bcdatabase/events","assignees_url":"https://api.github.com/repos/asmega/bcdatabase/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/bcdatabase/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/bcdatabase/tags","blobs_url":"https://api.github.com/repos/asmega/bcdatabase/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/bcdatabase/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/bcdatabase/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/bcdatabase/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/bcdatabase/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/bcdatabase/languages","stargazers_url":"https://api.github.com/repos/asmega/bcdatabase/stargazers","contributors_url":"https://api.github.com/repos/asmega/bcdatabase/contributors","subscribers_url":"https://api.github.com/repos/asmega/bcdatabase/subscribers","subscription_url":"https://api.github.com/repos/asmega/bcdatabase/subscription","commits_url":"https://api.github.com/repos/asmega/bcdatabase/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/bcdatabase/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/bcdatabase/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/bcdatabase/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/bcdatabase/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/bcdatabase/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/bcdatabase/merges","archive_url":"https://api.github.com/repos/asmega/bcdatabase/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/bcdatabase/downloads","issues_url":"https://api.github.com/repos/asmega/bcdatabase/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/bcdatabase/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/bcdatabase/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/bcdatabase/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/bcdatabase/labels{/name}","releases_url":"https://api.github.com/repos/asmega/bcdatabase/releases{/id}","created_at":"2013-02-20T12:02:53Z","updated_at":"2013-09-05T15:18:54Z","pushed_at":"2013-02-21T11:42:45Z","git_url":"git://github.com/asmega/bcdatabase.git","ssh_url":"git@github.com:asmega/bcdatabase.git","clone_url":"https://github.com/asmega/bcdatabase.git","svn_url":"https://github.com/asmega/bcdatabase","homepage":"","size":140,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":false,"has_wiki":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":11792493,"name":"bob","full_name":"asmega/bob","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/bob","description":"exercism","fork":false,"url":"https://api.github.com/repos/asmega/bob","forks_url":"https://api.github.com/repos/asmega/bob/forks","keys_url":"https://api.github.com/repos/asmega/bob/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/bob/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/bob/teams","hooks_url":"https://api.github.com/repos/asmega/bob/hooks","issue_events_url":"https://api.github.com/repos/asmega/bob/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/bob/events","assignees_url":"https://api.github.com/repos/asmega/bob/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/bob/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/bob/tags","blobs_url":"https://api.github.com/repos/asmega/bob/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/bob/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/bob/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/bob/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/bob/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/bob/languages","stargazers_url":"https://api.github.com/repos/asmega/bob/stargazers","contributors_url":"https://api.github.com/repos/asmega/bob/contributors","subscribers_url":"https://api.github.com/repos/asmega/bob/subscribers","subscription_url":"https://api.github.com/repos/asmega/bob/subscription","commits_url":"https://api.github.com/repos/asmega/bob/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/bob/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/bob/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/bob/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/bob/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/bob/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/bob/merges","archive_url":"https://api.github.com/repos/asmega/bob/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/bob/downloads","issues_url":"https://api.github.com/repos/asmega/bob/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/bob/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/bob/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/bob/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/bob/labels{/name}","releases_url":"https://api.github.com/repos/asmega/bob/releases{/id}","created_at":"2013-07-31T14:16:11Z","updated_at":"2013-08-20T18:39:55Z","pushed_at":"2013-08-20T18:39:51Z","git_url":"git://github.com/asmega/bob.git","ssh_url":"git@github.com:asmega/bob.git","clone_url":"https://github.com/asmega/bob.git","svn_url":"https://github.com/asmega/bob","homepage":null,"size":52,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":2405674,"name":"bootstrap","full_name":"asmega/bootstrap","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/bootstrap","description":"CSS
131
+ toolkit from Twitter","fork":true,"url":"https://api.github.com/repos/asmega/bootstrap","forks_url":"https://api.github.com/repos/asmega/bootstrap/forks","keys_url":"https://api.github.com/repos/asmega/bootstrap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/bootstrap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/bootstrap/teams","hooks_url":"https://api.github.com/repos/asmega/bootstrap/hooks","issue_events_url":"https://api.github.com/repos/asmega/bootstrap/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/bootstrap/events","assignees_url":"https://api.github.com/repos/asmega/bootstrap/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/bootstrap/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/bootstrap/tags","blobs_url":"https://api.github.com/repos/asmega/bootstrap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/bootstrap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/bootstrap/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/bootstrap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/bootstrap/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/bootstrap/languages","stargazers_url":"https://api.github.com/repos/asmega/bootstrap/stargazers","contributors_url":"https://api.github.com/repos/asmega/bootstrap/contributors","subscribers_url":"https://api.github.com/repos/asmega/bootstrap/subscribers","subscription_url":"https://api.github.com/repos/asmega/bootstrap/subscription","commits_url":"https://api.github.com/repos/asmega/bootstrap/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/bootstrap/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/bootstrap/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/bootstrap/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/bootstrap/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/bootstrap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/bootstrap/merges","archive_url":"https://api.github.com/repos/asmega/bootstrap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/bootstrap/downloads","issues_url":"https://api.github.com/repos/asmega/bootstrap/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/bootstrap/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/bootstrap/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/bootstrap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/bootstrap/labels{/name}","releases_url":"https://api.github.com/repos/asmega/bootstrap/releases{/id}","created_at":"2011-09-17T16:47:49Z","updated_at":"2013-01-04T06:22:19Z","pushed_at":"2011-09-18T15:11:57Z","git_url":"git://github.com/asmega/bootstrap.git","ssh_url":"git@github.com:asmega/bootstrap.git","clone_url":"https://github.com/asmega/bootstrap.git","svn_url":"https://github.com/asmega/bootstrap","homepage":"http://twitter.github.com/bootstrap","size":108,"stargazers_count":1,"watchers_count":1,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":10524395,"name":"canonix","full_name":"asmega/canonix","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/canonix","description":"An
132
+ XML Canonicaliser to replace the abandoned ones.","fork":true,"url":"https://api.github.com/repos/asmega/canonix","forks_url":"https://api.github.com/repos/asmega/canonix/forks","keys_url":"https://api.github.com/repos/asmega/canonix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/canonix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/canonix/teams","hooks_url":"https://api.github.com/repos/asmega/canonix/hooks","issue_events_url":"https://api.github.com/repos/asmega/canonix/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/canonix/events","assignees_url":"https://api.github.com/repos/asmega/canonix/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/canonix/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/canonix/tags","blobs_url":"https://api.github.com/repos/asmega/canonix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/canonix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/canonix/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/canonix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/canonix/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/canonix/languages","stargazers_url":"https://api.github.com/repos/asmega/canonix/stargazers","contributors_url":"https://api.github.com/repos/asmega/canonix/contributors","subscribers_url":"https://api.github.com/repos/asmega/canonix/subscribers","subscription_url":"https://api.github.com/repos/asmega/canonix/subscription","commits_url":"https://api.github.com/repos/asmega/canonix/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/canonix/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/canonix/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/canonix/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/canonix/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/canonix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/canonix/merges","archive_url":"https://api.github.com/repos/asmega/canonix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/canonix/downloads","issues_url":"https://api.github.com/repos/asmega/canonix/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/canonix/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/canonix/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/canonix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/canonix/labels{/name}","releases_url":"https://api.github.com/repos/asmega/canonix/releases{/id}","created_at":"2013-06-06T10:49:21Z","updated_at":"2013-09-05T15:18:34Z","pushed_at":"2013-06-06T13:04:57Z","git_url":"git://github.com/asmega/canonix.git","ssh_url":"git@github.com:asmega/canonix.git","clone_url":"https://github.com/asmega/canonix.git","svn_url":"https://github.com/asmega/canonix","homepage":"","size":140,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":12865121,"name":"capybara","full_name":"asmega/capybara","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/capybara","description":"Acceptance
133
+ test framework for web applications","fork":true,"url":"https://api.github.com/repos/asmega/capybara","forks_url":"https://api.github.com/repos/asmega/capybara/forks","keys_url":"https://api.github.com/repos/asmega/capybara/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/capybara/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/capybara/teams","hooks_url":"https://api.github.com/repos/asmega/capybara/hooks","issue_events_url":"https://api.github.com/repos/asmega/capybara/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/capybara/events","assignees_url":"https://api.github.com/repos/asmega/capybara/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/capybara/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/capybara/tags","blobs_url":"https://api.github.com/repos/asmega/capybara/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/capybara/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/capybara/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/capybara/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/capybara/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/capybara/languages","stargazers_url":"https://api.github.com/repos/asmega/capybara/stargazers","contributors_url":"https://api.github.com/repos/asmega/capybara/contributors","subscribers_url":"https://api.github.com/repos/asmega/capybara/subscribers","subscription_url":"https://api.github.com/repos/asmega/capybara/subscription","commits_url":"https://api.github.com/repos/asmega/capybara/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/capybara/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/capybara/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/capybara/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/capybara/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/capybara/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/capybara/merges","archive_url":"https://api.github.com/repos/asmega/capybara/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/capybara/downloads","issues_url":"https://api.github.com/repos/asmega/capybara/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/capybara/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/capybara/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/capybara/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/capybara/labels{/name}","releases_url":"https://api.github.com/repos/asmega/capybara/releases{/id}","created_at":"2013-09-16T10:59:06Z","updated_at":"2013-09-19T21:23:10Z","pushed_at":"2013-09-16T11:19:35Z","git_url":"git://github.com/asmega/capybara.git","ssh_url":"git@github.com:asmega/capybara.git","clone_url":"https://github.com/asmega/capybara.git","svn_url":"https://github.com/asmega/capybara","homepage":"http://jnicklas.github.com/capybara/","size":8320,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":false,"has_wiki":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":3242832,"name":"do","full_name":"asmega/do","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/do","description":"DO
134
+ - IT! is a thin framework useful to manage remote servers through ssh.","fork":true,"url":"https://api.github.com/repos/asmega/do","forks_url":"https://api.github.com/repos/asmega/do/forks","keys_url":"https://api.github.com/repos/asmega/do/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/do/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/do/teams","hooks_url":"https://api.github.com/repos/asmega/do/hooks","issue_events_url":"https://api.github.com/repos/asmega/do/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/do/events","assignees_url":"https://api.github.com/repos/asmega/do/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/do/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/do/tags","blobs_url":"https://api.github.com/repos/asmega/do/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/do/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/do/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/do/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/do/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/do/languages","stargazers_url":"https://api.github.com/repos/asmega/do/stargazers","contributors_url":"https://api.github.com/repos/asmega/do/contributors","subscribers_url":"https://api.github.com/repos/asmega/do/subscribers","subscription_url":"https://api.github.com/repos/asmega/do/subscription","commits_url":"https://api.github.com/repos/asmega/do/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/do/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/do/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/do/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/do/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/do/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/do/merges","archive_url":"https://api.github.com/repos/asmega/do/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/do/downloads","issues_url":"https://api.github.com/repos/asmega/do/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/do/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/do/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/do/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/do/labels{/name}","releases_url":"https://api.github.com/repos/asmega/do/releases{/id}","created_at":"2012-01-22T23:19:00Z","updated_at":"2013-01-06T03:25:40Z","pushed_at":"2012-01-22T23:22:45Z","git_url":"git://github.com/asmega/do.git","ssh_url":"git@github.com:asmega/do.git","clone_url":"https://github.com/asmega/do.git","svn_url":"https://github.com/asmega/do","homepage":"https://github.com/DAddYE/do","size":108,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":1715021,"name":"dotfiles","full_name":"asmega/dotfiles","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/dotfiles","description":"","fork":false,"url":"https://api.github.com/repos/asmega/dotfiles","forks_url":"https://api.github.com/repos/asmega/dotfiles/forks","keys_url":"https://api.github.com/repos/asmega/dotfiles/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/dotfiles/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/dotfiles/teams","hooks_url":"https://api.github.com/repos/asmega/dotfiles/hooks","issue_events_url":"https://api.github.com/repos/asmega/dotfiles/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/dotfiles/events","assignees_url":"https://api.github.com/repos/asmega/dotfiles/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/dotfiles/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/dotfiles/tags","blobs_url":"https://api.github.com/repos/asmega/dotfiles/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/dotfiles/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/dotfiles/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/dotfiles/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/dotfiles/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/dotfiles/languages","stargazers_url":"https://api.github.com/repos/asmega/dotfiles/stargazers","contributors_url":"https://api.github.com/repos/asmega/dotfiles/contributors","subscribers_url":"https://api.github.com/repos/asmega/dotfiles/subscribers","subscription_url":"https://api.github.com/repos/asmega/dotfiles/subscription","commits_url":"https://api.github.com/repos/asmega/dotfiles/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/dotfiles/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/dotfiles/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/dotfiles/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/dotfiles/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/dotfiles/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/dotfiles/merges","archive_url":"https://api.github.com/repos/asmega/dotfiles/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/dotfiles/downloads","issues_url":"https://api.github.com/repos/asmega/dotfiles/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/dotfiles/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/dotfiles/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/dotfiles/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/dotfiles/labels{/name}","releases_url":"https://api.github.com/repos/asmega/dotfiles/releases{/id}","created_at":"2011-05-07T10:33:27Z","updated_at":"2013-11-03T11:24:01Z","pushed_at":"2013-11-03T11:23:59Z","git_url":"git://github.com/asmega/dotfiles.git","ssh_url":"git@github.com:asmega/dotfiles.git","clone_url":"https://github.com/asmega/dotfiles.git","svn_url":"https://github.com/asmega/dotfiles","homepage":"","size":592,"stargazers_count":2,"watchers_count":2,"language":"VimL","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":2,"default_branch":"master","master_branch":"master"},{"id":4942066,"name":"evolution","full_name":"asmega/evolution","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/evolution","description":"See
135
+ how regularly files are modified using Git. Inspired by Churn.","fork":false,"url":"https://api.github.com/repos/asmega/evolution","forks_url":"https://api.github.com/repos/asmega/evolution/forks","keys_url":"https://api.github.com/repos/asmega/evolution/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/evolution/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/evolution/teams","hooks_url":"https://api.github.com/repos/asmega/evolution/hooks","issue_events_url":"https://api.github.com/repos/asmega/evolution/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/evolution/events","assignees_url":"https://api.github.com/repos/asmega/evolution/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/evolution/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/evolution/tags","blobs_url":"https://api.github.com/repos/asmega/evolution/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/evolution/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/evolution/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/evolution/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/evolution/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/evolution/languages","stargazers_url":"https://api.github.com/repos/asmega/evolution/stargazers","contributors_url":"https://api.github.com/repos/asmega/evolution/contributors","subscribers_url":"https://api.github.com/repos/asmega/evolution/subscribers","subscription_url":"https://api.github.com/repos/asmega/evolution/subscription","commits_url":"https://api.github.com/repos/asmega/evolution/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/evolution/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/evolution/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/evolution/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/evolution/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/evolution/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/evolution/merges","archive_url":"https://api.github.com/repos/asmega/evolution/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/evolution/downloads","issues_url":"https://api.github.com/repos/asmega/evolution/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/evolution/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/evolution/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/evolution/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/evolution/labels{/name}","releases_url":"https://api.github.com/repos/asmega/evolution/releases{/id}","created_at":"2012-07-07T23:05:10Z","updated_at":"2013-09-21T00:37:50Z","pushed_at":"2012-07-07T23:05:44Z","git_url":"git://github.com/asmega/evolution.git","ssh_url":"git@github.com:asmega/evolution.git","clone_url":"https://github.com/asmega/evolution.git","svn_url":"https://github.com/asmega/evolution","homepage":null,"size":104,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":4563162,"name":"flay","full_name":"asmega/flay","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/flay","description":null,"fork":true,"url":"https://api.github.com/repos/asmega/flay","forks_url":"https://api.github.com/repos/asmega/flay/forks","keys_url":"https://api.github.com/repos/asmega/flay/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/flay/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/flay/teams","hooks_url":"https://api.github.com/repos/asmega/flay/hooks","issue_events_url":"https://api.github.com/repos/asmega/flay/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/flay/events","assignees_url":"https://api.github.com/repos/asmega/flay/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/flay/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/flay/tags","blobs_url":"https://api.github.com/repos/asmega/flay/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/flay/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/flay/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/flay/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/flay/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/flay/languages","stargazers_url":"https://api.github.com/repos/asmega/flay/stargazers","contributors_url":"https://api.github.com/repos/asmega/flay/contributors","subscribers_url":"https://api.github.com/repos/asmega/flay/subscribers","subscription_url":"https://api.github.com/repos/asmega/flay/subscription","commits_url":"https://api.github.com/repos/asmega/flay/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/flay/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/flay/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/flay/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/flay/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/flay/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/flay/merges","archive_url":"https://api.github.com/repos/asmega/flay/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/flay/downloads","issues_url":"https://api.github.com/repos/asmega/flay/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/flay/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/flay/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/flay/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/flay/labels{/name}","releases_url":"https://api.github.com/repos/asmega/flay/releases{/id}","created_at":"2012-06-05T17:33:20Z","updated_at":"2013-01-09T12:55:14Z","pushed_at":"2012-06-07T18:37:31Z","git_url":"git://github.com/asmega/flay.git","ssh_url":"git@github.com:asmega/flay.git","clone_url":"https://github.com/asmega/flay.git","svn_url":"https://github.com/asmega/flay","homepage":null,"size":116,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":9445061,"name":"fudge","full_name":"asmega/fudge","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/fudge","description":"A
136
+ tool for enforcing code coverage and documentation in continuous integration.","fork":true,"url":"https://api.github.com/repos/asmega/fudge","forks_url":"https://api.github.com/repos/asmega/fudge/forks","keys_url":"https://api.github.com/repos/asmega/fudge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/fudge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/fudge/teams","hooks_url":"https://api.github.com/repos/asmega/fudge/hooks","issue_events_url":"https://api.github.com/repos/asmega/fudge/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/fudge/events","assignees_url":"https://api.github.com/repos/asmega/fudge/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/fudge/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/fudge/tags","blobs_url":"https://api.github.com/repos/asmega/fudge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/fudge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/fudge/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/fudge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/fudge/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/fudge/languages","stargazers_url":"https://api.github.com/repos/asmega/fudge/stargazers","contributors_url":"https://api.github.com/repos/asmega/fudge/contributors","subscribers_url":"https://api.github.com/repos/asmega/fudge/subscribers","subscription_url":"https://api.github.com/repos/asmega/fudge/subscription","commits_url":"https://api.github.com/repos/asmega/fudge/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/fudge/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/fudge/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/fudge/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/fudge/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/fudge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/fudge/merges","archive_url":"https://api.github.com/repos/asmega/fudge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/fudge/downloads","issues_url":"https://api.github.com/repos/asmega/fudge/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/fudge/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/fudge/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/fudge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/fudge/labels{/name}","releases_url":"https://api.github.com/repos/asmega/fudge/releases{/id}","created_at":"2013-04-15T09:23:00Z","updated_at":"2013-06-18T10:20:22Z","pushed_at":"2013-06-18T10:20:22Z","git_url":"git://github.com/asmega/fudge.git","ssh_url":"git@github.com:asmega/fudge.git","clone_url":"https://github.com/asmega/fudge.git","svn_url":"https://github.com/asmega/fudge","homepage":"","size":180,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":5427863,"name":"grape_doc","full_name":"asmega/grape_doc","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/grape_doc","description":"","fork":true,"url":"https://api.github.com/repos/asmega/grape_doc","forks_url":"https://api.github.com/repos/asmega/grape_doc/forks","keys_url":"https://api.github.com/repos/asmega/grape_doc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/grape_doc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/grape_doc/teams","hooks_url":"https://api.github.com/repos/asmega/grape_doc/hooks","issue_events_url":"https://api.github.com/repos/asmega/grape_doc/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/grape_doc/events","assignees_url":"https://api.github.com/repos/asmega/grape_doc/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/grape_doc/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/grape_doc/tags","blobs_url":"https://api.github.com/repos/asmega/grape_doc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/grape_doc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/grape_doc/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/grape_doc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/grape_doc/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/grape_doc/languages","stargazers_url":"https://api.github.com/repos/asmega/grape_doc/stargazers","contributors_url":"https://api.github.com/repos/asmega/grape_doc/contributors","subscribers_url":"https://api.github.com/repos/asmega/grape_doc/subscribers","subscription_url":"https://api.github.com/repos/asmega/grape_doc/subscription","commits_url":"https://api.github.com/repos/asmega/grape_doc/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/grape_doc/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/grape_doc/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/grape_doc/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/grape_doc/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/grape_doc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/grape_doc/merges","archive_url":"https://api.github.com/repos/asmega/grape_doc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/grape_doc/downloads","issues_url":"https://api.github.com/repos/asmega/grape_doc/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/grape_doc/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/grape_doc/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/grape_doc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/grape_doc/labels{/name}","releases_url":"https://api.github.com/repos/asmega/grape_doc/releases{/id}","created_at":"2012-08-15T15:37:52Z","updated_at":"2013-01-11T19:11:23Z","pushed_at":"2012-08-15T07:27:17Z","git_url":"git://github.com/asmega/grape_doc.git","ssh_url":"git@github.com:asmega/grape_doc.git","clone_url":"https://github.com/asmega/grape_doc.git","svn_url":"https://github.com/asmega/grape_doc","homepage":null,"size":88,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":4239496,"name":"grit","full_name":"asmega/grit","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/grit","description":"Grit
137
+ gives you object oriented read/write access to Git repositories via Ruby.","fork":true,"url":"https://api.github.com/repos/asmega/grit","forks_url":"https://api.github.com/repos/asmega/grit/forks","keys_url":"https://api.github.com/repos/asmega/grit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/grit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/grit/teams","hooks_url":"https://api.github.com/repos/asmega/grit/hooks","issue_events_url":"https://api.github.com/repos/asmega/grit/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/grit/events","assignees_url":"https://api.github.com/repos/asmega/grit/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/grit/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/grit/tags","blobs_url":"https://api.github.com/repos/asmega/grit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/grit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/grit/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/grit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/grit/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/grit/languages","stargazers_url":"https://api.github.com/repos/asmega/grit/stargazers","contributors_url":"https://api.github.com/repos/asmega/grit/contributors","subscribers_url":"https://api.github.com/repos/asmega/grit/subscribers","subscription_url":"https://api.github.com/repos/asmega/grit/subscription","commits_url":"https://api.github.com/repos/asmega/grit/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/grit/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/grit/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/grit/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/grit/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/grit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/grit/merges","archive_url":"https://api.github.com/repos/asmega/grit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/grit/downloads","issues_url":"https://api.github.com/repos/asmega/grit/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/grit/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/grit/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/grit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/grit/labels{/name}","releases_url":"https://api.github.com/repos/asmega/grit/releases{/id}","created_at":"2012-05-06T09:00:40Z","updated_at":"2013-01-09T01:44:58Z","pushed_at":"2012-05-06T16:10:56Z","git_url":"git://github.com/asmega/grit.git","ssh_url":"git@github.com:asmega/grit.git","clone_url":"https://github.com/asmega/grit.git","svn_url":"https://github.com/asmega/grit","homepage":"http://grit.rubyforge.org/","size":116,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":2654251,"name":"holla","full_name":"asmega/holla","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/holla","description":"Holla!
138
+ - Rich JavaScript Application","fork":true,"url":"https://api.github.com/repos/asmega/holla","forks_url":"https://api.github.com/repos/asmega/holla/forks","keys_url":"https://api.github.com/repos/asmega/holla/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/holla/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/holla/teams","hooks_url":"https://api.github.com/repos/asmega/holla/hooks","issue_events_url":"https://api.github.com/repos/asmega/holla/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/holla/events","assignees_url":"https://api.github.com/repos/asmega/holla/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/holla/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/holla/tags","blobs_url":"https://api.github.com/repos/asmega/holla/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/holla/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/holla/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/holla/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/holla/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/holla/languages","stargazers_url":"https://api.github.com/repos/asmega/holla/stargazers","contributors_url":"https://api.github.com/repos/asmega/holla/contributors","subscribers_url":"https://api.github.com/repos/asmega/holla/subscribers","subscription_url":"https://api.github.com/repos/asmega/holla/subscription","commits_url":"https://api.github.com/repos/asmega/holla/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/holla/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/holla/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/holla/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/holla/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/holla/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/holla/merges","archive_url":"https://api.github.com/repos/asmega/holla/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/holla/downloads","issues_url":"https://api.github.com/repos/asmega/holla/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/holla/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/holla/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/holla/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/holla/labels{/name}","releases_url":"https://api.github.com/repos/asmega/holla/releases{/id}","created_at":"2011-10-26T21:54:52Z","updated_at":"2013-01-04T12:37:34Z","pushed_at":"2011-07-22T19:54:48Z","git_url":"git://github.com/asmega/holla.git","ssh_url":"git@github.com:asmega/holla.git","clone_url":"https://github.com/asmega/holla.git","svn_url":"https://github.com/asmega/holla","homepage":"","size":96,"stargazers_count":1,"watchers_count":1,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":7018627,"name":"i18n-js","full_name":"asmega/i18n-js","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/i18n-js","description":"It''s
139
+ a small library to provide the I18n translations on the Javascript. It comes
140
+ with Rails support.","fork":true,"url":"https://api.github.com/repos/asmega/i18n-js","forks_url":"https://api.github.com/repos/asmega/i18n-js/forks","keys_url":"https://api.github.com/repos/asmega/i18n-js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/i18n-js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/i18n-js/teams","hooks_url":"https://api.github.com/repos/asmega/i18n-js/hooks","issue_events_url":"https://api.github.com/repos/asmega/i18n-js/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/i18n-js/events","assignees_url":"https://api.github.com/repos/asmega/i18n-js/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/i18n-js/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/i18n-js/tags","blobs_url":"https://api.github.com/repos/asmega/i18n-js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/i18n-js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/i18n-js/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/i18n-js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/i18n-js/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/i18n-js/languages","stargazers_url":"https://api.github.com/repos/asmega/i18n-js/stargazers","contributors_url":"https://api.github.com/repos/asmega/i18n-js/contributors","subscribers_url":"https://api.github.com/repos/asmega/i18n-js/subscribers","subscription_url":"https://api.github.com/repos/asmega/i18n-js/subscription","commits_url":"https://api.github.com/repos/asmega/i18n-js/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/i18n-js/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/i18n-js/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/i18n-js/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/i18n-js/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/i18n-js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/i18n-js/merges","archive_url":"https://api.github.com/repos/asmega/i18n-js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/i18n-js/downloads","issues_url":"https://api.github.com/repos/asmega/i18n-js/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/i18n-js/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/i18n-js/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/i18n-js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/i18n-js/labels{/name}","releases_url":"https://api.github.com/repos/asmega/i18n-js/releases{/id}","created_at":"2012-12-05T14:20:06Z","updated_at":"2013-05-13T07:41:33Z","pushed_at":"2012-12-05T14:25:53Z","git_url":"git://github.com/asmega/i18n-js.git","ssh_url":"git@github.com:asmega/i18n-js.git","clone_url":"https://github.com/asmega/i18n-js.git","svn_url":"https://github.com/asmega/i18n-js","homepage":"","size":116,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":5133611,"name":"logput","full_name":"asmega/logput","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/logput","description":"Rack
141
+ middleware to output rails logs to a webpage","fork":false,"url":"https://api.github.com/repos/asmega/logput","forks_url":"https://api.github.com/repos/asmega/logput/forks","keys_url":"https://api.github.com/repos/asmega/logput/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/logput/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/logput/teams","hooks_url":"https://api.github.com/repos/asmega/logput/hooks","issue_events_url":"https://api.github.com/repos/asmega/logput/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/logput/events","assignees_url":"https://api.github.com/repos/asmega/logput/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/logput/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/logput/tags","blobs_url":"https://api.github.com/repos/asmega/logput/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/logput/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/logput/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/logput/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/logput/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/logput/languages","stargazers_url":"https://api.github.com/repos/asmega/logput/stargazers","contributors_url":"https://api.github.com/repos/asmega/logput/contributors","subscribers_url":"https://api.github.com/repos/asmega/logput/subscribers","subscription_url":"https://api.github.com/repos/asmega/logput/subscription","commits_url":"https://api.github.com/repos/asmega/logput/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/logput/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/logput/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/logput/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/logput/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/logput/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/logput/merges","archive_url":"https://api.github.com/repos/asmega/logput/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/logput/downloads","issues_url":"https://api.github.com/repos/asmega/logput/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/logput/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/logput/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/logput/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/logput/labels{/name}","releases_url":"https://api.github.com/repos/asmega/logput/releases{/id}","created_at":"2012-07-21T12:52:54Z","updated_at":"2013-10-07T18:59:16Z","pushed_at":"2012-07-21T22:06:20Z","git_url":"git://github.com/asmega/logput.git","ssh_url":"git@github.com:asmega/logput.git","clone_url":"https://github.com/asmega/logput.git","svn_url":"https://github.com/asmega/logput","homepage":null,"size":140,"stargazers_count":2,"watchers_count":2,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":2,"default_branch":"master","master_branch":"master"},{"id":613643,"name":"nagios-check-redis","full_name":"asmega/nagios-check-redis","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/nagios-check-redis","description":"Nagios
142
+ check_redis in Ruby","fork":true,"url":"https://api.github.com/repos/asmega/nagios-check-redis","forks_url":"https://api.github.com/repos/asmega/nagios-check-redis/forks","keys_url":"https://api.github.com/repos/asmega/nagios-check-redis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/nagios-check-redis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/nagios-check-redis/teams","hooks_url":"https://api.github.com/repos/asmega/nagios-check-redis/hooks","issue_events_url":"https://api.github.com/repos/asmega/nagios-check-redis/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/nagios-check-redis/events","assignees_url":"https://api.github.com/repos/asmega/nagios-check-redis/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/nagios-check-redis/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/nagios-check-redis/tags","blobs_url":"https://api.github.com/repos/asmega/nagios-check-redis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/nagios-check-redis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/nagios-check-redis/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/nagios-check-redis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/nagios-check-redis/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/nagios-check-redis/languages","stargazers_url":"https://api.github.com/repos/asmega/nagios-check-redis/stargazers","contributors_url":"https://api.github.com/repos/asmega/nagios-check-redis/contributors","subscribers_url":"https://api.github.com/repos/asmega/nagios-check-redis/subscribers","subscription_url":"https://api.github.com/repos/asmega/nagios-check-redis/subscription","commits_url":"https://api.github.com/repos/asmega/nagios-check-redis/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/nagios-check-redis/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/nagios-check-redis/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/nagios-check-redis/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/nagios-check-redis/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/nagios-check-redis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/nagios-check-redis/merges","archive_url":"https://api.github.com/repos/asmega/nagios-check-redis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/nagios-check-redis/downloads","issues_url":"https://api.github.com/repos/asmega/nagios-check-redis/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/nagios-check-redis/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/nagios-check-redis/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/nagios-check-redis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/nagios-check-redis/labels{/name}","releases_url":"https://api.github.com/repos/asmega/nagios-check-redis/releases{/id}","created_at":"2010-04-16T14:04:29Z","updated_at":"2012-12-14T04:00:11Z","pushed_at":"2010-04-16T14:06:57Z","git_url":"git://github.com/asmega/nagios-check-redis.git","ssh_url":"git@github.com:asmega/nagios-check-redis.git","clone_url":"https://github.com/asmega/nagios-check-redis.git","svn_url":"https://github.com/asmega/nagios-check-redis","homepage":"","size":112,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":2199636,"name":"parallel_tests","full_name":"asmega/parallel_tests","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/parallel_tests","description":"Rails:
143
+ 2 CPUs = 2x Testing Speed for RSpec, Test::Unit and Cucumber","fork":true,"url":"https://api.github.com/repos/asmega/parallel_tests","forks_url":"https://api.github.com/repos/asmega/parallel_tests/forks","keys_url":"https://api.github.com/repos/asmega/parallel_tests/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/parallel_tests/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/parallel_tests/teams","hooks_url":"https://api.github.com/repos/asmega/parallel_tests/hooks","issue_events_url":"https://api.github.com/repos/asmega/parallel_tests/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/parallel_tests/events","assignees_url":"https://api.github.com/repos/asmega/parallel_tests/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/parallel_tests/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/parallel_tests/tags","blobs_url":"https://api.github.com/repos/asmega/parallel_tests/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/parallel_tests/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/parallel_tests/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/parallel_tests/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/parallel_tests/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/parallel_tests/languages","stargazers_url":"https://api.github.com/repos/asmega/parallel_tests/stargazers","contributors_url":"https://api.github.com/repos/asmega/parallel_tests/contributors","subscribers_url":"https://api.github.com/repos/asmega/parallel_tests/subscribers","subscription_url":"https://api.github.com/repos/asmega/parallel_tests/subscription","commits_url":"https://api.github.com/repos/asmega/parallel_tests/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/parallel_tests/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/parallel_tests/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/parallel_tests/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/parallel_tests/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/parallel_tests/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/parallel_tests/merges","archive_url":"https://api.github.com/repos/asmega/parallel_tests/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/parallel_tests/downloads","issues_url":"https://api.github.com/repos/asmega/parallel_tests/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/parallel_tests/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/parallel_tests/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/parallel_tests/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/parallel_tests/labels{/name}","releases_url":"https://api.github.com/repos/asmega/parallel_tests/releases{/id}","created_at":"2011-08-12T23:03:46Z","updated_at":"2013-01-04T01:22:46Z","pushed_at":"2011-08-14T00:11:10Z","git_url":"git://github.com/asmega/parallel_tests.git","ssh_url":"git@github.com:asmega/parallel_tests.git","clone_url":"https://github.com/asmega/parallel_tests.git","svn_url":"https://github.com/asmega/parallel_tests","homepage":"","size":120,"stargazers_count":2,"watchers_count":2,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":2,"default_branch":"master","master_branch":"master"},{"id":439714,"name":"pingzor","full_name":"asmega/pingzor","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/pingzor","description":"Ping
144
+ and scrape websites. Then send emails when its down.","fork":false,"url":"https://api.github.com/repos/asmega/pingzor","forks_url":"https://api.github.com/repos/asmega/pingzor/forks","keys_url":"https://api.github.com/repos/asmega/pingzor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/pingzor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/pingzor/teams","hooks_url":"https://api.github.com/repos/asmega/pingzor/hooks","issue_events_url":"https://api.github.com/repos/asmega/pingzor/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/pingzor/events","assignees_url":"https://api.github.com/repos/asmega/pingzor/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/pingzor/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/pingzor/tags","blobs_url":"https://api.github.com/repos/asmega/pingzor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/pingzor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/pingzor/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/pingzor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/pingzor/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/pingzor/languages","stargazers_url":"https://api.github.com/repos/asmega/pingzor/stargazers","contributors_url":"https://api.github.com/repos/asmega/pingzor/contributors","subscribers_url":"https://api.github.com/repos/asmega/pingzor/subscribers","subscription_url":"https://api.github.com/repos/asmega/pingzor/subscription","commits_url":"https://api.github.com/repos/asmega/pingzor/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/pingzor/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/pingzor/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/pingzor/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/pingzor/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/pingzor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/pingzor/merges","archive_url":"https://api.github.com/repos/asmega/pingzor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/pingzor/downloads","issues_url":"https://api.github.com/repos/asmega/pingzor/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/pingzor/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/pingzor/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/pingzor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/pingzor/labels{/name}","releases_url":"https://api.github.com/repos/asmega/pingzor/releases{/id}","created_at":"2009-12-16T20:49:06Z","updated_at":"2013-08-13T16:22:53Z","pushed_at":"2010-01-19T21:42:24Z","git_url":"git://github.com/asmega/pingzor.git","ssh_url":"git@github.com:asmega/pingzor.git","clone_url":"https://github.com/asmega/pingzor.git","svn_url":"https://github.com/asmega/pingzor","homepage":"http://www.pingzor.com","size":1144,"stargazers_count":3,"watchers_count":3,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":3,"default_branch":"master","master_branch":"master"},{"id":2356696,"name":"postbin_scraper","full_name":"asmega/postbin_scraper","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/postbin_scraper","description":"scrape
145
+ postbin and push somewhere else","fork":false,"url":"https://api.github.com/repos/asmega/postbin_scraper","forks_url":"https://api.github.com/repos/asmega/postbin_scraper/forks","keys_url":"https://api.github.com/repos/asmega/postbin_scraper/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/postbin_scraper/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/postbin_scraper/teams","hooks_url":"https://api.github.com/repos/asmega/postbin_scraper/hooks","issue_events_url":"https://api.github.com/repos/asmega/postbin_scraper/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/postbin_scraper/events","assignees_url":"https://api.github.com/repos/asmega/postbin_scraper/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/postbin_scraper/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/postbin_scraper/tags","blobs_url":"https://api.github.com/repos/asmega/postbin_scraper/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/postbin_scraper/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/postbin_scraper/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/postbin_scraper/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/postbin_scraper/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/postbin_scraper/languages","stargazers_url":"https://api.github.com/repos/asmega/postbin_scraper/stargazers","contributors_url":"https://api.github.com/repos/asmega/postbin_scraper/contributors","subscribers_url":"https://api.github.com/repos/asmega/postbin_scraper/subscribers","subscription_url":"https://api.github.com/repos/asmega/postbin_scraper/subscription","commits_url":"https://api.github.com/repos/asmega/postbin_scraper/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/postbin_scraper/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/postbin_scraper/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/postbin_scraper/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/postbin_scraper/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/postbin_scraper/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/postbin_scraper/merges","archive_url":"https://api.github.com/repos/asmega/postbin_scraper/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/postbin_scraper/downloads","issues_url":"https://api.github.com/repos/asmega/postbin_scraper/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/postbin_scraper/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/postbin_scraper/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/postbin_scraper/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/postbin_scraper/labels{/name}","releases_url":"https://api.github.com/repos/asmega/postbin_scraper/releases{/id}","created_at":"2011-09-09T16:50:06Z","updated_at":"2013-10-14T01:07:49Z","pushed_at":"2011-09-15T13:45:36Z","git_url":"git://github.com/asmega/postbin_scraper.git","ssh_url":"git@github.com:asmega/postbin_scraper.git","clone_url":"https://github.com/asmega/postbin_scraper.git","svn_url":"https://github.com/asmega/postbin_scraper","homepage":"","size":260,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":3059780,"name":"project_euler","full_name":"asmega/project_euler","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/project_euler","description":"my
146
+ solutions to project euler","fork":false,"url":"https://api.github.com/repos/asmega/project_euler","forks_url":"https://api.github.com/repos/asmega/project_euler/forks","keys_url":"https://api.github.com/repos/asmega/project_euler/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/project_euler/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/project_euler/teams","hooks_url":"https://api.github.com/repos/asmega/project_euler/hooks","issue_events_url":"https://api.github.com/repos/asmega/project_euler/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/project_euler/events","assignees_url":"https://api.github.com/repos/asmega/project_euler/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/project_euler/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/project_euler/tags","blobs_url":"https://api.github.com/repos/asmega/project_euler/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/project_euler/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/project_euler/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/project_euler/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/project_euler/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/project_euler/languages","stargazers_url":"https://api.github.com/repos/asmega/project_euler/stargazers","contributors_url":"https://api.github.com/repos/asmega/project_euler/contributors","subscribers_url":"https://api.github.com/repos/asmega/project_euler/subscribers","subscription_url":"https://api.github.com/repos/asmega/project_euler/subscription","commits_url":"https://api.github.com/repos/asmega/project_euler/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/project_euler/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/project_euler/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/project_euler/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/project_euler/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/project_euler/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/project_euler/merges","archive_url":"https://api.github.com/repos/asmega/project_euler/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/project_euler/downloads","issues_url":"https://api.github.com/repos/asmega/project_euler/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/project_euler/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/project_euler/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/project_euler/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/project_euler/labels{/name}","releases_url":"https://api.github.com/repos/asmega/project_euler/releases{/id}","created_at":"2011-12-28T00:09:20Z","updated_at":"2013-01-04T23:46:22Z","pushed_at":"2011-12-28T01:10:10Z","git_url":"git://github.com/asmega/project_euler.git","ssh_url":"git@github.com:asmega/project_euler.git","clone_url":"https://github.com/asmega/project_euler.git","svn_url":"https://github.com/asmega/project_euler","homepage":"","size":140,"stargazers_count":1,"watchers_count":1,"language":"Erlang","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":1930991,"name":"rack-closed","full_name":"asmega/rack-closed","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/rack-closed","description":"For
147
+ websites that are open 9 till 5","fork":false,"url":"https://api.github.com/repos/asmega/rack-closed","forks_url":"https://api.github.com/repos/asmega/rack-closed/forks","keys_url":"https://api.github.com/repos/asmega/rack-closed/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/rack-closed/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/rack-closed/teams","hooks_url":"https://api.github.com/repos/asmega/rack-closed/hooks","issue_events_url":"https://api.github.com/repos/asmega/rack-closed/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/rack-closed/events","assignees_url":"https://api.github.com/repos/asmega/rack-closed/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/rack-closed/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/rack-closed/tags","blobs_url":"https://api.github.com/repos/asmega/rack-closed/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/rack-closed/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/rack-closed/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/rack-closed/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/rack-closed/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/rack-closed/languages","stargazers_url":"https://api.github.com/repos/asmega/rack-closed/stargazers","contributors_url":"https://api.github.com/repos/asmega/rack-closed/contributors","subscribers_url":"https://api.github.com/repos/asmega/rack-closed/subscribers","subscription_url":"https://api.github.com/repos/asmega/rack-closed/subscription","commits_url":"https://api.github.com/repos/asmega/rack-closed/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/rack-closed/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/rack-closed/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/rack-closed/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/rack-closed/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/rack-closed/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/rack-closed/merges","archive_url":"https://api.github.com/repos/asmega/rack-closed/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/rack-closed/downloads","issues_url":"https://api.github.com/repos/asmega/rack-closed/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/rack-closed/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/rack-closed/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/rack-closed/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/rack-closed/labels{/name}","releases_url":"https://api.github.com/repos/asmega/rack-closed/releases{/id}","created_at":"2011-06-21T19:17:07Z","updated_at":"2013-01-03T18:10:45Z","pushed_at":"2011-07-03T15:38:57Z","git_url":"git://github.com/asmega/rack-closed.git","ssh_url":"git@github.com:asmega/rack-closed.git","clone_url":"https://github.com/asmega/rack-closed.git","svn_url":"https://github.com/asmega/rack-closed","homepage":"","size":116,"stargazers_count":4,"watchers_count":4,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":4,"default_branch":"master","master_branch":"master"},{"id":13881345,"name":"rack-title","full_name":"asmega/rack-title","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/rack-title","description":"","fork":false,"url":"https://api.github.com/repos/asmega/rack-title","forks_url":"https://api.github.com/repos/asmega/rack-title/forks","keys_url":"https://api.github.com/repos/asmega/rack-title/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/rack-title/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/rack-title/teams","hooks_url":"https://api.github.com/repos/asmega/rack-title/hooks","issue_events_url":"https://api.github.com/repos/asmega/rack-title/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/rack-title/events","assignees_url":"https://api.github.com/repos/asmega/rack-title/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/rack-title/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/rack-title/tags","blobs_url":"https://api.github.com/repos/asmega/rack-title/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/rack-title/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/rack-title/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/rack-title/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/rack-title/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/rack-title/languages","stargazers_url":"https://api.github.com/repos/asmega/rack-title/stargazers","contributors_url":"https://api.github.com/repos/asmega/rack-title/contributors","subscribers_url":"https://api.github.com/repos/asmega/rack-title/subscribers","subscription_url":"https://api.github.com/repos/asmega/rack-title/subscription","commits_url":"https://api.github.com/repos/asmega/rack-title/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/rack-title/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/rack-title/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/rack-title/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/rack-title/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/rack-title/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/rack-title/merges","archive_url":"https://api.github.com/repos/asmega/rack-title/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/rack-title/downloads","issues_url":"https://api.github.com/repos/asmega/rack-title/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/rack-title/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/rack-title/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/rack-title/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/rack-title/labels{/name}","releases_url":"https://api.github.com/repos/asmega/rack-title/releases{/id}","created_at":"2013-10-26T10:08:35Z","updated_at":"2013-10-26T10:10:14Z","pushed_at":"2013-10-26T10:10:13Z","git_url":"git://github.com/asmega/rack-title.git","ssh_url":"git@github.com:asmega/rack-title.git","clone_url":"https://github.com/asmega/rack-title.git","svn_url":"https://github.com/asmega/rack-title","homepage":null,"size":76,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":2240612,"name":"rails","full_name":"asmega/rails","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/rails","description":"Ruby
148
+ on Rails","fork":true,"url":"https://api.github.com/repos/asmega/rails","forks_url":"https://api.github.com/repos/asmega/rails/forks","keys_url":"https://api.github.com/repos/asmega/rails/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/rails/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/rails/teams","hooks_url":"https://api.github.com/repos/asmega/rails/hooks","issue_events_url":"https://api.github.com/repos/asmega/rails/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/rails/events","assignees_url":"https://api.github.com/repos/asmega/rails/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/rails/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/rails/tags","blobs_url":"https://api.github.com/repos/asmega/rails/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/rails/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/rails/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/rails/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/rails/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/rails/languages","stargazers_url":"https://api.github.com/repos/asmega/rails/stargazers","contributors_url":"https://api.github.com/repos/asmega/rails/contributors","subscribers_url":"https://api.github.com/repos/asmega/rails/subscribers","subscription_url":"https://api.github.com/repos/asmega/rails/subscription","commits_url":"https://api.github.com/repos/asmega/rails/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/rails/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/rails/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/rails/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/rails/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/rails/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/rails/merges","archive_url":"https://api.github.com/repos/asmega/rails/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/rails/downloads","issues_url":"https://api.github.com/repos/asmega/rails/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/rails/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/rails/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/rails/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/rails/labels{/name}","releases_url":"https://api.github.com/repos/asmega/rails/releases{/id}","created_at":"2011-08-20T20:56:58Z","updated_at":"2013-01-04T02:23:15Z","pushed_at":"2011-08-21T15:43:13Z","git_url":"git://github.com/asmega/rails.git","ssh_url":"git@github.com:asmega/rails.git","clone_url":"https://github.com/asmega/rails.git","svn_url":"https://github.com/asmega/rails","homepage":"http://rubyonrails.org","size":132,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"},{"id":7040067,"name":"rails-i18n","full_name":"asmega/rails-i18n","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/rails-i18n","description":"Repository
149
+ for collecting Locale data for Ruby on Rails I18n as well as other interesting,
150
+ Rails related I18n stuff","fork":true,"url":"https://api.github.com/repos/asmega/rails-i18n","forks_url":"https://api.github.com/repos/asmega/rails-i18n/forks","keys_url":"https://api.github.com/repos/asmega/rails-i18n/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/rails-i18n/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/rails-i18n/teams","hooks_url":"https://api.github.com/repos/asmega/rails-i18n/hooks","issue_events_url":"https://api.github.com/repos/asmega/rails-i18n/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/rails-i18n/events","assignees_url":"https://api.github.com/repos/asmega/rails-i18n/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/rails-i18n/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/rails-i18n/tags","blobs_url":"https://api.github.com/repos/asmega/rails-i18n/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/rails-i18n/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/rails-i18n/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/rails-i18n/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/rails-i18n/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/rails-i18n/languages","stargazers_url":"https://api.github.com/repos/asmega/rails-i18n/stargazers","contributors_url":"https://api.github.com/repos/asmega/rails-i18n/contributors","subscribers_url":"https://api.github.com/repos/asmega/rails-i18n/subscribers","subscription_url":"https://api.github.com/repos/asmega/rails-i18n/subscription","commits_url":"https://api.github.com/repos/asmega/rails-i18n/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/rails-i18n/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/rails-i18n/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/rails-i18n/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/rails-i18n/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/rails-i18n/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/rails-i18n/merges","archive_url":"https://api.github.com/repos/asmega/rails-i18n/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/rails-i18n/downloads","issues_url":"https://api.github.com/repos/asmega/rails-i18n/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/rails-i18n/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/rails-i18n/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/rails-i18n/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/rails-i18n/labels{/name}","releases_url":"https://api.github.com/repos/asmega/rails-i18n/releases{/id}","created_at":"2012-12-06T17:45:23Z","updated_at":"2013-01-13T13:02:50Z","pushed_at":"2012-11-30T08:51:38Z","git_url":"git://github.com/asmega/rails-i18n.git","ssh_url":"git@github.com:asmega/rails-i18n.git","clone_url":"https://github.com/asmega/rails-i18n.git","svn_url":"https://github.com/asmega/rails-i18n","homepage":"http://rails-i18n.org","size":92,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","master_branch":"master"},{"id":569005,"name":"railscasts_boxee_app","full_name":"asmega/railscasts_boxee_app","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/railscasts_boxee_app","description":"Source
151
+ code for railscasts boxee app","fork":false,"url":"https://api.github.com/repos/asmega/railscasts_boxee_app","forks_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/forks","keys_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/teams","hooks_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/hooks","issue_events_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/events","assignees_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/tags","blobs_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/languages","stargazers_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/stargazers","contributors_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/contributors","subscribers_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/subscribers","subscription_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/subscription","commits_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/merges","archive_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/downloads","issues_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/labels{/name}","releases_url":"https://api.github.com/repos/asmega/railscasts_boxee_app/releases{/id}","created_at":"2010-03-18T22:05:04Z","updated_at":"2013-08-25T15:44:40Z","pushed_at":"2010-03-18T22:12:17Z","git_url":"git://github.com/asmega/railscasts_boxee_app.git","ssh_url":"git@github.com:asmega/railscasts_boxee_app.git","clone_url":"https://github.com/asmega/railscasts_boxee_app.git","svn_url":"https://github.com/asmega/railscasts_boxee_app","homepage":"","size":112,"stargazers_count":3,"watchers_count":3,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":3,"default_branch":"master","master_branch":"master"},{"id":4614099,"name":"rails_best_practices","full_name":"asmega/rails_best_practices","owner":{"login":"asmega","id":92580,"avatar_url":"https://1.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/asmega/rails_best_practices","description":"a
152
+ code metric tool for rails projects","fork":true,"url":"https://api.github.com/repos/asmega/rails_best_practices","forks_url":"https://api.github.com/repos/asmega/rails_best_practices/forks","keys_url":"https://api.github.com/repos/asmega/rails_best_practices/keys{/key_id}","collaborators_url":"https://api.github.com/repos/asmega/rails_best_practices/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/asmega/rails_best_practices/teams","hooks_url":"https://api.github.com/repos/asmega/rails_best_practices/hooks","issue_events_url":"https://api.github.com/repos/asmega/rails_best_practices/issues/events{/number}","events_url":"https://api.github.com/repos/asmega/rails_best_practices/events","assignees_url":"https://api.github.com/repos/asmega/rails_best_practices/assignees{/user}","branches_url":"https://api.github.com/repos/asmega/rails_best_practices/branches{/branch}","tags_url":"https://api.github.com/repos/asmega/rails_best_practices/tags","blobs_url":"https://api.github.com/repos/asmega/rails_best_practices/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/asmega/rails_best_practices/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/asmega/rails_best_practices/git/refs{/sha}","trees_url":"https://api.github.com/repos/asmega/rails_best_practices/git/trees{/sha}","statuses_url":"https://api.github.com/repos/asmega/rails_best_practices/statuses/{sha}","languages_url":"https://api.github.com/repos/asmega/rails_best_practices/languages","stargazers_url":"https://api.github.com/repos/asmega/rails_best_practices/stargazers","contributors_url":"https://api.github.com/repos/asmega/rails_best_practices/contributors","subscribers_url":"https://api.github.com/repos/asmega/rails_best_practices/subscribers","subscription_url":"https://api.github.com/repos/asmega/rails_best_practices/subscription","commits_url":"https://api.github.com/repos/asmega/rails_best_practices/commits{/sha}","git_commits_url":"https://api.github.com/repos/asmega/rails_best_practices/git/commits{/sha}","comments_url":"https://api.github.com/repos/asmega/rails_best_practices/comments{/number}","issue_comment_url":"https://api.github.com/repos/asmega/rails_best_practices/issues/comments/{number}","contents_url":"https://api.github.com/repos/asmega/rails_best_practices/contents/{+path}","compare_url":"https://api.github.com/repos/asmega/rails_best_practices/compare/{base}...{head}","merges_url":"https://api.github.com/repos/asmega/rails_best_practices/merges","archive_url":"https://api.github.com/repos/asmega/rails_best_practices/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/asmega/rails_best_practices/downloads","issues_url":"https://api.github.com/repos/asmega/rails_best_practices/issues{/number}","pulls_url":"https://api.github.com/repos/asmega/rails_best_practices/pulls{/number}","milestones_url":"https://api.github.com/repos/asmega/rails_best_practices/milestones{/number}","notifications_url":"https://api.github.com/repos/asmega/rails_best_practices/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/asmega/rails_best_practices/labels{/name}","releases_url":"https://api.github.com/repos/asmega/rails_best_practices/releases{/id}","created_at":"2012-06-10T09:56:52Z","updated_at":"2013-01-09T14:43:21Z","pushed_at":"2012-06-10T20:53:28Z","git_url":"git://github.com/asmega/rails_best_practices.git","ssh_url":"git@github.com:asmega/rails_best_practices.git","clone_url":"https://github.com/asmega/rails_best_practices.git","svn_url":"https://github.com/asmega/rails_best_practices","homepage":"http://rails-bestpractices.com","size":128,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":1,"default_branch":"master","master_branch":"master"}]'
153
+ http_version:
154
+ recorded_at: Sat, 16 Nov 2013 00:16:59 GMT
155
+ recorded_with: VCR 2.7.0
@@ -0,0 +1,66 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.github.com/users/asmega
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/vnd.github.beta+json
12
+ User-Agent:
13
+ - Octokit Ruby Gem 2.6.0
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - GitHub.com
23
+ Date:
24
+ - Sat, 16 Nov 2013 00:16:55 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Status:
30
+ - 200 OK
31
+ X-Ratelimit-Limit:
32
+ - '60'
33
+ X-Ratelimit-Remaining:
34
+ - '59'
35
+ X-Ratelimit-Reset:
36
+ - '1384564615'
37
+ Cache-Control:
38
+ - public, max-age=60, s-maxage=60
39
+ Last-Modified:
40
+ - Fri, 15 Nov 2013 11:11:42 GMT
41
+ Etag:
42
+ - '"e9e8563f5c7604e1fa40a04ddbb5ecb4"'
43
+ Vary:
44
+ - Accept
45
+ - Accept-Encoding
46
+ X-Github-Media-Type:
47
+ - github.beta; format=json
48
+ X-Content-Type-Options:
49
+ - nosniff
50
+ Access-Control-Allow-Credentials:
51
+ - 'true'
52
+ Access-Control-Expose-Headers:
53
+ - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes,
54
+ X-Accepted-OAuth-Scopes
55
+ Access-Control-Allow-Origin:
56
+ - '*'
57
+ X-Github-Request-Id:
58
+ - 5698E988:0719:1DC4CCE:5286B977
59
+ body:
60
+ encoding: UTF-8
61
+ string: '{"login":"asmega","id":92580,"avatar_url":"https://0.gravatar.com/avatar/5744235abab8e6c1c6c6034874392d5a?d=https%3A%2F%2Fidenticons.github.com%2Fdadf3440ed6e33b684459420d88281a3.png&r=x","gravatar_id":"5744235abab8e6c1c6c6034874392d5a","url":"https://api.github.com/users/asmega","html_url":"https://github.com/asmega","followers_url":"https://api.github.com/users/asmega/followers","following_url":"https://api.github.com/users/asmega/following{/other_user}","gists_url":"https://api.github.com/users/asmega/gists{/gist_id}","starred_url":"https://api.github.com/users/asmega/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmega/subscriptions","organizations_url":"https://api.github.com/users/asmega/orgs","repos_url":"https://api.github.com/users/asmega/repos","events_url":"https://api.github.com/users/asmega/events{/privacy}","received_events_url":"https://api.github.com/users/asmega/received_events","type":"User","site_admin":false,"name":"Phil
62
+ Lee","company":null,"blog":"www.ph-lee.com","location":"Newcastle, UK","email":"asmega@ph-lee.com","hireable":true,"bio":"Ruby
63
+ on Rails developer","public_repos":40,"followers":12,"following":12,"created_at":"2009-06-06T14:39:59Z","updated_at":"2013-11-15T11:11:42Z","public_gists":27}'
64
+ http_version:
65
+ recorded_at: Sat, 16 Nov 2013 00:16:54 GMT
66
+ recorded_with: VCR 2.7.0