check_please 0.5.0 → 0.5.1
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/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/Rakefile +7 -3
- data/lib/check_please/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: d25dd7c99923b45110f0bfb0903006414f50a60f89e0e3f4385487a3cf11d68b
|
|
4
|
+
data.tar.gz: c1e4457594ba8f1234692a431acf859f9f708e26e14512c2c7a348359ef0ab04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38b21a94a84943dabc03fda78f8054b36340363a932e53754a437f8a813cfa72fbd04d232d924a16e3897dab019951b35bc47e03f6f46aa0deaea050d64553b4
|
|
7
|
+
data.tar.gz: 45bedfd9641c128f1e0f21c308f323fa497ef0bf0c91e255fe3e0afde528a90e2e84c15103de32ed1020fd0a71862b143d812bce498570394d9be37fcd9aea17
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -19,7 +19,7 @@ structures parsed from either of those.
|
|
|
19
19
|
* [Flags](#flags)
|
|
20
20
|
* [Setting Flags in the CLI](#setting-flags-in-the-cli)
|
|
21
21
|
* [Setting Flags in Ruby](#setting-flags-in-ruby)
|
|
22
|
-
* [
|
|
22
|
+
* [Repeatable Flags](#repeatable-flags)
|
|
23
23
|
* [Expanded Documentation for Specific Flags](#expanded-documentation-for-specific-flags)
|
|
24
24
|
* [Flag: match_by_key](#flag-match_by_key)
|
|
25
25
|
* [TODO (maybe)](#todo-maybe)
|
data/Rakefile
CHANGED
|
@@ -59,6 +59,10 @@ task :toc do
|
|
|
59
59
|
end
|
|
60
60
|
end
|
|
61
61
|
|
|
62
|
-
#
|
|
63
|
-
#
|
|
64
|
-
task
|
|
62
|
+
# Okay, so. We want the TOC to be up to date *before* the `release` task runs.
|
|
63
|
+
#
|
|
64
|
+
# We tried making the 'toc' task a dependency of 'release', but that just adds
|
|
65
|
+
# it to the end of the dependencies, and generates the TOC after publishing.
|
|
66
|
+
#
|
|
67
|
+
# Trying the 'build' task instead...
|
|
68
|
+
task :build => :toc
|
data/lib/check_please/version.rb
CHANGED