git-trend 1.1.9 → 1.2.0
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Rakefile +1 -1
- data/git-trend.gemspec +3 -3
- data/lib/git_trend.rb +0 -2
- data/lib/git_trend/formatters/text_formatter.rb +8 -0
- data/lib/git_trend/scraper.rb +8 -12
- data/lib/git_trend/version.rb +1 -1
- data/spec/fixtures/trending/alloy +5750 -2891
- data/spec/fixtures/trending/index +6212 -2589
- data/spec/fixtures/trending/ruby +6713 -2772
- data/spec/fixtures/trending/ruby?since=weekly +6651 -2714
- data/spec/fixtures/trending?since=monthly +7140 -0
- data/spec/fixtures/trending?since=weekly +6549 -2724
- data/spec/git_trend/cli_spec.rb +194 -196
- data/spec/git_trend/scraper_spec.rb +0 -8
- metadata +8 -8
- data/spec/fixtures/trending?since=monthly +0 -1
data/spec/git_trend/cli_spec.rb
CHANGED
@@ -28,11 +28,11 @@ RSpec.describe GitTrend::CLI do
|
|
28
28
|
let(:number) { 3 }
|
29
29
|
it "display top 3 daily ranking" do
|
30
30
|
res = <<-'EOS'.unindent
|
31
|
-
|No. Name Lang
|
32
|
-
|--- ----------------------------------------
|
33
|
-
| 1
|
34
|
-
| 2
|
35
|
-
| 3
|
31
|
+
|No. Name Lang Star
|
32
|
+
|--- ---------------------------------------- ---------- ------
|
33
|
+
| 1 vmware/octant Go 889
|
34
|
+
| 2 dengyuhan/magnetW Java 1738
|
35
|
+
| 3 sherlock-project/sherlock Python 6225
|
36
36
|
|
37
37
|
EOS
|
38
38
|
expect { cli.invoke(:list, [], number: number, description: false) }.to output(res).to_stdout
|
@@ -55,72 +55,46 @@ RSpec.describe GitTrend::CLI do
|
|
55
55
|
|
56
56
|
it "display daily ranking by language" do
|
57
57
|
res = <<-'EOS'.unindent
|
58
|
-
|No. Name
|
59
|
-
|---
|
60
|
-
| 1
|
61
|
-
| 2
|
62
|
-
| 3
|
63
|
-
| 4
|
64
|
-
| 5
|
65
|
-
| 6
|
66
|
-
| 7
|
67
|
-
| 8
|
68
|
-
| 9
|
69
|
-
| 10
|
70
|
-
| 11
|
71
|
-
| 12
|
72
|
-
| 13
|
73
|
-
| 14
|
74
|
-
| 15
|
75
|
-
| 16
|
76
|
-
| 17
|
77
|
-
| 18
|
78
|
-
| 19
|
79
|
-
| 20
|
80
|
-
| 21
|
81
|
-
| 22
|
82
|
-
| 23
|
83
|
-
| 24
|
84
|
-
| 25
|
58
|
+
|No. Name Lang Star
|
59
|
+
|--- ----------------------------------------------------- ---------- ------
|
60
|
+
| 1 thepracticaldev/dev.to Ruby 9962
|
61
|
+
| 2 rails/rails Ruby 43798
|
62
|
+
| 3 chef/chef Ruby 5892
|
63
|
+
| 4 Netflix/fast_jsonapi Ruby 4458
|
64
|
+
| 5 dependabot/dependabot-core Ruby 667
|
65
|
+
| 6 guard/listen Ruby 1428
|
66
|
+
| 7 braintree/runbook Ruby 246
|
67
|
+
| 8 solidusio/solidus Ruby 2638
|
68
|
+
| 9 peatio/peatio Ruby 3228
|
69
|
+
| 10 lynndylanhurley/devise_token_auth Ruby 2793
|
70
|
+
| 11 mperham/sidekiq Ruby 9748
|
71
|
+
| 12 CocoaPods/CocoaPods Ruby 11824
|
72
|
+
| 13 ruby/ruby Ruby 16046
|
73
|
+
| 14 elastic/ansible-elasticsearch Ruby 948
|
74
|
+
| 15 CocoaPods/Xcodeproj Ruby 1494
|
75
|
+
| 16 spree/spree Ruby 9877
|
76
|
+
| 17 brotandgames/ciao Ruby 609
|
77
|
+
| 18 dtan4/terraforming Ruby 2975
|
78
|
+
| 19 elastic/logstash Ruby 10427
|
79
|
+
| 20 plataformatec/simple_form Ruby 7432
|
80
|
+
| 21 jekyll/jekyll Ruby 38385
|
81
|
+
| 22 rubocop-hq/rubocop Ruby 10202
|
82
|
+
| 23 github-changelog-generator/github-changelog-generator Ruby 5497
|
83
|
+
| 24 sferik/rails_admin Ruby 7123
|
84
|
+
| 25 rubysherpas/paranoia Ruby 2484
|
85
85
|
|
86
86
|
EOS
|
87
87
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
91
|
-
context "with alloy : when
|
91
|
+
context "with alloy : when trending is nothing" do
|
92
92
|
before { stub_request_get("trending/#{language}") }
|
93
93
|
let(:language) { "alloy" }
|
94
94
|
|
95
|
-
it "display
|
95
|
+
it "display the 0cases message" do
|
96
96
|
res = <<-'EOS'.unindent
|
97
|
-
|
|
98
|
-
|--- ------------------------------------------- ---------- ------
|
99
|
-
| 1 danielbayley/Ableton-Live-tools Alloy 0
|
100
|
-
| 2 DavW/midihack Alloy 0
|
101
|
-
| 3 mark-henry/ableton-experiment Alloy 0
|
102
|
-
| 4 Iyouboushi/mIRC-BattleArena Alloy 0
|
103
|
-
| 5 adamjmurray/js-live-api-humanize-midi-clips Alloy 0
|
104
|
-
| 6 Binomio/bootstrap-base-song-for-live9 Alloy 0
|
105
|
-
| 7 lorin/alloy-fish Alloy 0
|
106
|
-
| 8 devd/websecmodel Alloy 0
|
107
|
-
| 9 kepae/alloy-coin Alloy 0
|
108
|
-
| 10 pron/amazon-snapshot-spec Alloy 0
|
109
|
-
| 11 SaberMirzaei/Alloy-Model-of-MCA Alloy 0
|
110
|
-
| 12 rossgore/alloy-tutorial Alloy 0
|
111
|
-
| 13 uwplse/memsynth Alloy 0
|
112
|
-
| 14 fstakem/alloy_book Alloy 0
|
113
|
-
| 15 aishamidori/cs195y-final Alloy 0
|
114
|
-
| 16 samueltcsantos/logica.alloy Alloy 0
|
115
|
-
| 17 mravella/maya_model Alloy 0
|
116
|
-
| 18 salesfelipe/projetoDeLogica Alloy 0
|
117
|
-
| 19 BGCX261/zigbee-alloy-svn-to-git Alloy 0
|
118
|
-
| 20 millerns/ReliableDataTransfer Alloy 0
|
119
|
-
| 21 ArcherCraftStore/ArcherCraft_Maya Alloy 0
|
120
|
-
| 22 cpmpercussion/teslamusic Alloy 0
|
121
|
-
| 23 z64/track-52314 Alloy 0
|
122
|
-
| 24 kmcallister/gc-models Alloy 0
|
123
|
-
| 25 Echtzeitsysteme/cardygan Alloy 0
|
97
|
+
|It looks like we don’t have any trending repositories.
|
124
98
|
|
125
99
|
EOS
|
126
100
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
@@ -226,31 +200,31 @@ RSpec.describe GitTrend::CLI do
|
|
226
200
|
res = <<-'EOS'.unindent
|
227
201
|
|No. Name Lang Star
|
228
202
|
|--- ---------------------------------------- ---------- ------
|
229
|
-
| 1
|
230
|
-
| 2
|
231
|
-
| 3
|
232
|
-
| 4
|
233
|
-
| 5
|
234
|
-
| 6
|
235
|
-
| 7
|
236
|
-
| 8
|
237
|
-
| 9
|
238
|
-
| 10
|
239
|
-
| 11
|
240
|
-
| 12
|
241
|
-
| 13
|
242
|
-
| 14
|
243
|
-
| 15
|
244
|
-
| 16
|
245
|
-
| 17
|
246
|
-
| 18
|
247
|
-
| 19
|
248
|
-
| 20
|
249
|
-
| 21
|
250
|
-
| 22
|
251
|
-
| 23
|
252
|
-
| 24
|
253
|
-
| 25
|
203
|
+
| 1 rapid7/metasploit-framework Ruby 17311
|
204
|
+
| 2 jekyll/jekyll Ruby 38385
|
205
|
+
| 3 ruby/ruby Ruby 16046
|
206
|
+
| 4 greatghoul/remote-working Ruby 4793
|
207
|
+
| 5 thepracticaldev/dev.to Ruby 9962
|
208
|
+
| 6 rails/rails Ruby 43798
|
209
|
+
| 7 fastlane/fastlane Ruby 26315
|
210
|
+
| 8 elastic/logstash Ruby 10427
|
211
|
+
| 9 zendesk/ruby-kafka Ruby 831
|
212
|
+
| 10 activerecord-hackery/ransack Ruby 4336
|
213
|
+
| 11 education/classroom Ruby 1088
|
214
|
+
| 12 faker-ruby/faker Ruby 7912
|
215
|
+
| 13 discourse/discourse Ruby 28798
|
216
|
+
| 14 DeathKing/Learning-SICP Ruby 5653
|
217
|
+
| 15 rails/webpacker Ruby 4350
|
218
|
+
| 16 bayandin/awesome-awesomeness Ruby 24662
|
219
|
+
| 17 github/explore Ruby 1249
|
220
|
+
| 18 hashicorp/vagrant Ruby 18766
|
221
|
+
| 19 varvet/pundit Ruby 6577
|
222
|
+
| 20 ytti/oxidized Ruby 1189
|
223
|
+
| 21 thoughtbot/factory_bot Ruby 6562
|
224
|
+
| 22 dependabot/dependabot-core Ruby 667
|
225
|
+
| 23 spree/spree Ruby 9877
|
226
|
+
| 24 Homebrew/homebrew-core Ruby 6188
|
227
|
+
| 25 thibmaek/awesome-raspberry-pi Ruby 5695
|
254
228
|
|
255
229
|
EOS
|
256
230
|
expect { cli.invoke(:list, [], language: language, since: since, description: false) }.to output(res).to_stdout
|
@@ -286,138 +260,142 @@ RSpec.describe GitTrend::CLI do
|
|
286
260
|
|
287
261
|
def dummy_result_without_description
|
288
262
|
<<-'EOS'.unindent
|
289
|
-
|No. Name
|
290
|
-
|---
|
291
|
-
| 1
|
292
|
-
| 2
|
293
|
-
| 3
|
294
|
-
| 4
|
295
|
-
| 5
|
296
|
-
| 6
|
297
|
-
| 7
|
298
|
-
| 8
|
299
|
-
| 9
|
300
|
-
| 10
|
301
|
-
| 11
|
302
|
-
| 12
|
303
|
-
| 13
|
304
|
-
| 14
|
305
|
-
| 15
|
306
|
-
| 16
|
307
|
-
| 17
|
308
|
-
| 18
|
309
|
-
| 19
|
310
|
-
| 20
|
311
|
-
| 21
|
312
|
-
| 22
|
313
|
-
| 23
|
314
|
-
| 24
|
315
|
-
| 25
|
263
|
+
|No. Name Lang Star
|
264
|
+
|--- ---------------------------------------------------------- ---------------- ------
|
265
|
+
| 1 vmware/octant Go 889
|
266
|
+
| 2 dengyuhan/magnetW Java 1738
|
267
|
+
| 3 sherlock-project/sherlock Python 6225
|
268
|
+
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 4003
|
269
|
+
| 5 grafana/grafana TypeScript 30311
|
270
|
+
| 6 Flaque/quirk TypeScript 1434
|
271
|
+
| 7 2227324689/gpmall Java 232
|
272
|
+
| 8 thepracticaldev/dev.to Ruby 9962
|
273
|
+
| 9 google/googletest C++ 12542
|
274
|
+
| 10 NVIDIA/open-gpu-doc C 499
|
275
|
+
| 11 Tencent/MedicalNet Python 357
|
276
|
+
| 12 didi/delta Python 597
|
277
|
+
| 13 cnlh/nps Go 6027
|
278
|
+
| 14 dennybritz/reinforcement-learning Jupyter Notebook 11375
|
279
|
+
| 15 remoteintech/remote-jobs JavaScript 8423
|
280
|
+
| 16 jackfrued/Python-100-Days Jupyter Notebook 53541
|
281
|
+
| 17 rabbitmq/rabbitmq-tutorials Java 4076
|
282
|
+
| 18 istio/istio Go 18981
|
283
|
+
| 19 mozilla-mobile/fenix Kotlin 2198
|
284
|
+
| 20 Igglybuff/awesome-piracy HTML 6987
|
285
|
+
| 21 fireeye/commando-vm PowerShell 2727
|
286
|
+
| 22 arpitjindal97/technology_books 3932
|
287
|
+
| 23 datawhalechina/leeml-notes 2377
|
288
|
+
| 24 tlbootcamp/tlroadmap Python 1282
|
289
|
+
| 25 facebook/create-react-app JavaScript 70496
|
316
290
|
|
317
291
|
EOS
|
318
292
|
end
|
319
293
|
|
320
294
|
def dummy_result_no_options
|
321
295
|
<<-'EOS'.unindent
|
322
|
-
|No. Name
|
323
|
-
|---
|
324
|
-
| 1
|
325
|
-
| 2
|
326
|
-
| 3
|
327
|
-
| 4
|
328
|
-
| 5
|
329
|
-
| 6
|
330
|
-
| 7
|
331
|
-
| 8
|
332
|
-
| 9
|
333
|
-
| 10
|
334
|
-
| 11
|
335
|
-
| 12
|
336
|
-
| 13
|
337
|
-
| 14
|
338
|
-
| 15
|
339
|
-
| 16
|
340
|
-
| 17
|
341
|
-
| 18
|
342
|
-
| 19
|
343
|
-
| 20
|
344
|
-
| 21
|
345
|
-
| 22
|
346
|
-
| 23
|
347
|
-
| 24
|
348
|
-
| 25
|
296
|
+
|No. Name Lang Star Description
|
297
|
+
|--- ---------------------------------------------------------- ---------------- ------ -----------------------------------------------------
|
298
|
+
| 1 vmware/octant Go 889 A web-based, highly extensible platform for develo...
|
299
|
+
| 2 dengyuhan/magnetW Java 1738 磁力搜网页版 - 磁力链接聚合搜索 - https://bt.biedi...
|
300
|
+
| 3 sherlock-project/sherlock Python 6225 🔎 Find usernames across social networks
|
301
|
+
| 4 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 4003 Data Structures and Algorithms explained and imple...
|
302
|
+
| 5 grafana/grafana TypeScript 30311 The tool for beautiful monitoring and metric analy...
|
303
|
+
| 6 Flaque/quirk TypeScript 1434 ✨🐙 A GPL Licensed Cognitive Behavioral Therapy a...
|
304
|
+
| 7 2227324689/gpmall Java 232 基于SpringBoot+Dubbo构建的电商平台-微服务架构
|
305
|
+
| 8 thepracticaldev/dev.to Ruby 9962 Where programmers share ideas and help each other ...
|
306
|
+
| 9 google/googletest C++ 12542 Googletest - Google Testing and Mocking Framework
|
307
|
+
| 10 NVIDIA/open-gpu-doc C 499 Documentation of NVIDIA chip/hardware interfaces
|
308
|
+
| 11 Tencent/MedicalNet Python 357 Many studies have shown that the performance on de...
|
309
|
+
| 12 didi/delta Python 597 DELTA is a deep learning based natural language an...
|
310
|
+
| 13 cnlh/nps Go 6027 一款轻量级、功能强大的内网穿透代理服务器。支持tcp...
|
311
|
+
| 14 dennybritz/reinforcement-learning Jupyter Notebook 11375 Implementation of Reinforcement Learning Algorithm...
|
312
|
+
| 15 remoteintech/remote-jobs JavaScript 8423 A list of semi to fully remote-friendly companies ...
|
313
|
+
| 16 jackfrued/Python-100-Days Jupyter Notebook 53541 Python - 100天从新手到大师
|
314
|
+
| 17 rabbitmq/rabbitmq-tutorials Java 4076 Tutorials for using RabbitMQ in various ways
|
315
|
+
| 18 istio/istio Go 18981 Connect, secure, control, and observe services.
|
316
|
+
| 19 mozilla-mobile/fenix Kotlin 2198
|
317
|
+
| 20 Igglybuff/awesome-piracy HTML 6987 A curated list of awesome warez and piracy links
|
318
|
+
| 21 fireeye/commando-vm PowerShell 2727 Complete Mandiant Offensive VM (Commando VM), a fu...
|
319
|
+
| 22 arpitjindal97/technology_books 3932 Premium eBook free for Geeks
|
320
|
+
| 23 datawhalechina/leeml-notes 2377 李宏毅《机器学习》笔记,在线阅读地址:https://data...
|
321
|
+
| 24 tlbootcamp/tlroadmap Python 1282 👩🏼💻👨🏻💻Карта навыков и модель развития тимлидов
|
322
|
+
| 25 facebook/create-react-app JavaScript 70496 Set up a modern web app by running one command.
|
349
323
|
|
350
324
|
EOS
|
351
325
|
end
|
352
326
|
|
353
327
|
def dummy_weekly_result
|
354
328
|
<<-'EOS'.unindent
|
355
|
-
|No. Name
|
356
|
-
|---
|
357
|
-
| 1
|
358
|
-
| 2
|
359
|
-
| 3
|
360
|
-
| 4
|
361
|
-
| 5
|
362
|
-
| 6
|
363
|
-
| 7
|
364
|
-
| 8
|
365
|
-
| 9
|
366
|
-
| 10
|
367
|
-
| 11
|
368
|
-
| 12
|
369
|
-
| 13
|
370
|
-
| 14
|
371
|
-
| 15
|
372
|
-
| 16
|
373
|
-
| 17
|
374
|
-
| 18
|
375
|
-
| 19
|
376
|
-
| 20
|
377
|
-
| 21
|
378
|
-
| 22
|
379
|
-
| 23
|
380
|
-
| 24 azat-co/practicalnode JavaScript 638
|
381
|
-
| 25 evilsocket/xray Go 619
|
329
|
+
|No. Name Lang Star
|
330
|
+
|--- ---------------------------------------------------------- ---------------- ------
|
331
|
+
| 1 0voice/interview_internal_reference Python 16448
|
332
|
+
| 2 chinese-poetry/chinese-poetry JavaScript 18623
|
333
|
+
| 3 peterq/pan-light Go 7707
|
334
|
+
| 4 sherlock-project/sherlock Python 6228
|
335
|
+
| 5 facebook/hermes C++ 4182
|
336
|
+
| 6 alipay/SoloPi Java 2265
|
337
|
+
| 7 lenve/vhr Java 8403
|
338
|
+
| 8 jwasham/coding-interview-university 85447
|
339
|
+
| 9 qiurunze123/miaosha Java 9771
|
340
|
+
| 10 scutan90/DeepLearning-500-questions 32385
|
341
|
+
| 11 haotian-wang/google-access-helper JavaScript 2614
|
342
|
+
| 12 dianping/cat Java 10814
|
343
|
+
| 13 crmeb/CRMEB JavaScript 962
|
344
|
+
| 14 ardanlabs/gotraining Go 5588
|
345
|
+
| 15 lenve/VBlog TSQL 2725
|
346
|
+
| 16 zhaoolee/ChineseBQB CSS 4690
|
347
|
+
| 17 fastai/course-nlp Jupyter Notebook 1268
|
348
|
+
| 18 aosabook/500lines JavaScript 22735
|
349
|
+
| 19 alibaba/spring-cloud-alibaba Java 7889
|
350
|
+
| 20 macrozheng/mall-learning Java 1562
|
351
|
+
| 21 OpenFlutter/Flutter-Notebook Dart 4060
|
352
|
+
| 22 huggingface/pytorch-transformers Python 10556
|
353
|
+
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 4006
|
382
354
|
|
383
355
|
EOS
|
384
356
|
end
|
385
357
|
|
386
358
|
def dummy_monthly_result
|
387
359
|
<<-'EOS'.unindent
|
388
|
-
|No. Name
|
389
|
-
|---
|
390
|
-
| 1
|
391
|
-
| 2
|
392
|
-
| 3
|
393
|
-
| 4
|
394
|
-
| 5
|
395
|
-
| 6
|
396
|
-
| 7
|
397
|
-
| 8
|
398
|
-
| 9
|
399
|
-
| 10
|
400
|
-
| 11
|
401
|
-
| 12
|
402
|
-
| 13
|
403
|
-
| 14
|
404
|
-
| 15
|
405
|
-
| 16
|
406
|
-
| 17
|
407
|
-
| 18
|
408
|
-
| 19
|
409
|
-
| 20
|
410
|
-
| 21
|
411
|
-
| 22
|
412
|
-
| 23
|
413
|
-
| 24 azat-co/practicalnode JavaScript 638
|
414
|
-
| 25 evilsocket/xray Go 619
|
360
|
+
|No. Name Lang Star
|
361
|
+
|--- ---------------------------------------------------------- ---------------- ------
|
362
|
+
| 1 0voice/interview_internal_reference Python 16448
|
363
|
+
| 2 chinese-poetry/chinese-poetry JavaScript 18623
|
364
|
+
| 3 peterq/pan-light Go 7707
|
365
|
+
| 4 sherlock-project/sherlock Python 6228
|
366
|
+
| 5 facebook/hermes C++ 4182
|
367
|
+
| 6 alipay/SoloPi Java 2265
|
368
|
+
| 7 lenve/vhr Java 8403
|
369
|
+
| 8 jwasham/coding-interview-university 85447
|
370
|
+
| 9 qiurunze123/miaosha Java 9771
|
371
|
+
| 10 scutan90/DeepLearning-500-questions 32385
|
372
|
+
| 11 haotian-wang/google-access-helper JavaScript 2614
|
373
|
+
| 12 dianping/cat Java 10814
|
374
|
+
| 13 crmeb/CRMEB JavaScript 962
|
375
|
+
| 14 ardanlabs/gotraining Go 5588
|
376
|
+
| 15 lenve/VBlog TSQL 2725
|
377
|
+
| 16 zhaoolee/ChineseBQB CSS 4690
|
378
|
+
| 17 fastai/course-nlp Jupyter Notebook 1268
|
379
|
+
| 18 aosabook/500lines JavaScript 22735
|
380
|
+
| 19 alibaba/spring-cloud-alibaba Java 7889
|
381
|
+
| 20 macrozheng/mall-learning Java 1562
|
382
|
+
| 21 OpenFlutter/Flutter-Notebook Dart 4060
|
383
|
+
| 22 huggingface/pytorch-transformers Python 10556
|
384
|
+
| 23 amejiarosario/dsa.js-data-structures-algorithms-javascript JavaScript 4006
|
415
385
|
|
416
386
|
EOS
|
417
387
|
end
|
418
388
|
|
419
389
|
def dummy_languages
|
420
390
|
<<-'EOS'.unindent
|
391
|
+
|C++
|
392
|
+
|HTML
|
393
|
+
|Java
|
394
|
+
|JavaScript
|
395
|
+
|PHP
|
396
|
+
|Python
|
397
|
+
|Ruby
|
398
|
+
|Unknown languages
|
421
399
|
|1C Enterprise
|
422
400
|
|ABAP
|
423
401
|
|ABNF
|
@@ -428,6 +406,7 @@ RSpec.describe GitTrend::CLI do
|
|
428
406
|
|AGS Script
|
429
407
|
|Alloy
|
430
408
|
|Alpine Abuild
|
409
|
+
|Altium Designer
|
431
410
|
|AMPL
|
432
411
|
|AngelScript
|
433
412
|
|Ant Build System
|
@@ -462,12 +441,13 @@ RSpec.describe GitTrend::CLI do
|
|
462
441
|
|Boo
|
463
442
|
|Brainfuck
|
464
443
|
|Brightscript
|
465
|
-
|
|
444
|
+
|Zeek
|
466
445
|
|C
|
467
446
|
|C#
|
468
447
|
|C++
|
469
448
|
|C-ObjDump
|
470
449
|
|C2hs Haskell
|
450
|
+
|Cabal Config
|
471
451
|
|Cap'n Proto
|
472
452
|
|CartoCSS
|
473
453
|
|Ceylon
|
@@ -513,6 +493,7 @@ RSpec.describe GitTrend::CLI do
|
|
513
493
|
|Dart
|
514
494
|
|DataWeave
|
515
495
|
|desktop
|
496
|
+
|Dhall
|
516
497
|
|Diff
|
517
498
|
|DIGITAL Command Language
|
518
499
|
|DM
|
@@ -569,6 +550,8 @@ RSpec.describe GitTrend::CLI do
|
|
569
550
|
|Gerber Image
|
570
551
|
|Gettext Catalog
|
571
552
|
|Gherkin
|
553
|
+
|Git Attributes
|
554
|
+
|Git Config
|
572
555
|
|GLSL
|
573
556
|
|Glyph
|
574
557
|
|Glyph Bitmap Distribution Format
|
@@ -595,6 +578,7 @@ RSpec.describe GitTrend::CLI do
|
|
595
578
|
|HCL
|
596
579
|
|HiveQL
|
597
580
|
|HLSL
|
581
|
+
|HolyC
|
598
582
|
|HTML
|
599
583
|
|HTML+Django
|
600
584
|
|HTML+ECR
|
@@ -623,6 +607,7 @@ RSpec.describe GitTrend::CLI do
|
|
623
607
|
|Java Properties
|
624
608
|
|Java Server Pages
|
625
609
|
|JavaScript
|
610
|
+
|JavaScript+ERB
|
626
611
|
|JFlex
|
627
612
|
|Jison
|
628
613
|
|Jison Lex
|
@@ -693,12 +678,14 @@ RSpec.describe GitTrend::CLI do
|
|
693
678
|
|Monkey
|
694
679
|
|Moocode
|
695
680
|
|MoonScript
|
681
|
+
|Motorola 68K Assembly
|
696
682
|
|MQL4
|
697
683
|
|MQL5
|
698
684
|
|MTML
|
699
685
|
|MUF
|
700
686
|
|mupad
|
701
687
|
|Myghty
|
688
|
+
|nanorc
|
702
689
|
|NCL
|
703
690
|
|Nearley
|
704
691
|
|Nemerle
|
@@ -721,6 +708,7 @@ RSpec.describe GitTrend::CLI do
|
|
721
708
|
|Objective-C
|
722
709
|
|Objective-C++
|
723
710
|
|Objective-J
|
711
|
+
|ObjectScript
|
724
712
|
|OCaml
|
725
713
|
|Omgrofl
|
726
714
|
|ooc
|
@@ -803,6 +791,7 @@ RSpec.describe GitTrend::CLI do
|
|
803
791
|
|RMarkdown
|
804
792
|
|RobotFramework
|
805
793
|
|Roff
|
794
|
+
|Roff Manpage
|
806
795
|
|Rouge
|
807
796
|
|RPC
|
808
797
|
|RPM Spec
|
@@ -840,6 +829,7 @@ RSpec.describe GitTrend::CLI do
|
|
840
829
|
|SQLPL
|
841
830
|
|Squirrel
|
842
831
|
|SRecode Template
|
832
|
+
|SSH Config
|
843
833
|
|Stan
|
844
834
|
|Standard ML
|
845
835
|
|Stata
|
@@ -862,6 +852,8 @@ RSpec.describe GitTrend::CLI do
|
|
862
852
|
|TI Program
|
863
853
|
|TLA
|
864
854
|
|TOML
|
855
|
+
|TSQL
|
856
|
+
|TSX
|
865
857
|
|Turing
|
866
858
|
|Turtle
|
867
859
|
|Twig
|
@@ -888,8 +880,10 @@ RSpec.describe GitTrend::CLI do
|
|
888
880
|
|Web Ontology Language
|
889
881
|
|WebAssembly
|
890
882
|
|WebIDL
|
883
|
+
|WebVTT
|
891
884
|
|Windows Registry Entries
|
892
885
|
|wisp
|
886
|
+
|Wollok
|
893
887
|
|World of Warcraft Addon Data
|
894
888
|
|X BitMap
|
895
889
|
|X Font Directory Index
|
@@ -911,11 +905,15 @@ RSpec.describe GitTrend::CLI do
|
|
911
905
|
|YANG
|
912
906
|
|YARA
|
913
907
|
|YASnippet
|
908
|
+
|ZAP
|
909
|
+
|Zeek
|
910
|
+
|ZenScript
|
914
911
|
|Zephir
|
915
912
|
|Zig
|
913
|
+
|ZIL
|
916
914
|
|Zimpl
|
917
915
|
|
|
918
|
-
|
|
916
|
+
|524 languages
|
919
917
|
|you can get only selected language list with '-l' option.
|
920
918
|
|if languages is unknown, you can specify 'unkown'.
|
921
919
|
|
|