agile_notifier 2.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +4 -0
- data/Gemfile +1 -0
- data/README.md +3 -0
- data/lib/agile_notifier/its.rb +2 -0
- data/lib/agile_notifier/jenkins.rb +1 -0
- data/lib/agile_notifier.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13fe350f72d7eecc605dffc69a460ce999f3c347
|
|
4
|
+
data.tar.gz: d024389f01c30d5c8299348493f841fb7d4fbe6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20d06580344b882e5f9eecf798ed713cd5bfa64a41864c4f33d26f4426933734c35e544f9b703ae46abe35bd8b499a5a14e61b2954b6a43dcb2cde609a54be8c
|
|
7
|
+
data.tar.gz: 000395b66d2e4f903c6908f74fee0745c2cb8c691255b10fe1a2a189473ef43993a2742912ff51b3c4cf7e49b07e3930cb8adf46083d7e1cd0ce2967d844c77d
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
AgileNotifier
|
|
2
2
|
=============
|
|
3
3
|
|
|
4
|
+
[](http://badge.fury.io/rb/agile_notifier)
|
|
5
|
+
[](https://travis-ci.org/thyrlian/AgileNotifier)
|
|
6
|
+
|
|
4
7
|
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.
|
|
5
8
|
|
|
6
9
|
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.
|
data/lib/agile_notifier/its.rb
CHANGED
data/lib/agile_notifier.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agile_notifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jing Li
|
|
@@ -80,6 +80,7 @@ extensions: []
|
|
|
80
80
|
extra_rdoc_files: []
|
|
81
81
|
files:
|
|
82
82
|
- .gitignore
|
|
83
|
+
- .travis.yml
|
|
83
84
|
- Gemfile
|
|
84
85
|
- README.md
|
|
85
86
|
- Rakefile
|