slack-notification 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: e2713cd161584b69125db9c4bd24079a90b2abee9a809875b36ad51762c74637
4
- data.tar.gz: 674d8ee292f86178115b64d247e74b1b69dbdff79182317fb27cf736a8dcfaba
3
+ metadata.gz: e7f1bd44be20c066b049ac06dac973ca51be3268d76bc16b2cbaa251005b1e6f
4
+ data.tar.gz: 8119b8f53e5b394133211815800652ee4a3ab2bb7a331915b8ba42d34c7d5420
5
5
  SHA512:
6
- metadata.gz: 8228cc493f78045d6876e43bb2aab40da1df5307ffa8f96b0b786db3ff2c0c3dc34b27321c55cf240960d50f99704eaa6131e928434c066045fec72689837e2f
7
- data.tar.gz: 3b101cae299ecb4e53ed515f8e66adaffc556011bdffcce533b8eb9551dc9ce1364c155dbfa0fc96382d985cb8c9b8f0b52f7f275574316d68b9db2d6727f089
6
+ metadata.gz: be7827ced270a14d9de91295af099c2899f7127a46128f70ab9cecf9221a158ed1f5ad293d9c46c736f42d3dcd099b18d20d806dc118c7cc0af7f737632b59aa
7
+ data.tar.gz: 5787f5e547fce7dc6b47608009e6b94650ebc862d036d1dd255486ccbfe8c859e5f9087596a158e81b036b0c993b372daa9b3d26528642919c2ab7bcd722119b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slack-notification (0.1.4)
4
+ slack-notification (0.1.5)
5
5
  slack-notifier (~> 2.3)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -55,9 +55,9 @@ Available notification types:
55
55
 
56
56
  Fields can be formatted in several ways:
57
57
 
58
- String: The fields value becomes the message title, and no fields are submitted.
59
- Hash: Format: `{ title_1: :value_1, [...] }`
60
- Array: Array of hashes, each of format: `{ title: 'Field name', value: field_value, short: true }`
58
+ - String: The fields value becomes the message title, and no fields are submitted.
59
+ - Hash: Format: `{ title_1: :value_1, [...] }`
60
+ - Array: Array of hashes, each of format: `{ title: 'Field name', value: field_value, short: true }`
61
61
 
62
62
  ### Configuration
63
63
 
@@ -90,7 +90,7 @@ private
90
90
  end
91
91
 
92
92
  def credentials_urls
93
- Rails.application.credentials.slack.mapeach_with_object({}) do |(k, v), h|
93
+ Rails.application.credentials.slack.each_with_object({}) do |(k, v), h|
94
94
  h[k.to_s.gsub('_', '-')] = v
95
95
  end
96
96
  end
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'slack-notification'
8
- spec.version = '0.1.4'
8
+ spec.version = '0.1.5'
9
9
  spec.authors = ['Julian Fiander']
10
10
  spec.email = ['julian@fiander.one']
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack-notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Fiander