zapwhite 2.15.0 → 2.16.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/lib/reality/zapwhite.rb +1 -1
- data/test/reality/test_zapwhite.rb +4 -4
- data/zapwhite.gemspec +1 -1
- 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: 4e160084f64ed37a9762d3e604cd96990a8c2ec1
|
|
4
|
+
data.tar.gz: c7e9b90f5ade1c8c347b3fb81fd4e3a6588b9cb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfac417b42429f8e794f1b542523f4bec38d34943c3ddfd4b6d887ba114761d320229f2751f84621459d8a5d3c15c7e66e45d6023a63badbeb0548af102b97e3
|
|
7
|
+
data.tar.gz: babddd482cd7f2a7bf307a0ea91c628e93c27b5ed53708626cfab833e98da950fa243b838bc80be00a318d771962094ee43af51233f0bd6b4b95cd1f1e21838a
|
data/lib/reality/zapwhite.rb
CHANGED
|
@@ -22,7 +22,7 @@ module Reality
|
|
|
22
22
|
@base_directory = base_directory
|
|
23
23
|
@attributes = Reality::Git::Attributes.parse(@base_directory)
|
|
24
24
|
# .ijwb is Bazel-IDEA directory while .idea is IDEAs normal directory structure.
|
|
25
|
-
@exclude_patterns = %w(vendor/.* node_modules/.* .ijwb
|
|
25
|
+
@exclude_patterns = %w(vendor/.* node_modules/.* .ijwb/.* .idea/.*) + load_braid_mirrors
|
|
26
26
|
@check_only = false
|
|
27
27
|
@additional_gitattribute_rules = []
|
|
28
28
|
end
|
|
@@ -207,8 +207,8 @@ Additional .gitattribute rules:
|
|
|
207
207
|
Exclude patterns:
|
|
208
208
|
* vendor/.*
|
|
209
209
|
* node_modules/.*
|
|
210
|
-
* .ijwb
|
|
211
|
-
* .idea
|
|
210
|
+
* .ijwb/.*
|
|
211
|
+
* .idea/.*
|
|
212
212
|
Fixing: .gitattributes
|
|
213
213
|
OUTPUT
|
|
214
214
|
end
|
|
@@ -269,8 +269,8 @@ Additional .gitattribute rules:
|
|
|
269
269
|
Exclude patterns:
|
|
270
270
|
* vendor/.*
|
|
271
271
|
* node_modules/.*
|
|
272
|
-
* .ijwb
|
|
273
|
-
* .idea
|
|
272
|
+
* .ijwb/.*
|
|
273
|
+
* .idea/.*
|
|
274
274
|
* vendor/docs/way_of_stock
|
|
275
275
|
* vendor/tools/buildr_plus
|
|
276
276
|
* vendor/tools/dbt
|
data/zapwhite.gemspec
CHANGED