zapwhite 2.18.0 → 2.19.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/.ruby-version +1 -1
- data/.travis.yml +1 -1
- data/lib/reality/zapwhite.rb +6 -1
- data/zapwhite.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac8e043b355f3da81cb88546c8402d9535def365
|
|
4
|
+
data.tar.gz: 1aeaccfe800b0640825cbb93354561fec3d5f987
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a99adc59cec9961900f50ac1f06c1c6300f7a0ab497170e9d2cdb82207bdb3c2d1c1cecfd149bf0f5119f91e21ab6e9978385c3775f2dbafd2fe4f0fd4ebab9
|
|
7
|
+
data.tar.gz: 2d73c40e2dc44bf70ce23fe69f8189fb5e194d70ad39d2c5a7284894d5aedcc86729a02b3e76728b3788dff76417e1ec317d78386a032199577d09b39285c986
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.7.2
|
data/.travis.yml
CHANGED
data/lib/reality/zapwhite.rb
CHANGED
|
@@ -123,7 +123,7 @@ module Reality
|
|
|
123
123
|
end
|
|
124
124
|
self.additional_gitattribute_rules.each do |line|
|
|
125
125
|
rule = Reality::Git::AttributeRule.parse_line(line)
|
|
126
|
-
attributes.rule(rule.pattern, rule.attributes.merge(:priority => 2))
|
|
126
|
+
attributes.rule(rule.pattern, rule.attributes.merge(:priority => 2)) if rule
|
|
127
127
|
end
|
|
128
128
|
attributes
|
|
129
129
|
end
|
|
@@ -295,6 +295,11 @@ module Reality
|
|
|
295
295
|
attributes.text_rule('*.wat')
|
|
296
296
|
attributes.binary_rule('*.wasm')
|
|
297
297
|
|
|
298
|
+
# WebGL Shader files
|
|
299
|
+
attributes.text_rule('*.frag')
|
|
300
|
+
attributes.text_rule('*.vert')
|
|
301
|
+
attributes.text_rule('*.shader')
|
|
302
|
+
|
|
298
303
|
# Rust defaults
|
|
299
304
|
attributes.text_rule('*.rs')
|
|
300
305
|
|
data/zapwhite.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zapwhite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Donald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gitattributes
|