Sha256: d428fc509fbcbb640cf475dfd6b5e3fd9e10fe01cd0409095c1d6cfab7f24477
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
AgileNotifier ============= Agile Notifier - an easy way of monitoring Agile SW Engineering by auralization change. It supports most of the popular tools including **CI** (Continuous Integration), **SCM** (Source Control Management), and **ITS** (Issue Tracking System). Of course you can integrate more tools as you want. And the simple beautiful DSL syntax gives you a rocket start. In a modern agile team, members would like to be notified immediately once their Continuous Integration job fails (but building process usually takes quite a while). That's the initial idea of this tool. The joy of this tool is that, whenever a build fails, it can blame whoever submitted the commit (or praises the committer who fixed it), in whatever language you want, and even the sentenses can be randomly chosen each time :) Have fun with it! ## Examples of Usage: ```ruby AgileNotifier::Configuration.set do ci_url 'http://x.x.x.x:8080' ci_job 'your-project-continuous-build' ci_get 'Jenkins' scm_url 'https://github.xyzcompany.com' scm_repo user: 'your_user_name', repo: 'your_repository_name' scm_get 'Github', enterprise: true # for non-enterprise version # scm_url 'https://api.github.com' # scm_repo user: 'your_user_name', repo: 'your_repository_name' # scm_get 'Github' speak 'en' play 'Boing' # Mac OSX TTS voice name(optional field), unnecessary for other OS alert_on_fail alert_on_fix alert_on_unstable end ``` ## Notes: * TTS (Text To Speech) on Linux used here has two dependencies: * TTS service benefits from online MARY TTS Web Client: http://mary.dfki.de:59125/ While it has limited languages support, please check before use. * play command comes from package sox which is not pre-installed, you have to install manually beforehand by: * ``` sudo apt-get install sox libsox-fmt-all ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
agile_notifier-1.1.1 | README.md |
agile_notifier-1.1 | README.md |