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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6dab087af32f66ddcfc47df973466feee564490
4
- data.tar.gz: 097165226c80d53eecc59b9043c9f7dcaa98af02
3
+ metadata.gz: 13fe350f72d7eecc605dffc69a460ce999f3c347
4
+ data.tar.gz: d024389f01c30d5c8299348493f841fb7d4fbe6e
5
5
  SHA512:
6
- metadata.gz: f5b09f872f73a43807f151f77ac5b4fa05898d6efa9c54de10b7581a08a7d48572708b9c1c61c6bcee1887b332700cd5cef0b0a9e241555175117ed6043bb2fe
7
- data.tar.gz: 58ca64e4c1b5c655a37f1d73aae00d7b0923ebf7f3dda83ad1a85fb7dfa7ac83736395e2fbd19459ce41d569b1e6d4b65984b7ac411aa210da7af98a595a8874
6
+ metadata.gz: 20d06580344b882e5f9eecf798ed713cd5bfa64a41864c4f33d26f4426933734c35e544f9b703ae46abe35bd8b499a5a14e61b2954b6a43dcb2cde609a54be8c
7
+ data.tar.gz: 000395b66d2e4f903c6908f74fee0745c2cb8c691255b10fe1a2a189473ef43993a2742912ff51b3c4cf7e49b07e3930cb8adf46083d7e1cd0ce2967d844c77d
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  .idea/
2
2
  Gemfile.lock
3
+ *.gem
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.0.0"
4
+ - "2.1.1"
data/Gemfile CHANGED
@@ -6,4 +6,5 @@ gem 'httparty'
6
6
 
7
7
  group :test do
8
8
  gem 'mocha'
9
+ gem 'rake'
9
10
  end
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  AgileNotifier
2
2
  =============
3
3
 
4
+ [![Gem Version](https://badge.fury.io/rb/agile_notifier.svg)](http://badge.fury.io/rb/agile_notifier)
5
+ [![Build Status](https://travis-ci.org/thyrlian/AgileNotifier.svg?branch=master)](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.
@@ -1,3 +1,5 @@
1
+ require_relative 'servable'
2
+
1
3
  module AgileNotifier
2
4
  class ITS
3
5
  include Servable
@@ -3,6 +3,7 @@ require 'json'
3
3
  require 'httparty'
4
4
  require_relative 'ci'
5
5
  require_relative 'response_helper'
6
+ require_relative 'servable'
6
7
 
7
8
  module AgileNotifier
8
9
  class Jenkins < CI
@@ -1,5 +1,5 @@
1
1
  Dir[(File.expand_path(File.dirname(__FILE__)) + "/agile_notifier/*.rb")].each { |file| require file }
2
2
 
3
3
  module AgileNotifier
4
- VERSION = '2.1'
4
+ VERSION = '2.1.1'
5
5
  end
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: '2.1'
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