exception_notification-slacky 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17159e3bc74692a2ac72c58c71ba6972c91313ce
4
- data.tar.gz: 14568b0f398ea7dde045ffc6cfc2a6235cc2071f
3
+ metadata.gz: 40385933a01e3d86b4820a08aec1c294133a924d
4
+ data.tar.gz: 40f372d8f3d5febf142ab2a19c53fe658e2ea79d
5
5
  SHA512:
6
- metadata.gz: 746163bf6d4776381fff1d50778584e955d1a17dda74ea118450681c1a8bd60d1f14f70b1718291231d4a28c023aa5e2fc064904ce995c4afa80afddaf6fd88c
7
- data.tar.gz: ba9b5db8f03ab82a6c330a7c012dfb2b20a51b434b59e68a4fe2c47d6a06533697f24f051737ca4faff0ebedac000f587396ddd62cbfffddd627d9fd28acfe33
6
+ metadata.gz: fcbbab8442183b91ec1b27c8ae54e55df92fa47cb35f5848bc8aa3ddd3a35d7219a51ac71e1378864749a1c2ad3e0337b3f3083847181ba6fa3d6b2b60a6781b
7
+ data.tar.gz: 77e4792de177103edd1a5a8bce4da3f20918e976d41911f394b6e3ab6719feaeffadadf03ad6084268efae4235b75716a5a4c702056d331577088c4f02160c4e
@@ -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
  ![2015-04-09 21 26 41](https://cloud.githubusercontent.com/assets/106567/7066600/36176e0c-deff-11e4-9bac-72b4e5ba15c7.png)
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)/}) }
@@ -1,5 +1,5 @@
1
1
  module ExceptionNotification
2
2
  module Slacky
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -59,7 +59,7 @@ module ExceptionNotifier
59
59
  },
60
60
  {
61
61
  title: "HTTP Method",
62
- value: @request.request_method,
62
+ value: (@request.request_method rescue nil),
63
63
  short: true
64
64
  },
65
65
  {
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.2
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: 2015-12-13 00:00:00.000000000 Z
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