zapwhite 2.5.0 → 2.6.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 +10 -1
- 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: 4d600950045fedd54e58ec96c8f16ae33fbb5b47
|
|
4
|
+
data.tar.gz: 3930e8dbc432f14afc6261113ccaa831567e93a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a060e4079adf9f52b35b91702c0ab9b51f0aa81d61bfb6cffaa9d27cd36b109e8c3dca519f52af13e5203f05f590ac915e78d4e2f5f1638d3738b1009bc9f1ca
|
|
7
|
+
data.tar.gz: 70cedf47cf30f7ad4bd0014d78177841987f455e1f09725eea475ac4082dad9aa24fb7046d59029b6715ec9b344786e0f7bb8f4678b774cbad8e92ce2081ade9
|
data/lib/reality/zapwhite.rb
CHANGED
|
@@ -198,11 +198,12 @@ module Reality
|
|
|
198
198
|
attributes.dos_text_rule('*.rdl', :eofnl => false)
|
|
199
199
|
attributes.unix_text_rule('*.sh')
|
|
200
200
|
attributes.text_rule('*.md')
|
|
201
|
-
attributes.binary_rule('*.jpg')
|
|
202
201
|
|
|
203
202
|
attributes.text_rule('.gitignore')
|
|
204
203
|
attributes.text_rule('.gitattributes')
|
|
205
204
|
|
|
205
|
+
attributes.text_rule('.node-version')
|
|
206
|
+
|
|
206
207
|
# Ruby defaults
|
|
207
208
|
attributes.text_rule('Gemfile')
|
|
208
209
|
attributes.text_rule('*.gemspec')
|
|
@@ -211,6 +212,9 @@ module Reality
|
|
|
211
212
|
attributes.text_rule('*.yaml')
|
|
212
213
|
attributes.text_rule('*.yml')
|
|
213
214
|
|
|
215
|
+
attributes.text_rule('*.haml')
|
|
216
|
+
attributes.text_rule('*.rhtml')
|
|
217
|
+
|
|
214
218
|
# Documentation defaults
|
|
215
219
|
attributes.text_rule('*.txt')
|
|
216
220
|
attributes.text_rule('*.md')
|
|
@@ -261,6 +265,7 @@ module Reality
|
|
|
261
265
|
attributes.text_rule('*.jsp')
|
|
262
266
|
attributes.text_rule('*.properties')
|
|
263
267
|
attributes.rule('*.jar', :binary => true)
|
|
268
|
+
attributes.text_rule('Vagrantfile')
|
|
264
269
|
attributes.text_rule('Dockerfile')
|
|
265
270
|
attributes.text_rule('LICENSE')
|
|
266
271
|
attributes.text_rule('CHANGELOG')
|
|
@@ -275,6 +280,10 @@ module Reality
|
|
|
275
280
|
attributes.binary_rule('*.dll')
|
|
276
281
|
attributes.binary_rule('*.so')
|
|
277
282
|
|
|
283
|
+
# IDE files
|
|
284
|
+
attributes.text_rule('*.iml')
|
|
285
|
+
attributes.text_rule('*.ipr')
|
|
286
|
+
|
|
278
287
|
attributes
|
|
279
288
|
end
|
|
280
289
|
end
|
data/zapwhite.gemspec
CHANGED