rack-error_to_slack 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: c05f43afdc31e42d6acb7fd9d5225525b530fe07
4
- data.tar.gz: 41ca890f677ab6b2ae6ce9169653f121a41c62e9
3
+ metadata.gz: fae7b84a0557b3adfc1a873e2e7180c371d68a91
4
+ data.tar.gz: 8b9b5a2596aa20b51aae08d909109b77a5595804
5
5
  SHA512:
6
- metadata.gz: 03a3b38eda04fe4b01b8d43d63e54860f67e78ebb813018e0e9321f22d3e9e6cf7b206b5b3966501d7de7d5b4ef3d8bfa3836c201a9e84cec7e127adb92f4134
7
- data.tar.gz: 4f1154deaf0908d48445ef38e9538e2a144e606118eb22b2679569853678811a4cac35748b9660e85ccd601c3c7ab0248c8dcdebc7c9e2db1a8a67a2ef93146c
6
+ metadata.gz: 0970b1be8f09618c6ff6637f5015f426d7030fb973dd7034833f8f86bd90d3f8d70edd3056637ac6358a569dfb0e53094812d1731f9ad6b5c5b187c14e1d1ecb
7
+ data.tar.gz: 3b1e6a0dda0ba62be52fec40150ebd19cd6e22564ade41eb20e639b5cd49b13b8edc99004fbf86c777ed04cb586de1685230b188361688b4e357923b43e0b61d
data/README.md CHANGED
@@ -32,11 +32,13 @@ config.middleware.use Rack::ErrorToSlack
32
32
  ```
33
33
  Rack::ErrorToSlack.configure do |config|
34
34
  config.webhook_url = 'https://hooks.slack.com/services/your_webhook_url'
35
+
35
36
  ### follows are option ###
36
- # emoji icon of slack post
37
- config.emoji = ':ghost:' # default: ':innocent:'
38
- # username of slack post
39
- config.slackname = 'ErrorSharing' # default: 'ErrorToSlack'
37
+ # emoji icon of slack post. DEFAULT VALUE: ':innocent:'
38
+ config.emoji = ':ghost:'
39
+
40
+ # username of slack post. DEFAULT VALUE: 'ErrorToSlack'
41
+ config.slackname = 'ErrorSharing'
40
42
  end
41
43
  ```
42
44
 
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  class ErrorToSlack
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-error_to_slack
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
  - showwin