guard-standardrb 0.2.0b → 0.2.0c
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/guard/standardrb/templates/GuardFile +2 -2
- data/lib/guard/standardrb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a77e2a1cdabcde8ede9e24c26e17b87233ea615b72fc411e1883690e1883e3b
|
|
4
|
+
data.tar.gz: dd328feccb82da146458e88fc2235b4f7932ad9157fa070b96fb38c8812dfb3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0887a82af445bee7d5d7c88b530214c2fc530fdbe66f1017e8d88bc03ad9f0dc9aa1a3f27889a4561536a1b4767a41846740fa4c11af6caad89bda0260f76270'
|
|
7
|
+
data.tar.gz: 587013e6cb8f0b69c0ce1e0ccd124309d50613174d032f94d0e1a732d0209a490115574f2a0eacf350515d673a916f137809eed9839a2b49860d5fc889ea2db2
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# You can choose to pass an option to the guard-standardrb plugin
|
|
2
2
|
# to fix easy issues
|
|
3
3
|
|
|
4
|
-
# guard :standardrb fix: true do
|
|
4
|
+
# guard :standardrb, fix: true do
|
|
5
5
|
# UI.info 'StandardRb is initialized'
|
|
6
6
|
# watch(/.+\.rb$/)
|
|
7
7
|
# end
|
|
8
8
|
|
|
9
|
-
guard :standardrb fix: false do
|
|
9
|
+
guard :standardrb, fix: false do
|
|
10
10
|
UI.info 'StandardRb is initialized'
|
|
11
11
|
watch(/.+\.rb$/)
|
|
12
12
|
end
|