- Update HISTORY.md
- Commit the changes:
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| <?php (defined('BASEPATH')) OR exit('No direct script access allowed'); | |
| /* load the MX_Router class */ | |
| require APPPATH."third_party/MX/Router.php"; | |
| class MY_Router extends MX_Router { | |
| function _set_routing() | |
| { | |
| // Are query strings enabled in the config file? Normally CI doesn't utilize query strings |
| #!/usr/bin/env php | |
| <?php | |
| $help = <<<'HELP' | |
| EXAMPLES | |
| ./project-phpunit-skelgen.php -s <dir> -o <dir> -b <file> | |
| DESCRIPTION | |
| Recursively find PHP files and run phpunit-skelgen to create unit test skeleton files. |
| rails_path = ENV['RAILS_ROOT'] || File.expand_path(File.join(File.dirname(__FILE__), '..', '..')) | |
| God.watch do |w| | |
| w.dir = rails_path | |
| w.name = "stale_workers" | |
| w.group = "vocsyn" | |
| w.interval = 30.seconds | |
| w.uid = 'deployer' | |
| w.gid = 'staff' |
| <!-- | |
| More faster : lint only modified files | |
| -------------------------------------- | |
| We create a new target to retrieve a list of modified files | |
| If there is modified files, execute the lint target, else skip | |
| with the `if="modifiedFiles"` option. | |
| The list of modified files is stored in ${files.modified}, one file per line. |