github-linguist 2.10.10 → 2.10.11
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/lib/linguist/generated.rb +2 -4
- data/lib/linguist/languages.yml +9 -0
- data/lib/linguist/vendor.yml +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 537dd46b5a61f2c1de7196d194831fd46e37caa6
|
|
4
|
+
data.tar.gz: f5cd8f1e4d4e5d486d147abc669765b7b3d0ea23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4354ff6fc7a7c146df4c6d76657dd677e51d674ab6a09a09a5287a1e1a010655a135e4db0243ae680a1a6a24400826aade8d3c8cb22423f9d7d3bc7639dd6177
|
|
7
|
+
data.tar.gz: 65e0f8f5d339c7a7ecb3f49a7fd80a500d69b2d23857c01fba02a49dce17945b3e3e1ecaf5cff0b289287dc01e4abfd3863e4d4880968609a279b999018eefb3
|
data/lib/linguist/generated.rb
CHANGED
|
@@ -222,16 +222,14 @@ module Linguist
|
|
|
222
222
|
lines[1].include?("#include <jni.h>")
|
|
223
223
|
end
|
|
224
224
|
|
|
225
|
-
#
|
|
226
|
-
# for humans in pull requests.
|
|
225
|
+
# Internal: Is the blob part of node_modules/, which are not meant for humans in pull requests.
|
|
227
226
|
#
|
|
228
227
|
# Returns true or false.
|
|
229
228
|
def node_modules?
|
|
230
229
|
!!name.match(/node_modules\//)
|
|
231
230
|
end
|
|
232
231
|
|
|
233
|
-
# the
|
|
234
|
-
# In general not meant for humans in pull requests.
|
|
232
|
+
# Internal: Is the blob a generated php composer lock file?
|
|
235
233
|
#
|
|
236
234
|
# Returns true or false.
|
|
237
235
|
def composer_lock?
|
data/lib/linguist/languages.yml
CHANGED
|
@@ -718,6 +718,12 @@ Handlebars:
|
|
|
718
718
|
- .html.handlebars
|
|
719
719
|
- .html.hbs
|
|
720
720
|
|
|
721
|
+
Harbour:
|
|
722
|
+
type: programming
|
|
723
|
+
lexer: Text only
|
|
724
|
+
color: "#0e60e3"
|
|
725
|
+
primary_extension: .hb
|
|
726
|
+
|
|
721
727
|
Haskell:
|
|
722
728
|
type: programming
|
|
723
729
|
color: "#29b544"
|
|
@@ -1106,6 +1112,7 @@ OCaml:
|
|
|
1106
1112
|
primary_extension: .ml
|
|
1107
1113
|
extensions:
|
|
1108
1114
|
- .eliomi
|
|
1115
|
+
- .ml4
|
|
1109
1116
|
- .mli
|
|
1110
1117
|
- .mll
|
|
1111
1118
|
- .mly
|
|
@@ -1300,6 +1307,8 @@ Prolog:
|
|
|
1300
1307
|
type: programming
|
|
1301
1308
|
color: "#74283c"
|
|
1302
1309
|
primary_extension: .prolog
|
|
1310
|
+
extensions:
|
|
1311
|
+
- .pl
|
|
1303
1312
|
|
|
1304
1313
|
Protocol Buffer:
|
|
1305
1314
|
type: markup
|
data/lib/linguist/vendor.yml
CHANGED