exception_notification-slacky 0.1.2 → 0.1.3
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/CHANGELOG.md +18 -0
- data/README.md +6 -0
- data/exception_notification-slacky.gemspec +3 -1
- data/lib/exception_notification/slacky/version.rb +1 -1
- data/lib/exception_notifier/slacky_notifier.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40385933a01e3d86b4820a08aec1c294133a924d
|
|
4
|
+
data.tar.gz: 40f372d8f3d5febf142ab2a19c53fe658e2ea79d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcbbab8442183b91ec1b27c8ae54e55df92fa47cb35f5848bc8aa3ddd3a35d7219a51ac71e1378864749a1c2ad3e0337b3f3083847181ba6fa3d6b2b60a6781b
|
|
7
|
+
data.tar.gz: 77e4792de177103edd1a5a8bce4da3f20918e976d41911f394b6e3ab6719feaeffadadf03ad6084268efae4235b75716a5a4c702056d331577088c4f02160c4e
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## Ver 0.1.3
|
|
2
|
+
|
|
3
|
+
- Bug fix when manual notify
|
|
4
|
+
*Masataka Kuwabara*
|
|
5
|
+
|
|
6
|
+
## Ver 0.1.2
|
|
7
|
+
|
|
8
|
+
- Add :custom_fields option for injecting custom data from consumer app
|
|
9
|
+
*mizokami*
|
|
10
|
+
|
|
11
|
+
## Ver 0.1.1
|
|
12
|
+
|
|
13
|
+
- Add color option
|
|
14
|
+
*Uchio KONDO*
|
|
15
|
+
|
|
16
|
+
## Ver 0.1.0
|
|
17
|
+
|
|
18
|
+
- Initial release
|
data/README.md
CHANGED
|
@@ -6,6 +6,12 @@ Rich informed exception_notifier for slack.
|
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
9
|
+
## DEPRECATION WARNING
|
|
10
|
+
|
|
11
|
+
[exception_notification](https://github.com/smartinez87/exception_notification) have supported slack's attachment ([Change format to slack notifications · smartinez87/exception_notification@132be9e](https://github.com/smartinez87/exception_notification/commit/132be9ef17413ecb05a6d0cf0c42460debb627f9)).
|
|
12
|
+
|
|
13
|
+
So this gem is not necessary to notify rich error information to slack. Please use exception_notification's feature.
|
|
14
|
+
|
|
9
15
|
## Installation
|
|
10
16
|
|
|
11
17
|
Add this line to your application's Gemfile:
|
|
@@ -11,7 +11,9 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.email = ["morygonzalez@gmail.com", "r.mizokami@gmail.com"]
|
|
12
12
|
|
|
13
13
|
spec.summary = %q{Send Exception notification to slack}
|
|
14
|
-
spec.description = %q{Send Exception notification to slack. Works as ExceptionNotification Plugin.
|
|
14
|
+
spec.description = %q{Send Exception notification to slack. Works as ExceptionNotification Plugin.
|
|
15
|
+
|
|
16
|
+
ExceptionNotification have supported slack's attachment (https://github.com/smartinez87/exception_notification/commit/132be9ef17413ecb05a6d0cf0c42460debb627f9). So this gem is not necessary to notify rich error information to slack. Please use exception_notification's feature. }
|
|
15
17
|
spec.homepage = "https://github.com/morygonzalez/exception_notification-slacky"
|
|
16
18
|
|
|
17
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exception_notification-slacky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "森井ゴンザレス"
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2016-02-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: exception_notification
|
|
@@ -109,8 +109,10 @@ dependencies:
|
|
|
109
109
|
- - "~>"
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
111
|
version: '1.21'
|
|
112
|
-
description: Send Exception notification to slack. Works as ExceptionNotification
|
|
113
|
-
Plugin.
|
|
112
|
+
description: "Send Exception notification to slack. Works as ExceptionNotification
|
|
113
|
+
Plugin.\n\nExceptionNotification have supported slack's attachment (https://github.com/smartinez87/exception_notification/commit/132be9ef17413ecb05a6d0cf0c42460debb627f9).
|
|
114
|
+
So this gem is not necessary to notify rich error information to slack. Please use
|
|
115
|
+
exception_notification's feature. "
|
|
114
116
|
email:
|
|
115
117
|
- morygonzalez@gmail.com
|
|
116
118
|
- r.mizokami@gmail.com
|
|
@@ -121,6 +123,7 @@ files:
|
|
|
121
123
|
- ".gitignore"
|
|
122
124
|
- ".rspec"
|
|
123
125
|
- ".travis.yml"
|
|
126
|
+
- CHANGELOG.md
|
|
124
127
|
- Gemfile
|
|
125
128
|
- README.md
|
|
126
129
|
- Rakefile
|