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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28ca277ee2b63fa68846f0e31666f85aaf5fc059
4
- data.tar.gz: 2a28a1d8c1f6a0cebcefe6b1e7a74739ad16c54b
3
+ metadata.gz: 623547ab4a0713fabb14dd8da03d7f1dd5f1c3dd
4
+ data.tar.gz: afc27ec089947c0b699aaac929218d0c20e5c91f
5
5
  SHA512:
6
- metadata.gz: 3b52a9f64cc1190b540ae6d92937f23830f2dbf72bd32fe8eb17e34527ebda7b366f5c585f14dd48dad98258d93c60e2150d071b28467d77f9a368d96b34b5de
7
- data.tar.gz: 129ceddb509b178199b226d4bc3513067738178bffa082445894f642e493223a907a9becf7333e2d3242d44d3842aff104a56800d43fcf426404152e42983898
6
+ metadata.gz: 4c02a9bdcafc2054c971714cc571766992f9a740e0b8e6a2a938bc857fb44b5a669707ca6e9649249519a44fa5d8dcd3897fefc05f9e2c3fbb6702156a61cc61
7
+ data.tar.gz: a0b22e6ac1dd9ebe3ea4cd839ea7c7eb9a6b4e605df79a8daffa5e750086e04f9bd4cbdc39f712c3e21aa907daa6b0129fdcb5eb876c9e2267fd1569d80768a9
data/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
- ## v1.1.1 (Sat Nov 10 2016)
1
+ ## v1.1.2 (Thu Nov 10 2016)
2
+ - Change display column as `Star` from all_star_count to star_count [4b78ae3]
3
+
4
+ ## v1.1.1 (Thu Nov 10 2016)
2
5
  - Fix bug: Consider comma in counts [b0eab23]
3
6
 
4
7
  ## v1.1.0 (Sat Nov 5 2016)
@@ -1,13 +1,14 @@
1
1
  module GitTrend
2
2
  class Project
3
- attr_accessor :name, :description, :lang, :star_count, :fork_count
3
+ attr_accessor :name, :description, :lang, :all_star_count, :fork_count, :star_count
4
4
 
