github-linguist 5.3.2 → 5.3.3
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/ext/linguist/lex.linguist_yy.c +248 -6291
- data/ext/linguist/lex.linguist_yy.h +5 -22
- data/ext/linguist/tokenizer.l +11 -11
- data/grammars/source.julia.console.json +52 -0
- data/grammars/source.julia.json +304 -59
- data/lib/linguist/heuristics.rb +1 -1
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +10 -0
- data/lib/linguist/linguist.bundle +0 -0
- data/lib/linguist/samples.json +20383 -12969
- data/lib/linguist/vendor.yml +12 -0
- data/lib/linguist/version.rb +1 -1
- metadata +3 -2
data/lib/linguist/vendor.yml
CHANGED
@@ -81,6 +81,9 @@
|
|
81
81
|
# Animate.css
|
82
82
|
- (^|/)animate\.(css|less|scss|styl)$
|
83
83
|
|
84
|
+
# Select2
|
85
|
+
- (^|/)select2/.*\.(css|scss|js)$
|
86
|
+
|
84
87
|
# Vendored dependencies
|
85
88
|
- third[-_]?party/
|
86
89
|
- 3rd[-_]?party/
|
@@ -119,6 +122,15 @@
|
|
119
122
|
# jQuery File Upload
|
120
123
|
- (^|/)jquery\.fileupload(-\w+)?\.js$
|
121
124
|
|
125
|
+
# jQuery dataTables
|
126
|
+
- jquery.dataTables.js
|
127
|
+
|
128
|
+
# bootboxjs
|
129
|
+
- bootbox.js
|
130
|
+
|
131
|
+
# pdf-worker
|
132
|
+
- pdf.worker.js
|
133
|
+
|
122
134
|
# Slick
|
123
135
|
- (^|/)slick\.\w+.js$
|
124
136
|
|
data/lib/linguist/version.rb
CHANGED
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: 5.3.
|
4
|
+
version: 5.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: charlock_holmes
|
@@ -403,6 +403,7 @@ files:
|
|
403
403
|
- grammars/source.js.regexp.replacement.json
|
404
404
|
- grammars/source.jsdoc.json
|
405
405
|
- grammars/source.json.json
|
406
|
+
- grammars/source.julia.console.json
|
406
407
|
- grammars/source.julia.json
|
407
408
|
- grammars/source.lean.json
|
408
409
|
- grammars/source.lid.json
|