diff options
author | Tom Feist <shabble@metavore.org> | 2011-05-05 04:19:54 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-05-05 04:19:54 +0000 |
commit | 1650442cc9f09fb881de21bc6cdd74f4c6636aa8 (patch) | |
tree | 893c400e3bf3c6667b112ab1bdec0f6284c1e51f | |
parent | bleepbloop (diff) | |
download | irssi-scripts-1650442cc9f09fb881de21bc6cdd74f4c6636aa8.tar.gz irssi-scripts-1650442cc9f09fb881de21bc6cdd74f4c6636aa8.zip |
updated README to remind myself how to do a proper script deployment.
-rw-r--r-- | README.md | 18 | ||||
-rw-r--r-- | feature-tests/template.pl | 2 |
2 files changed, 19 insertions, 1 deletions
@@ -110,3 +110,21 @@ Many of my scripts require [uberprompt](https://github.com/shabble/irssi-scripts dependency. Those that do will say so in the comments at the top of the file, and will probably refuse to load without it. +## Reminders for myself + +### Deployment Process + +* Commit messages should be prefixed with something approximating the name of + the script or directory to make it obvious what thing is being worked on. + +* `./readme_generator.pl <dir> [<dirs]` to generate README files for each script + that has POD in it. Use `--overwrite` from time to time to clean things out. + +* `./changed_update.pl <script_name>` changes the %IRSSI{changed} timestamp + to the current time, which is something I always forget to do. + +* Think about bumping the internal version number if it's a big change. + +* Commit! + + diff --git a/feature-tests/template.pl b/feature-tests/template.pl index 3d72312..7a4163e 100644 --- a/feature-tests/template.pl +++ b/feature-tests/template.pl @@ -65,6 +65,6 @@ our %IRSSI = ( name => '', description => '', license => 'MIT', - updated => 2011-05-05T04:12:41 + updated => 2011-05-05T04:13:21-05-05T04:12:41 ); |