5
- def initialize(name: "", description: "", lang: "", star_count: 0, fork_count: 0)
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.star_count = star_count
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
@@ -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
- star_count: content.search('a[aria-label="Stargazers"]').text.strip.delete(",").to_i,
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
@@ -1,3 +1,3 @@
1
1
  module GitTrend
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
@@ -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 3782
34
- | 2 drathier/stack-overflow-import Python 589
35
- | 3 FreeCodeCamp/FreeCodeCamp JavaScript 191056
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 115
61
- | 2 shakacode/react_on_rails Ruby 2111
62
- | 3 Homebrew/brew Ruby 4409
63
- | 4 rails/rails Ruby 33266
64
- | 5 jondot/awesome-react-native Ruby 8260
65
- | 6 fastlane/fastlane Ruby 12056
66
- | 7 mitchellh/vagrant Ruby 13443
67
- | 8 discourse/discourse Ruby 19670
68
- | 9 jekyll/jekyll Ruby 27457
69
- | 10 caskroom/homebrew-cask Ruby 9882
70
- | 11 Thibaut/devdocs Ruby 10699
71
- | 12 rapid7/metasploit-framework Ruby 6996
72
- | 13 CocoaPods/CocoaPods Ruby 8715
73
- | 14 rails-api/active_model_serializers Ruby 3837
74
- | 15 kilimchoi/engineering-blogs Ruby 8631
75
- | 16 plataformatec/devise Ruby 16116
76
- | 17 gettalong/hexapdf Ruby 300
77
- | 18 Gargron/mastodon Ruby 824
78
- | 19 mperham/sidekiq Ruby 6826
79
- | 20 bkeepers/dotenv Ruby 3691
80
- | 21 skywinder/github-changelog-generator Ruby 2655
81
- | 22 gitlabhq/gitlabhq Ruby 18633
82
- | 23 Tim9Liu9/TimLiu-iOS Ruby 4830
83
- | 24 elastic/logstash Ruby 6637
84
- | 25 shakacode/react-webpack-rails-tutorial Ruby 1118
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 4410
191
- | 2 fastlane/fastlane Ruby 12057
192
- | 3 jondot/awesome-react-native Ruby 8262
193
- | 4 iberianpig/fusuma Ruby 129
194
- | 5 rails/rails Ruby 33266
195
- | 6 jekyll/jekyll Ruby 27459
196
- | 7 Gargron/mastodon Ruby 826
197
- | 8 gettalong/hexapdf Ruby 303
198
- | 9 Tim9Liu9/TimLiu-iOS Ruby 4830
199
- | 10 rapid7/metasploit-framework Ruby 6996
200
- | 11 mitchellh/vagrant Ruby 13443
201
- | 12 discourse/discourse Ruby 19671
202
- | 13 cookpad/kuroko2 Ruby 85
203
- | 14 shakacode/react_on_rails Ruby 2114
204
- | 15 caskroom/homebrew-cask Ruby 9883
205
- | 16 Thibaut/devdocs Ruby 10699
206
- | 17 plataformatec/devise Ruby 16116
207
- | 18 ruby/ruby Ruby 10880
208
- | 19 sass/sass Ruby 8825
209
- | 20 logstash-plugins/logstash-patterns-core Ruby 420
210
- | 21 webgradus/kms Ruby 117
211
- | 22 CocoaPods/CocoaPods Ruby 8715
212
- | 23 Homebrew/homebrew-core Ruby 979
213
- | 24 cantino/huginn Ruby 15035
214
- | 25 twbs/bootstrap-sass Ruby 11486
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 3782
253
- | 2 drathier/stack-overflow-import Python 589
254
- | 3 FreeCodeCamp/FreeCodeCamp JavaScript 191056
255
- | 4 alexjc/neural-enhance Python 4380
256
- | 5 mzabriskie/axios JavaScript 7565
257
- | 6 airbnb/knowledge-repo Python 621
258
- | 7 skatejs/skatejs JavaScript 1482
259
- | 8 UFreedom/FloatingView Java 304
260
- | 9 verekia/js-stack-from-scratch JavaScript 7684
261
- | 10 portainer/portainer JavaScript 463
262
- | 11 CISOfy/lynis Shell 1480
263
- | 12 vuejs/vue JavaScript 32676
264
- | 13 th0r/webpack-bundle-analyzer JavaScript 1438
265
- | 14 thunderrise/android-TNRAnimationHelper Java 487
266
- | 15 Jasonette/JASONETTE-iOS Objective-C 164
267
- | 16 justjavac/awesome-wechat-weapp JavaScript 3859
268
- | 17 yarnpkg/yarn JavaScript 18470
269
- | 18 jwasham/google-interview-university 19524
270
- | 19 lengstrom/fast-style-transfer Python 1654
271
- | 20 FreeCodeCampChina/freecodecamp.cn CSS 3016
272
- | 21 minoca/os C 1616
273
- | 22 facebook/react JavaScript 53230
274
- | 23 sqreen/awesome-nodejs-projects 1454
275
- | 24 tensorflow/tensorflow C++ 36152
276
- | 25 andyxialm/TyperEditText Java 110
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 3782 HTML5 FLV Player
286
- | 2 drathier/stack-overflow-import Python 589 Import arbitrary code from Stack Overflow as Python modules.
287
- | 3 FreeCodeCamp/FreeCodeCamp JavaScript 191056 The https://FreeCodeCamp.com open source codebase and curriculum. Learn t...
288
- | 4 alexjc/neural-enhance Python 4380 Super Resolution for images using deep learning.
289
- | 5 mzabriskie/axios JavaScript 7565 Promise based HTTP client for the browser and node.js
290
- | 6 airbnb/knowledge-repo Python 621 A next-generation curated knowledge sharing platform for data scientists ...
291
- | 7 skatejs/skatejs JavaScript 1482 SkateJS is a web component library designed to give you an augmentation o...
292
- | 8 UFreedom/FloatingView Java 304 FloatingView can make the target view floating above the anchor view with...
293
- | 9 verekia/js-stack-from-scratch JavaScript 7684 Step-by-step tutorial to build a modern JavaScript stack from scratch
294
- | 10 portainer/portainer JavaScript 463 Simple management UI for Docker
295
- | 11 CISOfy/lynis Shell 1480 Lynis - Security auditing tool for Linux, macOS, and UNIX-based systems. ...
296
- | 12 vuejs/vue JavaScript 32676 Simple yet powerful library for building modern web interfaces.
297
- | 13 th0r/webpack-bundle-analyzer JavaScript 1438 Webpack plugin and CLI utility that represents bundle content as convenie...
298
- | 14 thunderrise/android-TNRAnimationHelper Java 487 This is a library that contains practical animations: Rotation, Flip, Hor...
299
- | 15 Jasonette/JASONETTE-iOS Objective-C 164 📡 Native App over HTTP
300
- | 16 justjavac/awesome-wechat-weapp JavaScript 3859 微信小程序开发资源汇总 wechat weapp
301
- | 17 yarnpkg/yarn JavaScript 18470 📦🐈 Fast, reliable, and secure dependency management.
302
- | 18 jwasham/google-interview-university 19524 A complete daily plan for studying to become a Google software engineer.
303
- | 19 lengstrom/fast-style-transfer Python 1654 Fast Style Transfer in TensorFlow
304
- | 20 FreeCodeCampChina/freecodecamp.cn CSS 3016 看源码请到Code,提问请到Issues,提交代码请到Pull requests,看学习心得请到...
305
- | 21 minoca/os C 1616 Minoca operating system
306
- | 22 facebook/react JavaScript 53230 A declarative, efficient, and flexible JavaScript library for building us...
307
- | 23 sqreen/awesome-nodejs-projects 1454 Curated list of awesome open-source applications made with Node.js
308
- | 24 tensorflow/tensorflow C++ 36152 Computation using data flow graphs for scalable machine learning
309
- | 25 andyxialm/TyperEditText Java 110 Typewriter
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 7704
319
- | 2 alexjc/neural-enhance Python 4401
320
- | 3 FreeCodeCamp/FreeCodeCamp JavaScript 191088
321
- | 4 witheve/Eve JavaScript 4896
322
- | 5 Bilibili/flv.js JavaScript 3796
323
- | 6 lengstrom/fast-style-transfer Python 1663
324
- | 7 VoLuong/Begin-Latex-in-minutes 1652
325
- | 8 minoca/os C 1622
326
- | 9 sqreen/awesome-nodejs-projects 1455
327
- | 10 th0r/webpack-bundle-analyzer JavaScript 1446
328
- | 11 blue-yonder/tsfresh Python 1419
329
- | 12 zeit/next.js JavaScript 5191
330
- | 13 GoogleChrome/lighthouse JavaScript 3962
331
- | 14 jwasham/google-interview-university 19533
332
- | 15 mas-cli/mas Swift 2261
333
- | 16 mattrajca/sudo-touchid C 884
334
- | 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python 7241
335
- | 18 yarnpkg/yarn JavaScript 18477
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 818
338
- | 21 vuejs/vue JavaScript 32693
339
- | 22 jobbole/awesome-programming-books 821
340
- | 23 tensorflow/tensorflow C++ 36159
341
- | 24 BelooS/ChipsLayoutManager Java 714
342
- | 25 krisk/Fuse JavaScript 3369
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 7704
352
- | 2 alexjc/neural-enhance Python 4401
353
- | 3 FreeCodeCamp/FreeCodeCamp JavaScript 191088
354
- | 4 witheve/Eve JavaScript 4896
355
- | 5 Bilibili/flv.js JavaScript 3796
356
- | 6 lengstrom/fast-style-transfer Python 1663
357
- | 7 VoLuong/Begin-Latex-in-minutes 1652
358
- | 8 minoca/os C 1622
359
- | 9 sqreen/awesome-nodejs-projects 1455
360
- | 10 th0r/webpack-bundle-analyzer JavaScript 1446
361
- | 11 blue-yonder/tsfresh Python 1419
362
- | 12 zeit/next.js JavaScript 5191
363
- | 13 GoogleChrome/lighthouse JavaScript 3962
364
- | 14 jwasham/google-interview-university 19533
365
- | 15 mas-cli/mas Swift 2261
366
- | 16 mattrajca/sudo-touchid C 884
367
- | 17 songrotek/Deep-Learning-Papers-Reading-Roadmap Python 7241
368
- | 18 yarnpkg/yarn JavaScript 18477
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 818
371
- | 21 vuejs/vue JavaScript 32693
372
- | 22 jobbole/awesome-programming-books 821
373
- | 23 tensorflow/tensorflow C++ 36159
374
- | 24 BelooS/ChipsLayoutManager Java 714
375
- | 25 krisk/Fuse JavaScript 3369
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-trend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - rochefort