Sha256: 432c0d14fc39e2db87ef0bb0cb373128fc9edbd14b3d6af80c14c2cd1148fc86
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# aia/main.just # # Support man pages with ... # gem install kramdown-man # RR := env_var('RR') with ~/.justfile # FIXME: justprep module process still has an issue with ~ and $HOME # FIXME: justprep does not like more than one space between module name and path. module repo /Users/dewayne/sandbox/git_repos/repo.just module gem /Users/dewayne/sandbox/git_repos/gem.just module version /Users/dewayne/just_modules/version.just # Install Locally install: update_toc_in_readmen create_man_page test rake install # Create the TOC update_toc_in_readmen: rake toc # Preview man page preview_man_page: kramdown-man {{RR}}/man/aia.1.md # Run Unit Tests test: rake test # View man page view_man_page: create_man_page man {{RR}}/man/aia.1 # Create man page create_man_page: rake man ########################################## # Tag the current commit, push it, then bump the version tag_push_and_bump: tag push bump # Create a git tag for the current version tag: git tag $(semver) # Push the git current working directory and all tags push: git push git push origin --tags alias inc := bump # Increament version's level: major.minor.patch @bump level='patch': semver increment {{level}} echo "Now working on: $(semver)" git add {{RR}}/.semver
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aia-0.5.1 | main.just |
aia-0.5.0 | main.just |