README.md in doit-0.2.8 vs README.md in doit-0.3.0
- old
+ new
@@ -3,10 +3,14 @@
Executes good old shell/bash scripts locally as well as remotely.
The environment is set by a ".yml" configuration file.
An array environment variable triggers multiple calls of the script.
+The "where" in the configuration indicates where to run the script.
+
+See examples below.
+
Installation
------------
gem install doit
Usage
@@ -27,16 +31,17 @@
File Structure
--------------
~/.doit/deploy # chmod +x .doit/deploy
~/.doit/deploy.yml
- $PROJ/.doit/deploy.yml # overwrites
+ $PROJ/.doit/deploy.yml # overwrites $HOME(~/) script/configuration
$PROJ/.doit/push # chmod +x .doit/deploy
$PROJ/.doit/push.yml
$PROJ/.doit/push
----------------
+ #! /bin/sh
if ! (git status | grep 'nothing to commit'); then
echo "push: commits are pending"
exit 1
fi
@@ -66,6 +71,6 @@
- DIR=proj OPTION=list
where:
- bob@sample.com
- alice@customer.com
-Copyright (c) 2014 [Dittmar Krall], released under the MIT license
+Copyright (c) 2014-2016 [Dittmar Krall], released under the MIT license