gh-trend 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +52 -0
- data/Rakefile +6 -0
- data/bin/gh-trend +35 -0
- data/gh-trend.gemspec +33 -0
- data/lib/gh-trend.rb +5 -0
- data/lib/gh-trend/command.rb +29 -0
- data/lib/gh-trend/github_api.rb +39 -0
- data/lib/gh-trend/trend.rb +121 -0
- data/lib/gh-trend/version.rb +3 -0
- data/spec/fixtures/gh_trend.html +1667 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/trend_spec.rb +42 -0
- metadata +206 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 956cc822cbb69cd43bbb918d03e9c55cd3c071c3
|
4
|
+
data.tar.gz: 19b8e58136eb12040197b735805bfc39f56eacce
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1df21baad92dd65f3e581e954f897c88b1b5e4bcfc72c835309a58e0e41654ccbccb5013ad98ea8b22a1cb11dc10a49d70246f81e537b9ed06a7ed068a44c352
|
7
|
+
data.tar.gz: 8a9a2113907a1b7d2b5ac6cab9ed30b6f3b1883a777a0be6a883aef177934a3de0b682947972644bcadf3e36066183c0e5cfa201a932b9c32aaee561741d710b
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 ramtiga
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# GhTrend
|
2
|
+
|
3
|
+
Get Trending repositories on Github for CLI.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
$ gem install gh-trend
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
$ gh-trend -h
|
12
|
+
Usage: gh-trend <command> [options] <args>
|
13
|
+
-l, --lang Select language.
|
14
|
+
-d, --desc Display description.
|
15
|
+
-n, --num Limit numbers.
|
16
|
+
-b, --brows Open repository on browser.
|
17
|
+
-s, --star Star a repository.
|
18
|
+
-u, --unstar Unstar a repository.
|
19
|
+
-h, --help Display this help message.
|
20
|
+
|
21
|
+
## Authentication
|
22
|
+
|
23
|
+
Reading credentials from a netrc file (defaulting to ~/.netrc). Given these lines in your netrc.
|
24
|
+
if user authenticated, you can use '-s' and '-u' options.
|
25
|
+
|
26
|
+
machine api.github.com
|
27
|
+
login xxxxx
|
28
|
+
password xxxxxxxxxx
|
29
|
+
|
30
|
+
### Example
|
31
|
+
|
32
|
+
If user authenticated, it is a displayed star or unstar at a right side.
|
33
|
+
|
34
|
+
$ gh-trend -l ruby -d -n 3
|
35
|
+
|
36
|
+
Trending Ruby repositories on GitHub today
|
37
|
+
--------------------------------------------------------
|
38
|
+
1: Gazler/githug unstar
|
39
|
+
Git your game on!
|
40
|
+
2: pawurb/termit star
|
41
|
+
Google Translate with speech synthesis in your terminal
|
42
|
+
3: webnuts/post_json star
|
43
|
+
A Fast and Flexible Document Database by Combining Features of Ruby and PostgreSQL with PLV8
|
44
|
+
|
45
|
+
## Contributing
|
46
|
+
|
47
|
+
1. Fork it
|
48
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
49
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
50
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
51
|
+
5. Create new Pull Request
|
52
|
+
|
data/Rakefile
ADDED
data/bin/gh-trend
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$LOAD_PATH.unshift(File.expand_path("../../lib/", __FILE__))
|
4
|
+
|
5
|
+
require 'slop'
|
6
|
+
require 'gh-trend'
|
7
|
+
|
8
|
+
argv = ARGV.dup
|
9
|
+
|
10
|
+
if argv.size == 0
|
11
|
+
exit!
|
12
|
+
end
|
13
|
+
|
14
|
+
slop = Slop.new(:strict => true, :help => true) do |s|
|
15
|
+
s.banner "Usage: gh-trend <command> [options] <args>"
|
16
|
+
s.on :l, :lang=, "Select language."
|
17
|
+
s.on :d, :desc, "Display description."
|
18
|
+
s.on :n, :num=, "Limit numbers."
|
19
|
+
s.on :b, :brows=, "Open repository on browser."
|
20
|
+
s.on :s, :star=, "Star a repository."
|
21
|
+
s.on :u, :unstar=, "Unstar a repository."
|
22
|
+
end
|
23
|
+
|
24
|
+
begin
|
25
|
+
slop.parse!(argv)
|
26
|
+
rescue => e
|
27
|
+
puts e
|
28
|
+
exit!
|
29
|
+
end
|
30
|
+
|
31
|
+
options = slop.to_hash
|
32
|
+
options.delete(:help)
|
33
|
+
|
34
|
+
GhTrend::Command.run(options)
|
35
|
+
|
data/gh-trend.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
lib = File.expand_path('../lib', __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
require 'gh-trend/version'
|
6
|
+
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = "gh-trend"
|
9
|
+
spec.version = GhTrend::VERSION
|
10
|
+
spec.authors = ["ramtiga"]
|
11
|
+
spec.email = ["dhanegm731@gmail.com"]
|
12
|
+
spec.description = %q{Get Trending repositories on Github for CLI.}
|
13
|
+
spec.summary = %q{Get Trending repositories on Github for CLI.}
|
14
|
+
spec.homepage = ""
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_dependency "httparty", "~> 0.11.0"
|
23
|
+
spec.add_dependency "launchy", "~> 2.3.0"
|
24
|
+
spec.add_dependency "netrc", "~> 0.7.7"
|
25
|
+
spec.add_dependency "nokogiri", "~> 1.6.0"
|
26
|
+
spec.add_dependency "octokit", "~> 2.4.0"
|
27
|
+
spec.add_dependency "slop", "~> 3.4.6"
|
28
|
+
|
29
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
30
|
+
spec.add_development_dependency "rake"
|
31
|
+
spec.add_development_dependency "rspec", "2.10.0"
|
32
|
+
spec.add_development_dependency "webmock", "1.15.0"
|
33
|
+
end
|
data/lib/gh-trend.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
module GhTrend
|
4
|
+
class Command
|
5
|
+
# options: ARGV
|
6
|
+
def self.run(options)
|
7
|
+
trend = GhTrend::Trend.new(options)
|
8
|
+
trend.get_trend
|
9
|
+
|
10
|
+
# option: -b --brows
|
11
|
+
return if trend.brows?
|
12
|
+
|
13
|
+
# option: -s --star
|
14
|
+
if trend.star?
|
15
|
+
puts "Star a repository"
|
16
|
+
return
|
17
|
+
end
|
18
|
+
|
19
|
+
# option: -u --unstar
|
20
|
+
if trend.unstar?
|
21
|
+
puts "Unstar a repository"
|
22
|
+
return
|
23
|
+
end
|
24
|
+
|
25
|
+
trend.show
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require "octokit"
|
4
|
+
|
5
|
+
module GhTrend
|
6
|
+
class GithubApi# < Octokit::Client
|
7
|
+
def initialize
|
8
|
+
@client = Octokit::Client.new :netrc => true
|
9
|
+
begin
|
10
|
+
@authenticate = !@client.user.nil?
|
11
|
+
rescue => e
|
12
|
+
@authenticate = false
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def user_authenticated?
|
17
|
+
@authenticate
|
18
|
+
end
|
19
|
+
|
20
|
+
# GET /user/starred/:owner/:repo
|
21
|
+
def check_star?(repo)
|
22
|
+
# repo = []
|
23
|
+
# repo << args
|
24
|
+
@client.starred?(repo)
|
25
|
+
end
|
26
|
+
|
27
|
+
def star(repo)
|
28
|
+
@client.star(repo)
|
29
|
+
end
|
30
|
+
|
31
|
+
def unstar(repo)
|
32
|
+
@client.unstar(repo)
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require "nokogiri"
|
4
|
+
require "launchy"
|
5
|
+
require "httparty"
|
6
|
+
|
7
|
+
module GhTrend
|
8
|
+
|
9
|
+
class Trend
|
10
|
+
BASE_URL = "https://github.com/trending"
|
11
|
+
DSP_POS = 50
|
12
|
+
|
13
|
+
attr_reader :repo_nm, :repo_desc
|
14
|
+
|
15
|
+
def initialize(options)
|
16
|
+
@options = options
|
17
|
+
@repo_nm = []
|
18
|
+
@repo_url = []
|
19
|
+
@repo_desc = []
|
20
|
+
@client = GhTrend::GithubApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
def show
|
24
|
+
cnt = 1
|
25
|
+
|
26
|
+
title_dsp
|
27
|
+
|
28
|
+
@repo_nm.each do |t|
|
29
|
+
|
30
|
+
if @client.user_authenticated?
|
31
|
+
if @client.check_star?(t)
|
32
|
+
star_status = "unstar"
|
33
|
+
else
|
34
|
+
star_status = "star"
|
35
|
+
end
|
36
|
+
else
|
37
|
+
star_status = ""
|
38
|
+
end
|
39
|
+
|
40
|
+
puts "#{cnt.to_s}: " + t + " " * make_pos(cnt, t.length) + star_status
|
41
|
+
|
42
|
+
if @options[:desc]
|
43
|
+
puts make_spaces(cnt) + @repo_desc[cnt - 1]
|
44
|
+
end
|
45
|
+
cnt += 1
|
46
|
+
|
47
|
+
break if limit_number?(cnt)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def brows?
|
52
|
+
if @options[:brows]
|
53
|
+
Launchy.open "https://github.com/" + @repo_url[@options[:brows].to_i - 1]
|
54
|
+
true
|
55
|
+
else
|
56
|
+
false
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def star?
|
61
|
+
if @options[:star]
|
62
|
+
@client.star(@repo_nm[@options[:star].to_i - 1])
|
63
|
+
@repo_nm[@options[:star].to_i - 1]
|
64
|
+
else
|
65
|
+
false
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def unstar?
|
70
|
+
if @options[:unstar]
|
71
|
+
@client.unstar(@repo_nm[@options[:unstar].to_i - 1])
|
72
|
+
@repo_nm[@options[:unstar].to_i - 1]
|
73
|
+
else
|
74
|
+
false
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def get_trend
|
79
|
+
# doc = Nokogiri::HTML(open(geturl))
|
80
|
+
doc = Nokogiri::HTML(HTTParty.get(geturl))
|
81
|
+
doc.css('div[class="leaderboard-list-content"]').each do |html|
|
82
|
+
@repo_nm << html.css('span[class="owner-name"]').text + "/" + html.css('strong').text
|
83
|
+
@repo_url << html.css('a[class="repository-name"]').text
|
84
|
+
@repo_desc << html.css('p[class="repo-leaderboard-description"]').text
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
private
|
89
|
+
def geturl
|
90
|
+
@options[:lang] ? BASE_URL + "?l=" + @options[:lang] : BASE_URL
|
91
|
+
end
|
92
|
+
|
93
|
+
def make_spaces(n)
|
94
|
+
if n < 10
|
95
|
+
" " * 3
|
96
|
+
else
|
97
|
+
" " * 4
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def limit_number?(n)
|
102
|
+
return false if @options[:num].nil?
|
103
|
+
@options[:num].to_i < n
|
104
|
+
end
|
105
|
+
|
106
|
+
def make_pos(cnt, len)
|
107
|
+
if cnt < 10
|
108
|
+
DSP_POS - (3 + len)
|
109
|
+
else
|
110
|
+
DSP_POS - (4 + len)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
def title_dsp
|
115
|
+
puts "Trending #{@options[:lang].capitalize} repositories on GitHub today"
|
116
|
+
puts "-" * 56
|
117
|
+
end
|
118
|
+
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
@@ -0,0 +1,1667 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# githubog: http://ogp.me/ns/fb/githubog#">
|
4
|
+
<meta charset='utf-8'>
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
|
+
<title>Trending Ruby repositories on GitHub today</title>
|
7
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
|
8
|
+
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
|
9
|
+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
|
10
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
|
11
|
+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
|
12
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
|
13
|
+
<link rel="logo" type="image/svg" href="https://github-media-downloads.s3.amazonaws.com/github-logo.svg" />
|
14
|
+
<meta property="og:image" content="https://github.global.ssl.fastly.net/images/modules/logos_page/Octocat.png">
|
15
|
+
<meta name="hostname" content="github-fe123-cp1-prd.iad.github.net">
|
16
|
+
<meta name="ruby" content="ruby 1.9.3p194-tcs-github-tcmalloc (0e75de19f8) [x86_64-linux]">
|
17
|
+
<link rel="assets" href="https://github.global.ssl.fastly.net/">
|
18
|
+
<link rel="conduit-xhr" href="https://ghconduit.com:25035/">
|
19
|
+
<link rel="xhr-socket" href="/_sockets" />
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<meta name="msapplication-TileImage" content="/windows-tile.png" />
|
24
|
+
<meta name="msapplication-TileColor" content="#ffffff" />
|
25
|
+
<meta name="selected-link" value="trending_repositories" data-pjax-transient />
|
26
|
+
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="7967E51B:1FA6:26E1E3AC:526AB450" name="octolytics-dimension-request_id" /><meta content="458986" name="octolytics-actor-id" /><meta content="ramtiga" name="octolytics-actor-login" /><meta content="49b58180f657152773733fd724173d935ff09b37191560734c24ade5ca527a1a" name="octolytics-actor-hash" />
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
32
|
+
|
33
|
+
<meta content="authenticity_token" name="csrf-param" />
|
34
|
+
<meta content="F3F94+PrXljBp3C7OJduGviD3PoqvDPFAJ1oS8sayIs=" name="csrf-token" />
|
35
|
+
|
36
|
+
<link href="https://github.global.ssl.fastly.net/assets/github-dfcee7b927f1abff62f05bf200dc06f74af4151e.css" media="all" rel="stylesheet" type="text/css" />
|
37
|
+
<link href="https://github.global.ssl.fastly.net/assets/github2-f2c706d8f7f5150d85930657a814320eea559d92.css" media="all" rel="stylesheet" type="text/css" />
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
<script src="https://github.global.ssl.fastly.net/assets/frameworks-9cf67afca6308356615fd17ad1d5bb84b5a22d05.js" type="text/javascript"></script>
|
43
|
+
<script src="https://github.global.ssl.fastly.net/assets/github-b95719cc70778f3aa390bac0733a59cde989c286.js" type="text/javascript"></script>
|
44
|
+
|
45
|
+
<meta http-equiv="x-pjax-version" content="5142cb1d095437dc03e2ef3b28150048">
|
46
|
+
|
47
|
+
<meta name="description" content="Build software better, together." />
|
48
|
+
</head>
|
49
|
+
|
50
|
+
|
51
|
+
<body class="logged_in env-production macintosh">
|
52
|
+
<div class="wrapper">
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
<div class="header header-logged-in true">
|
59
|
+
<div class="container clearfix">
|
60
|
+
|
61
|
+
<a class="header-logo-invertocat" href="https://github.com/">
|
62
|
+
<span class="mega-octicon octicon-mark-github"></span>
|
63
|
+
</a>
|
64
|
+
|
65
|
+
|
66
|
+
<a href="/notifications" class="notification-indicator tooltipped downwards" data-gotokey="n" title="You have no unread notifications">
|
67
|
+
<span class="mail-status all-read"></span>
|
68
|
+
</a>
|
69
|
+
|
70
|
+
<div class="command-bar js-command-bar ">
|
71
|
+
<form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">
|
72
|
+
|
73
|
+
<input type="text" data-hotkey=" s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
|
74
|
+
|
75
|
+
data-username="ramtiga"
|
76
|
+
>
|
77
|
+
|
78
|
+
|
79
|
+
<span class="octicon help tooltipped downwards" title="Show command bar help">
|
80
|
+
<span class="octicon octicon-question"></span>
|
81
|
+
</span>
|
82
|
+
|
83
|
+
|
84
|
+
<input type="hidden" name="ref" value="cmdform">
|
85
|
+
|
86
|
+
</form>
|
87
|
+
<ul class="top-nav">
|
88
|
+
<li class="explore"><a href="/explore">Explore</a></li>
|
89
|
+
<li><a href="https://gist.github.com">Gist</a></li>
|
90
|
+
<li><a href="/blog">Blog</a></li>
|
91
|
+
<li><a href="https://help.github.com">Help</a></li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
<ul id="user-links">
|
99
|
+
<li>
|
100
|
+
<a href="/ramtiga" class="name">
|
101
|
+
<img height="20" src="https://1.gravatar.com/avatar/17322f916622e9b881d7dc755933f1e2?d=https%3A%2F%2Fidenticons.github.com%2F42570dd4e651b24facbeabe6cf6f9fb1.png&r=x&s=140" width="20" /> ramtiga
|
102
|
+
</a>
|
103
|
+
</li>
|
104
|
+
|
105
|
+
<li>
|
106
|
+
<a href="/new" id="new_repo" class="tooltipped downwards" title="Create a new repo" aria-label="Create a new repo">
|
107
|
+
<span class="octicon octicon-repo-create"></span>
|
108
|
+
</a>
|
109
|
+
</li>
|
110
|
+
|
111
|
+
<li>
|
112
|
+
<a href="/settings/profile" id="account_settings"
|
113
|
+
class="tooltipped downwards"
|
114
|
+
aria-label="Account settings "
|
115
|
+
title="Account settings ">
|
116
|
+
<span class="octicon octicon-tools"></span>
|
117
|
+
</a>
|
118
|
+
</li>
|
119
|
+
<li>
|
120
|
+
<a class="tooltipped downwards" href="/logout" data-method="post" id="logout" title="Sign out" aria-label="Sign out">
|
121
|
+
<span class="octicon octicon-log-out"></span>
|
122
|
+
</a>
|
123
|
+
</li>
|
124
|
+
|
125
|
+
</ul>
|
126
|
+
|
127
|
+
<div class="js-new-dropdown-contents hidden">
|
128
|
+
|
129
|
+
|
130
|
+
<ul class="dropdown-menu">
|
131
|
+
<li>
|
132
|
+
<a href="/new"><span class="octicon octicon-repo-create"></span> New repository</a>
|
133
|
+
</li>
|
134
|
+
<li>
|
135
|
+
<a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
|
136
|
+
</li>
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
</ul>
|
141
|
+
|
142
|
+
</div>
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
</div>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
<div class="site clearfix">
|
157
|
+
<div id="site-container" class="context-loader-container" data-pjax-container>
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
<div class="pagehead explore-head">
|
163
|
+
<div class="container">
|
164
|
+
<nav class="marketing-nav">
|
165
|
+
<ul data-pjax>
|
166
|
+
<li><a href="/explore" class="js-selected-navigation-item " data-selected-links="explore_main /explore">Explore</a></li>
|
167
|
+
<li><a href="/trending" class="js-selected-navigation-item selected" data-selected-links="trending_developers trending_repositories /trending">Trending</a></li>
|
168
|
+
<li><a href="/stars" class="js-selected-navigation-item " data-selected-links="stars_highlight users_stars_highlight /stars">Stars</a></li>
|
169
|
+
|
170
|
+
</ul>
|
171
|
+
</nav>
|
172
|
+
<h1>Trending Ruby repositories on GitHub today</h1>
|
173
|
+
</div>
|
174
|
+
</div><!-- /.pagehead -->
|
175
|
+
|
176
|
+
<div class="container explore-page">
|
177
|
+
<div class="columns browser right-sidebar">
|
178
|
+
<div class="column sidebar">
|
179
|
+
|
180
|
+
<ul class="filter-list small language-filter-list" data-pjax>
|
181
|
+
<li>
|
182
|
+
<a href="https://github.com/trending" class="filter-item">All languages</a>
|
183
|
+
</li>
|
184
|
+
<li>
|
185
|
+
<a href="https://github.com/trending?l=unknown" class="filter-item">Unknown languages</a>
|
186
|
+
</li>
|
187
|
+
<li>
|
188
|
+
<a href="https://github.com/trending?l=css" class="filter-item">CSS</a>
|
189
|
+
</li>
|
190
|
+
<li>
|
191
|
+
<a href="https://github.com/trending?l=go" class="filter-item">Go</a>
|
192
|
+
</li>
|
193
|
+
<li>
|
194
|
+
<a href="https://github.com/trending?l=javascript" class="filter-item">JavaScript</a>
|
195
|
+
</li>
|
196
|
+
<li>
|
197
|
+
<a href="https://github.com/trending?l=perl" class="filter-item">Perl</a>
|
198
|
+
</li>
|
199
|
+
<li>
|
200
|
+
<a href="https://github.com/trending" class="filter-item selected">
|
201
|
+
Ruby
|
202
|
+
</a> </li>
|
203
|
+
<li>
|
204
|
+
<a href="https://github.com/trending?l=bash" class="filter-item">Shell</a>
|
205
|
+
</li>
|
206
|
+
<li>
|
207
|
+
<a href="https://github.com/trending?l=vim" class="filter-item">VimL</a>
|
208
|
+
</li>
|
209
|
+
</ul>
|
210
|
+
|
211
|
+
<div class="select-menu js-menu-container js-select-menu ">
|
212
|
+
<span class="minibutton select-menu-button js-menu-target">
|
213
|
+
<span class="octicon octicon-list-unordered"></span>
|
214
|
+
<i>Other:</i>
|
215
|
+
<span class="js-select-button">Languages</span>
|
216
|
+
</span>
|
217
|
+
|
218
|
+
<div class="select-menu-modal-holder js-menu-content js-navigation-container">
|
219
|
+
<div class="select-menu-modal">
|
220
|
+
<div class="select-menu-header">
|
221
|
+
<span class="select-menu-title">Other Languages</span>
|
222
|
+
<span class="octicon octicon-remove-close js-menu-close"></span>
|
223
|
+
</div> <!-- /.select-menu-header -->
|
224
|
+
|
225
|
+
<div class="select-menu-error-shell">
|
226
|
+
<span class="select-menu-error js-select-menu-error">Whoops, there was an error</span>
|
227
|
+
</div>
|
228
|
+
|
229
|
+
<div class="select-menu-filters">
|
230
|
+
<div class="select-menu-text-filter">
|
231
|
+
<input type="text" id="text-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter Languages">
|
232
|
+
</div>
|
233
|
+
</div> <!-- /.select-menu-filters -->
|
234
|
+
|
235
|
+
<div class="select-menu-list" data-pjax>
|
236
|
+
|
237
|
+
<div class="select-menu-clear-item select-menu-item js-navigation-item">
|
238
|
+
<span class="select-menu-item-icon octicon octicon-remove-close"></span>
|
239
|
+
<a href="https://github.com/trending" class="select-menu-item-text">Clear Language</a>
|
240
|
+
</div> <!-- /.select-menu-item -->
|
241
|
+
|
242
|
+
<div data-filterable-for="text-filter-field" data-filterable-type="substring">
|
243
|
+
<div class="select-menu-item js-navigation-item ">
|
244
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
245
|
+
<a href="https://github.com/trending?l=abap" class="select-menu-item-text js-select-button-text js-navigation-open">ABAP</a>
|
246
|
+
</div> <!-- /.select-menu-item -->
|
247
|
+
<div class="select-menu-item js-navigation-item ">
|
248
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
249
|
+
<a href="https://github.com/trending?l=as3" class="select-menu-item-text js-select-button-text js-navigation-open">ActionScript</a>
|
250
|
+
</div> <!-- /.select-menu-item -->
|
251
|
+
<div class="select-menu-item js-navigation-item ">
|
252
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
253
|
+
<a href="https://github.com/trending?l=ada" class="select-menu-item-text js-select-button-text js-navigation-open">Ada</a>
|
254
|
+
</div> <!-- /.select-menu-item -->
|
255
|
+
<div class="select-menu-item js-navigation-item ">
|
256
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
257
|
+
<a href="https://github.com/trending?l=apex" class="select-menu-item-text js-select-button-text js-navigation-open">Apex</a>
|
258
|
+
</div> <!-- /.select-menu-item -->
|
259
|
+
<div class="select-menu-item js-navigation-item ">
|
260
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
261
|
+
<a href="https://github.com/trending?l=applescript" class="select-menu-item-text js-select-button-text js-navigation-open">AppleScript</a>
|
262
|
+
</div> <!-- /.select-menu-item -->
|
263
|
+
<div class="select-menu-item js-navigation-item ">
|
264
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
265
|
+
<a href="https://github.com/trending?l=arc" class="select-menu-item-text js-select-button-text js-navigation-open">Arc</a>
|
266
|
+
</div> <!-- /.select-menu-item -->
|
267
|
+
<div class="select-menu-item js-navigation-item ">
|
268
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
269
|
+
<a href="https://github.com/trending?l=arduino" class="select-menu-item-text js-select-button-text js-navigation-open">Arduino</a>
|
270
|
+
</div> <!-- /.select-menu-item -->
|
271
|
+
<div class="select-menu-item js-navigation-item ">
|
272
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
273
|
+
<a href="https://github.com/trending?l=aspx-vb" class="select-menu-item-text js-select-button-text js-navigation-open">ASP</a>
|
274
|
+
</div> <!-- /.select-menu-item -->
|
275
|
+
<div class="select-menu-item js-navigation-item ">
|
276
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
277
|
+
<a href="https://github.com/trending?l=nasm" class="select-menu-item-text js-select-button-text js-navigation-open">Assembly</a>
|
278
|
+
</div> <!-- /.select-menu-item -->
|
279
|
+
<div class="select-menu-item js-navigation-item ">
|
280
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
281
|
+
<a href="https://github.com/trending?l=augeas" class="select-menu-item-text js-select-button-text js-navigation-open">Augeas</a>
|
282
|
+
</div> <!-- /.select-menu-item -->
|
283
|
+
<div class="select-menu-item js-navigation-item ">
|
284
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
285
|
+
<a href="https://github.com/trending?l=autohotkey" class="select-menu-item-text js-select-button-text js-navigation-open">AutoHotkey</a>
|
286
|
+
</div> <!-- /.select-menu-item -->
|
287
|
+
<div class="select-menu-item js-navigation-item ">
|
288
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
289
|
+
<a href="https://github.com/trending?l=awk" class="select-menu-item-text js-select-button-text js-navigation-open">Awk</a>
|
290
|
+
</div> <!-- /.select-menu-item -->
|
291
|
+
<div class="select-menu-item js-navigation-item ">
|
292
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
293
|
+
<a href="https://github.com/trending?l=boo" class="select-menu-item-text js-select-button-text js-navigation-open">Boo</a>
|
294
|
+
</div> <!-- /.select-menu-item -->
|
295
|
+
<div class="select-menu-item js-navigation-item ">
|
296
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
297
|
+
<a href="https://github.com/trending?l=bro" class="select-menu-item-text js-select-button-text js-navigation-open">Bro</a>
|
298
|
+
</div> <!-- /.select-menu-item -->
|
299
|
+
<div class="select-menu-item js-navigation-item ">
|
300
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
301
|
+
<a href="https://github.com/trending?l=c" class="select-menu-item-text js-select-button-text js-navigation-open">C</a>
|
302
|
+
</div> <!-- /.select-menu-item -->
|
303
|
+
<div class="select-menu-item js-navigation-item ">
|
304
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
305
|
+
<a href="https://github.com/trending?l=csharp" class="select-menu-item-text js-select-button-text js-navigation-open">C#</a>
|
306
|
+
</div> <!-- /.select-menu-item -->
|
307
|
+
<div class="select-menu-item js-navigation-item ">
|
308
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
309
|
+
<a href="https://github.com/trending?l=cpp" class="select-menu-item-text js-select-button-text js-navigation-open">C++</a>
|
310
|
+
</div> <!-- /.select-menu-item -->
|
311
|
+
<div class="select-menu-item js-navigation-item ">
|
312
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
313
|
+
<a href="https://github.com/trending?l=ceylon" class="select-menu-item-text js-select-button-text js-navigation-open">Ceylon</a>
|
314
|
+
</div> <!-- /.select-menu-item -->
|
315
|
+
<div class="select-menu-item js-navigation-item ">
|
316
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
317
|
+
<a href="https://github.com/trending?l=clips" class="select-menu-item-text js-select-button-text js-navigation-open">CLIPS</a>
|
318
|
+
</div> <!-- /.select-menu-item -->
|
319
|
+
<div class="select-menu-item js-navigation-item ">
|
320
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
321
|
+
<a href="https://github.com/trending?l=clojure" class="select-menu-item-text js-select-button-text js-navigation-open">Clojure</a>
|
322
|
+
</div> <!-- /.select-menu-item -->
|
323
|
+
<div class="select-menu-item js-navigation-item ">
|
324
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
325
|
+
<a href="https://github.com/trending?l=cobol" class="select-menu-item-text js-select-button-text js-navigation-open">COBOL</a>
|
326
|
+
</div> <!-- /.select-menu-item -->
|
327
|
+
<div class="select-menu-item js-navigation-item ">
|
328
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
329
|
+
<a href="https://github.com/trending?l=coffeescript" class="select-menu-item-text js-select-button-text js-navigation-open">CoffeeScript</a>
|
330
|
+
</div> <!-- /.select-menu-item -->
|
331
|
+
<div class="select-menu-item js-navigation-item ">
|
332
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
333
|
+
<a href="https://github.com/trending?l=cfm" class="select-menu-item-text js-select-button-text js-navigation-open">ColdFusion</a>
|
334
|
+
</div> <!-- /.select-menu-item -->
|
335
|
+
<div class="select-menu-item js-navigation-item ">
|
336
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
337
|
+
<a href="https://github.com/trending?l=common-lisp" class="select-menu-item-text js-select-button-text js-navigation-open">Common Lisp</a>
|
338
|
+
</div> <!-- /.select-menu-item -->
|
339
|
+
<div class="select-menu-item js-navigation-item ">
|
340
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
341
|
+
<a href="https://github.com/trending?l=coq" class="select-menu-item-text js-select-button-text js-navigation-open">Coq</a>
|
342
|
+
</div> <!-- /.select-menu-item -->
|
343
|
+
<div class="select-menu-item js-navigation-item ">
|
344
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
345
|
+
<a href="https://github.com/trending?l=css" class="select-menu-item-text js-select-button-text js-navigation-open">CSS</a>
|
346
|
+
</div> <!-- /.select-menu-item -->
|
347
|
+
<div class="select-menu-item js-navigation-item ">
|
348
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
349
|
+
<a href="https://github.com/trending?l=d" class="select-menu-item-text js-select-button-text js-navigation-open">D</a>
|
350
|
+
</div> <!-- /.select-menu-item -->
|
351
|
+
<div class="select-menu-item js-navigation-item ">
|
352
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
353
|
+
<a href="https://github.com/trending?l=dart" class="select-menu-item-text js-select-button-text js-navigation-open">Dart</a>
|
354
|
+
</div> <!-- /.select-menu-item -->
|
355
|
+
<div class="select-menu-item js-navigation-item ">
|
356
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
357
|
+
<a href="https://github.com/trending?l=dcpu-16-asm" class="select-menu-item-text js-select-button-text js-navigation-open">DCPU-16 ASM</a>
|
358
|
+
</div> <!-- /.select-menu-item -->
|
359
|
+
<div class="select-menu-item js-navigation-item ">
|
360
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
361
|
+
<a href="https://github.com/trending?l=dot" class="select-menu-item-text js-select-button-text js-navigation-open">DOT</a>
|
362
|
+
</div> <!-- /.select-menu-item -->
|
363
|
+
<div class="select-menu-item js-navigation-item ">
|
364
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
365
|
+
<a href="https://github.com/trending?l=dylan" class="select-menu-item-text js-select-button-text js-navigation-open">Dylan</a>
|
366
|
+
</div> <!-- /.select-menu-item -->
|
367
|
+
<div class="select-menu-item js-navigation-item ">
|
368
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
369
|
+
<a href="https://github.com/trending?l=ec" class="select-menu-item-text js-select-button-text js-navigation-open">eC</a>
|
370
|
+
</div> <!-- /.select-menu-item -->
|
371
|
+
<div class="select-menu-item js-navigation-item ">
|
372
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
373
|
+
<a href="https://github.com/trending?l=ecl" class="select-menu-item-text js-select-button-text js-navigation-open">Ecl</a>
|
374
|
+
</div> <!-- /.select-menu-item -->
|
375
|
+
<div class="select-menu-item js-navigation-item ">
|
376
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
377
|
+
<a href="https://github.com/trending?l=eiffel" class="select-menu-item-text js-select-button-text js-navigation-open">Eiffel</a>
|
378
|
+
</div> <!-- /.select-menu-item -->
|
379
|
+
<div class="select-menu-item js-navigation-item ">
|
380
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
381
|
+
<a href="https://github.com/trending?l=elixir" class="select-menu-item-text js-select-button-text js-navigation-open">Elixir</a>
|
382
|
+
</div> <!-- /.select-menu-item -->
|
383
|
+
<div class="select-menu-item js-navigation-item ">
|
384
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
385
|
+
<a href="https://github.com/trending?l=emacs-lisp" class="select-menu-item-text js-select-button-text js-navigation-open">Emacs Lisp</a>
|
386
|
+
</div> <!-- /.select-menu-item -->
|
387
|
+
<div class="select-menu-item js-navigation-item ">
|
388
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
389
|
+
<a href="https://github.com/trending?l=erlang" class="select-menu-item-text js-select-button-text js-navigation-open">Erlang</a>
|
390
|
+
</div> <!-- /.select-menu-item -->
|
391
|
+
<div class="select-menu-item js-navigation-item ">
|
392
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
393
|
+
<a href="https://github.com/trending?l=fsharp" class="select-menu-item-text js-select-button-text js-navigation-open">F#</a>
|
394
|
+
</div> <!-- /.select-menu-item -->
|
395
|
+
<div class="select-menu-item js-navigation-item ">
|
396
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
397
|
+
<a href="https://github.com/trending?l=factor" class="select-menu-item-text js-select-button-text js-navigation-open">Factor</a>
|
398
|
+
</div> <!-- /.select-menu-item -->
|
399
|
+
<div class="select-menu-item js-navigation-item ">
|
400
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
401
|
+
<a href="https://github.com/trending?l=fancy" class="select-menu-item-text js-select-button-text js-navigation-open">Fancy</a>
|
402
|
+
</div> <!-- /.select-menu-item -->
|
403
|
+
<div class="select-menu-item js-navigation-item ">
|
404
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
405
|
+
<a href="https://github.com/trending?l=fantom" class="select-menu-item-text js-select-button-text js-navigation-open">Fantom</a>
|
406
|
+
</div> <!-- /.select-menu-item -->
|
407
|
+
<div class="select-menu-item js-navigation-item ">
|
408
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
409
|
+
<a href="https://github.com/trending?l=forth" class="select-menu-item-text js-select-button-text js-navigation-open">Forth</a>
|
410
|
+
</div> <!-- /.select-menu-item -->
|
411
|
+
<div class="select-menu-item js-navigation-item ">
|
412
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
413
|
+
<a href="https://github.com/trending?l=fortran" class="select-menu-item-text js-select-button-text js-navigation-open">FORTRAN</a>
|
414
|
+
</div> <!-- /.select-menu-item -->
|
415
|
+
<div class="select-menu-item js-navigation-item ">
|
416
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
417
|
+
<a href="https://github.com/trending?l=go" class="select-menu-item-text js-select-button-text js-navigation-open">Go</a>
|
418
|
+
</div> <!-- /.select-menu-item -->
|
419
|
+
<div class="select-menu-item js-navigation-item ">
|
420
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
421
|
+
<a href="https://github.com/trending?l=gosu" class="select-menu-item-text js-select-button-text js-navigation-open">Gosu</a>
|
422
|
+
</div> <!-- /.select-menu-item -->
|
423
|
+
<div class="select-menu-item js-navigation-item ">
|
424
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
425
|
+
<a href="https://github.com/trending?l=groovy" class="select-menu-item-text js-select-button-text js-navigation-open">Groovy</a>
|
426
|
+
</div> <!-- /.select-menu-item -->
|
427
|
+
<div class="select-menu-item js-navigation-item ">
|
428
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
429
|
+
<a href="https://github.com/trending?l=haskell" class="select-menu-item-text js-select-button-text js-navigation-open">Haskell</a>
|
430
|
+
</div> <!-- /.select-menu-item -->
|
431
|
+
<div class="select-menu-item js-navigation-item ">
|
432
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
433
|
+
<a href="https://github.com/trending?l=haxe" class="select-menu-item-text js-select-button-text js-navigation-open">Haxe</a>
|
434
|
+
</div> <!-- /.select-menu-item -->
|
435
|
+
<div class="select-menu-item js-navigation-item ">
|
436
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
437
|
+
<a href="https://github.com/trending?l=io" class="select-menu-item-text js-select-button-text js-navigation-open">Io</a>
|
438
|
+
</div> <!-- /.select-menu-item -->
|
439
|
+
<div class="select-menu-item js-navigation-item ">
|
440
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
441
|
+
<a href="https://github.com/trending?l=ioke" class="select-menu-item-text js-select-button-text js-navigation-open">Ioke</a>
|
442
|
+
</div> <!-- /.select-menu-item -->
|
443
|
+
<div class="select-menu-item js-navigation-item ">
|
444
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
445
|
+
<a href="https://github.com/trending?l=java" class="select-menu-item-text js-select-button-text js-navigation-open">Java</a>
|
446
|
+
</div> <!-- /.select-menu-item -->
|
447
|
+
<div class="select-menu-item js-navigation-item ">
|
448
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
449
|
+
<a href="https://github.com/trending?l=javascript" class="select-menu-item-text js-select-button-text js-navigation-open">JavaScript</a>
|
450
|
+
</div> <!-- /.select-menu-item -->
|
451
|
+
<div class="select-menu-item js-navigation-item ">
|
452
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
453
|
+
<a href="https://github.com/trending?l=julia" class="select-menu-item-text js-select-button-text js-navigation-open">Julia</a>
|
454
|
+
</div> <!-- /.select-menu-item -->
|
455
|
+
<div class="select-menu-item js-navigation-item ">
|
456
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
457
|
+
<a href="https://github.com/trending?l=kotlin" class="select-menu-item-text js-select-button-text js-navigation-open">Kotlin</a>
|
458
|
+
</div> <!-- /.select-menu-item -->
|
459
|
+
<div class="select-menu-item js-navigation-item ">
|
460
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
461
|
+
<a href="https://github.com/trending?l=lasso" class="select-menu-item-text js-select-button-text js-navigation-open">Lasso</a>
|
462
|
+
</div> <!-- /.select-menu-item -->
|
463
|
+
<div class="select-menu-item js-navigation-item ">
|
464
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
465
|
+
<a href="https://github.com/trending?l=livescript" class="select-menu-item-text js-select-button-text js-navigation-open">LiveScript</a>
|
466
|
+
</div> <!-- /.select-menu-item -->
|
467
|
+
<div class="select-menu-item js-navigation-item ">
|
468
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
469
|
+
<a href="https://github.com/trending?l=logos" class="select-menu-item-text js-select-button-text js-navigation-open">Logos</a>
|
470
|
+
</div> <!-- /.select-menu-item -->
|
471
|
+
<div class="select-menu-item js-navigation-item ">
|
472
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
473
|
+
<a href="https://github.com/trending?l=logtalk" class="select-menu-item-text js-select-button-text js-navigation-open">Logtalk</a>
|
474
|
+
</div> <!-- /.select-menu-item -->
|
475
|
+
<div class="select-menu-item js-navigation-item ">
|
476
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
477
|
+
<a href="https://github.com/trending?l=lua" class="select-menu-item-text js-select-button-text js-navigation-open">Lua</a>
|
478
|
+
</div> <!-- /.select-menu-item -->
|
479
|
+
<div class="select-menu-item js-navigation-item ">
|
480
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
481
|
+
<a href="https://github.com/trending?l=m" class="select-menu-item-text js-select-button-text js-navigation-open">M</a>
|
482
|
+
</div> <!-- /.select-menu-item -->
|
483
|
+
<div class="select-menu-item js-navigation-item ">
|
484
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
485
|
+
<a href="https://github.com/trending?l=markdown" class="select-menu-item-text js-select-button-text js-navigation-open">Markdown</a>
|
486
|
+
</div> <!-- /.select-menu-item -->
|
487
|
+
<div class="select-menu-item js-navigation-item ">
|
488
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
489
|
+
<a href="https://github.com/trending?l=matlab" class="select-menu-item-text js-select-button-text js-navigation-open">Matlab</a>
|
490
|
+
</div> <!-- /.select-menu-item -->
|
491
|
+
<div class="select-menu-item js-navigation-item ">
|
492
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
493
|
+
<a href="https://github.com/trending?l=max%2Fmsp" class="select-menu-item-text js-select-button-text js-navigation-open">Max</a>
|
494
|
+
</div> <!-- /.select-menu-item -->
|
495
|
+
<div class="select-menu-item js-navigation-item ">
|
496
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
497
|
+
<a href="https://github.com/trending?l=ruby" class="select-menu-item-text js-select-button-text js-navigation-open">Mirah</a>
|
498
|
+
</div> <!-- /.select-menu-item -->
|
499
|
+
<div class="select-menu-item js-navigation-item ">
|
500
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
501
|
+
<a href="https://github.com/trending?l=monkey" class="select-menu-item-text js-select-button-text js-navigation-open">Monkey</a>
|
502
|
+
</div> <!-- /.select-menu-item -->
|
503
|
+
<div class="select-menu-item js-navigation-item ">
|
504
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
505
|
+
<a href="https://github.com/trending?l=moonscript" class="select-menu-item-text js-select-button-text js-navigation-open">MoonScript</a>
|
506
|
+
</div> <!-- /.select-menu-item -->
|
507
|
+
<div class="select-menu-item js-navigation-item ">
|
508
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
509
|
+
<a href="https://github.com/trending?l=nemerle" class="select-menu-item-text js-select-button-text js-navigation-open">Nemerle</a>
|
510
|
+
</div> <!-- /.select-menu-item -->
|
511
|
+
<div class="select-menu-item js-navigation-item ">
|
512
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
513
|
+
<a href="https://github.com/trending?l=nimrod" class="select-menu-item-text js-select-button-text js-navigation-open">Nimrod</a>
|
514
|
+
</div> <!-- /.select-menu-item -->
|
515
|
+
<div class="select-menu-item js-navigation-item ">
|
516
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
517
|
+
<a href="https://github.com/trending?l=nu" class="select-menu-item-text js-select-button-text js-navigation-open">Nu</a>
|
518
|
+
</div> <!-- /.select-menu-item -->
|
519
|
+
<div class="select-menu-item js-navigation-item ">
|
520
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
521
|
+
<a href="https://github.com/trending?l=objective-c" class="select-menu-item-text js-select-button-text js-navigation-open">Objective-C</a>
|
522
|
+
</div> <!-- /.select-menu-item -->
|
523
|
+
<div class="select-menu-item js-navigation-item ">
|
524
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
525
|
+
<a href="https://github.com/trending?l=objective-j" class="select-menu-item-text js-select-button-text js-navigation-open">Objective-J</a>
|
526
|
+
</div> <!-- /.select-menu-item -->
|
527
|
+
<div class="select-menu-item js-navigation-item ">
|
528
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
529
|
+
<a href="https://github.com/trending?l=ocaml" class="select-menu-item-text js-select-button-text js-navigation-open">OCaml</a>
|
530
|
+
</div> <!-- /.select-menu-item -->
|
531
|
+
<div class="select-menu-item js-navigation-item ">
|
532
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
533
|
+
<a href="https://github.com/trending?l=omgrofl" class="select-menu-item-text js-select-button-text js-navigation-open">Omgrofl</a>
|
534
|
+
</div> <!-- /.select-menu-item -->
|
535
|
+
<div class="select-menu-item js-navigation-item ">
|
536
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
537
|
+
<a href="https://github.com/trending?l=ooc" class="select-menu-item-text js-select-button-text js-navigation-open">ooc</a>
|
538
|
+
</div> <!-- /.select-menu-item -->
|
539
|
+
<div class="select-menu-item js-navigation-item ">
|
540
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
541
|
+
<a href="https://github.com/trending?l=opa" class="select-menu-item-text js-select-button-text js-navigation-open">Opa</a>
|
542
|
+
</div> <!-- /.select-menu-item -->
|
543
|
+
<div class="select-menu-item js-navigation-item ">
|
544
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
545
|
+
<a href="https://github.com/trending?l=openedge-abl" class="select-menu-item-text js-select-button-text js-navigation-open">OpenEdge ABL</a>
|
546
|
+
</div> <!-- /.select-menu-item -->
|
547
|
+
<div class="select-menu-item js-navigation-item ">
|
548
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
549
|
+
<a href="https://github.com/trending?l=parrot" class="select-menu-item-text js-select-button-text js-navigation-open">Parrot</a>
|
550
|
+
</div> <!-- /.select-menu-item -->
|
551
|
+
<div class="select-menu-item js-navigation-item ">
|
552
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
553
|
+
<a href="https://github.com/trending?l=pascal" class="select-menu-item-text js-select-button-text js-navigation-open">Pascal</a>
|
554
|
+
</div> <!-- /.select-menu-item -->
|
555
|
+
<div class="select-menu-item js-navigation-item ">
|
556
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
557
|
+
<a href="https://github.com/trending?l=perl" class="select-menu-item-text js-select-button-text js-navigation-open">Perl</a>
|
558
|
+
</div> <!-- /.select-menu-item -->
|
559
|
+
<div class="select-menu-item js-navigation-item ">
|
560
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
561
|
+
<a href="https://github.com/trending?l=php" class="select-menu-item-text js-select-button-text js-navigation-open">PHP</a>
|
562
|
+
</div> <!-- /.select-menu-item -->
|
563
|
+
<div class="select-menu-item js-navigation-item ">
|
564
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
565
|
+
<a href="https://github.com/trending?l=pike" class="select-menu-item-text js-select-button-text js-navigation-open">Pike</a>
|
566
|
+
</div> <!-- /.select-menu-item -->
|
567
|
+
<div class="select-menu-item js-navigation-item ">
|
568
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
569
|
+
<a href="https://github.com/trending?l=pogoscript" class="select-menu-item-text js-select-button-text js-navigation-open">PogoScript</a>
|
570
|
+
</div> <!-- /.select-menu-item -->
|
571
|
+
<div class="select-menu-item js-navigation-item ">
|
572
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
573
|
+
<a href="https://github.com/trending?l=powershell" class="select-menu-item-text js-select-button-text js-navigation-open">PowerShell</a>
|
574
|
+
</div> <!-- /.select-menu-item -->
|
575
|
+
<div class="select-menu-item js-navigation-item ">
|
576
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
577
|
+
<a href="https://github.com/trending?l=processing" class="select-menu-item-text js-select-button-text js-navigation-open">Processing</a>
|
578
|
+
</div> <!-- /.select-menu-item -->
|
579
|
+
<div class="select-menu-item js-navigation-item ">
|
580
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
581
|
+
<a href="https://github.com/trending?l=prolog" class="select-menu-item-text js-select-button-text js-navigation-open">Prolog</a>
|
582
|
+
</div> <!-- /.select-menu-item -->
|
583
|
+
<div class="select-menu-item js-navigation-item ">
|
584
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
585
|
+
<a href="https://github.com/trending?l=puppet" class="select-menu-item-text js-select-button-text js-navigation-open">Puppet</a>
|
586
|
+
</div> <!-- /.select-menu-item -->
|
587
|
+
<div class="select-menu-item js-navigation-item ">
|
588
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
589
|
+
<a href="https://github.com/trending?l=pure-data" class="select-menu-item-text js-select-button-text js-navigation-open">Pure Data</a>
|
590
|
+
</div> <!-- /.select-menu-item -->
|
591
|
+
<div class="select-menu-item js-navigation-item ">
|
592
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
593
|
+
<a href="https://github.com/trending?l=python" class="select-menu-item-text js-select-button-text js-navigation-open">Python</a>
|
594
|
+
</div> <!-- /.select-menu-item -->
|
595
|
+
<div class="select-menu-item js-navigation-item ">
|
596
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
597
|
+
<a href="https://github.com/trending?l=r" class="select-menu-item-text js-select-button-text js-navigation-open">R</a>
|
598
|
+
</div> <!-- /.select-menu-item -->
|
599
|
+
<div class="select-menu-item js-navigation-item ">
|
600
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
601
|
+
<a href="https://github.com/trending?l=racket" class="select-menu-item-text js-select-button-text js-navigation-open">Racket</a>
|
602
|
+
</div> <!-- /.select-menu-item -->
|
603
|
+
<div class="select-menu-item js-navigation-item ">
|
604
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
605
|
+
<a href="https://github.com/trending?l=ragel-in-ruby-host" class="select-menu-item-text js-select-button-text js-navigation-open">Ragel in Ruby Host</a>
|
606
|
+
</div> <!-- /.select-menu-item -->
|
607
|
+
<div class="select-menu-item js-navigation-item ">
|
608
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
609
|
+
<a href="https://github.com/trending?l=rebol" class="select-menu-item-text js-select-button-text js-navigation-open">Rebol</a>
|
610
|
+
</div> <!-- /.select-menu-item -->
|
611
|
+
<div class="select-menu-item js-navigation-item ">
|
612
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
613
|
+
<a href="https://github.com/trending?l=rouge" class="select-menu-item-text js-select-button-text js-navigation-open">Rouge</a>
|
614
|
+
</div> <!-- /.select-menu-item -->
|
615
|
+
<div class="select-menu-item js-navigation-item ">
|
616
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
617
|
+
<a href="https://github.com/trending?l=ruby" class="select-menu-item-text js-select-button-text js-navigation-open">Ruby</a>
|
618
|
+
</div> <!-- /.select-menu-item -->
|
619
|
+
<div class="select-menu-item js-navigation-item ">
|
620
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
621
|
+
<a href="https://github.com/trending?l=rust" class="select-menu-item-text js-select-button-text js-navigation-open">Rust</a>
|
622
|
+
</div> <!-- /.select-menu-item -->
|
623
|
+
<div class="select-menu-item js-navigation-item ">
|
624
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
625
|
+
<a href="https://github.com/trending?l=scala" class="select-menu-item-text js-select-button-text js-navigation-open">Scala</a>
|
626
|
+
</div> <!-- /.select-menu-item -->
|
627
|
+
<div class="select-menu-item js-navigation-item ">
|
628
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
629
|
+
<a href="https://github.com/trending?l=scheme" class="select-menu-item-text js-select-button-text js-navigation-open">Scheme</a>
|
630
|
+
</div> <!-- /.select-menu-item -->
|
631
|
+
<div class="select-menu-item js-navigation-item ">
|
632
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
633
|
+
<a href="https://github.com/trending?l=scilab" class="select-menu-item-text js-select-button-text js-navigation-open">Scilab</a>
|
634
|
+
</div> <!-- /.select-menu-item -->
|
635
|
+
<div class="select-menu-item js-navigation-item ">
|
636
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
637
|
+
<a href="https://github.com/trending?l=self" class="select-menu-item-text js-select-button-text js-navigation-open">Self</a>
|
638
|
+
</div> <!-- /.select-menu-item -->
|
639
|
+
<div class="select-menu-item js-navigation-item ">
|
640
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
641
|
+
<a href="https://github.com/trending?l=bash" class="select-menu-item-text js-select-button-text js-navigation-open">Shell</a>
|
642
|
+
</div> <!-- /.select-menu-item -->
|
643
|
+
<div class="select-menu-item js-navigation-item ">
|
644
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
645
|
+
<a href="https://github.com/trending?l=slash" class="select-menu-item-text js-select-button-text js-navigation-open">Slash</a>
|
646
|
+
</div> <!-- /.select-menu-item -->
|
647
|
+
<div class="select-menu-item js-navigation-item ">
|
648
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
649
|
+
<a href="https://github.com/trending?l=smalltalk" class="select-menu-item-text js-select-button-text js-navigation-open">Smalltalk</a>
|
650
|
+
</div> <!-- /.select-menu-item -->
|
651
|
+
<div class="select-menu-item js-navigation-item ">
|
652
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
653
|
+
<a href="https://github.com/trending?l=squirrel" class="select-menu-item-text js-select-button-text js-navigation-open">Squirrel</a>
|
654
|
+
</div> <!-- /.select-menu-item -->
|
655
|
+
<div class="select-menu-item js-navigation-item ">
|
656
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
657
|
+
<a href="https://github.com/trending?l=standard-ml" class="select-menu-item-text js-select-button-text js-navigation-open">Standard ML</a>
|
658
|
+
</div> <!-- /.select-menu-item -->
|
659
|
+
<div class="select-menu-item js-navigation-item ">
|
660
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
661
|
+
<a href="https://github.com/trending?l=supercollider" class="select-menu-item-text js-select-button-text js-navigation-open">SuperCollider</a>
|
662
|
+
</div> <!-- /.select-menu-item -->
|
663
|
+
<div class="select-menu-item js-navigation-item ">
|
664
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
665
|
+
<a href="https://github.com/trending?l=tcl" class="select-menu-item-text js-select-button-text js-navigation-open">Tcl</a>
|
666
|
+
</div> <!-- /.select-menu-item -->
|
667
|
+
<div class="select-menu-item js-navigation-item ">
|
668
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
669
|
+
<a href="https://github.com/trending?l=turing" class="select-menu-item-text js-select-button-text js-navigation-open">Turing</a>
|
670
|
+
</div> <!-- /.select-menu-item -->
|
671
|
+
<div class="select-menu-item js-navigation-item ">
|
672
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
673
|
+
<a href="https://github.com/trending?l=txl" class="select-menu-item-text js-select-button-text js-navigation-open">TXL</a>
|
674
|
+
</div> <!-- /.select-menu-item -->
|
675
|
+
<div class="select-menu-item js-navigation-item ">
|
676
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
677
|
+
<a href="https://github.com/trending?l=typescript" class="select-menu-item-text js-select-button-text js-navigation-open">TypeScript</a>
|
678
|
+
</div> <!-- /.select-menu-item -->
|
679
|
+
<div class="select-menu-item js-navigation-item ">
|
680
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
681
|
+
<a href="https://github.com/trending?l=vala" class="select-menu-item-text js-select-button-text js-navigation-open">Vala</a>
|
682
|
+
</div> <!-- /.select-menu-item -->
|
683
|
+
<div class="select-menu-item js-navigation-item ">
|
684
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
685
|
+
<a href="https://github.com/trending?l=verilog" class="select-menu-item-text js-select-button-text js-navigation-open">Verilog</a>
|
686
|
+
</div> <!-- /.select-menu-item -->
|
687
|
+
<div class="select-menu-item js-navigation-item ">
|
688
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
689
|
+
<a href="https://github.com/trending?l=vhdl" class="select-menu-item-text js-select-button-text js-navigation-open">VHDL</a>
|
690
|
+
</div> <!-- /.select-menu-item -->
|
691
|
+
<div class="select-menu-item js-navigation-item ">
|
692
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
693
|
+
<a href="https://github.com/trending?l=vim" class="select-menu-item-text js-select-button-text js-navigation-open">VimL</a>
|
694
|
+
</div> <!-- /.select-menu-item -->
|
695
|
+
<div class="select-menu-item js-navigation-item ">
|
696
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
697
|
+
<a href="https://github.com/trending?l=visual-basic" class="select-menu-item-text js-select-button-text js-navigation-open">Visual Basic</a>
|
698
|
+
</div> <!-- /.select-menu-item -->
|
699
|
+
<div class="select-menu-item js-navigation-item ">
|
700
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
701
|
+
<a href="https://github.com/trending?l=volt" class="select-menu-item-text js-select-button-text js-navigation-open">Volt</a>
|
702
|
+
</div> <!-- /.select-menu-item -->
|
703
|
+
<div class="select-menu-item js-navigation-item ">
|
704
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
705
|
+
<a href="https://github.com/trending?l=wisp" class="select-menu-item-text js-select-button-text js-navigation-open">wisp</a>
|
706
|
+
</div> <!-- /.select-menu-item -->
|
707
|
+
<div class="select-menu-item js-navigation-item ">
|
708
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
709
|
+
<a href="https://github.com/trending?l=xc" class="select-menu-item-text js-select-button-text js-navigation-open">XC</a>
|
710
|
+
</div> <!-- /.select-menu-item -->
|
711
|
+
<div class="select-menu-item js-navigation-item ">
|
712
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
713
|
+
<a href="https://github.com/trending?l=xml" class="select-menu-item-text js-select-button-text js-navigation-open">XML</a>
|
714
|
+
</div> <!-- /.select-menu-item -->
|
715
|
+
<div class="select-menu-item js-navigation-item ">
|
716
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
717
|
+
<a href="https://github.com/trending?l=xproc" class="select-menu-item-text js-select-button-text js-navigation-open">XProc</a>
|
718
|
+
</div> <!-- /.select-menu-item -->
|
719
|
+
<div class="select-menu-item js-navigation-item ">
|
720
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
721
|
+
<a href="https://github.com/trending?l=xquery" class="select-menu-item-text js-select-button-text js-navigation-open">XQuery</a>
|
722
|
+
</div> <!-- /.select-menu-item -->
|
723
|
+
<div class="select-menu-item js-navigation-item ">
|
724
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
725
|
+
<a href="https://github.com/trending?l=xslt" class="select-menu-item-text js-select-button-text js-navigation-open">XSLT</a>
|
726
|
+
</div> <!-- /.select-menu-item -->
|
727
|
+
<div class="select-menu-item js-navigation-item ">
|
728
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
729
|
+
<a href="https://github.com/trending?l=xtend" class="select-menu-item-text js-select-button-text js-navigation-open">Xtend</a>
|
730
|
+
</div> <!-- /.select-menu-item -->
|
731
|
+
</div>
|
732
|
+
|
733
|
+
</div> <!-- /.select-menu-list -->
|
734
|
+
|
735
|
+
<div class="select-menu-loading-overlay">Loading…</div>
|
736
|
+
</div> <!-- /.select-menu-modal -->
|
737
|
+
</div> <!-- /.select-menu-modal-holder -->
|
738
|
+
</div> <!-- /.select-menu -->
|
739
|
+
|
740
|
+
<div class="callout">
|
741
|
+
<p class="tip"><strong class="protip">ProTip™</strong> Looking for most starred Ruby repositories? <a href="/search?l=ruby&q=stars%3A%3E1&s=stars&type=Repositories">Try this search</a></p>
|
742
|
+
</div>
|
743
|
+
</div>
|
744
|
+
<div class="column main">
|
745
|
+
<div class="tabnav">
|
746
|
+
<ul class="tabnav-tabs" data-pjax>
|
747
|
+
<li><a href="https://github.com/trending?l=ruby" class="selected js-selected-navigation-item tabnav-tab" data-selected-links="trending_repositories https://github.com/trending?l=ruby">Repositories</a></li>
|
748
|
+
<li><a href="https://github.com/trending/developers?l=ruby" class="js-selected-navigation-item tabnav-tab" data-selected-links="trending_developers https://github.com/trending/developers?l=ruby">Developers</a></li>
|
749
|
+
</ul>
|
750
|
+
|
751
|
+
<div class="tabnav-right">
|
752
|
+
<div class="tabnav-widget">
|
753
|
+
<div class="select-menu js-menu-container js-select-menu right-aligned">
|
754
|
+
<span class="minibutton select-menu-button js-menu-target">
|
755
|
+
<i>Trending:</i>
|
756
|
+
<span class="js-select-button">today</span>
|
757
|
+
</span>
|
758
|
+
<div class="select-menu-modal-holder js-menu-content js-navigation-container">
|
759
|
+
<div class="select-menu-modal">
|
760
|
+
<div class="select-menu-header">
|
761
|
+
<span class="select-menu-title">Adjust time span</span>
|
762
|
+
<span class="octicon octicon-remove-close js-menu-close"></span>
|
763
|
+
</div> <!-- /.select-menu-header -->
|
764
|
+
|
765
|
+
<div class="select-menu-list">
|
766
|
+
<div>
|
767
|
+
<a class="select-menu-item js-navigation-item selected" href="https://github.com/trending?l=ruby&since=daily" data-pjax>
|
768
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
769
|
+
<span class="select-menu-item-text js-select-button-text">today</span>
|
770
|
+
</a> <!-- /.select-menu-item -->
|
771
|
+
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=weekly" data-pjax>
|
772
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
773
|
+
<span class="select-menu-item-text js-select-button-text">this week</span>
|
774
|
+
</a> <!-- /.select-menu-item -->
|
775
|
+
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=monthly" data-pjax>
|
776
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
777
|
+
<span class="select-menu-item-text js-select-button-text">this month</span>
|
778
|
+
</a> <!-- /.select-menu-item -->
|
779
|
+
</div>
|
780
|
+
|
781
|
+
</div> <!-- /.select-menu-list -->
|
782
|
+
|
783
|
+
</div> <!-- /.select-menu-modal -->
|
784
|
+
</div> <!-- /.select-menu-modal-holder -->
|
785
|
+
</div> <!-- /.select-menu -->
|
786
|
+
|
787
|
+
</div>
|
788
|
+
</div>
|
789
|
+
</div>
|
790
|
+
<div class="explore-content">
|
791
|
+
<ol class="repo-leaderboard-list leaderboard-list">
|
792
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-githug">
|
793
|
+
<a href="#pa-githug" class="leaderboard-list-rank" >#1</a>
|
794
|
+
<span class="mega-octicon octicon-repo"></span>
|
795
|
+
<div class="leaderboard-action">
|
796
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
797
|
+
<a href="/Gazler/githug/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
798
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
799
|
+
</a>
|
800
|
+
<a href="/Gazler/githug/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
801
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
802
|
+
</a>
|
803
|
+
</div>
|
804
|
+
</div>
|
805
|
+
<div class="leaderboard-list-content">
|
806
|
+
<h2 class="repo-leaderboard-title">
|
807
|
+
<a href="/Gazler/githug" class="repository-name"><span class="owner-name">Gazler</span><span class="separator">/</span><strong>githug</strong></a>
|
808
|
+
<span class="title-meta">Ruby</span>
|
809
|
+
</h2>
|
810
|
+
<p class="repo-leaderboard-description">Git your game on!</p>
|
811
|
+
|
812
|
+
<div class="repo-leaderboard-contributors">
|
813
|
+
<a href="/Gazler/githug/graphs/contributors">
|
814
|
+
<span class="contributor-avatar-text">built by</span>
|
815
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/012f4052c6fb1a600a3e4f39e1f2439a?d=https%3A%2F%2Fidenticons.github.com%2F1dd08516d587b823bf6b8ac65e84847d.png&r=x&s=140" title="Gazler" width="20" />
|
816
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1ec70ae3a6cd5b540a93d00353713eb4?d=https%3A%2F%2Fidenticons.github.com%2F36eaf439ebfb1442baeacd88c36ca58d.png&r=x&s=140" title="guywithnose" width="20" />
|
817
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/40ed131dbac085bb89969ac82faed32d?d=https%3A%2F%2Fidenticons.github.com%2Fad334f70ab534128adbe2705ff0aacb7.png&r=x&s=140" title="dtrodrigues" width="20" />
|
818
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/86ce735f59af85b35fa7416c4b330452?d=https%3A%2F%2Fidenticons.github.com%2F0da507fa69e5cca69d16994b101715e6.png&r=x&s=140" title="thameera" width="20" />
|
819
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/0ba988e6ace3290b49328b83f075a533?d=https%3A%2F%2Fidenticons.github.com%2F0372b3789db17a988add540e1251f52f.png&r=x&s=140" title="dpick" width="20" />
|
820
|
+
</a>
|
821
|
+
</div>
|
822
|
+
</div>
|
823
|
+
|
824
|
+
</li>
|
825
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-termit">
|
826
|
+
<a href="#pa-termit" class="leaderboard-list-rank" >#2</a>
|
827
|
+
<span class="mega-octicon octicon-repo"></span>
|
828
|
+
<div class="leaderboard-action">
|
829
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
830
|
+
<a href="/pawurb/termit/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
831
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
832
|
+
</a>
|
833
|
+
<a href="/pawurb/termit/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
834
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
835
|
+
</a>
|
836
|
+
</div>
|
837
|
+
</div>
|
838
|
+
<div class="leaderboard-list-content">
|
839
|
+
<h2 class="repo-leaderboard-title">
|
840
|
+
<a href="/pawurb/termit" class="repository-name"><span class="owner-name">pawurb</span><span class="separator">/</span><strong>termit</strong></a>
|
841
|
+
<span class="title-meta">Ruby</span>
|
842
|
+
</h2>
|
843
|
+
<p class="repo-leaderboard-description">Google Translate with speech synthesis in your terminal</p>
|
844
|
+
|
845
|
+
<div class="repo-leaderboard-contributors">
|
846
|
+
<a href="/pawurb/termit/graphs/contributors">
|
847
|
+
<span class="contributor-avatar-text">built by</span>
|
848
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/6f0d768b442e8e2ad1cd15d062f981a5?d=https%3A%2F%2Fidenticons.github.com%2F46e90adbac3b761fb1f7b0575c227011.png&r=x&s=140" title="pawurb" width="20" />
|
849
|
+
</a>
|
850
|
+
</div>
|
851
|
+
</div>
|
852
|
+
|
853
|
+
</li>
|
854
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-post_json">
|
855
|
+
<a href="#pa-post_json" class="leaderboard-list-rank" >#3</a>
|
856
|
+
<span class="mega-octicon octicon-repo"></span>
|
857
|
+
<div class="leaderboard-action">
|
858
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
859
|
+
<a href="/webnuts/post_json/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
860
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
861
|
+
</a>
|
862
|
+
<a href="/webnuts/post_json/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
863
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
864
|
+
</a>
|
865
|
+
</div>
|
866
|
+
</div>
|
867
|
+
<div class="leaderboard-list-content">
|
868
|
+
<h2 class="repo-leaderboard-title">
|
869
|
+
<a href="/webnuts/post_json" class="repository-name"><span class="owner-name">webnuts</span><span class="separator">/</span><strong>post_json</strong></a>
|
870
|
+
<span class="title-meta">Ruby</span>
|
871
|
+
</h2>
|
872
|
+
<p class="repo-leaderboard-description">A Fast and Flexible Document Database by Combining Features of Ruby and PostgreSQL with PLV8</p>
|
873
|
+
|
874
|
+
<div class="repo-leaderboard-contributors">
|
875
|
+
<a href="/webnuts/post_json/graphs/contributors">
|
876
|
+
<span class="contributor-avatar-text">built by</span>
|
877
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/efef2028c8029d38d2b91cf9edbef145?d=https%3A%2F%2Fidenticons.github.com%2Ff642b20323660bdd7bc9dd8079d37a16.png&r=x&s=140" title="jacobmadsen" width="20" />
|
878
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/94d443acee6e63ba47a3b4964295c973?d=https%3A%2F%2Fidenticons.github.com%2Ff3957fa3bea9138b3f54f0e18975a30c.png&r=x&s=140" title="elskwid" width="20" />
|
879
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a249edf6200667ad62e22a1668921810?d=https%3A%2F%2Fidenticons.github.com%2F04e9c6c788a89418a907ff9ee943a5fb.png&r=x&s=140" title="rmontgomery429" width="20" />
|
880
|
+
</a>
|
881
|
+
</div>
|
882
|
+
</div>
|
883
|
+
|
884
|
+
</li>
|
885
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-homebrew">
|
886
|
+
<a href="#pa-homebrew" class="leaderboard-list-rank" >#4</a>
|
887
|
+
<span class="mega-octicon octicon-repo"></span>
|
888
|
+
<div class="leaderboard-action">
|
889
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
890
|
+
<a href="/mxcl/homebrew/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
891
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
892
|
+
</a>
|
893
|
+
<a href="/mxcl/homebrew/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
894
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
895
|
+
</a>
|
896
|
+
</div>
|
897
|
+
</div>
|
898
|
+
<div class="leaderboard-list-content">
|
899
|
+
<h2 class="repo-leaderboard-title">
|
900
|
+
<a href="/mxcl/homebrew" class="repository-name"><span class="owner-name">mxcl</span><span class="separator">/</span><strong>homebrew</strong></a>
|
901
|
+
<span class="title-meta">Ruby</span>
|
902
|
+
</h2>
|
903
|
+
<p class="repo-leaderboard-description">The missing package manager for OS X.</p>
|
904
|
+
|
905
|
+
<div class="repo-leaderboard-contributors">
|
906
|
+
<a href="/mxcl/homebrew/graphs/contributors">
|
907
|
+
<span class="contributor-avatar-text">built by</span>
|
908
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/7ea0cc75793eb2b1ada4abc953a41592?d=https%3A%2F%2Fidenticons.github.com%2F6346dc723395e1ee8ef57f4883be4cb4.png&r=x&s=140" title="adamv" width="20" />
|
909
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/68602fa96bdda4c677ece48ab42b6eb2?d=https%3A%2F%2Fidenticons.github.com%2F1e54e367902e0384023eacc6feeb1c1e.png&r=x&s=140" title="jacknagel" width="20" />
|
910
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/1510549f9353c9859b7b3c81872df09c?d=https%3A%2F%2Fidenticons.github.com%2Fdbf2a92a3d71fdbdc5b30c3bcf27111e.png&r=x&s=140" title="mxcl" width="20" />
|
911
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/08500f9edf14df151b6bb02b807e297c?d=https%3A%2F%2Fidenticons.github.com%2Fe822932efb5c63f52618af8a526cedef.png&r=x&s=140" title="asparagui" width="20" />
|
912
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/215e0166d4d8265395c5d9076da73c70?d=https%3A%2F%2Fidenticons.github.com%2F19e490b885e34ade007230f7a58dc9a4.png&r=x&s=140" title="mikemcquaid" width="20" />
|
913
|
+
</a>
|
914
|
+
</div>
|
915
|
+
</div>
|
916
|
+
|
917
|
+
</li>
|
918
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-homebrew-cask">
|
919
|
+
<a href="#pa-homebrew-cask" class="leaderboard-list-rank" >#5</a>
|
920
|
+
<span class="mega-octicon octicon-repo"></span>
|
921
|
+
<div class="leaderboard-action">
|
922
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
923
|
+
<a href="/phinze/homebrew-cask/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
924
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
925
|
+
</a>
|
926
|
+
<a href="/phinze/homebrew-cask/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
927
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
928
|
+
</a>
|
929
|
+
</div>
|
930
|
+
</div>
|
931
|
+
<div class="leaderboard-list-content">
|
932
|
+
<h2 class="repo-leaderboard-title">
|
933
|
+
<a href="/phinze/homebrew-cask" class="repository-name"><span class="owner-name">phinze</span><span class="separator">/</span><strong>homebrew-cask</strong></a>
|
934
|
+
<span class="title-meta">Ruby</span>
|
935
|
+
</h2>
|
936
|
+
<p class="repo-leaderboard-description">a friendly homebrew-style CLI workflow for the administration of Mac applications distributed as binaries</p>
|
937
|
+
|
938
|
+
<div class="repo-leaderboard-contributors">
|
939
|
+
<a href="/phinze/homebrew-cask/graphs/contributors">
|
940
|
+
<span class="contributor-avatar-text">built by</span>
|
941
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/60448d8d902528fc7ab6f83b242dd74b?d=https%3A%2F%2Fidenticons.github.com%2F45b799dfd3cebacfa8a67f600190c634.png&r=x&s=140" title="vitorgalvao" width="20" />
|
942
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/681c391816f28b83511530df8307fa25?d=https%3A%2F%2Fidenticons.github.com%2F062480e020cc84ccecec43315672c61a.png&r=x&s=140" title="NanoXD" width="20" />
|
943
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1dad4013c9d7688e54c2a2dbe0a059b3?d=https%3A%2F%2Fidenticons.github.com%2Faddb8025d6d9c09151aac5ea1f7233ec.png&r=x&s=140" title="phinze" width="20" />
|
944
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/23690f877f8b54df713c66cae903a075?d=https%3A%2F%2Fidenticons.github.com%2F152b22bdf7d37bcf70591b13288b6f36.png&r=x&s=140" title="fanquake" width="20" />
|
945
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/4502e4645eee7558b9d3247917c6f14f?d=https%3A%2F%2Fidenticons.github.com%2F081a5f4e1be4b8490c60429a8a4cfe4c.png&r=x&s=140" title="shostakovich" width="20" />
|
946
|
+
</a>
|
947
|
+
</div>
|
948
|
+
</div>
|
949
|
+
|
950
|
+
</li>
|
951
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-gitlabhq">
|
952
|
+
<a href="#pa-gitlabhq" class="leaderboard-list-rank" >#6</a>
|
953
|
+
<span class="mega-octicon octicon-repo"></span>
|
954
|
+
<div class="leaderboard-action">
|
955
|
+
<div class="js-toggler-container js-social-container starring-container on">
|
956
|
+
<a href="/gitlabhq/gitlabhq/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
957
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
958
|
+
</a>
|
959
|
+
<a href="/gitlabhq/gitlabhq/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
960
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
961
|
+
</a>
|
962
|
+
</div>
|
963
|
+
</div>
|
964
|
+
<div class="leaderboard-list-content">
|
965
|
+
<h2 class="repo-leaderboard-title">
|
966
|
+
<a href="/gitlabhq/gitlabhq" class="repository-name"><span class="owner-name">gitlabhq</span><span class="separator">/</span><strong>gitlabhq</strong></a>
|
967
|
+
<span class="title-meta">Ruby</span>
|
968
|
+
</h2>
|
969
|
+
<p class="repo-leaderboard-description">Project management and code hosting application. Follow us on twitter @gitlabhq</p>
|
970
|
+
|
971
|
+
<div class="repo-leaderboard-contributors">
|
972
|
+
<a href="/gitlabhq/gitlabhq/graphs/contributors">
|
973
|
+
<span class="contributor-avatar-text">built by</span>
|
974
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/cd857fed2b3d0f453861246f5f0dad1e?d=https%3A%2F%2Fidenticons.github.com%2Fe26a0580765ad73fcd77f87a1da71cb7.png&r=x&s=140" title="randx" width="20" />
|
975
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/15146920e0ed4c9d194f097b789cf530?d=https%3A%2F%2Fidenticons.github.com%2F8a4ca22e8f0fc74f9eeb9169123d896a.png&r=x&s=140" title="riyad" width="20" />
|
976
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/47b77c89d3ece30b80b49f3319029b56?d=https%3A%2F%2Fidenticons.github.com%2Fe64bad42867496e0a58303142fc6f3ea.png&r=x&s=140" title="vsizov" width="20" />
|
977
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/73c8253932541a7b5cbc5d79493f2bea?d=https%3A%2F%2Fidenticons.github.com%2F9f81250cf78de6e784e780b5c9958cc2.png&r=x&s=140" title="tsigo" width="20" />
|
978
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/144314100b686db946ff68c7ae1065d1?d=https%3A%2F%2Fidenticons.github.com%2Ff98521e3fc8ef22ecf5b28861c3c1424.png&r=x&s=140" title="NARKOZ" width="20" />
|
979
|
+
</a>
|
980
|
+
</div>
|
981
|
+
</div>
|
982
|
+
|
983
|
+
</li>
|
984
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-jop">
|
985
|
+
<a href="#pa-jop" class="leaderboard-list-rank" >#7</a>
|
986
|
+
<span class="mega-octicon octicon-repo"></span>
|
987
|
+
<div class="leaderboard-action">
|
988
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
989
|
+
<a href="/michaelfeathers/jop/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
990
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
991
|
+
</a>
|
992
|
+
<a href="/michaelfeathers/jop/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
993
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
994
|
+
</a>
|
995
|
+
</div>
|
996
|
+
</div>
|
997
|
+
<div class="leaderboard-list-content">
|
998
|
+
<h2 class="repo-leaderboard-title">
|
999
|
+
<a href="/michaelfeathers/jop" class="repository-name"><span class="owner-name">michaelfeathers</span><span class="separator">/</span><strong>jop</strong></a>
|
1000
|
+
<span class="title-meta">Ruby</span>
|
1001
|
+
</h2>
|
1002
|
+
<p class="repo-leaderboard-description">a gem to add J language array commands to Ruby</p>
|
1003
|
+
|
1004
|
+
<div class="repo-leaderboard-contributors">
|
1005
|
+
<a href="/michaelfeathers/jop/graphs/contributors">
|
1006
|
+
<span class="contributor-avatar-text">built by</span>
|
1007
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ed33d0694a8816d57dbc5290202f6a58?d=https%3A%2F%2Fidenticons.github.com%2F0347b06839a9947476e2f970b3f07e66.png&r=x&s=140" title="michaelfeathers" width="20" />
|
1008
|
+
</a>
|
1009
|
+
</div>
|
1010
|
+
</div>
|
1011
|
+
|
1012
|
+
</li>
|
1013
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-synapse">
|
1014
|
+
<a href="#pa-synapse" class="leaderboard-list-rank" >#8</a>
|
1015
|
+
<span class="mega-octicon octicon-repo"></span>
|
1016
|
+
<div class="leaderboard-action">
|
1017
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1018
|
+
<a href="/airbnb/synapse/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1019
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1020
|
+
</a>
|
1021
|
+
<a href="/airbnb/synapse/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1022
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1023
|
+
</a>
|
1024
|
+
</div>
|
1025
|
+
</div>
|
1026
|
+
<div class="leaderboard-list-content">
|
1027
|
+
<h2 class="repo-leaderboard-title">
|
1028
|
+
<a href="/airbnb/synapse" class="repository-name"><span class="owner-name">airbnb</span><span class="separator">/</span><strong>synapse</strong></a>
|
1029
|
+
<span class="title-meta">Ruby</span>
|
1030
|
+
</h2>
|
1031
|
+
|
1032
|
+
<div class="repo-leaderboard-contributors">
|
1033
|
+
<a href="/airbnb/synapse/graphs/contributors">
|
1034
|
+
<span class="contributor-avatar-text">built by</span>
|
1035
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ced7dfd96b76abc2a68766170b211013?d=https%3A%2F%2Fidenticons.github.com%2F6fa501ffd66deb70ff1abe6f47833621.png&r=x&s=140" title="igor47" width="20" />
|
1036
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/d3ab72cca9386f19daf37d57e4a0a9d2?d=https%3A%2F%2Fidenticons.github.com%2F094bb65ef46d3eb4be0a87877ec333eb.png&r=x&s=140" title="schleyfox" width="20" />
|
1037
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/63fdb44556573392f7157a3b920c8ef1?d=https%3A%2F%2Fidenticons.github.com%2Fd3291c2554192b5d7729a1730c92f3e1.png&r=x&s=140" title="martinrhoads" width="20" />
|
1038
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7383899667bc780957ecaa548940ffc4?d=https%3A%2F%2Fidenticons.github.com%2F51fd081fb2f037078fc8a4e037daabe4.png&r=x&s=140" title="pcarrier" width="20" />
|
1039
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/67b1c99c0e67f92800771499a26c0917?d=https%3A%2F%2Fidenticons.github.com%2F6766486c9f217c9dc002feb3d0b8b720.png&r=x&s=140" title="jtai" width="20" />
|
1040
|
+
</a>
|
1041
|
+
</div>
|
1042
|
+
</div>
|
1043
|
+
|
1044
|
+
</li>
|
1045
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-rails">
|
1046
|
+
<a href="#pa-rails" class="leaderboard-list-rank" >#9</a>
|
1047
|
+
<span class="mega-octicon octicon-repo"></span>
|
1048
|
+
<div class="leaderboard-action">
|
1049
|
+
<div class="js-toggler-container js-social-container starring-container on">
|
1050
|
+
<a href="/rails/rails/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1051
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1052
|
+
</a>
|
1053
|
+
<a href="/rails/rails/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1054
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1055
|
+
</a>
|
1056
|
+
</div>
|
1057
|
+
</div>
|
1058
|
+
<div class="leaderboard-list-content">
|
1059
|
+
<h2 class="repo-leaderboard-title">
|
1060
|
+
<a href="/rails/rails" class="repository-name"><span class="owner-name">rails</span><span class="separator">/</span><strong>rails</strong></a>
|
1061
|
+
<span class="title-meta">Ruby</span>
|
1062
|
+
</h2>
|
1063
|
+
<p class="repo-leaderboard-description">Ruby on Rails</p>
|
1064
|
+
|
1065
|
+
<div class="repo-leaderboard-contributors">
|
1066
|
+
<a href="/rails/rails/graphs/contributors">
|
1067
|
+
<span class="contributor-avatar-text">built by</span>
|
1068
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ed9635566b34ade32274f510f0f9a6d2?d=https%3A%2F%2Fidenticons.github.com%2Fcdcb2f5c7b071143529ef7f2705dfbc4.png&r=x&s=140" title="dhh" width="20" />
|
1069
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/24d2f8804e6bb4b7ea6bd11e0a586470?d=https%3A%2F%2Fidenticons.github.com%2F84d9ee44e457ddef7f2c4f25dc8fa865.png&r=x&s=140" title="jeremy" width="20" />
|
1070
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/f29327647a9cff5c69618bae420792ea?d=https%3A%2F%2Fidenticons.github.com%2F7c78335a8924215ea5c22fda1aac7b75.png&r=x&s=140" title="tenderlove" width="20" />
|
1071
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/e837f6b7fd146ab16ed3d663476c063e?d=https%3A%2F%2Fidenticons.github.com%2Fe20b21ae6508f22fc189c60a0880d0b8.png&r=x&s=140" title="josevalim" width="20" />
|
1072
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/7223c62b7310e164eb79c740188abbda?d=https%3A%2F%2Fidenticons.github.com%2F4a11654ad1e1e48352252859ff3032a0.png&r=x&s=140" title="fxn" width="20" />
|
1073
|
+
</a>
|
1074
|
+
</div>
|
1075
|
+
</div>
|
1076
|
+
|
1077
|
+
</li>
|
1078
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-nerve">
|
1079
|
+
<a href="#pa-nerve" class="leaderboard-list-rank" >#10</a>
|
1080
|
+
<span class="mega-octicon octicon-repo"></span>
|
1081
|
+
<div class="leaderboard-action">
|
1082
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1083
|
+
<a href="/airbnb/nerve/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1084
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1085
|
+
</a>
|
1086
|
+
<a href="/airbnb/nerve/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1087
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1088
|
+
</a>
|
1089
|
+
</div>
|
1090
|
+
</div>
|
1091
|
+
<div class="leaderboard-list-content">
|
1092
|
+
<h2 class="repo-leaderboard-title">
|
1093
|
+
<a href="/airbnb/nerve" class="repository-name"><span class="owner-name">airbnb</span><span class="separator">/</span><strong>nerve</strong></a>
|
1094
|
+
<span class="title-meta">Ruby</span>
|
1095
|
+
</h2>
|
1096
|
+
<p class="repo-leaderboard-description">Registration daemon for keeping all boxes in Zookeeper</p>
|
1097
|
+
|
1098
|
+
<div class="repo-leaderboard-contributors">
|
1099
|
+
<a href="/airbnb/nerve/graphs/contributors">
|
1100
|
+
<span class="contributor-avatar-text">built by</span>
|
1101
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ced7dfd96b76abc2a68766170b211013?d=https%3A%2F%2Fidenticons.github.com%2F6fa501ffd66deb70ff1abe6f47833621.png&r=x&s=140" title="igor47" width="20" />
|
1102
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/63fdb44556573392f7157a3b920c8ef1?d=https%3A%2F%2Fidenticons.github.com%2Fd3291c2554192b5d7729a1730c92f3e1.png&r=x&s=140" title="martinrhoads" width="20" />
|
1103
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7383899667bc780957ecaa548940ffc4?d=https%3A%2F%2Fidenticons.github.com%2F51fd081fb2f037078fc8a4e037daabe4.png&r=x&s=140" title="pcarrier" width="20" />
|
1104
|
+
</a>
|
1105
|
+
</div>
|
1106
|
+
</div>
|
1107
|
+
|
1108
|
+
</li>
|
1109
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-jekyll">
|
1110
|
+
<a href="#pa-jekyll" class="leaderboard-list-rank" >#11</a>
|
1111
|
+
<span class="mega-octicon octicon-repo"></span>
|
1112
|
+
<div class="leaderboard-action">
|
1113
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1114
|
+
<a href="/mojombo/jekyll/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1115
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1116
|
+
</a>
|
1117
|
+
<a href="/mojombo/jekyll/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1118
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1119
|
+
</a>
|
1120
|
+
</div>
|
1121
|
+
</div>
|
1122
|
+
<div class="leaderboard-list-content">
|
1123
|
+
<h2 class="repo-leaderboard-title">
|
1124
|
+
<a href="/mojombo/jekyll" class="repository-name"><span class="owner-name">mojombo</span><span class="separator">/</span><strong>jekyll</strong></a>
|
1125
|
+
<span class="title-meta">Ruby</span>
|
1126
|
+
</h2>
|
1127
|
+
<p class="repo-leaderboard-description">Jekyll is a blog-aware, static site generator in Ruby</p>
|
1128
|
+
|
1129
|
+
<div class="repo-leaderboard-contributors">
|
1130
|
+
<a href="/mojombo/jekyll/graphs/contributors">
|
1131
|
+
<span class="contributor-avatar-text">built by</span>
|
1132
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3b05198379f4b275d304fd27e6cb09ae?d=https%3A%2F%2Fidenticons.github.com%2Fa6066ba3563c5bdc4affcf5c2e79b5af.png&r=x&s=140" title="parkr" width="20" />
|
1133
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https%3A%2F%2Fidenticons.github.com%2Fc4ca4238a0b923820dcc509a6f75849b.png&r=x&s=140" title="mojombo" width="20" />
|
1134
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/bcd88817ec5ed065ed5e3693ab46f924?d=https%3A%2F%2Fidenticons.github.com%2F77c455b23b0a3d2708dc0defa54bd676.png&r=x&s=140" title="mattr-" width="20" />
|
1135
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/dc22e33ae876807759a880a90b07e71f?d=https%3A%2F%2Fidenticons.github.com%2Fc186468c037a057053500cab50272add.png&r=x&s=140" title="maul-esel" width="20" />
|
1136
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/eb8975af8e49e19e3dd6b6b84a542e26?d=https%3A%2F%2Fidenticons.github.com%2Fe3743b463beb38a2a24eebe5ecbad410.png&r=x&s=140" title="qrush" width="20" />
|
1137
|
+
</a>
|
1138
|
+
</div>
|
1139
|
+
</div>
|
1140
|
+
|
1141
|
+
</li>
|
1142
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-envconfig">
|
1143
|
+
<a href="#pa-envconfig" class="leaderboard-list-rank" >#12</a>
|
1144
|
+
<span class="mega-octicon octicon-repo"></span>
|
1145
|
+
<div class="leaderboard-action">
|
1146
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1147
|
+
<a href="/broadstack/envconfig/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1148
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1149
|
+
</a>
|
1150
|
+
<a href="/broadstack/envconfig/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1151
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1152
|
+
</a>
|
1153
|
+
</div>
|
1154
|
+
</div>
|
1155
|
+
<div class="leaderboard-list-content">
|
1156
|
+
<h2 class="repo-leaderboard-title">
|
1157
|
+
<a href="/broadstack/envconfig" class="repository-name"><span class="owner-name">broadstack</span><span class="separator">/</span><strong>envconfig</strong></a>
|
1158
|
+
<span class="title-meta">Ruby</span>
|
1159
|
+
</h2>
|
1160
|
+
<p class="repo-leaderboard-description">Connect your Rails app to backing services via Broadstack/Heroku-style ENV vars.</p>
|
1161
|
+
|
1162
|
+
<div class="repo-leaderboard-contributors">
|
1163
|
+
<a href="/broadstack/envconfig/graphs/contributors">
|
1164
|
+
<span class="contributor-avatar-text">built by</span>
|
1165
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/f0b6cad84e199bbd863bf7459ff98870?d=https%3A%2F%2Fidenticons.github.com%2Ff1a58918e5937cbf008a17b8ce77b579.png&r=x&s=140" title="pda" width="20" />
|
1166
|
+
</a>
|
1167
|
+
</div>
|
1168
|
+
</div>
|
1169
|
+
|
1170
|
+
</li>
|
1171
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-vagrant">
|
1172
|
+
<a href="#pa-vagrant" class="leaderboard-list-rank" >#13</a>
|
1173
|
+
<span class="mega-octicon octicon-repo"></span>
|
1174
|
+
<div class="leaderboard-action">
|
1175
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1176
|
+
<a href="/mitchellh/vagrant/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1177
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1178
|
+
</a>
|
1179
|
+
<a href="/mitchellh/vagrant/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1180
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1181
|
+
</a>
|
1182
|
+
</div>
|
1183
|
+
</div>
|
1184
|
+
<div class="leaderboard-list-content">
|
1185
|
+
<h2 class="repo-leaderboard-title">
|
1186
|
+
<a href="/mitchellh/vagrant" class="repository-name"><span class="owner-name">mitchellh</span><span class="separator">/</span><strong>vagrant</strong></a>
|
1187
|
+
<span class="title-meta">Ruby</span>
|
1188
|
+
</h2>
|
1189
|
+
<p class="repo-leaderboard-description">Vagrant is a tool for building and distributing working environments.</p>
|
1190
|
+
|
1191
|
+
<div class="repo-leaderboard-contributors">
|
1192
|
+
<a href="/mitchellh/vagrant/graphs/contributors">
|
1193
|
+
<span class="contributor-avatar-text">built by</span>
|
1194
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/2828f28fb012308a7786eee83b8293c5?d=https%3A%2F%2Fidenticons.github.com%2Fa0833c8a1817526ac555f8d67727caf6.png&r=x&s=140" title="mitchellh" width="20" />
|
1195
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/20196c9dc97267632ce6e6b778361eae?d=https%3A%2F%2Fidenticons.github.com%2Ff8ee3bdb4999cd30c1d8931585db1a7b.png&r=x&s=140" title="johnbender" width="20" />
|
1196
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/a198addd98dd9f149c7964a1340c9772?d=https%3A%2F%2Fidenticons.github.com%2F7a710bd01267a8d2f412c4c11299b93e.png&r=x&s=140" title="fgrehm" width="20" />
|
1197
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a77ea938e04a0ee71a96301b6bfea2b7?d=https%3A%2F%2Fidenticons.github.com%2Fdfe1265e7f07582e64a0ded43830d2ae.png&r=x&s=140" title="gildegoma" width="20" />
|
1198
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/4fcab9e6b801d7f775b4b3a8ee81846d?d=https%3A%2F%2Fidenticons.github.com%2Fbdb6920adcd0457aa17b53b22963dad9.png&r=x&s=140" title="commandtab" width="20" />
|
1199
|
+
</a>
|
1200
|
+
</div>
|
1201
|
+
</div>
|
1202
|
+
|
1203
|
+
</li>
|
1204
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-solved-by-flexbox">
|
1205
|
+
<a href="#pa-solved-by-flexbox" class="leaderboard-list-rank" >#14</a>
|
1206
|
+
<span class="mega-octicon octicon-repo"></span>
|
1207
|
+
<div class="leaderboard-action">
|
1208
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1209
|
+
<a href="/philipwalton/solved-by-flexbox/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1210
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1211
|
+
</a>
|
1212
|
+
<a href="/philipwalton/solved-by-flexbox/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1213
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1214
|
+
</a>
|
1215
|
+
</div>
|
1216
|
+
</div>
|
1217
|
+
<div class="leaderboard-list-content">
|
1218
|
+
<h2 class="repo-leaderboard-title">
|
1219
|
+
<a href="/philipwalton/solved-by-flexbox" class="repository-name"><span class="owner-name">philipwalton</span><span class="separator">/</span><strong>solved-by-flexbox</strong></a>
|
1220
|
+
<span class="title-meta">Ruby</span>
|
1221
|
+
</h2>
|
1222
|
+
<p class="repo-leaderboard-description">A showcase of problems once hard or impossible to solve with CSS alone, now made trivially easy with Flexbox.</p>
|
1223
|
+
|
1224
|
+
<div class="repo-leaderboard-contributors">
|
1225
|
+
<a href="/philipwalton/solved-by-flexbox/graphs/contributors">
|
1226
|
+
<span class="contributor-avatar-text">built by</span>
|
1227
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/81173562da1e1c9ae2ddd0df69ec4f69?d=https%3A%2F%2Fidenticons.github.com%2F700ec6d4c902c6ec0d312e217a69a1d4.png&r=x&s=140" title="philipwalton" width="20" />
|
1228
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a7be9e756c24b601e6010886fe74430d?d=https%3A%2F%2Fidenticons.github.com%2F14c27feb915d73d39a09f471c9ae6e7e.png&r=x&s=140" title="djm" width="20" />
|
1229
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/78a1d179e9270112becdf836b6ee7489?d=https%3A%2F%2Fidenticons.github.com%2F009caeaa6970487e16c413ec072a9375.png&r=x&s=140" title="lukeasrodgers" width="20" />
|
1230
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/89ca31df633ff09b7ff3164923cfcf1d?d=https%3A%2F%2Fidenticons.github.com%2Ff5cb679fb94a7010dbe4e90776195124.png&r=x&s=140" title="ericbock" width="20" />
|
1231
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/46a37926f07c832c4507f46a2e4640ee?d=https%3A%2F%2Fidenticons.github.com%2F04eb8989f07d878d029c9dcdcb6a3bd7.png&r=x&s=140" title="eric-brechemier" width="20" />
|
1232
|
+
</a>
|
1233
|
+
</div>
|
1234
|
+
</div>
|
1235
|
+
|
1236
|
+
</li>
|
1237
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-devise">
|
1238
|
+
<a href="#pa-devise" class="leaderboard-list-rank" >#15</a>
|
1239
|
+
<span class="mega-octicon octicon-repo"></span>
|
1240
|
+
<div class="leaderboard-action">
|
1241
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1242
|
+
<a href="/plataformatec/devise/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1243
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1244
|
+
</a>
|
1245
|
+
<a href="/plataformatec/devise/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1246
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1247
|
+
</a>
|
1248
|
+
</div>
|
1249
|
+
</div>
|
1250
|
+
<div class="leaderboard-list-content">
|
1251
|
+
<h2 class="repo-leaderboard-title">
|
1252
|
+
<a href="/plataformatec/devise" class="repository-name"><span class="owner-name">plataformatec</span><span class="separator">/</span><strong>devise</strong></a>
|
1253
|
+
<span class="title-meta">Ruby</span>
|
1254
|
+
</h2>
|
1255
|
+
<p class="repo-leaderboard-description">Flexible authentication solution for Rails with Warden.</p>
|
1256
|
+
|
1257
|
+
<div class="repo-leaderboard-contributors">
|
1258
|
+
<a href="/plataformatec/devise/graphs/contributors">
|
1259
|
+
<span class="contributor-avatar-text">built by</span>
|
1260
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/e837f6b7fd146ab16ed3d663476c063e?d=https%3A%2F%2Fidenticons.github.com%2Fe20b21ae6508f22fc189c60a0880d0b8.png&r=x&s=140" title="josevalim" width="20" />
|
1261
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/77237b97a465ae5a293ad323b7296837?d=https%3A%2F%2Fidenticons.github.com%2F60b997fd68261ce70cadaf6c8226c042.png&r=x&s=140" title="carlosantoniodasilva" width="20" />
|
1262
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/608b32640d0fca097b40bc6a28cadc5f?d=https%3A%2F%2Fidenticons.github.com%2F58fdb9d442eece41d3f252a6f2695f50.png&r=x&s=140" title="nashby" width="20" />
|
1263
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/0525b332aafb83307b32d9747a93de03?d=https%3A%2F%2Fidenticons.github.com%2F2c7b84fa30f0cea96a90729afe2970a0.png&r=x&s=140" title="rafaelfranca" width="20" />
|
1264
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/52768c312df1986d42157a7e51401705?d=https%3A%2F%2Fidenticons.github.com%2Fc9a8a89997dec2c49626cd70b7849142.png&r=x&s=140" title="latortuga" width="20" />
|
1265
|
+
</a>
|
1266
|
+
</div>
|
1267
|
+
</div>
|
1268
|
+
|
1269
|
+
</li>
|
1270
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-grape">
|
1271
|
+
<a href="#pa-grape" class="leaderboard-list-rank" >#16</a>
|
1272
|
+
<span class="mega-octicon octicon-repo"></span>
|
1273
|
+
<div class="leaderboard-action">
|
1274
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1275
|
+
<a href="/intridea/grape/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1276
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1277
|
+
</a>
|
1278
|
+
<a href="/intridea/grape/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1279
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1280
|
+
</a>
|
1281
|
+
</div>
|
1282
|
+
</div>
|
1283
|
+
<div class="leaderboard-list-content">
|
1284
|
+
<h2 class="repo-leaderboard-title">
|
1285
|
+
<a href="/intridea/grape" class="repository-name"><span class="owner-name">intridea</span><span class="separator">/</span><strong>grape</strong></a>
|
1286
|
+
<span class="title-meta">Ruby</span>
|
1287
|
+
</h2>
|
1288
|
+
<p class="repo-leaderboard-description">An opinionated micro-framework for creating REST-like APIs in Ruby.</p>
|
1289
|
+
|
1290
|
+
<div class="repo-leaderboard-contributors">
|
1291
|
+
<a href="/intridea/grape/graphs/contributors">
|
1292
|
+
<span class="contributor-avatar-text">built by</span>
|
1293
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3d925b45ac07ec0ae5bd04888f6c5b61?d=https%3A%2F%2Fidenticons.github.com%2F544e7e1888e2ab9505f934d2e867816e.png&r=x&s=140" title="dblock" width="20" />
|
1294
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/69dc78b59ef008c58e6e842f9f3e0624?d=https%3A%2F%2Fidenticons.github.com%2F93d65641ff3f1586614cf2c1ad240b6c.png&r=x&s=140" title="mbleigh" width="20" />
|
1295
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/acd4b5803e806bf0ed70299f15cd6d18?d=https%3A%2F%2Fidenticons.github.com%2Fa1af768d3b16885b8eb893d58712c1ea.png&r=x&s=140" title="jch" width="20" />
|
1296
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/4878e29ae5e208004407f76d9d61b2c6?d=https%3A%2F%2Fidenticons.github.com%2F1846253dc20c55075c7a4b1a7fdc08ba.png&r=x&s=140" title="adamgotterer" width="20" />
|
1297
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/fba64172c71f672ac94ae134d5941845?d=https%3A%2F%2Fidenticons.github.com%2F09058854e82f1c0cfaa894ff6daedab0.png&r=x&s=140" title="niedhui" width="20" />
|
1298
|
+
</a>
|
1299
|
+
</div>
|
1300
|
+
</div>
|
1301
|
+
|
1302
|
+
</li>
|
1303
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-sandi_meter">
|
1304
|
+
<a href="#pa-sandi_meter" class="leaderboard-list-rank" >#17</a>
|
1305
|
+
<span class="mega-octicon octicon-repo"></span>
|
1306
|
+
<div class="leaderboard-action">
|
1307
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1308
|
+
<a href="/makaroni4/sandi_meter/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1309
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1310
|
+
</a>
|
1311
|
+
<a href="/makaroni4/sandi_meter/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1312
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1313
|
+
</a>
|
1314
|
+
</div>
|
1315
|
+
</div>
|
1316
|
+
<div class="leaderboard-list-content">
|
1317
|
+
<h2 class="repo-leaderboard-title">
|
1318
|
+
<a href="/makaroni4/sandi_meter" class="repository-name"><span class="owner-name">makaroni4</span><span class="separator">/</span><strong>sandi_meter</strong></a>
|
1319
|
+
<span class="title-meta">Ruby</span>
|
1320
|
+
</h2>
|
1321
|
+
<p class="repo-leaderboard-description">Static analysis tool for checking Ruby code for Sandi Metz' rules.</p>
|
1322
|
+
|
1323
|
+
<div class="repo-leaderboard-contributors">
|
1324
|
+
<a href="/makaroni4/sandi_meter/graphs/contributors">
|
1325
|
+
<span class="contributor-avatar-text">built by</span>
|
1326
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/e302c3320cd14b02cbe237b479d7f884?d=https%3A%2F%2Fidenticons.github.com%2F59f6c86ebe1eb6e6b645806e2265ecaa.png&r=x&s=140" title="makaroni4" width="20" />
|
1327
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/757fb0d5ec7560b6f25f5bd98eadc020?d=https%3A%2F%2Fidenticons.github.com%2F72b24d07afb8c3538d72b34ebe3ad861.png&r=x&s=140" title="releu" width="20" />
|
1328
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7033d0e84d10d256a4b850461f69a10b?d=https%3A%2F%2Fidenticons.github.com%2Fb937176da86d4bb5f0ac63aaecf540ea.png&r=x&s=140" title="pfhawkins" width="20" />
|
1329
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ab074ca0a48f06ab110c374fc7db258e?d=https%3A%2F%2Fidenticons.github.com%2F9ecbe556e1e6a72c798fbe0f3e860e4f.png&r=x&s=140" title="kirs" width="20" />
|
1330
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/df3fb5eed615107632dbc0d071535a3d?d=https%3A%2F%2Fidenticons.github.com%2F4ad7ff9e9ca9b90af61c4d09898d76f4.png&r=x&s=140" title="DNNX" width="20" />
|
1331
|
+
</a>
|
1332
|
+
</div>
|
1333
|
+
</div>
|
1334
|
+
|
1335
|
+
</li>
|
1336
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-fpm">
|
1337
|
+
<a href="#pa-fpm" class="leaderboard-list-rank" >#18</a>
|
1338
|
+
<span class="mega-octicon octicon-repo"></span>
|
1339
|
+
<div class="leaderboard-action">
|
1340
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1341
|
+
<a href="/jordansissel/fpm/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1342
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1343
|
+
</a>
|
1344
|
+
<a href="/jordansissel/fpm/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1345
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1346
|
+
</a>
|
1347
|
+
</div>
|
1348
|
+
</div>
|
1349
|
+
<div class="leaderboard-list-content">
|
1350
|
+
<h2 class="repo-leaderboard-title">
|
1351
|
+
<a href="/jordansissel/fpm" class="repository-name"><span class="owner-name">jordansissel</span><span class="separator">/</span><strong>fpm</strong></a>
|
1352
|
+
<span class="title-meta">Ruby</span>
|
1353
|
+
</h2>
|
1354
|
+
<p class="repo-leaderboard-description">Effing package managers! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity.</p>
|
1355
|
+
|
1356
|
+
<div class="repo-leaderboard-contributors">
|
1357
|
+
<a href="/jordansissel/fpm/graphs/contributors">
|
1358
|
+
<span class="contributor-avatar-text">built by</span>
|
1359
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/75fdd336ae5f818276f1cf79e0468b2d?d=https%3A%2F%2Fidenticons.github.com%2F983c25e4d13d98f06c505afe2a937b4d.png&r=x&s=140" title="jordansissel" width="20" />
|
1360
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5f80219d708a330825a60d7078efd11f?d=https%3A%2F%2Fidenticons.github.com%2F6d9fd9ad863cd2e5843f3dd9b83f2006.png&r=x&s=140" title="r4um" width="20" />
|
1361
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7d065cd3cd3a48dfc259cdb834332de6?d=https%3A%2F%2Fidenticons.github.com%2F0a52c370451194f98b199fbfc7d84078.png&r=x&s=140" title="jayferd" width="20" />
|
1362
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/d47656e20ff5e42f125fc5ea0fd636c6?d=https%3A%2F%2Fidenticons.github.com%2Fdda04f9d634145a9c68d5dfe53b21272.png&r=x&s=140" title="tmm1" width="20" />
|
1363
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/0d8eae52831433c930e48ebe798141dc?d=https%3A%2F%2Fidenticons.github.com%2F792ca1d7ae51ce36fa29d8636acfd3dd.png&r=x&s=140" title="hatt" width="20" />
|
1364
|
+
</a>
|
1365
|
+
</div>
|
1366
|
+
</div>
|
1367
|
+
|
1368
|
+
</li>
|
1369
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-octopress">
|
1370
|
+
<a href="#pa-octopress" class="leaderboard-list-rank" >#19</a>
|
1371
|
+
<span class="mega-octicon octicon-repo"></span>
|
1372
|
+
<div class="leaderboard-action">
|
1373
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1374
|
+
<a href="/imathis/octopress/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1375
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1376
|
+
</a>
|
1377
|
+
<a href="/imathis/octopress/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1378
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1379
|
+
</a>
|
1380
|
+
</div>
|
1381
|
+
</div>
|
1382
|
+
<div class="leaderboard-list-content">
|
1383
|
+
<h2 class="repo-leaderboard-title">
|
1384
|
+
<a href="/imathis/octopress" class="repository-name"><span class="owner-name">imathis</span><span class="separator">/</span><strong>octopress</strong></a>
|
1385
|
+
<span class="title-meta">Ruby</span>
|
1386
|
+
</h2>
|
1387
|
+
<p class="repo-leaderboard-description">Octopress is an obsessively designed framework for Jekyll blogging. It’s easy to configure and easy to deploy. Sweet huh?</p>
|
1388
|
+
|
1389
|
+
<div class="repo-leaderboard-contributors">
|
1390
|
+
<a href="/imathis/octopress/graphs/contributors">
|
1391
|
+
<span class="contributor-avatar-text">built by</span>
|
1392
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/c86443373fbfe92996aa882d0d7a59f8?d=https%3A%2F%2Fidenticons.github.com%2F36157dc9be261fec78aeee1a94158c26.png&r=x&s=140" title="imathis" width="20" />
|
1393
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/9cfc21bacab0bac4bd3f53947612e079?d=https%3A%2F%2Fidenticons.github.com%2Fcb6e2b922ce444cbc0b2a7b0522730cc.png&r=x&s=140" title="fhemberger" width="20" />
|
1394
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3b05198379f4b275d304fd27e6cb09ae?d=https%3A%2F%2Fidenticons.github.com%2Fa6066ba3563c5bdc4affcf5c2e79b5af.png&r=x&s=140" title="parkr" width="20" />
|
1395
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/d021d34aba01b42a4ef25c6148d84a64?d=https%3A%2F%2Fidenticons.github.com%2F1f8fe28e9283d7b5300af087a298f200.png&r=x&s=140" title="pilif" width="20" />
|
1396
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ca122eca5d377d3a3e856aee13ec0cc9?d=https%3A%2F%2Fidenticons.github.com%2Fa87736c4bda7d30d55bfcb904e438da8.png&r=x&s=140" title="dbloete" width="20" />
|
1397
|
+
</a>
|
1398
|
+
</div>
|
1399
|
+
</div>
|
1400
|
+
|
1401
|
+
</li>
|
1402
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-Feedly">
|
1403
|
+
<a href="#pa-Feedly" class="leaderboard-list-rank" >#20</a>
|
1404
|
+
<span class="mega-octicon octicon-repo"></span>
|
1405
|
+
<div class="leaderboard-action">
|
1406
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1407
|
+
<a href="/tschellenbach/Feedly/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1408
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1409
|
+
</a>
|
1410
|
+
<a href="/tschellenbach/Feedly/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1411
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1412
|
+
</a>
|
1413
|
+
</div>
|
1414
|
+
</div>
|
1415
|
+
<div class="leaderboard-list-content">
|
1416
|
+
<h2 class="repo-leaderboard-title">
|
1417
|
+
<a href="/tschellenbach/Feedly" class="repository-name"><span class="owner-name">tschellenbach</span><span class="separator">/</span><strong>Feedly</strong></a>
|
1418
|
+
<span class="title-meta">Ruby</span>
|
1419
|
+
</h2>
|
1420
|
+
<p class="repo-leaderboard-description">Feedly is a Python library, which allows you to build newsfeed and notification systems using Cassandra and/or Redis.</p>
|
1421
|
+
|
1422
|
+
<div class="repo-leaderboard-contributors">
|
1423
|
+
<a href="/tschellenbach/Feedly/graphs/contributors">
|
1424
|
+
<span class="contributor-avatar-text">built by</span>
|
1425
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/55d71ad27f79006049e236f8254e2548?d=https%3A%2F%2Fidenticons.github.com%2Ff28b4b51a140ef6d26549c663f34c0c3.png&r=x&s=140" title="tschellenbach" width="20" />
|
1426
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/a381152cd980d15f58e0016c996ab254?d=https%3A%2F%2Fidenticons.github.com%2F6adc41a67e52a9521321bac23b0d193f.png&r=x&s=140" title="tbarbugli" width="20" />
|
1427
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/c74729d8cfdd53659e749fa0403e9df8?d=https%3A%2F%2Fidenticons.github.com%2F6c5184483cf53cdccb474420b29a911c.png&r=x&s=140" title="gumuz" width="20" />
|
1428
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/b919c64473b3fb6200eefd27987f3407?d=https%3A%2F%2Fidenticons.github.com%2F5f4c9e35c043b2f85affa590cc70fd5e.png&r=x&s=140" title="pterk" width="20" />
|
1429
|
+
</a>
|
1430
|
+
</div>
|
1431
|
+
</div>
|
1432
|
+
|
1433
|
+
</li>
|
1434
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-wraith">
|
1435
|
+
<a href="#pa-wraith" class="leaderboard-list-rank" >#21</a>
|
1436
|
+
<span class="mega-octicon octicon-repo"></span>
|
1437
|
+
<div class="leaderboard-action">
|
1438
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1439
|
+
<a href="/BBC-News/wraith/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1440
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1441
|
+
</a>
|
1442
|
+
<a href="/BBC-News/wraith/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1443
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1444
|
+
</a>
|
1445
|
+
</div>
|
1446
|
+
</div>
|
1447
|
+
<div class="leaderboard-list-content">
|
1448
|
+
<h2 class="repo-leaderboard-title">
|
1449
|
+
<a href="/BBC-News/wraith" class="repository-name"><span class="owner-name">BBC-News</span><span class="separator">/</span><strong>wraith</strong></a>
|
1450
|
+
<span class="title-meta">Ruby</span>
|
1451
|
+
</h2>
|
1452
|
+
<p class="repo-leaderboard-description">Wraith — A responsive screenshot comparison tool</p>
|
1453
|
+
|
1454
|
+
<div class="repo-leaderboard-contributors">
|
1455
|
+
<a href="/BBC-News/wraith/graphs/contributors">
|
1456
|
+
<span class="contributor-avatar-text">built by</span>
|
1457
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/8b54b4a8ac7bc3bf1828c145f4ed0304?d=https%3A%2F%2Fidenticons.github.com%2F6fde2f8627c58ff3c8d4408345f6d9d7.png&r=x&s=140" title="DaveBlooman" width="20" />
|
1458
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/1a756fcdfb3b630ee30dfc3d4ad167d8?d=https%3A%2F%2Fidenticons.github.com%2F176c08a3ecf366d011f4d5e515a1b0a3.png&r=x&s=140" title="sthulb" width="20" />
|
1459
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/85a9fce93e576e9e99eed5a61a7e5c4a?d=https%3A%2F%2Fidenticons.github.com%2F87eae3cec9f4eb06dd9d46e690f95010.png&r=x&s=140" title="jcleveley" width="20" />
|
1460
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/f9dd396e4dafc538388663ad974535c9?d=https%3A%2F%2Fidenticons.github.com%2F484ef8909a8d6f0a6332332da8408998.png&r=x&s=140" title="doryphores" width="20" />
|
1461
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/5c57901d206786defdeb1722379f0375?d=https%3A%2F%2Fidenticons.github.com%2Fb270920e1267c8fde0f4b25703fb3f96.png&r=x&s=140" title="rory-geoghegan-ecometrica" width="20" />
|
1462
|
+
</a>
|
1463
|
+
</div>
|
1464
|
+
</div>
|
1465
|
+
|
1466
|
+
</li>
|
1467
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-capistrano">
|
1468
|
+
<a href="#pa-capistrano" class="leaderboard-list-rank" >#22</a>
|
1469
|
+
<span class="mega-octicon octicon-repo"></span>
|
1470
|
+
<div class="leaderboard-action">
|
1471
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1472
|
+
<a href="/capistrano/capistrano/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1473
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1474
|
+
</a>
|
1475
|
+
<a href="/capistrano/capistrano/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1476
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1477
|
+
</a>
|
1478
|
+
</div>
|
1479
|
+
</div>
|
1480
|
+
<div class="leaderboard-list-content">
|
1481
|
+
<h2 class="repo-leaderboard-title">
|
1482
|
+
<a href="/capistrano/capistrano" class="repository-name"><span class="owner-name">capistrano</span><span class="separator">/</span><strong>capistrano</strong></a>
|
1483
|
+
<span class="title-meta">Ruby</span>
|
1484
|
+
</h2>
|
1485
|
+
<p class="repo-leaderboard-description">Remote multi-server automation tool</p>
|
1486
|
+
|
1487
|
+
<div class="repo-leaderboard-contributors">
|
1488
|
+
<a href="/capistrano/capistrano/graphs/contributors">
|
1489
|
+
<span class="contributor-avatar-text">built by</span>
|
1490
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/464fcebf9fea1a3126f7602d4b748914?d=https%3A%2F%2Fidenticons.github.com%2F804a2e52fd3faec33d13e309023b4022.png&r=x&s=140" title="seenmyfate" width="20" />
|
1491
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/959be122ff68722c18fc41e487e9465d?d=https%3A%2F%2Fidenticons.github.com%2F2328fb211593bf76f1e22ff0554cb420.png&r=x&s=140" title="leehambley" width="20" />
|
1492
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/37ef5e5ddd4b05465000dbea5d4b22e2?d=https%3A%2F%2Fidenticons.github.com%2F4cef360eb538876a560f897552b0ce8a.png&r=x&s=140" title="teohm" width="20" />
|
1493
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ab074ca0a48f06ab110c374fc7db258e?d=https%3A%2F%2Fidenticons.github.com%2F9ecbe556e1e6a72c798fbe0f3e860e4f.png&r=x&s=140" title="kirs" width="20" />
|
1494
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/4964bad1252f34c95f18c0862edb5c23?d=https%3A%2F%2Fidenticons.github.com%2F77330e1330ae2b086e5bfcae50d9ffae.png&r=x&s=140" title="korin" width="20" />
|
1495
|
+
</a>
|
1496
|
+
</div>
|
1497
|
+
</div>
|
1498
|
+
|
1499
|
+
</li>
|
1500
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-sinatra">
|
1501
|
+
<a href="#pa-sinatra" class="leaderboard-list-rank" >#23</a>
|
1502
|
+
<span class="mega-octicon octicon-repo-forked"></span>
|
1503
|
+
<div class="leaderboard-action">
|
1504
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1505
|
+
<a href="/sinatra/sinatra/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1506
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1507
|
+
</a>
|
1508
|
+
<a href="/sinatra/sinatra/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1509
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1510
|
+
</a>
|
1511
|
+
</div>
|
1512
|
+
</div>
|
1513
|
+
<div class="leaderboard-list-content">
|
1514
|
+
<h2 class="repo-leaderboard-title">
|
1515
|
+
<a href="/sinatra/sinatra" class="repository-name"><span class="owner-name">sinatra</span><span class="separator">/</span><strong>sinatra</strong></a>
|
1516
|
+
<span class="title-meta">Ruby</span>
|
1517
|
+
</h2>
|
1518
|
+
<p class="repo-leaderboard-description">Classy web-development dressed in a DSL (official / canonical repo)</p>
|
1519
|
+
|
1520
|
+
<div class="repo-leaderboard-contributors">
|
1521
|
+
<a href="/sinatra/sinatra/graphs/contributors">
|
1522
|
+
<span class="contributor-avatar-text">built by</span>
|
1523
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https%3A%2F%2Fidenticons.github.com%2F2ae3d2aaceaf26246581744124859b07.png&r=x&s=140" title="rkh" width="20" />
|
1524
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https%3A%2F%2Fidenticons.github.com%2F4f4adcbf8c6f66dcfc8a3282ac2bf10a.png&r=x&s=140" title="rtomayko" width="20" />
|
1525
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/6a2a406c173111eeac854d0b11ce83ca?d=https%3A%2F%2Fidenticons.github.com%2Ff7f567d93ed4f419ffeab83707f5796e.png&r=x&s=140" title="ohhgabriel" width="20" />
|
1526
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/8e0adf6f8274375b90a180d256d73bad?d=https%3A%2F%2Fidenticons.github.com%2F8613985ec49eb8f757ae6439e879bb2a.png&r=x&s=140" title="sr" width="20" />
|
1527
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1a250566b475961b9b36abf359950c76?d=https%3A%2F%2Fidenticons.github.com%2Fd9d4f495e875a2e075a1a4a6e1b9770f.png&r=x&s=140" title="bmizerany" width="20" />
|
1528
|
+
</a>
|
1529
|
+
</div>
|
1530
|
+
</div>
|
1531
|
+
|
1532
|
+
</li>
|
1533
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-logstash">
|
1534
|
+
<a href="#pa-logstash" class="leaderboard-list-rank" >#24</a>
|
1535
|
+
<span class="mega-octicon octicon-repo"></span>
|
1536
|
+
<div class="leaderboard-action">
|
1537
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1538
|
+
<a href="/logstash/logstash/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1539
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1540
|
+
</a>
|
1541
|
+
<a href="/logstash/logstash/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1542
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1543
|
+
</a>
|
1544
|
+
</div>
|
1545
|
+
</div>
|
1546
|
+
<div class="leaderboard-list-content">
|
1547
|
+
<h2 class="repo-leaderboard-title">
|
1548
|
+
<a href="/logstash/logstash" class="repository-name"><span class="owner-name">logstash</span><span class="separator">/</span><strong>logstash</strong></a>
|
1549
|
+
<span class="title-meta">Ruby</span>
|
1550
|
+
</h2>
|
1551
|
+
<p class="repo-leaderboard-description">logstash - logs/event transport, processing, management, search.</p>
|
1552
|
+
|
1553
|
+
<div class="repo-leaderboard-contributors">
|
1554
|
+
<a href="/logstash/logstash/graphs/contributors">
|
1555
|
+
<span class="contributor-avatar-text">built by</span>
|
1556
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/75fdd336ae5f818276f1cf79e0468b2d?d=https%3A%2F%2Fidenticons.github.com%2F983c25e4d13d98f06c505afe2a937b4d.png&r=x&s=140" title="jordansissel" width="20" />
|
1557
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/fd23fa0562b26f4157a2d7f80095bb07?d=https%3A%2F%2Fidenticons.github.com%2F00809efb7b6dbc44f6fd9ea7957f2762.png&r=x&s=140" title="fetep" width="20" />
|
1558
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5511be764a3a36c0e0933afa9e7422d4?d=https%3A%2F%2Fidenticons.github.com%2Fb2dfb1e62ae8960cf31403909d1a6a01.png&r=x&s=140" title="nickethier" width="20" />
|
1559
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/03a966709300efb4a86ce5ee8f88f696?d=https%3A%2F%2Fidenticons.github.com%2Fff14abd942d0542c7f53462588583988.png&r=x&s=140" title="lusis" width="20" />
|
1560
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/5986b6c2d02df43a0964abc807912078?d=https%3A%2F%2Fidenticons.github.com%2Fe09c214d1b20f344b038b1b60d8243e5.png&r=x&s=140" title="wiibaa" width="20" />
|
1561
|
+
</a>
|
1562
|
+
</div>
|
1563
|
+
</div>
|
1564
|
+
|
1565
|
+
</li>
|
1566
|
+
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-Mining-the-Social-Web-2nd-Edition">
|
1567
|
+
<a href="#pa-Mining-the-Social-Web-2nd-Edition" class="leaderboard-list-rank" >#25</a>
|
1568
|
+
<span class="mega-octicon octicon-repo"></span>
|
1569
|
+
<div class="leaderboard-action">
|
1570
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1571
|
+
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1572
|
+
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1573
|
+
</a>
|
1574
|
+
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1575
|
+
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1576
|
+
</a>
|
1577
|
+
</div>
|
1578
|
+
</div>
|
1579
|
+
<div class="leaderboard-list-content">
|
1580
|
+
<h2 class="repo-leaderboard-title">
|
1581
|
+
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition" class="repository-name"><span class="owner-name">ptwobrussell</span><span class="separator">/</span><strong>Mining-the-Social-Web-2nd-Edition</strong></a>
|
1582
|
+
<span class="title-meta">Python</span>
|
1583
|
+
</h2>
|
1584
|
+
<p class="repo-leaderboard-description">The official online compendium for Mining the Social Web, 2nd Edition (O'Reilly, 2013)</p>
|
1585
|
+
|
1586
|
+
<div class="repo-leaderboard-contributors">
|
1587
|
+
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/graphs/contributors">
|
1588
|
+
<span class="contributor-avatar-text">built by</span>
|
1589
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/322a50ffdb98591460f05015770b7adb?d=https%3A%2F%2Fidenticons.github.com%2F6c41551dc0301524154548382e29d17a.png&r=x&s=140" title="ptwobrussell" width="20" />
|
1590
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/0c3258b1ee9b300f8f6053d3a824f18f?d=https%3A%2F%2Fidenticons.github.com%2Fa8764d790da8da4b839b2f1cc3542f26.png&r=x&s=140" title="jwsy" width="20" />
|
1591
|
+
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/f641f504b31c0020276ba40dd6e7e780?d=https%3A%2F%2Fidenticons.github.com%2F9af754b62b8cfc25e076e49930e9ea9c.png&r=x&s=140" title="marsam" width="20" />
|
1592
|
+
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/8a1a521b2e007a25f4f153a21697c25b?d=https%3A%2F%2Fidenticons.github.com%2F570599e57b6fe6e13aeea632f3f5b745.png&r=x&s=140" title="aleksbreian1103" width="20" />
|
1593
|
+
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5daf79134c95a64ccdbf2bd477e52392?d=https%3A%2F%2Fidenticons.github.com%2Fa9b94e2e91ee1dae4106f72c3e48880e.png&r=x&s=140" title="wbzyl" width="20" />
|
1594
|
+
</a>
|
1595
|
+
</div>
|
1596
|
+
</div>
|
1597
|
+
|
1598
|
+
</li>
|
1599
|
+
</ol>
|
1600
|
+
<div class="context-loader large-format-loader">
|
1601
|
+
<p><img alt="Octocat-spinner-128" height="64" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-128.gif" width="64" /></p>
|
1602
|
+
<p>Loading…</p>
|
1603
|
+
</div>
|
1604
|
+
|
1605
|
+
</div>
|
1606
|
+
</div>
|
1607
|
+
</div>
|
1608
|
+
</div>
|
1609
|
+
</div>
|
1610
|
+
<div class="modal-backdrop"></div>
|
1611
|
+
</div>
|
1612
|
+
</div><!-- /.wrapper -->
|
1613
|
+
|
1614
|
+
<div class="container">
|
1615
|
+
<div class="site-footer">
|
1616
|
+
<ul class="site-footer-links right">
|
1617
|
+
<li><a href="https://status.github.com/">Status</a></li>
|
1618
|
+
<li><a href="http://developer.github.com">API</a></li>
|
1619
|
+
<li><a href="http://training.github.com">Training</a></li>
|
1620
|
+
<li><a href="http://shop.github.com">Shop</a></li>
|
1621
|
+
<li><a href="/blog">Blog</a></li>
|
1622
|
+
<li><a href="/about">About</a></li>
|
1623
|
+
|
1624
|
+
</ul>
|
1625
|
+
|
1626
|
+
<a href="/">
|
1627
|
+
<span class="mega-octicon octicon-mark-github"></span>
|
1628
|
+
</a>
|
1629
|
+
|
1630
|
+
<ul class="site-footer-links">
|
1631
|
+
<li>© 2013 <span title="0.25696s from github-fe123-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
|
1632
|
+
<li><a href="/site/terms">Terms</a></li>
|
1633
|
+
<li><a href="/site/privacy">Privacy</a></li>
|
1634
|
+
<li><a href="/security">Security</a></li>
|
1635
|
+
<li><a href="/contact">Contact</a></li>
|
1636
|
+
</ul>
|
1637
|
+
</div><!-- /.site-footer -->
|
1638
|
+
</div><!-- /.container -->
|
1639
|
+
|
1640
|
+
|
1641
|
+
<div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
|
1642
|
+
<div class="fullscreen-container js-fullscreen-container">
|
1643
|
+
<div class="textarea-wrap">
|
1644
|
+
<textarea name="fullscreen-contents" id="fullscreen-contents" class="js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea>
|
1645
|
+
</div>
|
1646
|
+
</div>
|
1647
|
+
<div class="fullscreen-sidebar">
|
1648
|
+
<a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped leftwards" title="Exit Zen Mode">
|
1649
|
+
<span class="mega-octicon octicon-screen-normal"></span>
|
1650
|
+
</a>
|
1651
|
+
<a href="#" class="theme-switcher js-theme-switcher tooltipped leftwards"
|
1652
|
+
title="Switch themes">
|
1653
|
+
<span class="octicon octicon-color-mode"></span>
|
1654
|
+
</a>
|
1655
|
+
</div>
|
1656
|
+
</div>
|
1657
|
+
|
1658
|
+
|
1659
|
+
|
1660
|
+
<div id="ajax-error-message" class="flash flash-error">
|
1661
|
+
<span class="octicon octicon-alert"></span>
|
1662
|
+
<a href="#" class="octicon octicon-remove-close close ajax-error-dismiss"></a>
|
1663
|
+
Something went wrong with that request. Please try again.
|
1664
|
+
</div>
|
1665
|
+
|
1666
|
+
</body>
|
1667
|
+
</html>
|