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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe333e55fbfdb89d0ea68b3f9ceefde98f3aa4b798792e9dd13745b76757a499
4
- data.tar.gz: cf8cfc0205d3b8d7a3d10ec1c0c5487ac140dd7bc41c0c640eb2d72ec3d1e3f7
3
+ metadata.gz: d25dd7c99923b45110f0bfb0903006414f50a60f89e0e3f4385487a3cf11d68b
4
+ data.tar.gz: c1e4457594ba8f1234692a431acf859f9f708e26e14512c2c7a348359ef0ab04
5
5
  SHA512:
6
- metadata.gz: 918e8b6edec715a8096872c46fa12adc029244b886525c704e9b769fecae6595d38d0b658ebe64a53ebe3474d6ddba76f7d8222baefbef582da4c7dec27e686e
7
- data.tar.gz: 4e0da6a791cc4e539ed75f893a3950336bcf5703e6dbb6435e02bac23f94e3207c06dca5cf13551a4a81980474e4e796a911ea333bfec42b5d97aa1e6ef0f3c8
6
+ metadata.gz: 38b21a94a84943dabc03fda78f8054b36340363a932e53754a437f8a813cfa72fbd04d232d924a16e3897dab019951b35bc47e03f6f46aa0deaea050d64553b4
7
+ data.tar.gz: 45bedfd9641c128f1e0f21c308f323fa497ef0bf0c91e255fe3e0afde528a90e2e84c15103de32ed1020fd0a71862b143d812bce498570394d9be37fcd9aea17
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- check_please (0.5.0)
4
+ check_please (0.5.1)
5
5
  table_print
6
6
 
7
7
  GEM
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
- * ["Reentrant" Flags](#reentrant-flags)
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
- # By making TOC generation a prerequisite of release, we *should* at least be
63
- # forced to update the TOC whenever we publish a new version of the gem...
64
- task :release => :toc
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
@@ -1,5 +1,5 @@
1
1
  module CheckPlease
2
2
  # NOTE: 'check_please_rspec_matcher' depends on this,
3
3
  # so try to keep them roughly in sync
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1" # about to release? rerun `bundle check` to update Gemfile.lock also
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: check_please
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Livingston-Gray