git-trend 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/git-trend.gemspec +2 -2
- data/lib/git_trend/scraper.rb +1 -1
- data/lib/git_trend/version.rb +1 -1
- data/spec/git_trend/cli_spec.rb +149 -149
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba12b618ecf6cfc67a8cf503b502cfa7444b93445fc362bb1399f27a88063369
|
4
|
+
data.tar.gz: ce93b8558c74ae73705a0f6eaccf8bf065754501147252f6cc81f4bc61a5de22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 834ca0a99fec1f6554eb853f2d92ff379658458e45f977d7170fbd35b164e8fd708ea480d965d03edb95ecce80f5bcb36bf1e90bc2a497500998b8f062a32022
|
7
|
+
data.tar.gz: 1dcc95671247735c178646d46561d649f56537650e6eb2b15813fb7bd945c5327fa2fecfbb990348d605fd9ef5dc2358e81be7cb5ac55eabd5f8857f4124b4ad
|
data/CHANGELOG.md
CHANGED
data/git-trend.gemspec
CHANGED
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
|
|
36
36
|
|
37
37
|
spec.post_install_message = install_message
|
38
38
|
|
39
|
-
spec.add_dependency "addressable", ">= 2.5.1", "< 2.
|
39
|
+
spec.add_dependency "addressable", ">= 2.5.1", "< 2.8.0"
|
40
40
|
spec.add_dependency "mb_string", "~> 0.1.8"
|
41
41
|
spec.add_dependency "mechanize", "~> 2.7.5"
|
42
42
|
spec.add_dependency "thor", ">= 0.20.0", "< 0.21.0"
|
@@ -48,7 +48,7 @@ Gem::Specification.new do |spec|
|
|
48
48
|
spec.add_development_dependency "rspec", "~> 3.8.0"
|
49
49
|
spec.add_development_dependency "simplecov", "~> 0.17.0"
|
50
50
|
spec.add_development_dependency "safe_yaml", "~> 1.0.4" # for Ruby2.2.0
|
51
|
-
spec.add_development_dependency "webmock", "~> 3.
|
51
|
+
spec.add_development_dependency "webmock", "~> 3.7.3"
|
52
52
|
|
53
53
|
# spec.add_development_dependency "coveralls", "~> 0.8.19"
|
54
54
|
end
|
data/lib/git_trend/scraper.rb
CHANGED
@@ -58,7 +58,7 @@ module GitTrend
|
|
58
58
|
lang: content.search('span[itemprop="programmingLanguage"]').text.strip,
|
59
59
|
all_star_count: comma_to_i(icon_area.search('a:has(svg.octicon-star)').text.strip),
|
60
60
|
fork_count: comma_to_i(icon_area.search('a:has(svg.octicon-repo-forked)').text.strip),
|
61
|
-
star_count: comma_to_i(icon_area.search('
|
61
|
+
star_count: comma_to_i(icon_area.search('.float-sm-right').text.to_i)
|
62
62
|
)
|
63
63
|
end
|
64
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 vmware/octant Go
|
34
|
-
| 2 dengyuhan/magnetW Java
|
35
|
-
| 3 sherlock-project/sherlock Python
|
33
|
+
| 1 vmware/octant Go 162
|
34
|
+
| 2 dengyuhan/magnetW Java 240
|
35
|
+
| 3 sherlock-project/sherlock Python 90
|
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 thepracticaldev/dev.to Ruby
|
61
|
-
| 2 rails/rails Ruby
|
62
|
-
| 3 chef/chef Ruby
|
63
|
-
| 4 Netflix/fast_jsonapi Ruby
|
64
|
-
| 5 dependabot/dependabot-core Ruby
|
65
|
-
| 6 guard/listen Ruby
|
66
|
-
| 7 braintree/runbook Ruby
|
67
|
-
| 8 solidusio/solidus Ruby
|
68
|
-
| 9 peatio/peatio Ruby
|
69
|
-
| 10 lynndylanhurley/devise_token_auth Ruby
|
70
|
-
| 11 mperham/sidekiq Ruby
|
71
|
-
| 12 CocoaPods/CocoaPods Ruby
|
72
|
-
| 13 ruby/ruby Ruby
|
73
|
-
| 14 elastic/ansible-elasticsearch Ruby
|
74
|
-
| 15 CocoaPods/Xcodeproj Ruby
|
75
|
-
| 16 spree/spree Ruby
|
76
|
-
| 17 brotandgames/ciao Ruby
|
77
|
-
| 18 dtan4/terraforming Ruby
|
78
|
-
| 19 elastic/logstash Ruby
|
79
|
-
| 20 plataformatec/simple_form Ruby
|
80
|
-
| 21 jekyll/jekyll Ruby
|
81
|
-
| 22 rubocop-hq/rubocop Ruby
|
82
|
-
| 23 github-changelog-generator/github-changelog-generator Ruby
|
83
|
-
| 24 sferik/rails_admin Ruby
|
84
|
-
| 25 rubysherpas/paranoia Ruby
|
60
|
+
| 1 thepracticaldev/dev.to Ruby 41
|
61
|
+
| 2 rails/rails Ruby 15
|
62
|
+
| 3 chef/chef Ruby 4
|
63
|
+
| 4 Netflix/fast_jsonapi Ruby 4
|
64
|
+
| 5 dependabot/dependabot-core Ruby 1
|
65
|
+
| 6 guard/listen Ruby 0
|
66
|
+
| 7 braintree/runbook Ruby 35
|
67
|
+
| 8 solidusio/solidus Ruby 0
|
68
|
+
| 9 peatio/peatio Ruby 1
|
69
|
+
| 10 lynndylanhurley/devise_token_auth Ruby 0
|
70
|
+
| 11 mperham/sidekiq Ruby 3
|
71
|
+
| 12 CocoaPods/CocoaPods Ruby 0
|
72
|
+
| 13 ruby/ruby Ruby 8
|
73
|
+
| 14 elastic/ansible-elasticsearch Ruby 0
|
74
|
+
| 15 CocoaPods/Xcodeproj Ruby 0
|
75
|
+
| 16 spree/spree Ruby 1
|
76
|
+
| 17 brotandgames/ciao Ruby 21
|
77
|
+
| 18 dtan4/terraforming Ruby 1
|
78
|
+
| 19 elastic/logstash Ruby 3
|
79
|
+
| 20 plataformatec/simple_form Ruby 0
|
80
|
+
| 21 jekyll/jekyll Ruby 12
|
81
|
+
| 22 rubocop-hq/rubocop Ruby 4
|
82
|
+
| 23 github-changelog-generator/github-changelog-generator Ruby 2
|
83
|
+
| 24 sferik/rails_admin Ruby 0
|
84
|
+
| 25 rubysherpas/paranoia Ruby 0
|
85
85
|
|
86
86
|
EOS
|
87
87
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
@@ -200,31 +200,31 @@ RSpec.describe GitTrend::CLI do
|
|
200
200
|
res = <<-'EOS'.unindent
|
201
201
|
|No. Name Lang Star
|
202
202
|
|--- ---------------------------------------- ---------- ------
|
203
|
-
| 1 rapid7/metasploit-framework Ruby
|
204
|
-
| 2 jekyll/jekyll Ruby
|
205
|
-
| 3 ruby/ruby Ruby
|
206
|
-
| 4 greatghoul/remote-working Ruby
|
207
|
-
| 5 thepracticaldev/dev.to Ruby
|
208
|
-
| 6 rails/rails Ruby
|
209
|
-
| 7 fastlane/fastlane Ruby
|
210
|
-
| 8 elastic/logstash Ruby
|
211
|
-
| 9 zendesk/ruby-kafka Ruby
|
212
|
-
| 10 activerecord-hackery/ransack Ruby
|
213
|
-
| 11 education/classroom Ruby
|
214
|
-
| 12 faker-ruby/faker Ruby
|
215
|
-
| 13 discourse/discourse Ruby
|
216
|
-
| 14 DeathKing/Learning-SICP Ruby
|
217
|
-
| 15 rails/webpacker Ruby
|
218
|
-
| 16 bayandin/awesome-awesomeness Ruby
|
219
|
-
| 17 github/explore Ruby
|
220
|
-
| 18 hashicorp/vagrant Ruby
|
221
|
-
| 19 varvet/pundit Ruby
|
222
|
-
| 20 ytti/oxidized Ruby
|
223
|
-
| 21 thoughtbot/factory_bot Ruby
|
224
|
-
| 22 dependabot/dependabot-core Ruby
|
225
|
-
| 23 spree/spree Ruby
|
226
|
-
| 24 Homebrew/homebrew-core Ruby
|
227
|
-
| 25 thibmaek/awesome-raspberry-pi Ruby
|
203
|
+
| 1 rapid7/metasploit-framework Ruby 85
|
204
|
+
| 2 jekyll/jekyll Ruby 72
|
205
|
+
| 3 ruby/ruby Ruby 34
|
206
|
+
| 4 greatghoul/remote-working Ruby 113
|
207
|
+
| 5 thepracticaldev/dev.to Ruby 109
|
208
|
+
| 6 rails/rails Ruby 75
|
209
|
+
| 7 fastlane/fastlane Ruby 66
|
210
|
+
| 8 elastic/logstash Ruby 27
|
211
|
+
| 9 zendesk/ruby-kafka Ruby 8
|
212
|
+
| 10 activerecord-hackery/ransack Ruby 17
|
213
|
+
| 11 education/classroom Ruby 10
|
214
|
+
| 12 faker-ruby/faker Ruby 21
|
215
|
+
| 13 discourse/discourse Ruby 60
|
216
|
+
| 14 DeathKing/Learning-SICP Ruby 40
|
217
|
+
| 15 rails/webpacker Ruby 16
|
218
|
+
| 16 bayandin/awesome-awesomeness Ruby 48
|
219
|
+
| 17 github/explore Ruby 18
|
220
|
+
| 18 hashicorp/vagrant Ruby 42
|
221
|
+
| 19 varvet/pundit Ruby 17
|
222
|
+
| 20 ytti/oxidized Ruby 12
|
223
|
+
| 21 thoughtbot/factory_bot Ruby 9
|
224
|
+
| 22 dependabot/dependabot-core Ruby 16
|
225
|
+
| 23 spree/spree Ruby 15
|
226
|
+
| 24 Homebrew/homebrew-core Ruby 34
|
227
|
+
| 25 thibmaek/awesome-raspberry-pi Ruby 53
|
228
228
|
|
229
229
|
EOS
|
230
230
|
expect { cli.invoke(:list, [], language: language, since: since, description: false) }.to output(res).to_stdout
|
@@ -262,31 +262,31 @@ RSpec.describe GitTrend::CLI do
|
|
262
262
|
<<-'EOS'.unindent
|
263
263
|
|No. Name Lang Star
|
264
264
|
|--- ---------------------------------------------------------- ---------------- ------
|
265
|
-
| 1 vmware/octant Go
|
266
|
-
| 2 dengyuhan/magnetW Java
|
267
|
-
| 3 sherlock-project/sherlock Python
|
268
|
-
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript
|
269
|
-
| 5 grafana/grafana TypeScript
|
270
|
-
| 6 Flaque/quirk TypeScript
|
271
|
-
| 7 2227324689/gpmall Java
|
272
|
-
| 8 thepracticaldev/dev.to Ruby
|
273
|
-
| 9 google/googletest C++
|
274
|
-
| 10 NVIDIA/open-gpu-doc C
|
275
|
-
| 11 Tencent/MedicalNet Python
|
276
|
-
| 12 didi/delta Python
|
277
|
-
| 13 cnlh/nps Go
|
278
|
-
| 14 dennybritz/reinforcement-learning Jupyter Notebook
|
279
|
-
| 15 remoteintech/remote-jobs JavaScript
|
280
|
-
| 16 jackfrued/Python-100-Days Jupyter Notebook
|
281
|
-
| 17 rabbitmq/rabbitmq-tutorials Java
|
282
|
-
| 18 istio/istio Go
|
283
|
-
| 19 mozilla-mobile/fenix Kotlin
|
284
|
-
| 20 Igglybuff/awesome-piracy HTML
|
285
|
-
| 21 fireeye/commando-vm PowerShell
|
286
|
-
| 22 arpitjindal97/technology_books
|
287
|
-
| 23 datawhalechina/leeml-notes
|
288
|
-
| 24 tlbootcamp/tlroadmap Python
|
289
|
-
| 25 facebook/create-react-app JavaScript
|
265
|
+
| 1 vmware/octant Go 162
|
266
|
+
| 2 dengyuhan/magnetW Java 240
|
267
|
+
| 3 sherlock-project/sherlock Python 90
|
268
|
+
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 188
|
269
|
+
| 5 grafana/grafana TypeScript 41
|
270
|
+
| 6 Flaque/quirk TypeScript 40
|
271
|
+
| 7 2227324689/gpmall Java 51
|
272
|
+
| 8 thepracticaldev/dev.to Ruby 41
|
273
|
+
| 9 google/googletest C++ 27
|
274
|
+
| 10 NVIDIA/open-gpu-doc C 107
|
275
|
+
| 11 Tencent/MedicalNet Python 40
|
276
|
+
| 12 didi/delta Python 72
|
277
|
+
| 13 cnlh/nps Go 190
|
278
|
+
| 14 dennybritz/reinforcement-learning Jupyter Notebook 64
|
279
|
+
| 15 remoteintech/remote-jobs JavaScript 86
|
280
|
+
| 16 jackfrued/Python-100-Days Jupyter Notebook 182
|
281
|
+
| 17 rabbitmq/rabbitmq-tutorials Java 30
|
282
|
+
| 18 istio/istio Go 18
|
283
|
+
| 19 mozilla-mobile/fenix Kotlin 10
|
284
|
+
| 20 Igglybuff/awesome-piracy HTML 28
|
285
|
+
| 21 fireeye/commando-vm PowerShell 14
|
286
|
+
| 22 arpitjindal97/technology_books 58
|
287
|
+
| 23 datawhalechina/leeml-notes 301
|
288
|
+
| 24 tlbootcamp/tlroadmap Python 42
|
289
|
+
| 25 facebook/create-react-app JavaScript 58
|
290
290
|
|
291
291
|
EOS
|
292
292
|
end
|
@@ -295,31 +295,31 @@ RSpec.describe GitTrend::CLI do
|
|
295
295
|
<<-'EOS'.unindent
|
296
296
|
|No. Name Lang Star Description
|
297
297
|
|--- ---------------------------------------------------------- ---------------- ------ -----------------------------------------------------
|
298
|
-
| 1 vmware/octant Go
|
299
|
-
| 2 dengyuhan/magnetW Java
|
300
|
-
| 3 sherlock-project/sherlock Python
|
301
|
-
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript
|
302
|
-
| 5 grafana/grafana TypeScript
|
303
|
-
| 6 Flaque/quirk TypeScript
|
304
|
-
| 7 2227324689/gpmall Java
|
305
|
-
| 8 thepracticaldev/dev.to Ruby
|
306
|
-
| 9 google/googletest C++
|
307
|
-
| 10 NVIDIA/open-gpu-doc C
|
308
|
-
| 11 Tencent/MedicalNet Python
|
309
|
-
| 12 didi/delta Python
|
310
|
-
| 13 cnlh/nps Go
|
311
|
-
| 14 dennybritz/reinforcement-learning Jupyter Notebook
|
312
|
-
| 15 remoteintech/remote-jobs JavaScript
|
313
|
-
| 16 jackfrued/Python-100-Days Jupyter Notebook
|
314
|
-
| 17 rabbitmq/rabbitmq-tutorials Java
|
315
|
-
| 18 istio/istio Go
|
316
|
-
| 19 mozilla-mobile/fenix Kotlin
|
317
|
-
| 20 Igglybuff/awesome-piracy HTML
|
318
|
-
| 21 fireeye/commando-vm PowerShell
|
319
|
-
| 22 arpitjindal97/technology_books
|
320
|
-
| 23 datawhalechina/leeml-notes
|
321
|
-
| 24 tlbootcamp/tlroadmap Python
|
322
|
-
| 25 facebook/create-react-app JavaScript
|
298
|
+
| 1 vmware/octant Go 162 A web-based, highly extensible platform for develo...
|
299
|
+
| 2 dengyuhan/magnetW Java 240 磁力搜网页版 - 磁力链接聚合搜索 - https://bt.biedi...
|
300
|
+
| 3 sherlock-project/sherlock Python 90 🔎 Find usernames across social networks
|
301
|
+
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 188 Data Structures and Algorithms explained and imple...
|
302
|
+
| 5 grafana/grafana TypeScript 41 The tool for beautiful monitoring and metric analy...
|
303
|
+
| 6 Flaque/quirk TypeScript 40 ✨🐙 A GPL Licensed Cognitive Behavioral Therapy a...
|
304
|
+
| 7 2227324689/gpmall Java 51 基于SpringBoot+Dubbo构建的电商平台-微服务架构
|
305
|
+
| 8 thepracticaldev/dev.to Ruby 41 Where programmers share ideas and help each other ...
|
306
|
+
| 9 google/googletest C++ 27 Googletest - Google Testing and Mocking Framework
|
307
|
+
| 10 NVIDIA/open-gpu-doc C 107 Documentation of NVIDIA chip/hardware interfaces
|
308
|
+
| 11 Tencent/MedicalNet Python 40 Many studies have shown that the performance on de...
|
309
|
+
| 12 didi/delta Python 72 DELTA is a deep learning based natural language an...
|
310
|
+
| 13 cnlh/nps Go 190 一款轻量级、功能强大的内网穿透代理服务器。支持tcp...
|
311
|
+
| 14 dennybritz/reinforcement-learning Jupyter Notebook 64 Implementation of Reinforcement Learning Algorithm...
|
312
|
+
| 15 remoteintech/remote-jobs JavaScript 86 A list of semi to fully remote-friendly companies ...
|
313
|
+
| 16 jackfrued/Python-100-Days Jupyter Notebook 182 Python - 100天从新手到大师
|
314
|
+
| 17 rabbitmq/rabbitmq-tutorials Java 30 Tutorials for using RabbitMQ in various ways
|
315
|
+
| 18 istio/istio Go 18 Connect, secure, control, and observe services.
|
316
|
+
| 19 mozilla-mobile/fenix Kotlin 10
|
317
|
+
| 20 Igglybuff/awesome-piracy HTML 28 A curated list of awesome warez and piracy links
|
318
|
+
| 21 fireeye/commando-vm PowerShell 14 Complete Mandiant Offensive VM (Commando VM), a fu...
|
319
|
+
| 22 arpitjindal97/technology_books 58 Premium eBook free for Geeks
|
320
|
+
| 23 datawhalechina/leeml-notes 301 李宏毅《机器学习》笔记,在线阅读地址:https://data...
|
321
|
+
| 24 tlbootcamp/tlroadmap Python 42 👩🏼💻👨🏻💻Карта навыков и модель развития тимлидов
|
322
|
+
| 25 facebook/create-react-app JavaScript 58 Set up a modern web app by running one command.
|
323
323
|
|
324
324
|
EOS
|
325
325
|
end
|
@@ -328,29 +328,29 @@ RSpec.describe GitTrend::CLI do
|
|
328
328
|
<<-'EOS'.unindent
|
329
329
|
|No. Name Lang Star
|
330
330
|
|--- ---------------------------------------------------------- ---------------- ------
|
331
|
-
| 1 0voice/interview_internal_reference Python
|
332
|
-
| 2 chinese-poetry/chinese-poetry JavaScript
|
333
|
-
| 3 peterq/pan-light Go
|
334
|
-
| 4 sherlock-project/sherlock Python
|
335
|
-
| 5 facebook/hermes C++
|
336
|
-
| 6 alipay/SoloPi Java
|
337
|
-
| 7 lenve/vhr Java
|
338
|
-
| 8 jwasham/coding-interview-university
|
339
|
-
| 9 qiurunze123/miaosha Java
|
340
|
-
| 10 scutan90/DeepLearning-500-questions
|
341
|
-
| 11 haotian-wang/google-access-helper JavaScript
|
342
|
-
| 12 dianping/cat Java
|
343
|
-
| 13 crmeb/CRMEB JavaScript
|
344
|
-
| 14 ardanlabs/gotraining Go
|
345
|
-
| 15 lenve/VBlog TSQL
|
346
|
-
| 16 zhaoolee/ChineseBQB CSS
|
347
|
-
| 17 fastai/course-nlp Jupyter Notebook
|
348
|
-
| 18 aosabook/500lines JavaScript
|
349
|
-
| 19 alibaba/spring-cloud-alibaba Java
|
350
|
-
| 20 macrozheng/mall-learning Java
|
351
|
-
| 21 OpenFlutter/Flutter-Notebook Dart
|
352
|
-
| 22 huggingface/pytorch-transformers Python
|
353
|
-
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript
|
331
|
+
| 1 0voice/interview_internal_reference Python 15
|
332
|
+
| 2 chinese-poetry/chinese-poetry JavaScript 4
|
333
|
+
| 3 peterq/pan-light Go 5
|
334
|
+
| 4 sherlock-project/sherlock Python 2
|
335
|
+
| 5 facebook/hermes C++ 4
|
336
|
+
| 6 alipay/SoloPi Java 2
|
337
|
+
| 7 lenve/vhr Java 3
|
338
|
+
| 8 jwasham/coding-interview-university 6
|
339
|
+
| 9 qiurunze123/miaosha Java 2
|
340
|
+
| 10 scutan90/DeepLearning-500-questions 4
|
341
|
+
| 11 haotian-wang/google-access-helper JavaScript 1
|
342
|
+
| 12 dianping/cat Java 1
|
343
|
+
| 13 crmeb/CRMEB JavaScript 642
|
344
|
+
| 14 ardanlabs/gotraining Go 942
|
345
|
+
| 15 lenve/VBlog TSQL 1
|
346
|
+
| 16 zhaoolee/ChineseBQB CSS 2
|
347
|
+
| 17 fastai/course-nlp Jupyter Notebook 802
|
348
|
+
| 18 aosabook/500lines JavaScript 846
|
349
|
+
| 19 alibaba/spring-cloud-alibaba Java 1
|
350
|
+
| 20 macrozheng/mall-learning Java 798
|
351
|
+
| 21 OpenFlutter/Flutter-Notebook Dart 1
|
352
|
+
| 22 huggingface/pytorch-transformers Python 2
|
353
|
+
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 1
|
354
354
|
|
355
355
|
EOS
|
356
356
|
end
|
@@ -359,29 +359,29 @@ RSpec.describe GitTrend::CLI do
|
|
359
359
|
<<-'EOS'.unindent
|
360
360
|
|No. Name Lang Star
|
361
361
|
|--- ---------------------------------------------------------- ---------------- ------
|
362
|
-
| 1 0voice/interview_internal_reference Python
|
363
|
-
| 2 chinese-poetry/chinese-poetry JavaScript
|
364
|
-
| 3 peterq/pan-light Go
|
365
|
-
| 4 sherlock-project/sherlock Python
|
366
|
-
| 5 facebook/hermes C++
|
367
|
-
| 6 alipay/SoloPi Java
|
368
|
-
| 7 lenve/vhr Java
|
369
|
-
| 8 jwasham/coding-interview-university
|
370
|
-
| 9 qiurunze123/miaosha Java
|
371
|
-
| 10 scutan90/DeepLearning-500-questions
|
372
|
-
| 11 haotian-wang/google-access-helper JavaScript
|
373
|
-
| 12 dianping/cat Java
|
374
|
-
| 13 crmeb/CRMEB JavaScript
|
375
|
-
| 14 ardanlabs/gotraining Go
|
376
|
-
| 15 lenve/VBlog TSQL
|
377
|
-
| 16 zhaoolee/ChineseBQB CSS
|
378
|
-
| 17 fastai/course-nlp Jupyter Notebook
|
379
|
-
| 18 aosabook/500lines JavaScript
|
380
|
-
| 19 alibaba/spring-cloud-alibaba Java
|
381
|
-
| 20 macrozheng/mall-learning Java
|
382
|
-
| 21 OpenFlutter/Flutter-Notebook Dart
|
383
|
-
| 22 huggingface/pytorch-transformers Python
|
384
|
-
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript
|
362
|
+
| 1 0voice/interview_internal_reference Python 15
|
363
|
+
| 2 chinese-poetry/chinese-poetry JavaScript 4
|
364
|
+
| 3 peterq/pan-light Go 5
|
365
|
+
| 4 sherlock-project/sherlock Python 2
|
366
|
+
| 5 facebook/hermes C++ 4
|
367
|
+
| 6 alipay/SoloPi Java 2
|
368
|
+
| 7 lenve/vhr Java 3
|
369
|
+
| 8 jwasham/coding-interview-university 6
|
370
|
+
| 9 qiurunze123/miaosha Java 2
|
371
|
+
| 10 scutan90/DeepLearning-500-questions 4
|
372
|
+
| 11 haotian-wang/google-access-helper JavaScript 1
|
373
|
+
| 12 dianping/cat Java 1
|
374
|
+
| 13 crmeb/CRMEB JavaScript 642
|
375
|
+
| 14 ardanlabs/gotraining Go 942
|
376
|
+
| 15 lenve/VBlog TSQL 1
|
377
|
+
| 16 zhaoolee/ChineseBQB CSS 2
|
378
|
+
| 17 fastai/course-nlp Jupyter Notebook 802
|
379
|
+
| 18 aosabook/500lines JavaScript 846
|
380
|
+
| 19 alibaba/spring-cloud-alibaba Java 1
|
381
|
+
| 20 macrozheng/mall-learning Java 798
|
382
|
+
| 21 OpenFlutter/Flutter-Notebook Dart 1
|
383
|
+
| 22 huggingface/pytorch-transformers Python 2
|
384
|
+
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 1
|
385
385
|
|
386
386
|
EOS
|
387
387
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-trend
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- rochefort
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 2.5.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 2.
|
22
|
+
version: 2.8.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 2.5.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 2.
|
32
|
+
version: 2.8.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: mb_string
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -174,14 +174,14 @@ dependencies:
|
|
174
174
|
requirements:
|
175
175
|
- - "~>"
|
176
176
|
- !ruby/object:Gem::Version
|
177
|
-
version: 3.
|
177
|
+
version: 3.7.3
|
178
178
|
type: :development
|
179
179
|
prerelease: false
|
180
180
|
version_requirements: !ruby/object:Gem::Requirement
|
181
181
|
requirements:
|
182
182
|
- - "~>"
|
183
183
|
- !ruby/object:Gem::Version
|
184
|
-
version: 3.
|
184
|
+
version: 3.7.3
|
185
185
|
description: CLI-Based tool that show Trending repository on github
|
186
186
|
email:
|
187
187
|
- terasawan@gmail.com
|