specguard-ruby 0.3.17 → 0.3.18
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/README.md +4 -3
- data/bin/specguard-lint +1 -1
- data/lib/specguard/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: 5df698ea1b4e7a3c769128feb51bb7dbf46e0b6f5eee5c74cb4d290ca9d04d11
|
|
4
|
+
data.tar.gz: 247e9962c2bf44d06511a161ed19bcb4168aeb48476f535fadacf8da905f583b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6befb4eb61b41cce78a5de0ddccd7eb09cee9cc7d8e58b429a43f95ad2113e965eb627f8225462b8f47ef2015e502eaa69bfc6b4f09f620bcedd0c7c8345520
|
|
7
|
+
data.tar.gz: 3a8df006b85851e865caff948b8cfc9d98c66abf39a8e5eb7b15f9860e428f27d07aab66b5a7c7ff24403fe1e806b36b70895329614128f43f801001b53d7a38
|
data/README.md
CHANGED
|
@@ -71,9 +71,10 @@ empty on a clean checkout. `--changed=<base>` overrides the base for pipelines
|
|
|
71
71
|
that know better. Selection also takes in **untracked** files: a brand-new
|
|
72
72
|
spec that has not been `git add`ed is part of what the branch changed, whether
|
|
73
73
|
or not the change is committed yet. One `git ls-files --others
|
|
74
|
-
--exclude-standard` call per run is unioned with the diff —
|
|
75
|
-
paths (scratch directories, vendored
|
|
76
|
-
|
|
74
|
+
--exclude-standard` call per run is unioned with the diff —
|
|
75
|
+
`--exclude-standard` keeps `.gitignore`d paths (scratch directories, vendored
|
|
76
|
+
code, build output) out of the untracked leg alone — and untracked files obey
|
|
77
|
+
the same scoping as diffed ones, so an
|
|
77
78
|
untracked spec outside the current directory is counted as outside, not
|
|
78
79
|
checked. When the untracked leg contributed, the `checked N spec files changed
|
|
79
80
|
since <base>` line says `including M untracked`. `--changed` applies the same
|
data/bin/specguard-lint
CHANGED
|
@@ -27,7 +27,7 @@ $LOAD_PATH.unshift(source_lib) unless $LOAD_PATH.include?(source_lib)
|
|
|
27
27
|
begin
|
|
28
28
|
require "specguard/rspec"
|
|
29
29
|
rescue ScriptError, StandardError => e
|
|
30
|
-
warn "specguard-lint: error: could not load specguard-
|
|
30
|
+
warn "specguard-lint: error: could not load specguard-ruby: #{e.class}: #{e.message}"
|
|
31
31
|
exit 2
|
|
32
32
|
end
|
|
33
33
|
|
data/lib/specguard/version.rb
CHANGED