strongmind-auth 1.0.7 → 1.0.8

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: 717208fe25cfb0be9f006445e0e4e6fddcc282c7130f3555e856b7e71eefd19d
4
- data.tar.gz: 0f41a6e97da4ec22a72921b5846fc2313b9f1b47f62fff5092cd41613f404785
3
+ metadata.gz: fe8a1065a1aaff5f3ed20999981c7201aaccc6db7e7aab98f5e775a2b1e6911d
4
+ data.tar.gz: 5d5740e266cd5ee581800f9f18ffda6d71fa5c5ceb6ff9957384ec509773eb26
5
5
  SHA512:
6
- metadata.gz: 0a9312df1eb222957874f91213c4f363be2122beed62f80923db387c015b1777fb81d6074e37e9e4f51306c744de6bfa692a0dd5446499a90375a265add8dd66
7
- data.tar.gz: 50887fc064a25882bb03ca1d42a8338c382f5006394a2fadd2995ba41c5d1fb0996ce588625d25236493ecbab6228536bbe1d344046188d87ceceee7f9823b9d
6
+ metadata.gz: 29c1de0ced18e7d4f1d3244c725c86fc8d34b496a46c2fc265e930b0a23ba29e853407e6fafd95d7fcdb54e39a1fca6c91e540d008f19edaaff1f3ae38f6f433
7
+ data.tar.gz: 61f1111cbfab644070ffe0d3a377fa50e6043737e1a87e3420869a1502924b7a07d33a38fcb04afb37925d01984f82a88d9aeb9f012ae1f110f5edaa485d47c5
@@ -10,9 +10,11 @@ module StrongMindNav
10
10
  @top_navbar_html = navbar[:top_navbar_html]
11
11
  @bottom_navbar_html = navbar[:bottom_navbar_html]
12
12
  @theme_css = navbar[:theme_css]
13
- rescue Strongmind::CommonNavFetcher::TokenNotFoundError, Strongmind::CommonNavFetcher::UserNotFoundError
13
+ rescue Strongmind::CommonNavFetcher::TokenNotFoundError, Strongmind::CommonNavFetcher::UserNotFoundError => e
14
+ Sentry.capture_exception(e)
14
15
  render 'logins/index'
15
- rescue Faraday::TimeoutError
16
+ rescue Exception => e
17
+ Sentry.capture_exception(e)
16
18
  @top_navbar_html = render_to_string(partial: 'layouts/loading_navbar').html_safe
17
19
  end
18
20
  end
@@ -52,6 +52,7 @@ devise_scope :user do
52
52
  gem 'omniauth_openid_connect'
53
53
  gem 'omniauth-rails_csrf_protection'
54
54
  gem 'dotenv-rails'
55
+ gem 'sentry-rails'
55
56
 
56
57
  end
57
58
 
@@ -1,5 +1,5 @@
1
1
  module Strongmind
2
2
  module Auth
3
- VERSION = "1.0.7"
3
+ VERSION = "1.0.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strongmind-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Belding