README.md in markdown_exec-1.3.0 vs README.md in markdown_exec-1.3.1
- old
+ new
@@ -233,5 +233,61 @@
```
``` :(echo_vars)
echo "vars1: ${vars1:-missing}"
```
+
+```bash :test_quick
+cat README.md
+```
+
+- `echo "gem: --no-document" >> ~/.gemrc`
+
+- `bundle install --path vendor/bundle`
+
+```
+bundle exec rake test
+bundle exec rake rubocopminitest
+# bundle exec rake reek
+reek --config .reek .
+```
+
+```
+bundle exec rake build
+```
+includes Rake::Task['update_menu_yml'].execute
+ Rake::Task['update_tab_completion'].execute
+
+```
+bundle exec rake uninstall
+```
+
+```
+bundle exec rake install
+```
+
+```
+bundle exec rake publish
+```
+
+```
+bundle exec rake --tasks
+```
+```expect
+rake build # Build markdown_exec-1.3.0.9.gem into the pkg directory / gem build
+rake clean # Remove any temporary products / gem build clean
+rake clobber # Remove any generated files
+rake install # Build and install markdown_exec-1.3.0.9.gem into system gems / gem install
+rake install:local # Build and install markdown_exec-1.3.0.9.gem into system gems without network access
+rake publish # gem publish
+rake reek # reek
+rake release[remote] # Create tag v1.3.0.9 and build and push markdown_exec-1.3.0.9.gem to rubygems.org
+rake rubocop # Run RuboCop
+rake rubocop:autocorrect # Autocorrect RuboCop offenses (only when it's safe)
+rake rubocop:autocorrect_all # Autocorrect RuboCop offenses (safe and unsafe)
+rake rubocopminitest # named task because minitest not included in rubocop tests
+rake test # Run tests
+rake uninstall # gem uninstall
+rake update_installed_tab_completion # update installed tab_completion.sh
+rake update_menu_yml # update menu.yml
+rake update_tab_completion # update tab_completion.sh
+```