git-trend 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/git_trend/project.rb +4 -3
- data/lib/git_trend/scraper.rb +2 -1
- data/lib/git_trend/version.rb +1 -1
- data/spec/git_trend/cli_spec.rb +151 -151
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 623547ab4a0713fabb14dd8da03d7f1dd5f1c3dd
|
4
|
+
data.tar.gz: afc27ec089947c0b699aaac929218d0c20e5c91f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c02a9bdcafc2054c971714cc571766992f9a740e0b8e6a2a938bc857fb44b5a669707ca6e9649249519a44fa5d8dcd3897fefc05f9e2c3fbb6702156a61cc61
|
7
|
+
data.tar.gz: a0b22e6ac1dd9ebe3ea4cd839ea7c7eb9a6b4e605df79a8daffa5e750086e04f9bd4cbdc39f712c3e21aa907daa6b0129fdcb5eb876c9e2267fd1569d80768a9
|
data/CHANGELOG.md
CHANGED
data/lib/git_trend/project.rb
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
module GitTrend
|
2
2
|
class Project
|
3
|
-
attr_accessor :name, :description, :lang, :
|
3
|
+
attr_accessor :name, :description, :lang, :all_star_count, :fork_count, :star_count
|
4
4
|
|
5
|
-
def initialize(name: "", description: "", lang: "",
|
5
|
+
def initialize(name: "", description: "", lang: "", all_star_count: 0, fork_count: 0, star_count: 0)
|
6
6
|
self.name = name
|
7
7
|
self.description = description
|
8
8
|
self.lang = lang
|
9
|
-
self.
|
9
|
+
self.all_star_count = all_star_count
|
10
10
|
self.fork_count = fork_count
|
11
|
+
self.star_count = star_count
|
11
12
|
end
|
12
13
|
|
13
14
|
def to_a
|
data/lib/git_trend/scraper.rb
CHANGED
@@ -56,8 +56,9 @@ module GitTrend
|
|
56
56
|
name: content.search("h3 a").attr("href").to_s.sub(/\A\//, ""),
|
57
57
|
description: content.search(".py-1").text.strip,
|
58
58
|
lang: content.search('span[itemprop="programmingLanguage"]').text.strip,
|
59
|
-
|
59
|
+
all_star_count: content.search('a[aria-label="Stargazers"]').text.strip.delete(",").to_i,
|
60
60
|
fork_count: content.search('a[aria-label="Forks"]').text.strip.delete(",").to_i,
|
61
|
+
star_count: content.search("span.float-right").text.strip.match(/(\d+)? stars/).to_a[1].to_i
|
61
62
|
)
|
62
63
|
end
|
63
64
|
end
|
data/lib/git_trend/version.rb
CHANGED
data/spec/git_trend/cli_spec.rb
CHANGED
@@ -30,9 +30,9 @@ RSpec.describe GitTrend::CLI do
|
|
30
30
|
res = <<-'EOS'.unindent
|
31
31
|
|No. Name Lang Star
|
32
32
|
|--- ---------------------------------------- ---------- ------
|
33
|
-
| 1 Bilibili/flv.js JavaScript
|
34
|
-
| 2 drathier/stack-overflow-import Python
|
35
|
-
| 3 FreeCodeCamp/FreeCodeCamp JavaScript
|
33
|
+
| 1 Bilibili/flv.js JavaScript 503
|
34
|
+
| 2 drathier/stack-overflow-import Python 514
|
35
|
+
| 3 FreeCodeCamp/FreeCodeCamp JavaScript 491
|
36
36
|
|
37
37
|
EOS
|
38
38
|
expect { cli.invoke(:list, [], number: number, description: false) }.to output(res).to_stdout
|
@@ -57,31 +57,31 @@ RSpec.describe GitTrend::CLI do
|
|
57
57
|
res = <<-'EOS'.unindent
|
58
58
|
|No. Name Lang Star
|
59
59
|
|--- ---------------------------------------- ---------- ------
|
60
|
-
| 1 webgradus/kms Ruby
|
61
|
-
| 2 shakacode/react_on_rails Ruby
|
62
|
-
| 3 Homebrew/brew Ruby
|
63
|
-
| 4 rails/rails Ruby
|
64
|
-
| 5 jondot/awesome-react-native Ruby
|
65
|
-
| 6 fastlane/fastlane Ruby
|
66
|
-
| 7 mitchellh/vagrant Ruby
|
67
|
-
| 8 discourse/discourse Ruby
|
68
|
-
| 9 jekyll/jekyll Ruby
|
69
|
-
| 10 caskroom/homebrew-cask Ruby
|
70
|
-
| 11 Thibaut/devdocs Ruby
|
71
|
-
| 12 rapid7/metasploit-framework Ruby
|
72
|
-
| 13 CocoaPods/CocoaPods Ruby
|
73
|
-
| 14 rails-api/active_model_serializers Ruby
|
74
|
-
| 15 kilimchoi/engineering-blogs Ruby
|
75
|
-
| 16 plataformatec/devise Ruby
|
76
|
-
| 17 gettalong/hexapdf Ruby
|
77
|
-
| 18 Gargron/mastodon Ruby
|
78
|
-
| 19 mperham/sidekiq Ruby
|
79
|
-
| 20 bkeepers/dotenv Ruby
|
80
|
-
| 21 skywinder/github-changelog-generator Ruby
|
81
|
-
| 22 gitlabhq/gitlabhq Ruby
|
82
|
-
| 23 Tim9Liu9/TimLiu-iOS Ruby
|
83
|
-
| 24 elastic/logstash Ruby
|
84
|
-
| 25 shakacode/react-webpack-rails-tutorial Ruby
|
60
|
+
| 1 webgradus/kms Ruby 35
|
61
|
+
| 2 shakacode/react_on_rails Ruby 27
|
62
|
+
| 3 Homebrew/brew Ruby 19
|
63
|
+
| 4 rails/rails Ruby 13
|
64
|
+
| 5 jondot/awesome-react-native Ruby 20
|
65
|
+
| 6 fastlane/fastlane Ruby 20
|
66
|
+
| 7 mitchellh/vagrant Ruby 15
|
67
|
+
| 8 discourse/discourse Ruby 13
|
68
|
+
| 9 jekyll/jekyll Ruby 10
|
69
|
+
| 10 caskroom/homebrew-cask Ruby 9
|
70
|
+
| 11 Thibaut/devdocs Ruby 12
|
71
|
+
| 12 rapid7/metasploit-framework Ruby 12
|
72
|
+
| 13 CocoaPods/CocoaPods Ruby 9
|
73
|
+
| 14 rails-api/active_model_serializers Ruby 7
|
74
|
+
| 15 kilimchoi/engineering-blogs Ruby 9
|
75
|
+
| 16 plataformatec/devise Ruby 8
|
76
|
+
| 17 gettalong/hexapdf Ruby 9
|
77
|
+
| 18 Gargron/mastodon Ruby 8
|
78
|
+
| 19 mperham/sidekiq Ruby 8
|
79
|
+
| 20 bkeepers/dotenv Ruby 8
|
80
|
+
| 21 skywinder/github-changelog-generator Ruby 6
|
81
|
+
| 22 gitlabhq/gitlabhq Ruby 5
|
82
|
+
| 23 Tim9Liu9/TimLiu-iOS Ruby 7
|
83
|
+
| 24 elastic/logstash Ruby 7
|
84
|
+
| 25 shakacode/react-webpack-rails-tutorial Ruby 6
|
85
85
|
|
86
86
|
EOS
|
87
87
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
@@ -187,31 +187,31 @@ RSpec.describe GitTrend::CLI do
|
|
187
187
|
res = <<-'EOS'.unindent
|
188
188
|
|No. Name Lang Star
|
189
189
|
|--- ---------------------------------------- ---------- ------
|
190
|
-
| 1 Homebrew/brew Ruby
|
191
|
-
| 2 fastlane/fastlane Ruby
|
192
|
-
| 3 jondot/awesome-react-native Ruby
|
193
|
-
| 4 iberianpig/fusuma Ruby
|
194
|
-
| 5 rails/rails Ruby
|
195
|
-
| 6 jekyll/jekyll Ruby
|
196
|
-
| 7 Gargron/mastodon Ruby
|
197
|
-
| 8 gettalong/hexapdf Ruby
|
198
|
-
| 9 Tim9Liu9/TimLiu-iOS Ruby
|
199
|
-
| 10 rapid7/metasploit-framework Ruby
|
200
|
-
| 11 mitchellh/vagrant Ruby
|
201
|
-
| 12 discourse/discourse Ruby
|
202
|
-
| 13 cookpad/kuroko2 Ruby
|
203
|
-
| 14 shakacode/react_on_rails Ruby
|
204
|
-
| 15 caskroom/homebrew-cask Ruby
|
205
|
-
| 16 Thibaut/devdocs Ruby
|
206
|
-
| 17 plataformatec/devise Ruby
|
207
|
-
| 18 ruby/ruby Ruby
|
208
|
-
| 19 sass/sass Ruby
|
209
|
-
| 20 logstash-plugins/logstash-patterns-core Ruby
|
210
|
-
| 21 webgradus/kms Ruby
|
211
|
-
| 22 CocoaPods/CocoaPods Ruby
|
212
|
-
| 23 Homebrew/homebrew-core Ruby
|
213
|
-
| 24 cantino/huginn Ruby
|
214
|
-
| 25 twbs/bootstrap-sass Ruby
|
190
|
+
| 1 Homebrew/brew Ruby 137
|
191
|
+
| 2 fastlane/fastlane Ruby 136
|
192
|
+
| 3 jondot/awesome-react-native Ruby 125
|
193
|
+
| 4 iberianpig/fusuma Ruby 128
|
194
|
+
| 5 rails/rails Ruby 88
|
195
|
+
| 6 jekyll/jekyll Ruby 104
|
196
|
+
| 7 Gargron/mastodon Ruby 115
|
197
|
+
| 8 gettalong/hexapdf Ruby 108
|
198
|
+
| 9 Tim9Liu9/TimLiu-iOS Ruby 73
|
199
|
+
| 10 rapid7/metasploit-framework Ruby 64
|
200
|
+
| 11 mitchellh/vagrant Ruby 69
|
201
|
+
| 12 discourse/discourse Ruby 61
|
202
|
+
| 13 cookpad/kuroko2 Ruby 74
|
203
|
+
| 14 shakacode/react_on_rails Ruby 64
|
204
|
+
| 15 caskroom/homebrew-cask Ruby 43
|
205
|
+
| 16 Thibaut/devdocs Ruby 55
|
206
|
+
| 17 plataformatec/devise Ruby 51
|
207
|
+
| 18 ruby/ruby Ruby 49
|
208
|
+
| 19 sass/sass Ruby 50
|
209
|
+
| 20 logstash-plugins/logstash-patterns-core Ruby 46
|
210
|
+
| 21 webgradus/kms Ruby 52
|
211
|
+
| 22 CocoaPods/CocoaPods Ruby 44
|
212
|
+
| 23 Homebrew/homebrew-core Ruby 21
|
213
|
+
| 24 cantino/huginn Ruby 44
|
214
|
+
| 25 twbs/bootstrap-sass Ruby 35
|
215
215
|
|
216
216
|
EOS
|
217
217
|
expect { cli.invoke(:list, [], language: language, since: since, description: false) }.to output(res).to_stdout
|
@@ -249,31 +249,31 @@ RSpec.describe GitTrend::CLI do
|
|
249
249
|
<<-'EOS'.unindent
|
250
250
|
|No. Name Lang Star
|
251
251
|
|--- ---------------------------------------- ----------- ------
|
252
|
-
| 1 Bilibili/flv.js JavaScript
|
253
|
-
| 2 drathier/stack-overflow-import Python
|
254
|
-
| 3 FreeCodeCamp/FreeCodeCamp JavaScript
|
255
|
-
| 4 alexjc/neural-enhance Python
|
256
|
-
| 5 mzabriskie/axios JavaScript
|
257
|
-
| 6 airbnb/knowledge-repo Python
|
258
|
-
| 7 skatejs/skatejs JavaScript
|
259
|
-
| 8 UFreedom/FloatingView Java
|
260
|
-
| 9 verekia/js-stack-from-scratch JavaScript
|
261
|
-
| 10 portainer/portainer JavaScript
|
262
|
-
| 11 CISOfy/lynis Shell
|
263
|
-
| 12 vuejs/vue JavaScript
|
264
|
-
| 13 th0r/webpack-bundle-analyzer JavaScript
|
265
|
-
| 14 thunderrise/android-TNRAnimationHelper Java
|
266
|
-
| 15 Jasonette/JASONETTE-iOS Objective-C
|
267
|
-
| 16 justjavac/awesome-wechat-weapp JavaScript
|
268
|
-
| 17 yarnpkg/yarn JavaScript
|
269
|
-
| 18 jwasham/google-interview-university
|
270
|
-
| 19 lengstrom/fast-style-transfer Python
|
271
|
-
| 20 FreeCodeCampChina/freecodecamp.cn CSS
|
272
|
-
| 21 minoca/os C
|
273
|
-
| 22 facebook/react JavaScript
|
274
|
-
| 23 sqreen/awesome-nodejs-projects
|
275
|
-
| 24 tensorflow/tensorflow C++
|
276
|
-
| 25 andyxialm/TyperEditText Java
|
252
|
+
| 1 Bilibili/flv.js JavaScript 503
|
253
|
+
| 2 drathier/stack-overflow-import Python 514
|
254
|
+
| 3 FreeCodeCamp/FreeCodeCamp JavaScript 491
|
255
|
+
| 4 alexjc/neural-enhance Python 402
|
256
|
+
| 5 mzabriskie/axios JavaScript 392
|
257
|
+
| 6 airbnb/knowledge-repo Python 295
|
258
|
+
| 7 skatejs/skatejs JavaScript 291
|
259
|
+
| 8 UFreedom/FloatingView Java 261
|
260
|
+
| 9 verekia/js-stack-from-scratch JavaScript 260
|
261
|
+
| 10 portainer/portainer JavaScript 253
|
262
|
+
| 11 CISOfy/lynis Shell 195
|
263
|
+
| 12 vuejs/vue JavaScript 172
|
264
|
+
| 13 th0r/webpack-bundle-analyzer JavaScript 171
|
265
|
+
| 14 thunderrise/android-TNRAnimationHelper Java 154
|
266
|
+
| 15 Jasonette/JASONETTE-iOS Objective-C 135
|
267
|
+
| 16 justjavac/awesome-wechat-weapp JavaScript 127
|
268
|
+
| 17 yarnpkg/yarn JavaScript 124
|
269
|
+
| 18 jwasham/google-interview-university 111
|
270
|
+
| 19 lengstrom/fast-style-transfer Python 119
|
271
|
+
| 20 FreeCodeCampChina/freecodecamp.cn CSS 112
|
272
|
+
| 21 minoca/os C 106
|
273
|
+
| 22 facebook/react JavaScript 100
|
274
|
+
| 23 sqreen/awesome-nodejs-projects 109
|
275
|
+
| 24 tensorflow/tensorflow C++ 79
|
276
|
+
| 25 andyxialm/TyperEditText Java 100
|
277
277
|
|
278
278
|
EOS
|
279
279
|
end
|
@@ -282,31 +282,31 @@ RSpec.describe GitTrend::CLI do
|
|
282
282
|
<<-'EOS'.unindent
|
283
283
|
|No. Name Lang Star Description
|
284
284
|
|--- ---------------------------------------- ----------- ------ ----------------------------------------------------------------------------
|
285
|
-
| 1 Bilibili/flv.js JavaScript
|
286
|
-
| 2 drathier/stack-overflow-import Python
|
287
|
-
| 3 FreeCodeCamp/FreeCodeCamp JavaScript
|
288
|
-
| 4 alexjc/neural-enhance Python
|
289
|
-
| 5 mzabriskie/axios JavaScript
|
290
|
-
| 6 airbnb/knowledge-repo Python
|
291
|
-
| 7 skatejs/skatejs JavaScript
|
292
|
-
| 8 UFreedom/FloatingView Java
|
293
|
-
| 9 verekia/js-stack-from-scratch JavaScript
|
294
|
-
| 10 portainer/portainer JavaScript
|
295
|
-
| 11 CISOfy/lynis Shell
|
296
|
-
| 12 vuejs/vue JavaScript
|
297
|
-
| 13 th0r/webpack-bundle-analyzer JavaScript
|
298
|
-
| 14 thunderrise/android-TNRAnimationHelper Java
|
299
|
-
| 15 Jasonette/JASONETTE-iOS Objective-C
|
300
|
-
| 16 justjavac/awesome-wechat-weapp JavaScript
|
301
|
-
| 17 yarnpkg/yarn JavaScript
|
302
|
-
| 18 jwasham/google-interview-university
|
303
|
-
| 19 lengstrom/fast-style-transfer Python
|
304
|
-
| 20 FreeCodeCampChina/freecodecamp.cn CSS
|
305
|
-
| 21 minoca/os C
|
306
|
-
| 22 facebook/react JavaScript
|
307
|
-
| 23 sqreen/awesome-nodejs-projects
|
308
|
-
| 24 tensorflow/tensorflow C++
|
309
|
-
| 25 andyxialm/TyperEditText Java
|
285
|
+
| 1 Bilibili/flv.js JavaScript 503 HTML5 FLV Player
|
286
|
+
| 2 drathier/stack-overflow-import Python 514 Import arbitrary code from Stack Overflow as Python modules.
|
287
|
+
| 3 FreeCodeCamp/FreeCodeCamp JavaScript 491 The https://FreeCodeCamp.com open source codebase and curriculum. Learn t...
|
288
|
+
| 4 alexjc/neural-enhance Python 402 Super Resolution for images using deep learning.
|
289
|
+
| 5 mzabriskie/axios JavaScript 392 Promise based HTTP client for the browser and node.js
|
290
|
+
| 6 airbnb/knowledge-repo Python 295 A next-generation curated knowledge sharing platform for data scientists ...
|
291
|
+
| 7 skatejs/skatejs JavaScript 291 SkateJS is a web component library designed to give you an augmentation o...
|
292
|
+
| 8 UFreedom/FloatingView Java 261 FloatingView can make the target view floating above the anchor view with...
|
293
|
+
| 9 verekia/js-stack-from-scratch JavaScript 260 Step-by-step tutorial to build a modern JavaScript stack from scratch
|
294
|
+
| 10 portainer/portainer JavaScript 253 Simple management UI for Docker
|
295
|
+
| 11 CISOfy/lynis Shell 195 Lynis - Security auditing tool for Linux, macOS, and UNIX-based systems. ...
|
296
|
+
| 12 vuejs/vue JavaScript 172 Simple yet powerful library for building modern web interfaces.
|
297
|
+
| 13 th0r/webpack-bundle-analyzer JavaScript 171 Webpack plugin and CLI utility that represents bundle content as convenie...
|
298
|
+
| 14 thunderrise/android-TNRAnimationHelper Java 154 This is a library that contains practical animations: Rotation, Flip, Hor...
|
299
|
+
| 15 Jasonette/JASONETTE-iOS Objective-C 135 📡 Native App over HTTP
|
300
|
+
| 16 justjavac/awesome-wechat-weapp JavaScript 127 微信小程序开发资源汇总 wechat weapp
|
301
|
+
| 17 yarnpkg/yarn JavaScript 124 📦🐈 Fast, reliable, and secure dependency management.
|
302
|
+
| 18 jwasham/google-interview-university 111 A complete daily plan for studying to become a Google software engineer.
|
303
|
+
| 19 lengstrom/fast-style-transfer Python 119 Fast Style Transfer in TensorFlow
|
304
|
+
| 20 FreeCodeCampChina/freecodecamp.cn CSS 112 看源码请到Code,提问请到Issues,提交代码请到Pull requests,看学习心得请到...
|
305
|
+
| 21 minoca/os C 106 Minoca operating system
|
306
|
+
| 22 facebook/react JavaScript 100 A declarative, efficient, and flexible JavaScript library for building us...
|
307
|
+
| 23 sqreen/awesome-nodejs-projects 109 Curated list of awesome open-source applications made with Node.js
|
308
|
+
| 24 tensorflow/tensorflow C++ 79 Computation using data flow graphs for scalable machine learning
|
309
|
+
| 25 andyxialm/TyperEditText Java 100 Typewriter
|
310
310
|
|
311
311
|
EOS
|
312
312
|
end
|
@@ -315,31 +315,31 @@ RSpec.describe GitTrend::CLI do
|
|
315
315
|
<<-'EOS'.unindent
|
316
316
|
|No. Name Lang Star
|
317
317
|
|--- ---------------------------------------------- ---------- ------
|
318
|
-
| 1 verekia/js-stack-from-scratch JavaScript
|
319
|
-
| 2 alexjc/neural-enhance Python
|
320
|
-
| 3 FreeCodeCamp/FreeCodeCamp JavaScript
|
321
|
-
| 4 witheve/Eve JavaScript
|
322
|
-
| 5 Bilibili/flv.js JavaScript
|
323
|
-
| 6 lengstrom/fast-style-transfer Python
|
324
|
-
| 7 VoLuong/Begin-Latex-in-minutes
|
325
|
-
| 8 minoca/os C
|
326
|
-
| 9 sqreen/awesome-nodejs-projects
|
327
|
-
| 10 th0r/webpack-bundle-analyzer JavaScript
|
328
|
-
| 11 blue-yonder/tsfresh Python
|
329
|
-
| 12 zeit/next.js JavaScript
|
330
|
-
| 13 GoogleChrome/lighthouse JavaScript
|
331
|
-
| 14 jwasham/google-interview-university
|
332
|
-
| 15 mas-cli/mas Swift
|
333
|
-
| 16 mattrajca/sudo-touchid C
|
334
|
-
| 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python
|
335
|
-
| 18 yarnpkg/yarn JavaScript
|
318
|
+
| 1 verekia/js-stack-from-scratch JavaScript 179
|
319
|
+
| 2 alexjc/neural-enhance Python 370
|
320
|
+
| 3 FreeCodeCamp/FreeCodeCamp JavaScript 902
|
321
|
+
| 4 witheve/Eve JavaScript 894
|
322
|
+
| 5 Bilibili/flv.js JavaScript 867
|
323
|
+
| 6 lengstrom/fast-style-transfer Python 652
|
324
|
+
| 7 VoLuong/Begin-Latex-in-minutes 649
|
325
|
+
| 8 minoca/os C 613
|
326
|
+
| 9 sqreen/awesome-nodejs-projects 450
|
327
|
+
| 10 th0r/webpack-bundle-analyzer JavaScript 419
|
328
|
+
| 11 blue-yonder/tsfresh Python 338
|
329
|
+
| 12 zeit/next.js JavaScript 134
|
330
|
+
| 13 GoogleChrome/lighthouse JavaScript 56
|
331
|
+
| 14 jwasham/google-interview-university 867
|
332
|
+
| 15 mas-cli/mas Swift 926
|
333
|
+
| 16 mattrajca/sudo-touchid C 880
|
334
|
+
| 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python 792
|
335
|
+
| 18 yarnpkg/yarn JavaScript 810
|
336
336
|
| 19 ImmortalZ/TransitionHelper Java 790
|
337
|
-
| 20 the-control-group/voyager PHP
|
338
|
-
| 21 vuejs/vue JavaScript
|
339
|
-
| 22 jobbole/awesome-programming-books
|
340
|
-
| 23 tensorflow/tensorflow C++
|
341
|
-
| 24 BelooS/ChipsLayoutManager Java
|
342
|
-
| 25 krisk/Fuse JavaScript
|
337
|
+
| 20 the-control-group/voyager PHP 782
|
338
|
+
| 21 vuejs/vue JavaScript 756
|
339
|
+
| 22 jobbole/awesome-programming-books 685
|
340
|
+
| 23 tensorflow/tensorflow C++ 549
|
341
|
+
| 24 BelooS/ChipsLayoutManager Java 705
|
342
|
+
| 25 krisk/Fuse JavaScript 730
|
343
343
|
|
344
344
|
EOS
|
345
345
|
end
|
@@ -348,31 +348,31 @@ RSpec.describe GitTrend::CLI do
|
|
348
348
|
<<-'EOS'.unindent
|
349
349
|
|No. Name Lang Star
|
350
350
|
|--- ---------------------------------------------- ---------- ------
|
351
|
-
| 1 verekia/js-stack-from-scratch JavaScript
|
352
|
-
| 2 alexjc/neural-enhance Python
|
353
|
-
| 3 FreeCodeCamp/FreeCodeCamp JavaScript
|
354
|
-
| 4 witheve/Eve JavaScript
|
355
|
-
| 5 Bilibili/flv.js JavaScript
|
356
|
-
| 6 lengstrom/fast-style-transfer Python
|
357
|
-
| 7 VoLuong/Begin-Latex-in-minutes
|
358
|
-
| 8 minoca/os C
|
359
|
-
| 9 sqreen/awesome-nodejs-projects
|
360
|
-
| 10 th0r/webpack-bundle-analyzer JavaScript
|
361
|
-
| 11 blue-yonder/tsfresh Python
|
362
|
-
| 12 zeit/next.js JavaScript
|
363
|
-
| 13 GoogleChrome/lighthouse JavaScript
|
364
|
-
| 14 jwasham/google-interview-university
|
365
|
-
| 15 mas-cli/mas Swift
|
366
|
-
| 16 mattrajca/sudo-touchid C
|
367
|
-
| 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python
|
368
|
-
| 18 yarnpkg/yarn JavaScript
|
351
|
+
| 1 verekia/js-stack-from-scratch JavaScript 179
|
352
|
+
| 2 alexjc/neural-enhance Python 370
|
353
|
+
| 3 FreeCodeCamp/FreeCodeCamp JavaScript 902
|
354
|
+
| 4 witheve/Eve JavaScript 894
|
355
|
+
| 5 Bilibili/flv.js JavaScript 867
|
356
|
+
| 6 lengstrom/fast-style-transfer Python 652
|
357
|
+
| 7 VoLuong/Begin-Latex-in-minutes 649
|
358
|
+
| 8 minoca/os C 613
|
359
|
+
| 9 sqreen/awesome-nodejs-projects 450
|
360
|
+
| 10 th0r/webpack-bundle-analyzer JavaScript 419
|
361
|
+
| 11 blue-yonder/tsfresh Python 338
|
362
|
+
| 12 zeit/next.js JavaScript 134
|
363
|
+
| 13 GoogleChrome/lighthouse JavaScript 56
|
364
|
+
| 14 jwasham/google-interview-university 867
|
365
|
+
| 15 mas-cli/mas Swift 926
|
366
|
+
| 16 mattrajca/sudo-touchid C 880
|
367
|
+
| 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python 792
|
368
|
+
| 18 yarnpkg/yarn JavaScript 810
|
369
369
|
| 19 ImmortalZ/TransitionHelper Java 790
|
370
|
-
| 20 the-control-group/voyager PHP
|
371
|
-
| 21 vuejs/vue JavaScript
|
372
|
-
| 22 jobbole/awesome-programming-books
|
373
|
-
| 23 tensorflow/tensorflow C++
|
374
|
-
| 24 BelooS/ChipsLayoutManager Java
|
375
|
-
| 25 krisk/Fuse JavaScript
|
370
|
+
| 20 the-control-group/voyager PHP 782
|
371
|
+
| 21 vuejs/vue JavaScript 756
|
372
|
+
| 22 jobbole/awesome-programming-books 685
|
373
|
+
| 23 tensorflow/tensorflow C++ 549
|
374
|
+
| 24 BelooS/ChipsLayoutManager Java 705
|
375
|
+
| 25 krisk/Fuse JavaScript 730
|
376
376
|
|
377
377
|
EOS
|
378
378
|
end
|