languages 1.0.1 → 1.1.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/README.md +1 -1
- data/languages.gemspec +4 -4
- data/lib/languages.yml +114 -29
- data/lib/languages/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0440fd3d1a543a59a4cebd6e087e5692219b21a2
|
|
4
|
+
data.tar.gz: f08cfe146f0f0385c8ec5602972b993d49660817
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96af32af9aaef6c6bbec07ec12ac86f11ffa92965f90729f23f12c6004f4052a9d0eee6e3db763ee978094ac1fd6215205022f4c6e5ce67a52a0a7f090b0f7af
|
|
7
|
+
data.tar.gz: dcaec39b3478bedea1dba4b33a545b2fde460fcbae91800c20cb4f2badaeda90886e02605ed11e43dfdab9c40364036e12fb137726cf2547deffd28ad9f0d153
|
data/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Languages::Language.all #=> [#<Languages::Language name=ActionScript color=#e349
|
|
|
28
28
|
|
|
29
29
|
## Contributing
|
|
30
30
|
|
|
31
|
-
1. Fork it ( https://github.com/
|
|
31
|
+
1. Fork it ( https://github.com/librariesio/languages/fork )
|
|
32
32
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
33
33
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
34
34
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/languages.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Languages::VERSION
|
|
9
9
|
spec.authors = ["Andrew Nesbitt"]
|
|
10
10
|
spec.email = ["andrewnez@gmail.com"]
|
|
11
|
-
spec.summary = "Github
|
|
12
|
-
spec.description = "Just the language names and colors from github-
|
|
13
|
-
spec.homepage = "https://github.com/
|
|
11
|
+
spec.summary = "Github language details and colors"
|
|
12
|
+
spec.description = "Just the language names, details and colors from github-linguist"
|
|
13
|
+
spec.homepage = "https://github.com/librariesio/languages"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -20,6 +20,6 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
|
|
21
21
|
spec.add_dependency "escape_utils", "~> 1.0"
|
|
22
22
|
|
|
23
|
-
spec.add_development_dependency "bundler", "~> 1.
|
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.8"
|
|
24
24
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
25
25
|
end
|
data/lib/languages.yml
CHANGED
|
@@ -41,6 +41,14 @@ AGS Script:
|
|
|
41
41
|
tm_scope: source.c++
|
|
42
42
|
ace_mode: c_cpp
|
|
43
43
|
|
|
44
|
+
AMPL:
|
|
45
|
+
type: programming
|
|
46
|
+
color: "#00008B"
|
|
47
|
+
extensions:
|
|
48
|
+
- .ampl
|
|
49
|
+
tm_scope: source.ampl
|
|
50
|
+
ace_mode: text
|
|
51
|
+
|
|
44
52
|
ANTLR:
|
|
45
53
|
type: programming
|
|
46
54
|
color: "#9DC3FF"
|
|
@@ -204,7 +212,6 @@ Assembly:
|
|
|
204
212
|
- nasm
|
|
205
213
|
extensions:
|
|
206
214
|
- .asm
|
|
207
|
-
- .ASM
|
|
208
215
|
- .a51
|
|
209
216
|
- .nasm
|
|
210
217
|
tm_scope: source.asm.x86
|
|
@@ -271,6 +278,7 @@ Batchfile:
|
|
|
271
278
|
ace_mode: batchfile
|
|
272
279
|
|
|
273
280
|
Befunge:
|
|
281
|
+
type: programming
|
|
274
282
|
extensions:
|
|
275
283
|
- .befunge
|
|
276
284
|
ace_mode: text
|
|
@@ -326,6 +334,7 @@ Boo:
|
|
|
326
334
|
ace_mode: text
|
|
327
335
|
|
|
328
336
|
Brainfuck:
|
|
337
|
+
type: programming
|
|
329
338
|
extensions:
|
|
330
339
|
- .b
|
|
331
340
|
- .bf
|
|
@@ -350,12 +359,12 @@ C:
|
|
|
350
359
|
color: "#555"
|
|
351
360
|
extensions:
|
|
352
361
|
- .c
|
|
353
|
-
- .C
|
|
354
|
-
- .H
|
|
355
362
|
- .cats
|
|
356
363
|
- .h
|
|
357
364
|
- .idc
|
|
358
365
|
- .w
|
|
366
|
+
interpreters:
|
|
367
|
+
- tcc
|
|
359
368
|
ace_mode: c_cpp
|
|
360
369
|
|
|
361
370
|
C#:
|
|
@@ -419,6 +428,7 @@ CLIPS:
|
|
|
419
428
|
ace_mode: text
|
|
420
429
|
|
|
421
430
|
CMake:
|
|
431
|
+
type: programming
|
|
422
432
|
extensions:
|
|
423
433
|
- .cmake
|
|
424
434
|
- .cmake.in
|
|
@@ -430,8 +440,6 @@ COBOL:
|
|
|
430
440
|
type: programming
|
|
431
441
|
extensions:
|
|
432
442
|
- .cob
|
|
433
|
-
- .COB
|
|
434
|
-
- .CPY
|
|
435
443
|
- .cbl
|
|
436
444
|
- .ccp
|
|
437
445
|
- .cobol
|
|
@@ -478,6 +486,7 @@ Chapel:
|
|
|
478
486
|
ace_mode: text
|
|
479
487
|
|
|
480
488
|
ChucK:
|
|
489
|
+
type: programming
|
|
481
490
|
extensions:
|
|
482
491
|
- .ck
|
|
483
492
|
tm_scope: source.java
|
|
@@ -639,6 +648,7 @@ Crystal:
|
|
|
639
648
|
- crystal
|
|
640
649
|
|
|
641
650
|
Cucumber:
|
|
651
|
+
type: programming
|
|
642
652
|
extensions:
|
|
643
653
|
- .feature
|
|
644
654
|
tm_scope: text.gherkin.feature
|
|
@@ -697,7 +707,17 @@ DM:
|
|
|
697
707
|
tm_scope: source.c++
|
|
698
708
|
ace_mode: c_cpp
|
|
699
709
|
|
|
710
|
+
DTrace:
|
|
711
|
+
type: programming
|
|
712
|
+
extensions:
|
|
713
|
+
- .d
|
|
714
|
+
interpreters:
|
|
715
|
+
- dtrace
|
|
716
|
+
tm_scope: source.c
|
|
717
|
+
ace_mode: c_cpp
|
|
718
|
+
|
|
700
719
|
Darcs Patch:
|
|
720
|
+
type: programming
|
|
701
721
|
search_term: dpatch
|
|
702
722
|
aliases:
|
|
703
723
|
- dpatch
|
|
@@ -715,6 +735,7 @@ Dart:
|
|
|
715
735
|
ace_mode: dart
|
|
716
736
|
|
|
717
737
|
Diff:
|
|
738
|
+
type: programming
|
|
718
739
|
extensions:
|
|
719
740
|
- .diff
|
|
720
741
|
- .patch
|
|
@@ -870,14 +891,6 @@ FORTRAN:
|
|
|
870
891
|
color: "#4d41b1"
|
|
871
892
|
extensions:
|
|
872
893
|
- .f90
|
|
873
|
-
- .F
|
|
874
|
-
- .F03
|
|
875
|
-
- .F08
|
|
876
|
-
- .F77
|
|
877
|
-
- .F90
|
|
878
|
-
- .F95
|
|
879
|
-
- .FOR
|
|
880
|
-
- .FPP
|
|
881
894
|
- .f
|
|
882
895
|
- .f03
|
|
883
896
|
- .f08
|
|
@@ -921,9 +934,7 @@ Forth:
|
|
|
921
934
|
color: "#341708"
|
|
922
935
|
extensions:
|
|
923
936
|
- .fth
|
|
924
|
-
- .4TH
|
|
925
937
|
- .4th
|
|
926
|
-
- .F
|
|
927
938
|
- .f
|
|
928
939
|
- .for
|
|
929
940
|
- .forth
|
|
@@ -972,7 +983,6 @@ GAS:
|
|
|
972
983
|
group: Assembly
|
|
973
984
|
extensions:
|
|
974
985
|
- .s
|
|
975
|
-
- .S
|
|
976
986
|
tm_scope: source.asm.x86
|
|
977
987
|
ace_mode: assembly_x86
|
|
978
988
|
|
|
@@ -984,7 +994,6 @@ GDScript:
|
|
|
984
994
|
ace_mode: text
|
|
985
995
|
|
|
986
996
|
GLSL:
|
|
987
|
-
group: C
|
|
988
997
|
type: programming
|
|
989
998
|
extensions:
|
|
990
999
|
- .glsl
|
|
@@ -1012,6 +1021,7 @@ Game Maker Language:
|
|
|
1012
1021
|
ace_mode: c_cpp
|
|
1013
1022
|
|
|
1014
1023
|
Genshi:
|
|
1024
|
+
type: programming
|
|
1015
1025
|
extensions:
|
|
1016
1026
|
- .kid
|
|
1017
1027
|
tm_scope: text.xml.genshi
|
|
@@ -1021,6 +1031,7 @@ Genshi:
|
|
|
1021
1031
|
ace_mode: xml
|
|
1022
1032
|
|
|
1023
1033
|
Gentoo Ebuild:
|
|
1034
|
+
type: programming
|
|
1024
1035
|
group: Shell
|
|
1025
1036
|
extensions:
|
|
1026
1037
|
- .ebuild
|
|
@@ -1028,6 +1039,7 @@ Gentoo Ebuild:
|
|
|
1028
1039
|
ace_mode: sh
|
|
1029
1040
|
|
|
1030
1041
|
Gentoo Eclass:
|
|
1042
|
+
type: programming
|
|
1031
1043
|
group: Shell
|
|
1032
1044
|
extensions:
|
|
1033
1045
|
- .eclass
|
|
@@ -1035,6 +1047,7 @@ Gentoo Eclass:
|
|
|
1035
1047
|
ace_mode: sh
|
|
1036
1048
|
|
|
1037
1049
|
Gettext Catalog:
|
|
1050
|
+
type: programming
|
|
1038
1051
|
search_term: pot
|
|
1039
1052
|
searchable: false
|
|
1040
1053
|
aliases:
|
|
@@ -1130,11 +1143,11 @@ Graphviz (DOT):
|
|
|
1130
1143
|
tm_scope: source.dot
|
|
1131
1144
|
extensions:
|
|
1132
1145
|
- .dot
|
|
1133
|
-
- .DOT
|
|
1134
1146
|
- .gv
|
|
1135
1147
|
ace_mode: text
|
|
1136
1148
|
|
|
1137
1149
|
Groff:
|
|
1150
|
+
type: programming
|
|
1138
1151
|
extensions:
|
|
1139
1152
|
- .man
|
|
1140
1153
|
- '.1'
|
|
@@ -1162,6 +1175,7 @@ Groovy:
|
|
|
1162
1175
|
- groovy
|
|
1163
1176
|
|
|
1164
1177
|
Groovy Server Pages:
|
|
1178
|
+
type: programming
|
|
1165
1179
|
group: Groovy
|
|
1166
1180
|
aliases:
|
|
1167
1181
|
- gsp
|
|
@@ -1311,6 +1325,7 @@ INI:
|
|
|
1311
1325
|
- .ini
|
|
1312
1326
|
- .cfg
|
|
1313
1327
|
- .prefs
|
|
1328
|
+
- .pro
|
|
1314
1329
|
- .properties
|
|
1315
1330
|
tm_scope: source.ini
|
|
1316
1331
|
aliases:
|
|
@@ -1318,6 +1333,7 @@ INI:
|
|
|
1318
1333
|
ace_mode: ini
|
|
1319
1334
|
|
|
1320
1335
|
IRC log:
|
|
1336
|
+
type: data
|
|
1321
1337
|
search_term: irc
|
|
1322
1338
|
aliases:
|
|
1323
1339
|
- irc
|
|
@@ -1348,6 +1364,7 @@ Inform 7:
|
|
|
1348
1364
|
ace_mode: text
|
|
1349
1365
|
|
|
1350
1366
|
Inno Setup:
|
|
1367
|
+
type: programming
|
|
1351
1368
|
extensions:
|
|
1352
1369
|
- .iss
|
|
1353
1370
|
tm_scope: source.inno
|
|
@@ -1379,6 +1396,7 @@ Isabelle:
|
|
|
1379
1396
|
|
|
1380
1397
|
J:
|
|
1381
1398
|
type: programming
|
|
1399
|
+
color: "#2d8abd"
|
|
1382
1400
|
extensions:
|
|
1383
1401
|
- .ijs
|
|
1384
1402
|
tm_scope: source.j
|
|
@@ -1442,6 +1460,7 @@ Java:
|
|
|
1442
1460
|
- .java
|
|
1443
1461
|
|
|
1444
1462
|
Java Server Pages:
|
|
1463
|
+
type: programming
|
|
1445
1464
|
group: Java
|
|
1446
1465
|
search_term: jsp
|
|
1447
1466
|
aliases:
|
|
@@ -1537,6 +1556,7 @@ LFE:
|
|
|
1537
1556
|
ace_mode: lisp
|
|
1538
1557
|
|
|
1539
1558
|
LLVM:
|
|
1559
|
+
type: programming
|
|
1540
1560
|
extensions:
|
|
1541
1561
|
- .ll
|
|
1542
1562
|
ace_mode: text
|
|
@@ -1588,6 +1608,13 @@ Latte:
|
|
|
1588
1608
|
tm_scope: source.smarty
|
|
1589
1609
|
ace_mode: smarty
|
|
1590
1610
|
|
|
1611
|
+
Lean:
|
|
1612
|
+
type: programming
|
|
1613
|
+
extensions:
|
|
1614
|
+
- .lean
|
|
1615
|
+
- .hlean
|
|
1616
|
+
ace_mode: lean
|
|
1617
|
+
|
|
1591
1618
|
Less:
|
|
1592
1619
|
type: markup
|
|
1593
1620
|
group: CSS
|
|
@@ -1597,6 +1624,7 @@ Less:
|
|
|
1597
1624
|
ace_mode: less
|
|
1598
1625
|
|
|
1599
1626
|
LilyPond:
|
|
1627
|
+
type: programming
|
|
1600
1628
|
extensions:
|
|
1601
1629
|
- .ly
|
|
1602
1630
|
- .ily
|
|
@@ -1717,6 +1745,15 @@ MTML:
|
|
|
1717
1745
|
tm_scope: text.html.basic
|
|
1718
1746
|
ace_mode: html
|
|
1719
1747
|
|
|
1748
|
+
MUF:
|
|
1749
|
+
type: programming
|
|
1750
|
+
group: Forth
|
|
1751
|
+
extensions:
|
|
1752
|
+
- .muf
|
|
1753
|
+
- .m
|
|
1754
|
+
tm_scope: none
|
|
1755
|
+
ace_mode: forth
|
|
1756
|
+
|
|
1720
1757
|
Makefile:
|
|
1721
1758
|
type: programming
|
|
1722
1759
|
aliases:
|
|
@@ -1725,6 +1762,7 @@ Makefile:
|
|
|
1725
1762
|
- mf
|
|
1726
1763
|
extensions:
|
|
1727
1764
|
- .mak
|
|
1765
|
+
- .d
|
|
1728
1766
|
- .mk
|
|
1729
1767
|
filenames:
|
|
1730
1768
|
- GNUmakefile
|
|
@@ -1735,6 +1773,7 @@ Makefile:
|
|
|
1735
1773
|
ace_mode: makefile
|
|
1736
1774
|
|
|
1737
1775
|
Mako:
|
|
1776
|
+
type: programming
|
|
1738
1777
|
extensions:
|
|
1739
1778
|
- .mako
|
|
1740
1779
|
- .mao
|
|
@@ -1771,6 +1810,8 @@ Mathematica:
|
|
|
1771
1810
|
- .ma
|
|
1772
1811
|
- .nb
|
|
1773
1812
|
- .nbp
|
|
1813
|
+
- .wl
|
|
1814
|
+
- .wlt
|
|
1774
1815
|
aliases:
|
|
1775
1816
|
- mma
|
|
1776
1817
|
ace_mode: text
|
|
@@ -1827,6 +1868,7 @@ Mercury:
|
|
|
1827
1868
|
ace_mode: prolog
|
|
1828
1869
|
|
|
1829
1870
|
MiniD: # Legacy
|
|
1871
|
+
type: programming
|
|
1830
1872
|
searchable: false
|
|
1831
1873
|
extensions:
|
|
1832
1874
|
- .minid # Dummy extension
|
|
@@ -1874,12 +1916,21 @@ MoonScript:
|
|
|
1874
1916
|
ace_mode: text
|
|
1875
1917
|
|
|
1876
1918
|
Myghty:
|
|
1919
|
+
type: programming
|
|
1877
1920
|
extensions:
|
|
1878
1921
|
- .myt
|
|
1879
1922
|
tm_scope: none
|
|
1880
1923
|
ace_mode: text
|
|
1881
1924
|
|
|
1925
|
+
NL:
|
|
1926
|
+
type: data
|
|
1927
|
+
extensions:
|
|
1928
|
+
- .nl
|
|
1929
|
+
tm_scope: none
|
|
1930
|
+
ace_mode: text
|
|
1931
|
+
|
|
1882
1932
|
NSIS:
|
|
1933
|
+
type: programming
|
|
1883
1934
|
extensions:
|
|
1884
1935
|
- .nsi
|
|
1885
1936
|
- .nsh
|
|
@@ -1971,6 +2022,7 @@ Nu:
|
|
|
1971
2022
|
- nush
|
|
1972
2023
|
|
|
1973
2024
|
NumPy:
|
|
2025
|
+
type: programming
|
|
1974
2026
|
group: Python
|
|
1975
2027
|
extensions:
|
|
1976
2028
|
- .numpy
|
|
@@ -2084,7 +2136,7 @@ OpenSCAD:
|
|
|
2084
2136
|
type: programming
|
|
2085
2137
|
extensions:
|
|
2086
2138
|
- .scad
|
|
2087
|
-
tm_scope:
|
|
2139
|
+
tm_scope: source.scad
|
|
2088
2140
|
ace_mode: scad
|
|
2089
2141
|
|
|
2090
2142
|
Org:
|
|
@@ -2149,6 +2201,26 @@ PHP:
|
|
|
2149
2201
|
aliases:
|
|
2150
2202
|
- inc
|
|
2151
2203
|
|
|
2204
|
+
#Oracle
|
|
2205
|
+
PLSQL:
|
|
2206
|
+
type: programming
|
|
2207
|
+
ace_mode: sql
|
|
2208
|
+
tm_scope: source.plsql.oracle
|
|
2209
|
+
extensions:
|
|
2210
|
+
- .pls
|
|
2211
|
+
- .pkb
|
|
2212
|
+
- .pks
|
|
2213
|
+
- .plb
|
|
2214
|
+
- .sql
|
|
2215
|
+
|
|
2216
|
+
#Postgres
|
|
2217
|
+
PLpgSQL:
|
|
2218
|
+
type: programming
|
|
2219
|
+
ace_mode: pgsql
|
|
2220
|
+
tm_scope: source.sql
|
|
2221
|
+
extensions:
|
|
2222
|
+
- .sql
|
|
2223
|
+
|
|
2152
2224
|
Pan:
|
|
2153
2225
|
type: programming
|
|
2154
2226
|
color: '#cc0000'
|
|
@@ -2214,7 +2286,6 @@ Perl:
|
|
|
2214
2286
|
color: "#0298c3"
|
|
2215
2287
|
extensions:
|
|
2216
2288
|
- .pl
|
|
2217
|
-
- .PL
|
|
2218
2289
|
- .cgi
|
|
2219
2290
|
- .fcgi
|
|
2220
2291
|
- .perl
|
|
@@ -2422,7 +2493,7 @@ Python traceback:
|
|
|
2422
2493
|
ace_mode: text
|
|
2423
2494
|
|
|
2424
2495
|
QML:
|
|
2425
|
-
type:
|
|
2496
|
+
type: programming
|
|
2426
2497
|
color: "#44a51c"
|
|
2427
2498
|
extensions:
|
|
2428
2499
|
- .qml
|
|
@@ -2430,6 +2501,7 @@ QML:
|
|
|
2430
2501
|
ace_mode: text
|
|
2431
2502
|
|
|
2432
2503
|
QMake:
|
|
2504
|
+
type: programming
|
|
2433
2505
|
extensions:
|
|
2434
2506
|
- .pro
|
|
2435
2507
|
- .pri
|
|
@@ -2446,8 +2518,6 @@ R:
|
|
|
2446
2518
|
- splus
|
|
2447
2519
|
extensions:
|
|
2448
2520
|
- .r
|
|
2449
|
-
- .R
|
|
2450
|
-
- .Rd
|
|
2451
2521
|
- .rd
|
|
2452
2522
|
- .rsx
|
|
2453
2523
|
filenames:
|
|
@@ -2500,7 +2570,6 @@ RMarkdown:
|
|
|
2500
2570
|
ace_mode: markdown
|
|
2501
2571
|
extensions:
|
|
2502
2572
|
- .rmd
|
|
2503
|
-
- .Rmd
|
|
2504
2573
|
tm_scope: none
|
|
2505
2574
|
|
|
2506
2575
|
Racket:
|
|
@@ -2526,6 +2595,7 @@ Ragel in Ruby Host:
|
|
|
2526
2595
|
ace_mode: text
|
|
2527
2596
|
|
|
2528
2597
|
Raw token data:
|
|
2598
|
+
type: data
|
|
2529
2599
|
search_term: raw
|
|
2530
2600
|
aliases:
|
|
2531
2601
|
- raw
|
|
@@ -2557,6 +2627,7 @@ Red:
|
|
|
2557
2627
|
ace_mode: text
|
|
2558
2628
|
|
|
2559
2629
|
Redcode:
|
|
2630
|
+
type: programming
|
|
2560
2631
|
extensions:
|
|
2561
2632
|
- .cw
|
|
2562
2633
|
tm_scope: none
|
|
@@ -2679,6 +2750,15 @@ SQL:
|
|
|
2679
2750
|
- .udf
|
|
2680
2751
|
- .viw
|
|
2681
2752
|
|
|
2753
|
+
#IBM DB2
|
|
2754
|
+
SQLPL:
|
|
2755
|
+
type: programming
|
|
2756
|
+
ace_mode: sql
|
|
2757
|
+
tm_scope: source.sql
|
|
2758
|
+
extensions:
|
|
2759
|
+
- .sql
|
|
2760
|
+
- .db2
|
|
2761
|
+
|
|
2682
2762
|
STON:
|
|
2683
2763
|
type: data
|
|
2684
2764
|
group: Smalltalk
|
|
@@ -2843,6 +2923,7 @@ Smalltalk:
|
|
|
2843
2923
|
ace_mode: text
|
|
2844
2924
|
|
|
2845
2925
|
Smarty:
|
|
2926
|
+
type: programming
|
|
2846
2927
|
extensions:
|
|
2847
2928
|
- .tpl
|
|
2848
2929
|
ace_mode: smarty
|
|
@@ -3065,11 +3146,11 @@ UnrealScript:
|
|
|
3065
3146
|
|
|
3066
3147
|
VCL:
|
|
3067
3148
|
type: programming
|
|
3068
|
-
ace_mode: perl
|
|
3069
3149
|
color: "#0298c3"
|
|
3070
3150
|
extensions:
|
|
3071
3151
|
- .vcl
|
|
3072
|
-
tm_scope: source.
|
|
3152
|
+
tm_scope: source.varnish.vcl
|
|
3153
|
+
ace_mode: text
|
|
3073
3154
|
|
|
3074
3155
|
VHDL:
|
|
3075
3156
|
type: programming
|
|
@@ -3159,13 +3240,14 @@ WebIDL:
|
|
|
3159
3240
|
|
|
3160
3241
|
XC:
|
|
3161
3242
|
type: programming
|
|
3243
|
+
color: "#99DA07"
|
|
3162
3244
|
extensions:
|
|
3163
3245
|
- .xc
|
|
3164
|
-
tm_scope: source.
|
|
3246
|
+
tm_scope: source.xc
|
|
3165
3247
|
ace_mode: c_cpp
|
|
3166
3248
|
|
|
3167
3249
|
XML:
|
|
3168
|
-
type:
|
|
3250
|
+
type: data
|
|
3169
3251
|
ace_mode: xml
|
|
3170
3252
|
aliases:
|
|
3171
3253
|
- rss
|
|
@@ -3211,11 +3293,11 @@ XML:
|
|
|
3211
3293
|
- .sublime-snippet
|
|
3212
3294
|
- .targets
|
|
3213
3295
|
- .tmCommand
|
|
3296
|
+
- .tml
|
|
3214
3297
|
- .tmLanguage
|
|
3215
3298
|
- .tmPreferences
|
|
3216
3299
|
- .tmSnippet
|
|
3217
3300
|
- .tmTheme
|
|
3218
|
-
- .tml
|
|
3219
3301
|
- .ts
|
|
3220
3302
|
- .ui
|
|
3221
3303
|
- .urdf
|
|
@@ -3266,6 +3348,7 @@ XQuery:
|
|
|
3266
3348
|
ace_mode: xquery
|
|
3267
3349
|
|
|
3268
3350
|
XS:
|
|
3351
|
+
type: programming
|
|
3269
3352
|
extensions:
|
|
3270
3353
|
- .xs
|
|
3271
3354
|
tm_scope: source.c
|
|
@@ -3338,6 +3421,7 @@ desktop:
|
|
|
3338
3421
|
|
|
3339
3422
|
eC:
|
|
3340
3423
|
type: programming
|
|
3424
|
+
color: "#4A4773"
|
|
3341
3425
|
search_term: ec
|
|
3342
3426
|
extensions:
|
|
3343
3427
|
- .ec
|
|
@@ -3362,6 +3446,7 @@ fish:
|
|
|
3362
3446
|
ace_mode: text
|
|
3363
3447
|
|
|
3364
3448
|
mupad:
|
|
3449
|
+
type: programming
|
|
3365
3450
|
extensions:
|
|
3366
3451
|
- .mu
|
|
3367
3452
|
ace_mode: text
|
data/lib/languages/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: languages
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: escape_utils
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '1.
|
|
33
|
+
version: '1.8'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '1.
|
|
40
|
+
version: '1.8'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '10.0'
|
|
55
|
-
description: Just the language names and colors from github-
|
|
55
|
+
description: Just the language names, details and colors from github-linguist
|
|
56
56
|
email:
|
|
57
57
|
- andrewnez@gmail.com
|
|
58
58
|
executables: []
|
|
@@ -69,7 +69,7 @@ files:
|
|
|
69
69
|
- lib/languages.yml
|
|
70
70
|
- lib/languages/version.rb
|
|
71
71
|
- lib/popular.yml
|
|
72
|
-
homepage: https://github.com/
|
|
72
|
+
homepage: https://github.com/librariesio/languages
|
|
73
73
|
licenses:
|
|
74
74
|
- MIT
|
|
75
75
|
metadata: {}
|
|
@@ -92,5 +92,5 @@ rubyforge_project:
|
|
|
92
92
|
rubygems_version: 2.4.5
|
|
93
93
|
signing_key:
|
|
94
94
|
specification_version: 4
|
|
95
|
-
summary: Github
|
|
95
|
+
summary: Github language details and colors
|
|
96
96
|
test_files: []
|