simplepush 0.7.4 → 0.7.5

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
  SHA256:
3
- metadata.gz: 353f24a0df585e1562d5fd230ec617b6dd8bf00eeb12276abdd6b28dedab11fd
4
- data.tar.gz: d0621546fa701d920ae2402897556656bea49fc4750315d8c676489d5c3c0af3
3
+ metadata.gz: ff60e8ee85628a56967349ef99517e7c0a82bc241bb977e4c9ccb798fbe67906
4
+ data.tar.gz: 5de8f447389e3f82001513c0c1fc08c4bb41d743b9203dca70bdbf54a349b1d7
5
5
  SHA512:
6
- metadata.gz: c11593e4687e147deb35e3b22c640311071f82d6a2f79cb6105e7720e9668400abc31c84bdd34ea20fcb12c190fb380ef94d22cb2551e0b42c49b30684077d5f
7
- data.tar.gz: d27ab08b731c3dabca0cea3a78900f317080999e9388cede3b36443ca42e485f247f2ea1a1fd04edd57083e7334e1c52bbd88f8caefdda79b4485326b7c94772
6
+ metadata.gz: 0b715d506a227e7c72c997636733ccc43807695a1a07fd26b6a85e2b52ceff6d4e9245eff2da32129b7a5f689682844c8e9fde4ece1e5ff6363385164d3af5ef
7
+ data.tar.gz: e4a70aa09237fc24db24fe39a48b0a34755fd8198989821d0d9d62695c0da644fc2532261fff8eafd3db460914df2ea26cdcc8533e3f50733f9b78b9cd1ae165
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplepush (0.7.4)
4
+ simplepush (0.7.5)
5
5
  httparty
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -145,6 +145,7 @@ The following is a sample of the query as it is produced:
145
145
  - 0.7.2 Bump dependencies because of vulnerability in httparty
146
146
  - 0.7.3 Fix OpenSSL cipher needing key again under Ruby >= 3.0, bump dependencies
147
147
  - 0.7.4 Fix message length restrictions for Exception Notification
148
+ - 0.7.5 Make more robust again missing credentials
148
149
 
149
150
  ## Contributing
150
151
 
@@ -9,13 +9,21 @@ module ExceptionNotifier
9
9
 
10
10
  def initialize(options)
11
11
  cred = Rails.application.credentials.simplepush
12
+
13
+ if !cred
14
+ Rails.logger.error "Simplepush credentials not found. Please add simplepush credentials to your credentials file."
15
+ return
16
+ end
17
+
12
18
  @client = Simplepush.new(cred[:key], cred[:pass], cred[:salt])
13
19
  @default_options = options
14
20
  end
15
21
 
16
22
  def call(exception, options = {})
17
- event = SimplepushExceptionEvent.new(exception, options.reverse_merge(default_options))
18
- @client.send(event.formatted_title, event.formatted_body)
23
+ if !@client
24
+ event = SimplepushExceptionEvent.new(exception, options.reverse_merge(default_options))
25
+ @client.send(event.formatted_title, event.formatted_body)
26
+ end
19
27
  end
20
28
 
21
29
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Simplepush
4
- VERSION = "0.7.4"
4
+ VERSION = "0.7.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplepush
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Oezbek
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-13 00:00:00.000000000 Z
11
+ date: 2024-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty