github-linguist 2.10.13 → 2.10.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/linguist.rb +1 -0
- data/lib/linguist/languages.yml +14 -4
- data/lib/linguist/samples.json +686 -3
- data/lib/linguist/version.rb +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 226e90c1e94849e376a01d43560255672c5c2d4b
|
4
|
+
data.tar.gz: 0332aebf91d49f3232fd1a372fe031c1299168d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4abf89a847d1b6ed111e7b3585198f416ff8d2bb4384be22bc117df52847095337fb5d50da105c38ff9dafa584d9e2812eabd91d45c8b297fc1633fadc0bbf4e
|
7
|
+
data.tar.gz: 5e8481ab9cbe094c9a6a72a8cfe80b49ae654ce00d498bbef4ace84c90a639fba8723f5cec37eb2f57dd86e768fa64e9cc7f049577caf6e20ab6b496e41e7e04
|
data/lib/linguist.rb
CHANGED
data/lib/linguist/languages.yml
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# All languages have an associated lexer for syntax highlighting. It
|
4
4
|
# defaults to name.downcase, which covers most cases.
|
5
5
|
#
|
6
|
-
# type - Either data, programming, markup, or nil
|
6
|
+
# type - Either data, programming, markup, prose, or nil
|
7
7
|
# lexer - An explicit lexer String (defaults to name)
|
8
8
|
# aliases - An Array of additional aliases (implicitly
|
9
9
|
# includes name.downcase)
|
@@ -787,8 +787,9 @@ HTML:
|
|
787
787
|
primary_extension: .html
|
788
788
|
extensions:
|
789
789
|
- .htm
|
790
|
-
- .xhtml
|
791
790
|
- .html.hl
|
791
|
+
- .st
|
792
|
+
- .xhtml
|
792
793
|
|
793
794
|
HTML+Django:
|
794
795
|
type: markup
|
@@ -878,7 +879,7 @@ INI:
|
|
878
879
|
- .prefs
|
879
880
|
- .properties
|
880
881
|
primary_extension: .ini
|
881
|
-
|
882
|
+
|
882
883
|
Inno Setup:
|
883
884
|
primary_extension: .iss
|
884
885
|
lexer: Text only
|
@@ -1017,7 +1018,7 @@ KRL:
|
|
1017
1018
|
type: programming
|
1018
1019
|
color: "#f5c800"
|
1019
1020
|
primary_extension: .krl
|
1020
|
-
|
1021
|
+
|
1021
1022
|
Kit:
|
1022
1023
|
type: markup
|
1023
1024
|
lexer: HTML
|
@@ -1066,6 +1067,15 @@ LilyPond:
|
|
1066
1067
|
extensions:
|
1067
1068
|
- .ily
|
1068
1069
|
|
1070
|
+
Liquid:
|
1071
|
+
type: markup
|
1072
|
+
lexer: Text only
|
1073
|
+
primary_extension: .liquid
|
1074
|
+
extensions:
|
1075
|
+
- .html
|
1076
|
+
- .json
|
1077
|
+
- .xml
|
1078
|
+
|
1069
1079
|
Literate Agda:
|
1070
1080
|
type: programming
|
1071
1081
|
group: Agda
|
data/lib/linguist/samples.json
CHANGED
@@ -195,6 +195,10 @@
|
|
195
195
|
".handlebars",
|
196
196
|
".hbs"
|
197
197
|
],
|
198
|
+
"HTML": [
|
199
|
+
".html",
|
200
|
+
".st"
|
201
|
+
],
|
198
202
|
"Hy": [
|
199
203
|
".hy"
|
200
204
|
],
|
@@ -262,6 +266,12 @@
|
|
262
266
|
"LFE": [
|
263
267
|
".lfe"
|
264
268
|
],
|
269
|
+
"Liquid": [
|
270
|
+
".html",
|
271
|
+
".json",
|
272
|
+
".liquid",
|
273
|
+
".xml"
|
274
|
+
],
|
265
275
|
"Literate Agda": [
|
266
276
|
".lagda"
|
267
277
|
],
|
@@ -506,6 +516,9 @@
|
|
506
516
|
"Slash": [
|
507
517
|
".sl"
|
508
518
|
],
|
519
|
+
"Smalltalk": [
|
520
|
+
".st"
|
521
|
+
],
|
509
522
|
"SourcePawn": [
|
510
523
|
".sp"
|
511
524
|
],
|
@@ -671,8 +684,8 @@
|
|
671
684
|
".gemrc"
|
672
685
|
]
|
673
686
|
},
|
674
|
-
"tokens_total":
|
675
|
-
"languages_total":
|
687
|
+
"tokens_total": 590357,
|
688
|
+
"languages_total": 716,
|
676
689
|
"tokens": {
|
677
690
|
"ABAP": {
|
678
691
|
"*/**": 1,
|
@@ -24907,6 +24920,204 @@
|
|
24907
24920
|
"</h2>": 1,
|
24908
24921
|
"/each": 1
|
24909
24922
|
},
|
24923
|
+
"HTML": {
|
24924
|
+
"<!DOCTYPE>": 2,
|
24925
|
+
"HTML": 2,
|
24926
|
+
"PUBLIC": 2,
|
24927
|
+
"W3C": 2,
|
24928
|
+
"DTD": 3,
|
24929
|
+
"4": 1,
|
24930
|
+
"0": 2,
|
24931
|
+
"Frameset": 1,
|
24932
|
+
"EN": 2,
|
24933
|
+
"http": 3,
|
24934
|
+
"www": 2,
|
24935
|
+
"w3": 2,
|
24936
|
+
"org": 2,
|
24937
|
+
"TR": 2,
|
24938
|
+
"REC": 1,
|
24939
|
+
"html40": 1,
|
24940
|
+
"frameset": 1,
|
24941
|
+
"dtd": 2,
|
24942
|
+
"<html>": 2,
|
24943
|
+
"<head>": 2,
|
24944
|
+
"Common_meta": 1,
|
24945
|
+
"(": 14,
|
24946
|
+
")": 14,
|
24947
|
+
"<title>": 2,
|
24948
|
+
"Android": 5,
|
24949
|
+
"API": 7,
|
24950
|
+
"Differences": 2,
|
24951
|
+
"Report": 2,
|
24952
|
+
"</title>": 2,
|
24953
|
+
"<body>": 2,
|
24954
|
+
"<div>": 10,
|
24955
|
+
"class=": 22,
|
24956
|
+
"Header": 1,
|
24957
|
+
"<h2>": 1,
|
24958
|
+
"</h2>": 1,
|
24959
|
+
"<p>": 3,
|
24960
|
+
"This": 1,
|
24961
|
+
"document": 1,
|
24962
|
+
"details": 1,
|
24963
|
+
"the": 11,
|
24964
|
+
"changes": 2,
|
24965
|
+
"in": 4,
|
24966
|
+
"framework": 2,
|
24967
|
+
"API.": 3,
|
24968
|
+
"It": 2,
|
24969
|
+
"shows": 1,
|
24970
|
+
"additions": 1,
|
24971
|
+
"modifications": 1,
|
24972
|
+
"and": 5,
|
24973
|
+
"removals": 2,
|
24974
|
+
"for": 2,
|
24975
|
+
"packages": 1,
|
24976
|
+
"classes": 1,
|
24977
|
+
"methods": 1,
|
24978
|
+
"fields.": 1,
|
24979
|
+
"Each": 1,
|
24980
|
+
"reference": 1,
|
24981
|
+
"to": 3,
|
24982
|
+
"an": 3,
|
24983
|
+
"change": 2,
|
24984
|
+
"includes": 1,
|
24985
|
+
"a": 4,
|
24986
|
+
"brief": 1,
|
24987
|
+
"description": 1,
|
24988
|
+
"of": 5,
|
24989
|
+
"explanation": 1,
|
24990
|
+
"suggested": 1,
|
24991
|
+
"workaround": 1,
|
24992
|
+
"where": 1,
|
24993
|
+
"available.": 1,
|
24994
|
+
"</p>": 3,
|
24995
|
+
"The": 2,
|
24996
|
+
"differences": 2,
|
24997
|
+
"described": 1,
|
24998
|
+
"this": 2,
|
24999
|
+
"report": 1,
|
25000
|
+
"are": 3,
|
25001
|
+
"based": 1,
|
25002
|
+
"comparison": 1,
|
25003
|
+
"APIs": 1,
|
25004
|
+
"whose": 1,
|
25005
|
+
"versions": 1,
|
25006
|
+
"specified": 1,
|
25007
|
+
"upper": 1,
|
25008
|
+
"-": 1,
|
25009
|
+
"right": 1,
|
25010
|
+
"corner": 1,
|
25011
|
+
"page.": 1,
|
25012
|
+
"compares": 1,
|
25013
|
+
"newer": 1,
|
25014
|
+
"older": 2,
|
25015
|
+
"version": 1,
|
25016
|
+
"noting": 1,
|
25017
|
+
"any": 1,
|
25018
|
+
"relative": 1,
|
25019
|
+
"So": 1,
|
25020
|
+
"example": 1,
|
25021
|
+
"indicated": 1,
|
25022
|
+
"no": 1,
|
25023
|
+
"longer": 1,
|
25024
|
+
"present": 1,
|
25025
|
+
"For": 1,
|
25026
|
+
"more": 1,
|
25027
|
+
"information": 1,
|
25028
|
+
"about": 1,
|
25029
|
+
"SDK": 1,
|
25030
|
+
"see": 1,
|
25031
|
+
"<a>": 8,
|
25032
|
+
"href=": 9,
|
25033
|
+
"target=": 3,
|
25034
|
+
"product": 1,
|
25035
|
+
"site": 1,
|
25036
|
+
"</a>": 8,
|
25037
|
+
".": 1,
|
25038
|
+
"if": 4,
|
25039
|
+
"no_delta": 1,
|
25040
|
+
"<h3>": 1,
|
25041
|
+
"Congratulation": 1,
|
25042
|
+
"</h3>": 1,
|
25043
|
+
"No": 1,
|
25044
|
+
"were": 1,
|
25045
|
+
"detected": 1,
|
25046
|
+
"between": 1,
|
25047
|
+
"two": 1,
|
25048
|
+
"provided": 1,
|
25049
|
+
"APIs.": 1,
|
25050
|
+
"endif": 4,
|
25051
|
+
"removed_packages": 2,
|
25052
|
+
"Table": 3,
|
25053
|
+
"name": 3,
|
25054
|
+
"rows": 3,
|
25055
|
+
"{": 3,
|
25056
|
+
"it.from": 1,
|
25057
|
+
"ModelElementRow": 1,
|
25058
|
+
"}": 3,
|
25059
|
+
"<br/>": 3,
|
25060
|
+
"added_packages": 2,
|
25061
|
+
"it.to": 2,
|
25062
|
+
"PackageAddedLink": 1,
|
25063
|
+
"SimpleTableRow": 2,
|
25064
|
+
"changed_packages": 2,
|
25065
|
+
"PackageChangedLink": 1,
|
25066
|
+
"</div>": 11,
|
25067
|
+
"</body>": 2,
|
25068
|
+
"</html>": 2,
|
25069
|
+
"html": 1,
|
25070
|
+
"XHTML": 1,
|
25071
|
+
"1": 1,
|
25072
|
+
"Transitional": 1,
|
25073
|
+
"xhtml1": 2,
|
25074
|
+
"transitional": 1,
|
25075
|
+
"xmlns=": 1,
|
25076
|
+
"<meta>": 1,
|
25077
|
+
"equiv=": 1,
|
25078
|
+
"content=": 1,
|
25079
|
+
"Related": 2,
|
25080
|
+
"Pages": 2,
|
25081
|
+
"<link>": 1,
|
25082
|
+
"rel=": 1,
|
25083
|
+
"type=": 1,
|
25084
|
+
"</head>": 1,
|
25085
|
+
"Main": 1,
|
25086
|
+
"Page": 1,
|
25087
|
+
"&": 3,
|
25088
|
+
"middot": 3,
|
25089
|
+
";": 3,
|
25090
|
+
"Class": 2,
|
25091
|
+
"Overview": 2,
|
25092
|
+
"Hierarchy": 1,
|
25093
|
+
"All": 1,
|
25094
|
+
"Classes": 1,
|
25095
|
+
"Here": 1,
|
25096
|
+
"is": 1,
|
25097
|
+
"list": 1,
|
25098
|
+
"all": 1,
|
25099
|
+
"related": 1,
|
25100
|
+
"documentation": 1,
|
25101
|
+
"pages": 1,
|
25102
|
+
"<table>": 1,
|
25103
|
+
"<tr>": 2,
|
25104
|
+
"id=": 2,
|
25105
|
+
"<td>": 4,
|
25106
|
+
"<img>": 2,
|
25107
|
+
"src=": 2,
|
25108
|
+
"alt=": 2,
|
25109
|
+
"width=": 1,
|
25110
|
+
"height=": 2,
|
25111
|
+
"</td>": 4,
|
25112
|
+
"</tr>": 2,
|
25113
|
+
"16": 1,
|
25114
|
+
"Layout": 1,
|
25115
|
+
"System": 1,
|
25116
|
+
"</table>": 1,
|
25117
|
+
"Generated": 1,
|
25118
|
+
"with": 1,
|
25119
|
+
"Doxygen": 1
|
25120
|
+
},
|
24910
25121
|
"Hy": {
|
24911
25122
|
";": 4,
|
24912
25123
|
"Fibonacci": 1,
|
@@ -33947,6 +34158,347 @@
|
|
33947
34158
|
"info": 1,
|
33948
34159
|
"reproduce": 1
|
33949
34160
|
},
|
34161
|
+
"Liquid": {
|
34162
|
+
"<?xml>": 1,
|
34163
|
+
"version=": 2,
|
34164
|
+
"encoding=": 1,
|
34165
|
+
"<rss>": 1,
|
34166
|
+
"xmlns": 6,
|
34167
|
+
"content=": 2,
|
34168
|
+
"wfw=": 1,
|
34169
|
+
"dc=": 1,
|
34170
|
+
"atom=": 1,
|
34171
|
+
"sy=": 1,
|
34172
|
+
"slash=": 1,
|
34173
|
+
"<channel>": 1,
|
34174
|
+
"<title>": 4,
|
34175
|
+
"xml": 2,
|
34176
|
+
"lang=": 3,
|
34177
|
+
"Jekyll": 6,
|
34178
|
+
"Simple": 3,
|
34179
|
+
"blog": 3,
|
34180
|
+
"-": 17,
|
34181
|
+
"aware": 3,
|
34182
|
+
"static": 5,
|
34183
|
+
"sites": 3,
|
34184
|
+
"</title>": 4,
|
34185
|
+
"<atom:link>": 1,
|
34186
|
+
"type=": 3,
|
34187
|
+
"href=": 19,
|
34188
|
+
"rel=": 3,
|
34189
|
+
"<link>": 3,
|
34190
|
+
"http": 8,
|
34191
|
+
"//jekyllrb.com/": 2,
|
34192
|
+
"</link>": 3,
|
34193
|
+
"<pubDate>": 2,
|
34194
|
+
"{": 119,
|
34195
|
+
"site.time": 2,
|
34196
|
+
"|": 39,
|
34197
|
+
"date_to_rfc822": 3,
|
34198
|
+
"}": 119,
|
34199
|
+
"</pubDate>": 2,
|
34200
|
+
"<lastBuildDate>": 1,
|
34201
|
+
"</lastBuildDate>": 1,
|
34202
|
+
"<language>": 1,
|
34203
|
+
"en": 1,
|
34204
|
+
"US": 1,
|
34205
|
+
"</language>": 1,
|
34206
|
+
"<generator>": 1,
|
34207
|
+
"v": 1,
|
34208
|
+
"jekyll.version": 1,
|
34209
|
+
"</generator>": 1,
|
34210
|
+
"<description>": 3,
|
34211
|
+
"Transform": 3,
|
34212
|
+
"your": 7,
|
34213
|
+
"plain": 3,
|
34214
|
+
"text": 3,
|
34215
|
+
"into": 3,
|
34216
|
+
"websites": 3,
|
34217
|
+
"and": 6,
|
34218
|
+
"blogs.": 3,
|
34219
|
+
"</description>": 3,
|
34220
|
+
"<image>": 1,
|
34221
|
+
"<url>": 1,
|
34222
|
+
"//jekyllrb.com/img/logo": 1,
|
34223
|
+
"rss.png": 1,
|
34224
|
+
"</url>": 1,
|
34225
|
+
"<width>": 1,
|
34226
|
+
"</width>": 1,
|
34227
|
+
"<height>": 1,
|
34228
|
+
"</height>": 1,
|
34229
|
+
"</image>": 1,
|
34230
|
+
"%": 58,
|
34231
|
+
"for": 11,
|
34232
|
+
"post": 1,
|
34233
|
+
"in": 12,
|
34234
|
+
"site.posts": 2,
|
34235
|
+
"<item>": 1,
|
34236
|
+
"post.title": 1,
|
34237
|
+
"xml_escape": 4,
|
34238
|
+
"//jekyllrb.com": 2,
|
34239
|
+
"post.url": 2,
|
34240
|
+
"post.date": 1,
|
34241
|
+
"<dc:creator>": 1,
|
34242
|
+
"post.author": 1,
|
34243
|
+
"</dc:creator>": 1,
|
34244
|
+
"tag": 6,
|
34245
|
+
"post.tags": 1,
|
34246
|
+
"<category>": 2,
|
34247
|
+
"</category>": 2,
|
34248
|
+
"endfor": 9,
|
34249
|
+
"cat": 2,
|
34250
|
+
"post.categories": 1,
|
34251
|
+
"<guid>": 1,
|
34252
|
+
"isPermaLink=": 1,
|
34253
|
+
"</guid>": 1,
|
34254
|
+
"post.content": 1,
|
34255
|
+
"</item>": 1,
|
34256
|
+
"</channel>": 1,
|
34257
|
+
"</rss>": 1,
|
34258
|
+
"<section>": 4,
|
34259
|
+
"class=": 58,
|
34260
|
+
"<div>": 41,
|
34261
|
+
"<p>": 12,
|
34262
|
+
"&": 10,
|
34263
|
+
"nbsp": 4,
|
34264
|
+
";": 10,
|
34265
|
+
"</p>": 12,
|
34266
|
+
"</div>": 41,
|
34267
|
+
"</section>": 4,
|
34268
|
+
"<h2>": 7,
|
34269
|
+
"</h2>": 7,
|
34270
|
+
"No": 1,
|
34271
|
+
"more": 2,
|
34272
|
+
"databases": 1,
|
34273
|
+
"comment": 1,
|
34274
|
+
"moderation": 1,
|
34275
|
+
"or": 2,
|
34276
|
+
"pesky": 1,
|
34277
|
+
"updates": 1,
|
34278
|
+
"to": 3,
|
34279
|
+
"install": 2,
|
34280
|
+
"just": 1,
|
34281
|
+
"<em>": 3,
|
34282
|
+
"content": 1,
|
34283
|
+
"</em>": 3,
|
34284
|
+
".": 5,
|
34285
|
+
"<a>": 18,
|
34286
|
+
"How": 1,
|
34287
|
+
"works": 1,
|
34288
|
+
"rarr": 4,
|
34289
|
+
"</a>": 18,
|
34290
|
+
"Static": 2,
|
34291
|
+
"Markdown": 1,
|
34292
|
+
"(": 2,
|
34293
|
+
"Textile": 1,
|
34294
|
+
")": 2,
|
34295
|
+
"Liquid": 1,
|
34296
|
+
"HTML": 1,
|
34297
|
+
"<span>": 15,
|
34298
|
+
"amp": 1,
|
34299
|
+
"</span>": 15,
|
34300
|
+
"CSS": 1,
|
34301
|
+
"go": 1,
|
34302
|
+
"in.": 1,
|
34303
|
+
"come": 1,
|
34304
|
+
"out": 1,
|
34305
|
+
"ready": 1,
|
34306
|
+
"deployment.": 1,
|
34307
|
+
"template": 1,
|
34308
|
+
"guide": 1,
|
34309
|
+
"Blog": 1,
|
34310
|
+
"Permalinks": 1,
|
34311
|
+
"categories": 1,
|
34312
|
+
"pages": 1,
|
34313
|
+
"posts": 1,
|
34314
|
+
"custom": 2,
|
34315
|
+
"layouts": 1,
|
34316
|
+
"are": 3,
|
34317
|
+
"all": 1,
|
34318
|
+
"first": 1,
|
34319
|
+
"class": 1,
|
34320
|
+
"citizens": 1,
|
34321
|
+
"here.": 1,
|
34322
|
+
"Migrate": 1,
|
34323
|
+
"<h4>": 2,
|
34324
|
+
"Get": 1,
|
34325
|
+
"up": 1,
|
34326
|
+
"running": 1,
|
34327
|
+
"seconds": 1,
|
34328
|
+
"</h4>": 2,
|
34329
|
+
"Quick": 1,
|
34330
|
+
"start": 1,
|
34331
|
+
"Instructions": 1,
|
34332
|
+
"gem": 1,
|
34333
|
+
"jekyll": 3,
|
34334
|
+
"new": 1,
|
34335
|
+
"my": 2,
|
34336
|
+
"awesome": 3,
|
34337
|
+
"site": 4,
|
34338
|
+
"cd": 1,
|
34339
|
+
"/my": 1,
|
34340
|
+
"serve": 1,
|
34341
|
+
"#": 1,
|
34342
|
+
"Now": 1,
|
34343
|
+
"browse": 1,
|
34344
|
+
"//localhost": 1,
|
34345
|
+
"<img>": 5,
|
34346
|
+
"src=": 6,
|
34347
|
+
"width=": 1,
|
34348
|
+
"height=": 1,
|
34349
|
+
"alt=": 3,
|
34350
|
+
"<strong>": 1,
|
34351
|
+
"Free": 1,
|
34352
|
+
"hosting": 2,
|
34353
|
+
"</strong>": 1,
|
34354
|
+
"with": 2,
|
34355
|
+
"GitHub": 4,
|
34356
|
+
"Pages": 3,
|
34357
|
+
"Sick": 1,
|
34358
|
+
"of": 1,
|
34359
|
+
"dealing": 1,
|
34360
|
+
"companies": 1,
|
34361
|
+
"powered": 1,
|
34362
|
+
"by": 2,
|
34363
|
+
"so": 1,
|
34364
|
+
"you": 1,
|
34365
|
+
"can": 1,
|
34366
|
+
"easily": 1,
|
34367
|
+
"deploy": 1,
|
34368
|
+
"using": 1,
|
34369
|
+
"free": 1,
|
34370
|
+
"mdash": 1,
|
34371
|
+
"domain": 1,
|
34372
|
+
"name": 1,
|
34373
|
+
"all.": 1,
|
34374
|
+
"Learn": 1,
|
34375
|
+
"about": 1,
|
34376
|
+
"<!DOCTYPE>": 1,
|
34377
|
+
"html": 1,
|
34378
|
+
"PUBLIC": 1,
|
34379
|
+
"W3C": 1,
|
34380
|
+
"DTD": 2,
|
34381
|
+
"XHTML": 1,
|
34382
|
+
"1": 1,
|
34383
|
+
"0": 1,
|
34384
|
+
"Transitional": 1,
|
34385
|
+
"EN": 1,
|
34386
|
+
"www": 1,
|
34387
|
+
"w3": 1,
|
34388
|
+
"org": 1,
|
34389
|
+
"TR": 1,
|
34390
|
+
"xhtml1": 2,
|
34391
|
+
"transitional": 1,
|
34392
|
+
"dtd": 1,
|
34393
|
+
"<html>": 1,
|
34394
|
+
"xmlns=": 1,
|
34395
|
+
"<head>": 1,
|
34396
|
+
"<meta>": 1,
|
34397
|
+
"equiv=": 1,
|
34398
|
+
"shop.name": 2,
|
34399
|
+
"page_title": 1,
|
34400
|
+
"global_asset_url": 5,
|
34401
|
+
"stylesheet_tag": 3,
|
34402
|
+
"script_tag": 5,
|
34403
|
+
"shopify_asset_url": 1,
|
34404
|
+
"asset_url": 2,
|
34405
|
+
"content_for_header": 1,
|
34406
|
+
"</head>": 1,
|
34407
|
+
"<body>": 1,
|
34408
|
+
"id=": 28,
|
34409
|
+
"Skip": 1,
|
34410
|
+
"navigation.": 1,
|
34411
|
+
"if": 5,
|
34412
|
+
"cart.item_count": 7,
|
34413
|
+
"style=": 5,
|
34414
|
+
"There": 1,
|
34415
|
+
"pluralize": 3,
|
34416
|
+
"title=": 3,
|
34417
|
+
"cart": 1,
|
34418
|
+
"Your": 1,
|
34419
|
+
"subtotal": 1,
|
34420
|
+
"is": 1,
|
34421
|
+
"cart.total_price": 2,
|
34422
|
+
"money": 5,
|
34423
|
+
"item": 1,
|
34424
|
+
"cart.items": 1,
|
34425
|
+
"onMouseover=": 2,
|
34426
|
+
"onMouseout=": 2,
|
34427
|
+
"<br>": 2,
|
34428
|
+
"endif": 5,
|
34429
|
+
"<h1>": 1,
|
34430
|
+
"</h1>": 1,
|
34431
|
+
"onclick=": 1,
|
34432
|
+
"View": 1,
|
34433
|
+
"Mini": 1,
|
34434
|
+
"Cart": 1,
|
34435
|
+
"<hr>": 3,
|
34436
|
+
"content_for_layout": 1,
|
34437
|
+
"<ul>": 5,
|
34438
|
+
"link": 2,
|
34439
|
+
"linklists.main": 1,
|
34440
|
+
"menu.links": 1,
|
34441
|
+
"<li>": 5,
|
34442
|
+
"link.title": 2,
|
34443
|
+
"link_to": 2,
|
34444
|
+
"link.url": 2,
|
34445
|
+
"</li>": 5,
|
34446
|
+
"</ul>": 5,
|
34447
|
+
"tags": 1,
|
34448
|
+
"collection.tags": 1,
|
34449
|
+
"link_to_add_tag": 1,
|
34450
|
+
"highlight_active_tag": 1,
|
34451
|
+
"link_to_tag": 1,
|
34452
|
+
"linklists.footer.links": 1,
|
34453
|
+
"All": 1,
|
34454
|
+
"prices": 1,
|
34455
|
+
"shop.currency": 1,
|
34456
|
+
"Powered": 1,
|
34457
|
+
"Shopify": 1,
|
34458
|
+
"</body>": 1,
|
34459
|
+
"</html>": 1,
|
34460
|
+
"jsonify": 1,
|
34461
|
+
"<h3>": 1,
|
34462
|
+
"We": 1,
|
34463
|
+
"have": 1,
|
34464
|
+
"wonderful": 1,
|
34465
|
+
"products": 1,
|
34466
|
+
"</h3>": 1,
|
34467
|
+
"image": 1,
|
34468
|
+
"product.images": 1,
|
34469
|
+
"forloop.first": 1,
|
34470
|
+
"else": 1,
|
34471
|
+
"product.title": 1,
|
34472
|
+
"Vendor": 1,
|
34473
|
+
"product.vendor": 1,
|
34474
|
+
"link_to_vendor": 1,
|
34475
|
+
"Type": 1,
|
34476
|
+
"product.type": 1,
|
34477
|
+
"link_to_type": 1,
|
34478
|
+
"<small>": 1,
|
34479
|
+
"product.price_min": 1,
|
34480
|
+
"product.price_varies": 1,
|
34481
|
+
"product.price_max": 1,
|
34482
|
+
"</small>": 1,
|
34483
|
+
"<form>": 1,
|
34484
|
+
"action=": 1,
|
34485
|
+
"method=": 1,
|
34486
|
+
"<select>": 1,
|
34487
|
+
"name=": 2,
|
34488
|
+
"variant": 1,
|
34489
|
+
"product.variants": 1,
|
34490
|
+
"<option>": 1,
|
34491
|
+
"value=": 2,
|
34492
|
+
"variant.title": 1,
|
34493
|
+
"variant.price": 1,
|
34494
|
+
"</option>": 1,
|
34495
|
+
"</select>": 1,
|
34496
|
+
"<input>": 1,
|
34497
|
+
"</form>": 1,
|
34498
|
+
"product.description": 1,
|
34499
|
+
"<script>": 1,
|
34500
|
+
"</script>": 1
|
34501
|
+
},
|
33950
34502
|
"Literate Agda": {
|
33951
34503
|
"documentclass": 1,
|
33952
34504
|
"{": 35,
|
@@ -56012,6 +56564,131 @@
|
|
56012
56564
|
"ast.eval": 1,
|
56013
56565
|
"Env.new": 1
|
56014
56566
|
},
|
56567
|
+
"Smalltalk": {
|
56568
|
+
"Object": 1,
|
56569
|
+
"subclass": 2,
|
56570
|
+
"#Philosophers": 1,
|
56571
|
+
"instanceVariableNames": 1,
|
56572
|
+
"classVariableNames": 1,
|
56573
|
+
"poolDictionaries": 1,
|
56574
|
+
"category": 1,
|
56575
|
+
"Philosophers": 3,
|
56576
|
+
"class": 1,
|
56577
|
+
"methodsFor": 2,
|
56578
|
+
"new": 4,
|
56579
|
+
"self": 25,
|
56580
|
+
"shouldNotImplement": 1,
|
56581
|
+
"quantity": 2,
|
56582
|
+
"super": 1,
|
56583
|
+
"initialize": 3,
|
56584
|
+
"dine": 4,
|
56585
|
+
"seconds": 2,
|
56586
|
+
"(": 19,
|
56587
|
+
"Delay": 3,
|
56588
|
+
"forSeconds": 1,
|
56589
|
+
")": 19,
|
56590
|
+
"wait.": 5,
|
56591
|
+
"philosophers": 2,
|
56592
|
+
"do": 1,
|
56593
|
+
"[": 18,
|
56594
|
+
"each": 5,
|
56595
|
+
"|": 18,
|
56596
|
+
"terminate": 1,
|
56597
|
+
"]": 18,
|
56598
|
+
".": 16,
|
56599
|
+
"size": 4,
|
56600
|
+
"leftFork": 6,
|
56601
|
+
"n": 11,
|
56602
|
+
"forks": 5,
|
56603
|
+
"at": 3,
|
56604
|
+
"rightFork": 6,
|
56605
|
+
"ifTrue": 1,
|
56606
|
+
"ifFalse": 1,
|
56607
|
+
"+": 1,
|
56608
|
+
"eating": 3,
|
56609
|
+
"Semaphore": 2,
|
56610
|
+
"new.": 2,
|
56611
|
+
"-": 1,
|
56612
|
+
"timesRepeat": 1,
|
56613
|
+
"signal": 1,
|
56614
|
+
"randy": 3,
|
56615
|
+
"Random": 1,
|
56616
|
+
"to": 2,
|
56617
|
+
"collect": 2,
|
56618
|
+
"forMutualExclusion": 1,
|
56619
|
+
"philosopher": 2,
|
56620
|
+
"philosopherCode": 3,
|
56621
|
+
"status": 8,
|
56622
|
+
"n.": 2,
|
56623
|
+
"printString": 1,
|
56624
|
+
"true": 2,
|
56625
|
+
"whileTrue": 1,
|
56626
|
+
"Transcript": 5,
|
56627
|
+
"nextPutAll": 5,
|
56628
|
+
";": 8,
|
56629
|
+
"nl.": 5,
|
56630
|
+
"forMilliseconds": 2,
|
56631
|
+
"next": 2,
|
56632
|
+
"*": 2,
|
56633
|
+
"critical": 1,
|
56634
|
+
"signal.": 2,
|
56635
|
+
"newProcess": 1,
|
56636
|
+
"priority": 1,
|
56637
|
+
"Processor": 1,
|
56638
|
+
"userBackgroundPriority": 1,
|
56639
|
+
"name": 1,
|
56640
|
+
"resume": 1,
|
56641
|
+
"yourself": 1,
|
56642
|
+
"Koan": 1,
|
56643
|
+
"TestBasic": 1,
|
56644
|
+
"<comment:>": 1,
|
56645
|
+
"A": 1,
|
56646
|
+
"collection": 1,
|
56647
|
+
"of": 1,
|
56648
|
+
"introductory": 1,
|
56649
|
+
"tests": 2,
|
56650
|
+
"testDeclarationAndAssignment": 1,
|
56651
|
+
"declaration": 2,
|
56652
|
+
"anotherDeclaration": 2,
|
56653
|
+
"_": 1,
|
56654
|
+
"expect": 10,
|
56655
|
+
"fillMeIn": 10,
|
56656
|
+
"toEqual": 10,
|
56657
|
+
"declaration.": 1,
|
56658
|
+
"anotherDeclaration.": 1,
|
56659
|
+
"testEqualSignIsNotAnAssignmentOperator": 1,
|
56660
|
+
"variableA": 6,
|
56661
|
+
"variableB": 5,
|
56662
|
+
"value": 2,
|
56663
|
+
"variableB.": 2,
|
56664
|
+
"testMultipleStatementsInASingleLine": 1,
|
56665
|
+
"variableC": 2,
|
56666
|
+
"variableA.": 1,
|
56667
|
+
"variableC.": 1,
|
56668
|
+
"testInequality": 1,
|
56669
|
+
"testLogicalOr": 1,
|
56670
|
+
"expression": 4,
|
56671
|
+
"<": 2,
|
56672
|
+
"expression.": 2,
|
56673
|
+
"testLogicalAnd": 1,
|
56674
|
+
"&": 1,
|
56675
|
+
"testNot": 1,
|
56676
|
+
"not.": 1,
|
56677
|
+
"testSimpleChainMatches": 1,
|
56678
|
+
"e": 11,
|
56679
|
+
"eCtrl": 3,
|
56680
|
+
"eventKey": 3,
|
56681
|
+
"e.": 1,
|
56682
|
+
"ctrl": 5,
|
56683
|
+
"true.": 1,
|
56684
|
+
"assert": 2,
|
56685
|
+
"matches": 4,
|
56686
|
+
"{": 4,
|
56687
|
+
"}": 4,
|
56688
|
+
"eCtrl.": 2,
|
56689
|
+
"deny": 2,
|
56690
|
+
"a": 1
|
56691
|
+
},
|
56015
56692
|
"SourcePawn": {
|
56016
56693
|
"//#define": 1,
|
56017
56694
|
"DEBUG": 2,
|
@@ -61941,6 +62618,7 @@
|
|
61941
62618
|
"Groovy Server Pages": 91,
|
61942
62619
|
"Haml": 4,
|
61943
62620
|
"Handlebars": 69,
|
62621
|
+
"HTML": 413,
|
61944
62622
|
"Hy": 155,
|
61945
62623
|
"IDL": 418,
|
61946
62624
|
"Idris": 148,
|
@@ -61962,6 +62640,7 @@
|
|
61962
62640
|
"Latte": 759,
|
61963
62641
|
"Less": 39,
|
61964
62642
|
"LFE": 1711,
|
62643
|
+
"Liquid": 1234,
|
61965
62644
|
"Literate Agda": 478,
|
61966
62645
|
"Literate CoffeeScript": 275,
|
61967
62646
|
"LiveScript": 123,
|
@@ -62031,6 +62710,7 @@
|
|
62031
62710
|
"ShellSession": 233,
|
62032
62711
|
"Shen": 3472,
|
62033
62712
|
"Slash": 187,
|
62713
|
+
"Smalltalk": 423,
|
62034
62714
|
"SourcePawn": 2080,
|
62035
62715
|
"SQL": 1485,
|
62036
62716
|
"Squirrel": 130,
|
@@ -62116,6 +62796,7 @@
|
|
62116
62796
|
"Groovy Server Pages": 4,
|
62117
62797
|
"Haml": 1,
|
62118
62798
|
"Handlebars": 2,
|
62799
|
+
"HTML": 2,
|
62119
62800
|
"Hy": 2,
|
62120
62801
|
"IDL": 4,
|
62121
62802
|
"Idris": 1,
|
@@ -62137,6 +62818,7 @@
|
|
62137
62818
|
"Latte": 2,
|
62138
62819
|
"Less": 1,
|
62139
62820
|
"LFE": 4,
|
62821
|
+
"Liquid": 5,
|
62140
62822
|
"Literate Agda": 1,
|
62141
62823
|
"Literate CoffeeScript": 1,
|
62142
62824
|
"LiveScript": 1,
|
@@ -62206,6 +62888,7 @@
|
|
62206
62888
|
"ShellSession": 3,
|
62207
62889
|
"Shen": 3,
|
62208
62890
|
"Slash": 1,
|
62891
|
+
"Smalltalk": 3,
|
62209
62892
|
"SourcePawn": 1,
|
62210
62893
|
"SQL": 5,
|
62211
62894
|
"Squirrel": 1,
|
@@ -62236,5 +62919,5 @@
|
|
62236
62919
|
"YAML": 2,
|
62237
62920
|
"Zephir": 2
|
62238
62921
|
},
|
62239
|
-
"md5": "
|
62922
|
+
"md5": "127e4abbd61c3dfa815c46752237e812"
|
62240
62923
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-linguist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.10.
|
4
|
+
version: 2.10.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-04-
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: charlock_holmes
|
@@ -145,6 +145,7 @@ files:
|
|
145
145
|
- lib/linguist/samples.rb
|
146
146
|
- lib/linguist/tokenizer.rb
|
147
147
|
- lib/linguist/vendor.yml
|
148
|
+
- lib/linguist/version.rb
|
148
149
|
- lib/linguist.rb
|
149
150
|
- bin/linguist
|
150
151
|
homepage: https://github.com/github/linguist
|
@@ -172,4 +173,3 @@ signing_key:
|
|
172
173
|
specification_version: 4
|
173
174
|
summary: GitHub Language detection
|
174
175
|
test_files: []
|
175
|
-
has_rdoc:
|