git-trend 1.2.7 → 1.2.9
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/.github/workflows/codeql.yml +76 -0
- data/.travis.yml +3 -3
- data/CHANGELOG.md +14 -6
- data/README.md +3 -4
- data/git-trend.gemspec +5 -4
- data/lib/git_trend/formatters/text_formatter.rb +2 -2
- data/lib/git_trend/scraper.rb +2 -2
- data/lib/git_trend/version.rb +1 -1
- data/spec/fixtures/trending/alloy +6315 -5664
- data/spec/fixtures/trending/index +7697 -6598
- data/spec/fixtures/trending/ruby +7670 -6569
- data/spec/fixtures/trending/ruby?since=weekly +7668 -6576
- data/spec/fixtures/trending?since= +8347 -0
- data/spec/fixtures/trending?since=daily +8347 -0
- data/spec/fixtures/trending?since=monthly +7705 -6503
- data/spec/fixtures/trending?since=monthly.html +8342 -0
- data/spec/fixtures/trending?since=weekly +7709 -6502
- data/spec/git_trend/cli_spec.rb +270 -179
- metadata +17 -14
- data/spec/fixtures/trending?since= +0 -1
- data/spec/fixtures/trending?since=daily +0 -1
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
|
|
34
|
-
| 2
|
|
35
|
-
| 3
|
|
33
|
+
| 1 AppFlowy-IO/appflowy Rust 238
|
|
34
|
+
| 2 iptv-org/iptv JavaScript 107
|
|
35
|
+
| 3 nodejs/node JavaScript 123
|
|
36
36
|
|
|
37
37
|
EOS
|
|
38
38
|
expect { cli.invoke(:list, [], number: number, description: false) }.to output(res).to_stdout
|
|
@@ -55,33 +55,33 @@ 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 rubocop
|
|
82
|
-
| 23
|
|
83
|
-
| 24
|
|
84
|
-
| 25
|
|
58
|
+
|No. Name Lang Star
|
|
59
|
+
|--- --------------------------------------------- ---------- ------
|
|
60
|
+
| 1 puppetlabs/puppet Ruby 6
|
|
61
|
+
| 2 github/explore Ruby 5
|
|
62
|
+
| 3 mastodon/mastodon Ruby 7
|
|
63
|
+
| 4 forem/forem Ruby 3
|
|
64
|
+
| 5 Shopify/shopify-cli Ruby 2
|
|
65
|
+
| 6 github/choosealicense.com Ruby 7
|
|
66
|
+
| 7 sinatra/sinatra Ruby 1
|
|
67
|
+
| 8 postalserver/postal Ruby 4
|
|
68
|
+
| 9 chef/chef Ruby 2
|
|
69
|
+
| 10 mame/quine-relay Ruby 5
|
|
70
|
+
| 11 rapid7/metasploit-framework Ruby 8
|
|
71
|
+
| 12 freeCodeCamp/how-to-contribute-to-open-source Ruby 4
|
|
72
|
+
| 13 freeCodeCamp/devdocs Ruby 8
|
|
73
|
+
| 14 hashicorp/vagrant Ruby 6
|
|
74
|
+
| 15 jekyll/jekyll Ruby 12
|
|
75
|
+
| 16 umd-cmsc330/cmsc330spring22 Ruby 1
|
|
76
|
+
| 17 gitlabhq/gitlabhq Ruby 1
|
|
77
|
+
| 18 heartcombo/devise Ruby 2
|
|
78
|
+
| 19 opf/openproject Ruby 4
|
|
79
|
+
| 20 rails/rails Ruby 23
|
|
80
|
+
| 21 railwaycat/homebrew-emacsmacport Ruby 1
|
|
81
|
+
| 22 rubocop/rubocop Ruby 1
|
|
82
|
+
| 23 thoughtbot/factory_bot Ruby 1
|
|
83
|
+
| 24 fluent/fluentd Ruby 2
|
|
84
|
+
| 25 spree/spree Ruby 5
|
|
85
85
|
|
|
86
86
|
EOS
|
|
87
87
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
|
@@ -185,7 +185,7 @@ RSpec.describe GitTrend::CLI do
|
|
|
185
185
|
end
|
|
186
186
|
|
|
187
187
|
it "display daily ranking about the same as no option" do
|
|
188
|
-
expect { cli.invoke(:list, [], description:
|
|
188
|
+
expect { cli.invoke(:list, [], description: false) }.to output(dummy_result_without_description).to_stdout
|
|
189
189
|
end
|
|
190
190
|
end
|
|
191
191
|
end
|
|
@@ -198,33 +198,33 @@ RSpec.describe GitTrend::CLI do
|
|
|
198
198
|
|
|
199
199
|
it "display weekly ranking by language" do
|
|
200
200
|
res = <<-'EOS'.unindent
|
|
201
|
-
|No. Name
|
|
202
|
-
|---
|
|
203
|
-
| 1
|
|
204
|
-
| 2
|
|
205
|
-
| 3
|
|
206
|
-
| 4
|
|
207
|
-
| 5
|
|
208
|
-
| 6 rails/rails
|
|
209
|
-
| 7
|
|
210
|
-
| 8
|
|
211
|
-
| 9
|
|
212
|
-
| 10
|
|
213
|
-
| 11
|
|
214
|
-
| 12
|
|
215
|
-
| 13
|
|
216
|
-
| 14
|
|
217
|
-
| 15
|
|
218
|
-
| 16
|
|
219
|
-
| 17
|
|
220
|
-
| 18
|
|
221
|
-
| 19
|
|
222
|
-
| 20
|
|
223
|
-
| 21
|
|
224
|
-
| 22
|
|
225
|
-
| 23
|
|
226
|
-
| 24
|
|
227
|
-
| 25
|
|
201
|
+
|No. Name Lang Star
|
|
202
|
+
|--- --------------------------------------------- ---------- ------
|
|
203
|
+
| 1 huginn/huginn Ruby 881
|
|
204
|
+
| 2 faker-ruby/faker Ruby 193
|
|
205
|
+
| 3 hashicorp/vagrant Ruby 46
|
|
206
|
+
| 4 mperham/sidekiq Ruby 17
|
|
207
|
+
| 5 freeCodeCamp/how-to-contribute-to-open-source Ruby 40
|
|
208
|
+
| 6 rails/jsbundling-rails Ruby 20
|
|
209
|
+
| 7 puma/puma Ruby 10
|
|
210
|
+
| 8 jekyll/jekyll Ruby 72
|
|
211
|
+
| 9 rails/rails Ruby 103
|
|
212
|
+
| 10 sinatra/sinatra Ruby 11
|
|
213
|
+
| 11 rapid7/metasploit-framework Ruby 77
|
|
214
|
+
| 12 puppetlabs/puppet Ruby 23
|
|
215
|
+
| 13 Shopify/liquid Ruby 21
|
|
216
|
+
| 14 github/linguist Ruby 27
|
|
217
|
+
| 15 rmosolgo/graphql-ruby Ruby 2
|
|
218
|
+
| 16 github/choosealicense.com Ruby 24
|
|
219
|
+
| 17 fastlane/fastlane Ruby 96
|
|
220
|
+
| 18 Homebrew/homebrew-core Ruby 28
|
|
221
|
+
| 19 github/view_component Ruby 11
|
|
222
|
+
| 20 hrishikesh1990/resume-builder Ruby 6
|
|
223
|
+
| 21 varvet/pundit Ruby 8
|
|
224
|
+
| 22 github/explore Ruby 23
|
|
225
|
+
| 23 heartcombo/devise Ruby 18
|
|
226
|
+
| 24 activerecord-hackery/ransack Ruby 10
|
|
227
|
+
| 25 Homebrew/homebrew-cask Ruby 32
|
|
228
228
|
|
|
229
229
|
EOS
|
|
230
230
|
expect { cli.invoke(:list, [], language: language, since: since, description: false) }.to output(res).to_stdout
|
|
@@ -259,128 +259,132 @@ RSpec.describe GitTrend::CLI do
|
|
|
259
259
|
|
|
260
260
|
def dummy_result_without_description
|
|
261
261
|
<<-'EOS'.unindent
|
|
262
|
-
|No. Name
|
|
263
|
-
|---
|
|
264
|
-
| 1
|
|
265
|
-
| 2
|
|
266
|
-
| 3
|
|
267
|
-
| 4
|
|
268
|
-
| 5
|
|
269
|
-
| 6
|
|
270
|
-
| 7
|
|
271
|
-
| 8
|
|
272
|
-
| 9
|
|
273
|
-
| 10
|
|
274
|
-
| 11
|
|
275
|
-
| 12
|
|
276
|
-
| 13
|
|
277
|
-
| 14
|
|
278
|
-
| 15
|
|
279
|
-
| 16
|
|
280
|
-
| 17
|
|
281
|
-
| 18
|
|
282
|
-
| 19
|
|
283
|
-
| 20
|
|
284
|
-
| 21
|
|
285
|
-
| 22
|
|
286
|
-
| 23
|
|
287
|
-
| 24
|
|
288
|
-
| 25
|
|
262
|
+
|No. Name Lang Star
|
|
263
|
+
|--- -------------------------------------------- ---------- ------
|
|
264
|
+
| 1 AppFlowy-IO/appflowy Rust 238
|
|
265
|
+
| 2 iptv-org/iptv JavaScript 107
|
|
266
|
+
| 3 nodejs/node JavaScript 123
|
|
267
|
+
| 4 yt-dlp/yt-dlp Python 139
|
|
268
|
+
| 5 nextui-org/nextui TypeScript 515
|
|
269
|
+
| 6 ciderapp/Cider JavaScript 58
|
|
270
|
+
| 7 Ebazhanov/linkedin-skill-assessments-quizzes 266
|
|
271
|
+
| 8 Jxck-S/plane-notify Python 39
|
|
272
|
+
| 9 Koenkk/zigbee2mqtt JavaScript 77
|
|
273
|
+
| 10 Developer-Y/cs-video-courses 710
|
|
274
|
+
| 11 HashLips/hashlips_art_engine JavaScript 93
|
|
275
|
+
| 12 IBAX-io/go-ibax Go 775
|
|
276
|
+
| 13 emilk/egui Rust 34
|
|
277
|
+
| 14 PathOfBuildingCommunity/PathOfBuilding Lua 38
|
|
278
|
+
| 15 uutils/coreutils Rust 269
|
|
279
|
+
| 16 ryanoasis/nerd-fonts CSS 25
|
|
280
|
+
| 17 KaLendsi/CVE-2022-21882 C++ 51
|
|
281
|
+
| 18 kdrag0n/safetynet-fix C++ 34
|
|
282
|
+
| 19 Chia-Network/chia-blockchain Python 13
|
|
283
|
+
| 20 github/docs JavaScript 26
|
|
284
|
+
| 21 RunaCapital/awesome-oss-alternatives Python 415
|
|
285
|
+
| 22 TheAlgorithms/Go Go 123
|
|
286
|
+
| 23 pi-hole/docker-pi-hole Shell 5
|
|
287
|
+
| 24 zhiwehu/Python-programming-exercises 50
|
|
288
|
+
| 25 LawnchairLauncher/lawnicons Kotlin 6
|
|
289
289
|
|
|
290
290
|
EOS
|
|
291
291
|
end
|
|
292
292
|
|
|
293
293
|
def dummy_result_no_options
|
|
294
294
|
<<-'EOS'.unindent
|
|
295
|
-
|No. Name
|
|
296
|
-
|---
|
|
297
|
-
| 1
|
|
298
|
-
| 2
|
|
299
|
-
| 3
|
|
300
|
-
| 4
|
|
301
|
-
| 5
|
|
302
|
-
| 6
|
|
303
|
-
| 7
|
|
304
|
-
| 8
|
|
305
|
-
| 9
|
|
306
|
-
| 10
|
|
307
|
-
| 11
|
|
308
|
-
| 12
|
|
309
|
-
| 13
|
|
310
|
-
| 14
|
|
311
|
-
| 15
|
|
312
|
-
| 16
|
|
313
|
-
| 17
|
|
314
|
-
| 18
|
|
315
|
-
| 19
|
|
316
|
-
| 20
|
|
317
|
-
| 21
|
|
318
|
-
| 22
|
|
319
|
-
| 23
|
|
320
|
-
| 24
|
|
321
|
-
| 25
|
|
295
|
+
|No. Name Lang Star Description
|
|
296
|
+
|--- -------------------------------------------- ---------- ------ -------------------------------------------------------------------------
|
|
297
|
+
| 1 AppFlowy-IO/appflowy Rust 238 AppFlowy is an open-source alternative to Notion. You are in charge of...
|
|
298
|
+
| 2 iptv-org/iptv JavaScript 107 Collection of publicly available IPTV channels from all over the world
|
|
299
|
+
| 3 nodejs/node JavaScript 123 Node.js JavaScript runtime ✨🐢🚀✨
|
|
300
|
+
| 4 yt-dlp/yt-dlp Python 139 A youtube-dl fork with additional features and fixes
|
|
301
|
+
| 5 nextui-org/nextui TypeScript 515 🚀 Beautiful, fast and modern React UI library.
|
|
302
|
+
| 6 ciderapp/Cider JavaScript 58 Project Cider. A new look into listening and enjoying Apple Music in s...
|
|
303
|
+
| 7 Ebazhanov/linkedin-skill-assessments-quizzes 266 Full reference of LinkedIn answers 2022 for skill assessments, LinkedI...
|
|
304
|
+
| 8 Jxck-S/plane-notify Python 39 Notify If a selected plane has taken off or landed using OpenSky or AD...
|
|
305
|
+
| 9 Koenkk/zigbee2mqtt JavaScript 77 Zigbee 🐝 to MQTT bridge 🌉, get rid of your proprietary Zigbee bridge...
|
|
306
|
+
| 10 Developer-Y/cs-video-courses 710 List of Computer Science courses with video lectures.
|
|
307
|
+
| 11 HashLips/hashlips_art_engine JavaScript 93 HashLips Art Engine is a tool used to create multiple different instan...
|
|
308
|
+
| 12 IBAX-io/go-ibax Go 775 An innovative Blockchain Protocol Platform, which everyone can deploy ...
|
|
309
|
+
| 13 emilk/egui Rust 34 egui: an easy-to-use immediate mode GUI in Rust that runs on both web ...
|
|
310
|
+
| 14 PathOfBuildingCommunity/PathOfBuilding Lua 38 Offline build planner for Path of Exile.
|
|
311
|
+
| 15 uutils/coreutils Rust 269 Cross-platform Rust rewrite of the GNU coreutils
|
|
312
|
+
| 16 ryanoasis/nerd-fonts CSS 25 Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patch...
|
|
313
|
+
| 17 KaLendsi/CVE-2022-21882 C++ 51 win32k LPE
|
|
314
|
+
| 18 kdrag0n/safetynet-fix C++ 34 Google SafetyNet attestation workarounds for Magisk
|
|
315
|
+
| 19 Chia-Network/chia-blockchain Python 13 Chia blockchain python implementation (full node, farmer, harvester, t...
|
|
316
|
+
| 20 github/docs JavaScript 26 The open-source repo for docs.github.com
|
|
317
|
+
| 21 RunaCapital/awesome-oss-alternatives Python 415 Awesome list of open-source startup alternatives to well-known SaaS pr...
|
|
318
|
+
| 22 TheAlgorithms/Go Go 123 Algorithms implemented in Go for beginners, following best practices.
|
|
319
|
+
| 23 pi-hole/docker-pi-hole Shell 5 Pi-hole in a docker container
|
|
320
|
+
| 24 zhiwehu/Python-programming-exercises 50 100+ Python challenging programming exercises
|
|
321
|
+
| 25 LawnchairLauncher/lawnicons Kotlin 6
|
|
322
322
|
|
|
323
323
|
EOS
|
|
324
324
|
end
|
|
325
325
|
|
|
326
326
|
def dummy_weekly_result
|
|
327
327
|
<<-'EOS'.unindent
|
|
328
|
-
|No. Name
|
|
329
|
-
|---
|
|
330
|
-
| 1
|
|
331
|
-
| 2
|
|
332
|
-
| 3
|
|
333
|
-
| 4
|
|
334
|
-
| 5
|
|
335
|
-
| 6
|
|
336
|
-
| 7
|
|
337
|
-
| 8
|
|
338
|
-
| 9
|
|
339
|
-
| 10
|
|
340
|
-
| 11
|
|
341
|
-
| 12
|
|
342
|
-
| 13
|
|
343
|
-
| 14
|
|
344
|
-
| 15
|
|
345
|
-
| 16
|
|
346
|
-
| 17
|
|
347
|
-
| 18
|
|
348
|
-
| 19
|
|
349
|
-
| 20
|
|
350
|
-
| 21
|
|
351
|
-
| 22
|
|
352
|
-
| 23
|
|
328
|
+
|No. Name Lang Star
|
|
329
|
+
|--- -------------------------------------------- ---------- ------
|
|
330
|
+
| 1 doocs/leetcode Java 1754
|
|
331
|
+
| 2 veler/DevToys C# 2953
|
|
332
|
+
| 3 Ebazhanov/linkedin-skill-assessments-quizzes 854
|
|
333
|
+
| 4 papers-we-love/papers-we-love Shell 825
|
|
334
|
+
| 5 TheAlgorithms/Javascript JavaScript 425
|
|
335
|
+
| 6 ciderapp/Cider JavaScript 247
|
|
336
|
+
| 7 huginn/huginn Ruby 881
|
|
337
|
+
| 8 public-apis/public-apis Python 1482
|
|
338
|
+
| 9 akutz/go-generics-the-hard-way Go 489
|
|
339
|
+
| 10 pytorch/fairseq Python 292
|
|
340
|
+
| 11 rancher-sandbox/rancher-desktop TypeScript 478
|
|
341
|
+
| 12 microsoft/playwright TypeScript 1085
|
|
342
|
+
| 13 scikit-learn/scikit-learn Python 245
|
|
343
|
+
| 14 DustinBrett/daedalOS JavaScript 991
|
|
344
|
+
| 15 chiru-labs/ERC721A Solidity 226
|
|
345
|
+
| 16 pedroslopez/whatsapp-web.js JavaScript 424
|
|
346
|
+
| 17 abiosoft/colima Go 537
|
|
347
|
+
| 18 jackfrued/Python-100-Days Python 503
|
|
348
|
+
| 19 kedro-org/kedro Python 785
|
|
349
|
+
| 20 khuedoan/homelab Python 1416
|
|
350
|
+
| 21 imcuttle/mometa TypeScript 553
|
|
351
|
+
| 22 nektos/act Go 394
|
|
352
|
+
| 23 spring-projects/spring-authorization-server Java 165
|
|
353
|
+
| 24 flameshot-org/flameshot C++ 311
|
|
354
|
+
| 25 yuzu-emu/yuzu C++ 449
|
|
353
355
|
|
|
354
356
|
EOS
|
|
355
357
|
end
|
|
356
358
|
|
|
357
359
|
def dummy_monthly_result
|
|
358
360
|
<<-'EOS'.unindent
|
|
359
|
-
|No. Name
|
|
360
|
-
|---
|
|
361
|
-
| 1
|
|
362
|
-
| 2
|
|
363
|
-
| 3
|
|
364
|
-
| 4
|
|
365
|
-
| 5
|
|
366
|
-
| 6
|
|
367
|
-
| 7
|
|
368
|
-
| 8
|
|
369
|
-
| 9
|
|
370
|
-
| 10
|
|
371
|
-
| 11
|
|
372
|
-
| 12
|
|
373
|
-
| 13
|
|
374
|
-
| 14
|
|
375
|
-
| 15
|
|
376
|
-
| 16
|
|
377
|
-
| 17
|
|
378
|
-
| 18
|
|
379
|
-
| 19
|
|
380
|
-
| 20
|
|
381
|
-
| 21
|
|
382
|
-
| 22
|
|
383
|
-
| 23
|
|
361
|
+
|No. Name Lang Star
|
|
362
|
+
|--- -------------------------------------------- ---------- ------
|
|
363
|
+
| 1 Asabeneh/30-Days-Of-JavaScript JavaScript 3736
|
|
364
|
+
| 2 files-community/Files C# 3999
|
|
365
|
+
| 3 adrianhajdin/project_web3.0 JavaScript 994
|
|
366
|
+
| 4 doocs/leetcode Java 2516
|
|
367
|
+
| 5 tauri-apps/tauri Rust 4367
|
|
368
|
+
| 6 HashLips/hashlips_art_engine JavaScript 1156
|
|
369
|
+
| 7 bevyengine/bevy Rust 1389
|
|
370
|
+
| 8 coqui-ai/TTS Python 803
|
|
371
|
+
| 9 apache/incubator-seatunnel Java 1136
|
|
372
|
+
| 10 sunym1993/flash-linux0.11-talk C 3237
|
|
373
|
+
| 11 Textualize/rich Python 2676
|
|
374
|
+
| 12 withastro/astro TypeScript 1467
|
|
375
|
+
| 13 dgtlmoon/changedetection.io Python 1496
|
|
376
|
+
| 14 safak/youtube CSS 377
|
|
377
|
+
| 15 mattermost/focalboard TypeScript 2313
|
|
378
|
+
| 16 Ebazhanov/linkedin-skill-assessments-quizzes 1458
|
|
379
|
+
| 17 containers/podman Go 658
|
|
380
|
+
| 18 TandoorRecipes/recipes HTML 601
|
|
381
|
+
| 19 emilk/egui Rust 967
|
|
382
|
+
| 20 dataease/dataease Java 651
|
|
383
|
+
| 21 danielyxie/bitburner JavaScript 776
|
|
384
|
+
| 22 dwyl/english-words Python 422
|
|
385
|
+
| 23 TheAlgorithms/Javascript JavaScript 839
|
|
386
|
+
| 24 baidu/amis TypeScript 765
|
|
387
|
+
| 25 rancher-sandbox/rancher-desktop TypeScript 746
|
|
384
388
|
|
|
385
389
|
EOS
|
|
386
390
|
end
|
|
@@ -396,13 +400,18 @@ RSpec.describe GitTrend::CLI do
|
|
|
396
400
|
|Ruby
|
|
397
401
|
|Unknown languages
|
|
398
402
|
|1C Enterprise
|
|
403
|
+
|4D
|
|
399
404
|
|ABAP
|
|
405
|
+
|ABAP CDS
|
|
400
406
|
|ABNF
|
|
401
407
|
|ActionScript
|
|
402
408
|
|Ada
|
|
403
409
|
|Adobe Font Metrics
|
|
404
410
|
|Agda
|
|
405
411
|
|AGS Script
|
|
412
|
+
|AIDL
|
|
413
|
+
|AL
|
|
414
|
+
|AL
|
|
406
415
|
|Alloy
|
|
407
416
|
|Alpine Abuild
|
|
408
417
|
|Altium Designer
|
|
@@ -418,19 +427,27 @@ RSpec.describe GitTrend::CLI do
|
|
|
418
427
|
|AppleScript
|
|
419
428
|
|Arc
|
|
420
429
|
|AsciiDoc
|
|
430
|
+
|ASL
|
|
421
431
|
|ASN.1
|
|
422
|
-
|ASP
|
|
432
|
+
|Classic ASP
|
|
433
|
+
|ASP.NET
|
|
423
434
|
|AspectJ
|
|
424
435
|
|Assembly
|
|
436
|
+
|Astro
|
|
425
437
|
|Asymptote
|
|
426
438
|
|ATS
|
|
427
439
|
|Augeas
|
|
428
440
|
|AutoHotkey
|
|
429
441
|
|AutoIt
|
|
442
|
+
|Avro IDL
|
|
430
443
|
|Awk
|
|
431
444
|
|Ballerina
|
|
445
|
+
|BASIC
|
|
432
446
|
|Batchfile
|
|
447
|
+
|Beef
|
|
433
448
|
|Befunge
|
|
449
|
+
|BibTeX
|
|
450
|
+
|Bicep
|
|
434
451
|
|Bison
|
|
435
452
|
|BitBake
|
|
436
453
|
|Blade
|
|
@@ -438,12 +455,13 @@ RSpec.describe GitTrend::CLI do
|
|
|
438
455
|
|BlitzMax
|
|
439
456
|
|Bluespec
|
|
440
457
|
|Boo
|
|
458
|
+
|Boogie
|
|
441
459
|
|Brainfuck
|
|
442
460
|
|Brightscript
|
|
443
461
|
|Zeek
|
|
462
|
+
|Browserslist
|
|
444
463
|
|C
|
|
445
464
|
|C#
|
|
446
|
-
|C++
|
|
447
465
|
|C-ObjDump
|
|
448
466
|
|C2hs Haskell
|
|
449
467
|
|Cabal Config
|
|
@@ -453,8 +471,10 @@ RSpec.describe GitTrend::CLI do
|
|
|
453
471
|
|Chapel
|
|
454
472
|
|Charity
|
|
455
473
|
|ChucK
|
|
474
|
+
|CIL
|
|
456
475
|
|Cirru
|
|
457
476
|
|Clarion
|
|
477
|
+
|Classic ASP
|
|
458
478
|
|Clean
|
|
459
479
|
|Click
|
|
460
480
|
|CLIPS
|
|
@@ -463,6 +483,8 @@ RSpec.describe GitTrend::CLI do
|
|
|
463
483
|
|Cloud Firestore Security Rules
|
|
464
484
|
|CMake
|
|
465
485
|
|COBOL
|
|
486
|
+
|CODEOWNERS
|
|
487
|
+
|CodeQL
|
|
466
488
|
|CoffeeScript
|
|
467
489
|
|ColdFusion
|
|
468
490
|
|ColdFusion CFC
|
|
@@ -483,11 +505,14 @@ RSpec.describe GitTrend::CLI do
|
|
|
483
505
|
|CSS
|
|
484
506
|
|CSV
|
|
485
507
|
|Cuda
|
|
508
|
+
|CUE
|
|
509
|
+
|cURL Config
|
|
486
510
|
|CWeb
|
|
487
511
|
|Cycript
|
|
488
512
|
|Cython
|
|
489
513
|
|D
|
|
490
514
|
|D-ObjDump
|
|
515
|
+
|Dafny
|
|
491
516
|
|Darcs Patch
|
|
492
517
|
|Dart
|
|
493
518
|
|DataWeave
|
|
@@ -495,6 +520,8 @@ RSpec.describe GitTrend::CLI do
|
|
|
495
520
|
|Dhall
|
|
496
521
|
|Diff
|
|
497
522
|
|DIGITAL Command Language
|
|
523
|
+
|dircolors
|
|
524
|
+
|DirectX 3D File
|
|
498
525
|
|DM
|
|
499
526
|
|DNS Zone
|
|
500
527
|
|Dockerfile
|
|
@@ -502,13 +529,16 @@ RSpec.describe GitTrend::CLI do
|
|
|
502
529
|
|DTrace
|
|
503
530
|
|Dylan
|
|
504
531
|
|E
|
|
532
|
+
|E-mail
|
|
505
533
|
|Eagle
|
|
534
|
+
|Earthly
|
|
506
535
|
|Easybuild
|
|
507
536
|
|EBNF
|
|
508
537
|
|eC
|
|
509
538
|
|Ecere Projects
|
|
510
539
|
|ECL
|
|
511
540
|
|ECLiPSe
|
|
541
|
+
|EditorConfig
|
|
512
542
|
|Edje Data Collection
|
|
513
543
|
|edn
|
|
514
544
|
|Eiffel
|
|
@@ -517,7 +547,7 @@ RSpec.describe GitTrend::CLI do
|
|
|
517
547
|
|Elm
|
|
518
548
|
|Emacs Lisp
|
|
519
549
|
|EmberScript
|
|
520
|
-
|
|
|
550
|
+
|E-mail
|
|
521
551
|
|EQ
|
|
522
552
|
|Erlang
|
|
523
553
|
|F#
|
|
@@ -525,23 +555,32 @@ RSpec.describe GitTrend::CLI do
|
|
|
525
555
|
|Factor
|
|
526
556
|
|Fancy
|
|
527
557
|
|Fantom
|
|
558
|
+
|Faust
|
|
559
|
+
|Fennel
|
|
528
560
|
|FIGlet Font
|
|
529
561
|
|Filebench WML
|
|
530
562
|
|Filterscript
|
|
531
563
|
|fish
|
|
564
|
+
|Fluent
|
|
532
565
|
|FLUX
|
|
533
566
|
|Formatted
|
|
534
567
|
|Forth
|
|
535
568
|
|Fortran
|
|
569
|
+
|Fortran Free Form
|
|
570
|
+
|FreeBasic
|
|
536
571
|
|FreeMarker
|
|
537
572
|
|Frege
|
|
573
|
+
|Futhark
|
|
538
574
|
|G-code
|
|
539
575
|
|Game Maker Language
|
|
576
|
+
|GAML
|
|
540
577
|
|GAMS
|
|
541
578
|
|GAP
|
|
542
579
|
|GCC Machine Description
|
|
543
580
|
|GDB
|
|
544
581
|
|GDScript
|
|
582
|
+
|GEDCOM
|
|
583
|
+
|Gemfile.lock
|
|
545
584
|
|Genie
|
|
546
585
|
|Genshi
|
|
547
586
|
|Gentoo Ebuild
|
|
@@ -557,6 +596,8 @@ RSpec.describe GitTrend::CLI do
|
|
|
557
596
|
|GN
|
|
558
597
|
|Gnuplot
|
|
559
598
|
|Go
|
|
599
|
+
|Go Checksums
|
|
600
|
+
|Go Module
|
|
560
601
|
|Golo
|
|
561
602
|
|Gosu
|
|
562
603
|
|Grace
|
|
@@ -578,8 +619,7 @@ RSpec.describe GitTrend::CLI do
|
|
|
578
619
|
|HiveQL
|
|
579
620
|
|HLSL
|
|
580
621
|
|HolyC
|
|
581
|
-
|
|
|
582
|
-
|HTML+Django
|
|
622
|
+
|Jinja
|
|
583
623
|
|HTML+ECR
|
|
584
624
|
|HTML+EEX
|
|
585
625
|
|HTML+ERB
|
|
@@ -591,7 +631,9 @@ RSpec.describe GitTrend::CLI do
|
|
|
591
631
|
|HyPhy
|
|
592
632
|
|IDL
|
|
593
633
|
|Idris
|
|
634
|
+
|Ignore List
|
|
594
635
|
|IGOR Pro
|
|
636
|
+
|ImageJ Macro
|
|
595
637
|
|Inform 7
|
|
596
638
|
|INI
|
|
597
639
|
|Inno Setup
|
|
@@ -602,31 +644,34 @@ RSpec.describe GitTrend::CLI do
|
|
|
602
644
|
|Isabelle ROOT
|
|
603
645
|
|J
|
|
604
646
|
|Jasmin
|
|
605
|
-
|Java
|
|
606
647
|
|Java Properties
|
|
607
648
|
|Java Server Pages
|
|
608
|
-
|JavaScript
|
|
609
649
|
|JavaScript+ERB
|
|
610
650
|
|JFlex
|
|
651
|
+
|Jinja
|
|
611
652
|
|Jison
|
|
612
653
|
|Jison Lex
|
|
613
654
|
|Jolie
|
|
655
|
+
|jq
|
|
614
656
|
|JSON
|
|
615
657
|
|JSON with Comments
|
|
616
658
|
|JSON5
|
|
617
659
|
|JSONiq
|
|
618
660
|
|JSONLD
|
|
619
661
|
|Jsonnet
|
|
620
|
-
|JSX
|
|
621
662
|
|Julia
|
|
622
663
|
|Jupyter Notebook
|
|
664
|
+
|Kaitai Struct
|
|
665
|
+
|KakouneScript
|
|
623
666
|
|KiCad Layout
|
|
624
667
|
|KiCad Legacy Layout
|
|
625
668
|
|KiCad Schematic
|
|
626
669
|
|Kit
|
|
627
670
|
|Kotlin
|
|
628
671
|
|KRL
|
|
672
|
+
|Kusto
|
|
629
673
|
|LabVIEW
|
|
674
|
+
|Lark
|
|
630
675
|
|Lasso
|
|
631
676
|
|Latte
|
|
632
677
|
|Lean
|
|
@@ -649,10 +694,12 @@ RSpec.describe GitTrend::CLI do
|
|
|
649
694
|
|LookML
|
|
650
695
|
|LoomScript
|
|
651
696
|
|LSL
|
|
697
|
+
|LTspice Symbol
|
|
652
698
|
|Lua
|
|
653
699
|
|M
|
|
654
700
|
|M4
|
|
655
701
|
|M4Sugar
|
|
702
|
+
|Macaulay2
|
|
656
703
|
|Makefile
|
|
657
704
|
|Mako
|
|
658
705
|
|Markdown
|
|
@@ -664,12 +711,16 @@ RSpec.describe GitTrend::CLI do
|
|
|
664
711
|
|Max
|
|
665
712
|
|MAXScript
|
|
666
713
|
|mcfunction
|
|
667
|
-
|
|
|
714
|
+
|Wikitext
|
|
668
715
|
|Mercury
|
|
669
716
|
|Meson
|
|
670
717
|
|Metal
|
|
718
|
+
|Microsoft Developer Studio Project
|
|
719
|
+
|Microsoft Visual Studio Solution
|
|
671
720
|
|MiniD
|
|
672
721
|
|Mirah
|
|
722
|
+
|mIRC Script
|
|
723
|
+
|MLIR
|
|
673
724
|
|Modelica
|
|
674
725
|
|Modula-2
|
|
675
726
|
|Modula-3
|
|
@@ -677,17 +728,22 @@ RSpec.describe GitTrend::CLI do
|
|
|
677
728
|
|Monkey
|
|
678
729
|
|Moocode
|
|
679
730
|
|MoonScript
|
|
731
|
+
|Motoko
|
|
680
732
|
|Motorola 68K Assembly
|
|
681
733
|
|MQL4
|
|
682
734
|
|MQL5
|
|
683
735
|
|MTML
|
|
684
736
|
|MUF
|
|
685
737
|
|mupad
|
|
738
|
+
|Muse
|
|
739
|
+
|Mustache
|
|
686
740
|
|Myghty
|
|
687
741
|
|nanorc
|
|
742
|
+
|NASL
|
|
688
743
|
|NCL
|
|
689
744
|
|Nearley
|
|
690
745
|
|Nemerle
|
|
746
|
+
|NEON
|
|
691
747
|
|nesC
|
|
692
748
|
|NetLinx
|
|
693
749
|
|NetLinx+ERB
|
|
@@ -700,23 +756,31 @@ RSpec.describe GitTrend::CLI do
|
|
|
700
756
|
|Nit
|
|
701
757
|
|Nix
|
|
702
758
|
|NL
|
|
759
|
+
|NPM Config
|
|
703
760
|
|NSIS
|
|
704
761
|
|Nu
|
|
705
762
|
|NumPy
|
|
763
|
+
|Nunjucks
|
|
764
|
+
|NWScript
|
|
706
765
|
|ObjDump
|
|
766
|
+
|Object Data Instance Notation
|
|
707
767
|
|Objective-C
|
|
708
768
|
|Objective-C++
|
|
709
769
|
|Objective-J
|
|
710
770
|
|ObjectScript
|
|
711
771
|
|OCaml
|
|
772
|
+
|Odin
|
|
712
773
|
|Omgrofl
|
|
713
774
|
|ooc
|
|
714
775
|
|Opa
|
|
715
776
|
|Opal
|
|
777
|
+
|Open Policy Agent
|
|
716
778
|
|OpenCL
|
|
717
779
|
|OpenEdge ABL
|
|
780
|
+
|OpenQASM
|
|
718
781
|
|OpenRC runscript
|
|
719
782
|
|OpenSCAD
|
|
783
|
+
|OpenStep Property List
|
|
720
784
|
|OpenType Feature File
|
|
721
785
|
|Org
|
|
722
786
|
|Ox
|
|
@@ -730,15 +794,15 @@ RSpec.describe GitTrend::CLI do
|
|
|
730
794
|
|Parrot Internal Representation
|
|
731
795
|
|Pascal
|
|
732
796
|
|Pawn
|
|
797
|
+
|PEG.js
|
|
733
798
|
|Pep8
|
|
734
799
|
|Perl
|
|
735
|
-
|Perl 6
|
|
736
|
-
|PHP
|
|
737
800
|
|Pic
|
|
738
801
|
|Pickle
|
|
739
802
|
|PicoLisp
|
|
740
803
|
|PigLatin
|
|
741
804
|
|Pike
|
|
805
|
+
|PlantUML
|
|
742
806
|
|PLpgSQL
|
|
743
807
|
|PLSQL
|
|
744
808
|
|Pod
|
|
@@ -750,8 +814,11 @@ RSpec.describe GitTrend::CLI do
|
|
|
750
814
|
|POV-Ray SDL
|
|
751
815
|
|PowerBuilder
|
|
752
816
|
|PowerShell
|
|
817
|
+
|Prisma
|
|
753
818
|
|Processing
|
|
819
|
+
|Proguard
|
|
754
820
|
|Prolog
|
|
821
|
+
|Promela
|
|
755
822
|
|Propeller Spin
|
|
756
823
|
|Protocol Buffer
|
|
757
824
|
|Public Key
|
|
@@ -760,20 +827,23 @@ RSpec.describe GitTrend::CLI do
|
|
|
760
827
|
|Pure Data
|
|
761
828
|
|PureBasic
|
|
762
829
|
|PureScript
|
|
763
|
-
|Python
|
|
764
830
|
|Python console
|
|
765
831
|
|Python traceback
|
|
766
832
|
|q
|
|
833
|
+
|Q#
|
|
767
834
|
|QMake
|
|
768
835
|
|QML
|
|
836
|
+
|Qt Script
|
|
769
837
|
|Quake
|
|
770
838
|
|R
|
|
771
839
|
|Racket
|
|
772
840
|
|Ragel
|
|
841
|
+
|Raku
|
|
773
842
|
|RAML
|
|
774
843
|
|Rascal
|
|
775
844
|
|Raw token data
|
|
776
845
|
|RDoc
|
|
846
|
+
|Readline Config
|
|
777
847
|
|REALbasic
|
|
778
848
|
|Reason
|
|
779
849
|
|Rebol
|
|
@@ -782,19 +852,20 @@ RSpec.describe GitTrend::CLI do
|
|
|
782
852
|
|Regular Expression
|
|
783
853
|
|Ren'Py
|
|
784
854
|
|RenderScript
|
|
855
|
+
|ReScript
|
|
785
856
|
|reStructuredText
|
|
786
857
|
|REXX
|
|
787
|
-
|RHTML
|
|
788
858
|
|Rich Text Format
|
|
789
859
|
|Ring
|
|
860
|
+
|Riot
|
|
790
861
|
|RMarkdown
|
|
791
862
|
|RobotFramework
|
|
863
|
+
|robots.txt
|
|
792
864
|
|Roff
|
|
793
865
|
|Roff Manpage
|
|
794
866
|
|Rouge
|
|
795
867
|
|RPC
|
|
796
868
|
|RPM Spec
|
|
797
|
-
|Ruby
|
|
798
869
|
|RUNOFF
|
|
799
870
|
|Rust
|
|
800
871
|
|Sage
|
|
@@ -812,12 +883,15 @@ RSpec.describe GitTrend::CLI do
|
|
|
812
883
|
|Shell
|
|
813
884
|
|ShellSession
|
|
814
885
|
|Shen
|
|
886
|
+
|Sieve
|
|
887
|
+
|Singularity
|
|
815
888
|
|Slash
|
|
816
889
|
|Slice
|
|
817
890
|
|Slim
|
|
818
891
|
|Smali
|
|
819
892
|
|Smalltalk
|
|
820
893
|
|Smarty
|
|
894
|
+
|SmPL
|
|
821
895
|
|SMT
|
|
822
896
|
|Solidity
|
|
823
897
|
|SourcePawn
|
|
@@ -831,20 +905,25 @@ RSpec.describe GitTrend::CLI do
|
|
|
831
905
|
|SSH Config
|
|
832
906
|
|Stan
|
|
833
907
|
|Standard ML
|
|
908
|
+
|Starlark
|
|
834
909
|
|Stata
|
|
835
910
|
|STON
|
|
911
|
+
|StringTemplate
|
|
836
912
|
|Stylus
|
|
837
913
|
|SubRip Text
|
|
838
914
|
|SugarSS
|
|
839
915
|
|SuperCollider
|
|
916
|
+
|Svelte
|
|
840
917
|
|SVG
|
|
841
918
|
|Swift
|
|
919
|
+
|SWIG
|
|
842
920
|
|SystemVerilog
|
|
843
921
|
|Tcl
|
|
844
922
|
|Tcsh
|
|
845
923
|
|Tea
|
|
846
924
|
|Terra
|
|
847
925
|
|TeX
|
|
926
|
+
|Texinfo
|
|
848
927
|
|Text
|
|
849
928
|
|Textile
|
|
850
929
|
|Thrift
|
|
@@ -852,6 +931,7 @@ RSpec.describe GitTrend::CLI do
|
|
|
852
931
|
|TLA
|
|
853
932
|
|TOML
|
|
854
933
|
|TSQL
|
|
934
|
+
|TSV
|
|
855
935
|
|TSX
|
|
856
936
|
|Turing
|
|
857
937
|
|Turtle
|
|
@@ -865,12 +945,19 @@ RSpec.describe GitTrend::CLI do
|
|
|
865
945
|
|Uno
|
|
866
946
|
|UnrealScript
|
|
867
947
|
|UrWeb
|
|
948
|
+
|V
|
|
868
949
|
|Vala
|
|
950
|
+
|Valve Data Format
|
|
951
|
+
|VBA
|
|
952
|
+
|VBScript
|
|
869
953
|
|VCL
|
|
870
954
|
|Verilog
|
|
871
955
|
|VHDL
|
|
872
|
-
|Vim
|
|
873
|
-
|
|
|
956
|
+
|Vim Help File
|
|
957
|
+
|Vim Script
|
|
958
|
+
|Vim Snippet
|
|
959
|
+
|Visual Basic .NET
|
|
960
|
+
|Visual Basic .NET
|
|
874
961
|
|Volt
|
|
875
962
|
|Vue
|
|
876
963
|
|Wavefront Material
|
|
@@ -880,6 +967,8 @@ RSpec.describe GitTrend::CLI do
|
|
|
880
967
|
|WebAssembly
|
|
881
968
|
|WebIDL
|
|
882
969
|
|WebVTT
|
|
970
|
+
|Wget Config
|
|
971
|
+
|Wikitext
|
|
883
972
|
|Windows Registry Entries
|
|
884
973
|
|wisp
|
|
885
974
|
|Wollok
|
|
@@ -892,7 +981,9 @@ RSpec.describe GitTrend::CLI do
|
|
|
892
981
|
|XC
|
|
893
982
|
|XCompose
|
|
894
983
|
|XML
|
|
984
|
+
|XML Property List
|
|
895
985
|
|Xojo
|
|
986
|
+
|Xonsh
|
|
896
987
|
|XPages
|
|
897
988
|
|XProc
|
|
898
989
|
|XQuery
|
|
@@ -912,7 +1003,7 @@ RSpec.describe GitTrend::CLI do
|
|
|
912
1003
|
|ZIL
|
|
913
1004
|
|Zimpl
|
|
914
1005
|
|
|
|
915
|
-
|
|
|
1006
|
+
|611 languages
|
|
916
1007
|
|you can get only selected language list with '-l' option.
|
|
917
1008
|
|if languages is unknown, you can specify 'unkown'.
|
|
918
1009
|
|
|