I hereby claim:
- I am Grummfy on github.
- I am grummfy (https://keybase.io/grummfy) on keybase.
- I have a public key whose fingerprint is 3F17 D5AB E1D6 6E4C 2D1D AFC6 67E6 A718 916E 8BB9
To claim this, I am signing this object:
| #!/bin/bash -e | |
| # see related issue: https://github.com/rundeck/rundeck/issues/357 | |
| # see https://gist.github.com/Grummfy/11289c0c71096d812e9dd59eaf310464 | |
| export PATH=$PATH:~/rd-1.1.0/bin/ | |
| # export required vars | |
| export RD_URL=http://localhost:4440 RD_USER=admin RD_PASSWORD=admin RD_HTTP_TIMEOUT=300 RD_PROJECT=mainProject | |
| # make sure rd & jq commands are in the PATH |
| <?php | |
| // .atoum.php | |
| // $script->addDefaultArguments( | |
| // '--loop' | |
| // ); |
| # see /usr/share/bash-completion/completions/git | |
| _git_auteur () | |
| { | |
| case "$cur" in | |
| -*) | |
| __gitcomp "-h -v" | |
| return | |
| ;; | |
| *) |
| <?php | |
| use mageekguy\atoum\reports; | |
| use mageekguy\atoum\reports\coverage; | |
| use mageekguy\atoum\writers\std; | |
| use mageekguy\atoum\report\fields\runner\result\logo; | |
| // telemetry | |
| use mageekguy\atoum\telemetry; | |
| // |
| #!/bin/bash | |
| # <name of project> <path to project> | |
| PROJECT_NAME=$1 | |
| PROJECT_BASE_PATH=$2 | |
| EXAKAT_PROJECT_PATH=$(pwd) | |
| echo 'get last version' | |
| docker pull exakat/exakat |
| <?php | |
| $oldFileContent = file($argv[1]); | |
| $newFileContent = array(); | |
| foreach ($oldFileContent as $line) | |
| { | |
| $pattern = '#(.*)\[([[:print:]]*)\]\((https?://.*)\)(.*)#'; | |
| $newFileContent[] = preg_replace($pattern, '$1`$2 <$3>`_$4', $line); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| require_once 'vendor/autoload.php'; | |
| use mageekguy\atoum\visibility; | |
| $runner->addTestsFromDirectory('test/units'); |
| <?php | |
| namespace Burps { | |
| interface TotoInterface | |
| { | |
| public function toto(); | |
| } | |
| class Toto implements TotoInterface |