tumugi-plugin-webhook 0.1.0 → 0.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: 6bfa6d9f2a87159a2f6ffae0a07aa29e5ecf2466
4
- data.tar.gz: 5137b0b4ccab9e6944eceb3ace1e01feb579e98b
3
+ metadata.gz: b5ce2c44563d3165ce76acc338c58a34d4dea634
4
+ data.tar.gz: c01a9c60b6dbc2e4fa2d0bb6a40b8f208413a175
5
5
  SHA512:
6
- metadata.gz: b91705e5abc8cb2690d638ab7f2f4062873ba1cbc0abf3b0c4d518c238f57bf15e8d5ba98554b5bf272cca8b39d2d5c3965197ee9f2696c210653f8795ed0d75
7
- data.tar.gz: a1653b0619d0b46f9fa9e7cffcca891eef1eee426623b41bc69cf8984d379061a86316cddaa0cd52353c1891b56291a62163b42d3ed6634e1f09676370b00c56
6
+ metadata.gz: 02053d67fb1a11d19077389570375a332c4d3cc1a3d91ed038da04dbd4dc605ac11abcc9371ef7430a9d2ab546969b359214e521c346b18adce66df455b42188
7
+ data.tar.gz: e6e7ba778e40e882d7615cc7dcb1713687c45c940fb6399b26ae94fb58224eedffd3ded9e2baf403319babca6b37d44df187beea2beeaa063f7814ee72bef519
data/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ # Change Log
2
+
3
+ ## [v0.1.1](https://github.com/tumugi/tumugi-plugin-webhook/tree/v0.1.1) (2016-08-26)
4
+ [Full Changelog](https://github.com/tumugi/tumugi-plugin-webhook/compare/v0.1.0...v0.1.1)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - Fix NameError: uninitialized constant Tumugi::Plugin::FileSystemTarget [\#2](https://github.com/tumugi/tumugi-plugin-webhook/pull/2) ([hakobera](https://github.com/hakobera))
9
+
10
+ ## [v0.1.0](https://github.com/tumugi/tumugi-plugin-webhook/tree/v0.1.0) (2016-08-15)
11
+ **Merged pull requests:**
12
+
13
+ - Prepare release for v0.1.0 [\#1](https://github.com/tumugi/tumugi-plugin-webhook/pull/1) ([hakobera](https://github.com/hakobera))
14
+
15
+
16
+
17
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.org/tumugi/tumugi-plugin-webhook.svg?branch=master)](https://travis-ci.org/tumugi/tumugi-plugin-webhook) [![Code Climate](https://codeclimate.com/github/tumugi/tumugi-plugin-webhook/badges/gpa.svg)](https://codeclimate.com/github/tumugi/tumugi-plugin-webhook) [![Coverage Status](https://coveralls.io/repos/github/tumugi/tumugi-plugin-webhook/badge.svg?branch=master)](https://coveralls.io/github/tumugi/tumugi-plugin-webhook) [![Gem Version](https://badge.fury.io/rb/tumugi-plugin-webhook.svg)](https://badge.fury.io/rb/tumugi-plugin-webhook)
1
+ [![Build Status](https://travis-ci.org/tumugi/tumugi-plugin-webhook.svg?branch=master)](https://travis-ci.org/tumugi/tumugi-plugin-webhook) [![Code Climate](https://codeclimate.com/github/tumugi/tumugi-plugin-webhook/badges/gpa.svg)](https://codeclimate.com/github/tumugi/tumugi-plugin-webhook) [![Coverage Status](https://coveralls.io/repos/github/tumugi/tumugi-plugin-webhook/badge.svg?branch=master)](https://coveralls.io/github/tumugi/tumugi-plugin-webhook?branch=master) [![Gem Version](https://badge.fury.io/rb/tumugi-plugin-webhook.svg)](https://badge.fury.io/rb/tumugi-plugin-webhook)
2
2
 
3
3
  # WebHook plugin for [tumugi](https://github.com/tumugi/tumugi)
4
4
 
@@ -1,4 +1,5 @@
1
1
  require 'tumugi'
2
+ require 'tumugi/plugin/file_system_target'
2
3
  require 'faraday'
3
4
  require 'faraday_middleware'
4
5
  require 'uri'
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "tumugi-plugin-webhook"
6
- spec.version = "0.1.0"
6
+ spec.version = "0.1.1"
7
7
  spec.authors = ["Kazuyuki Honda"]
8
8
  spec.email = ["hakobera@gmail.com"]
9
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tumugi-plugin-webhook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuyuki Honda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-08-15 00:00:00.000000000 Z
11
+ date: 2016-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tumugi
@@ -131,6 +131,7 @@ extra_rdoc_files: []
131
131
  files:
132
132
  - ".gitignore"
133
133
  - ".travis.yml"
134
+ - CHANGELOG.md
134
135
  - Gemfile
135
136
  - README.md
136
137
  - Rakefile