rails_error_dashboard 0.2.1 → 0.2.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1cc76e092da14b5ec94ca8b6977837fdd10b87946d46249bfd8c5f5e300874a
|
|
4
|
+
data.tar.gz: 5dab8f740555c28018905a9b031df6bff749cddd470d131ba0a807dbe16710e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fee35c5ab9248ab74aed67f2171fec3cc1acb143f6bf84c3f2c017027d1b4825bb2b77b6d6d9e6d93422065c0257bd6b8c3e6fcca7c51fc1a79d68639159d8bd
|
|
7
|
+
data.tar.gz: 9407c784ed243265cf34970d1deac082e4d5748c1e9899984370735e48eb93e3519ce09ed597054d9f26564ee079222a65e518eb885e8b92e9c6d39fe6922f64
|
|
@@ -679,7 +679,7 @@
|
|
|
679
679
|
</div>
|
|
680
680
|
</td>
|
|
681
681
|
<td>
|
|
682
|
-
<% probability_pct = (cascade[:probability] * 100).round(1) %>
|
|
682
|
+
<% probability_pct = ((cascade[:probability] || 0) * 100).round(1) %>
|
|
683
683
|
<span class="badge <%= probability_pct >= 70 ? 'bg-danger' : 'bg-warning' %>">
|
|
684
684
|
<%= probability_pct %>%
|
|
685
685
|
</span>
|
|
@@ -689,7 +689,7 @@
|
|
|
689
689
|
</td>
|
|
690
690
|
<td>
|
|
691
691
|
<small class="text-muted">
|
|
692
|
-
<%= cascade[:avg_delay_seconds].round(1) %>s
|
|
692
|
+
<%= (cascade[:avg_delay_seconds] || 0).round(1) %>s
|
|
693
693
|
</small>
|
|
694
694
|
</td>
|
|
695
695
|
<td>
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
</div>
|
|
738
738
|
</td>
|
|
739
739
|
<td>
|
|
740
|
-
<% probability_pct = (cascade[:probability] * 100).round(1) %>
|
|
740
|
+
<% probability_pct = ((cascade[:probability] || 0) * 100).round(1) %>
|
|
741
741
|
<span class="badge <%= probability_pct >= 70 ? 'bg-danger' : 'bg-warning' %>">
|
|
742
742
|
<%= probability_pct %>%
|
|
743
743
|
</span>
|
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
</td>
|
|
748
748
|
<td>
|
|
749
749
|
<small class="text-muted">
|
|
750
|
-
+<%= cascade[:avg_delay_seconds].round(1) %>s
|
|
750
|
+
+<%= (cascade[:avg_delay_seconds] || 0).round(1) %>s
|
|
751
751
|
</small>
|
|
752
752
|
</td>
|
|
753
753
|
<td>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_error_dashboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anjan Jagirdar
|
|
@@ -403,7 +403,7 @@ metadata:
|
|
|
403
403
|
documentation_uri: https://AnjanJ.github.io/rails_error_dashboard
|
|
404
404
|
bug_tracker_uri: https://github.com/AnjanJ/rails_error_dashboard/issues
|
|
405
405
|
post_install_message: "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n
|
|
406
|
-
\ Rails Error Dashboard v0.2.
|
|
406
|
+
\ Rails Error Dashboard v0.2.2\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n\U0001F195
|
|
407
407
|
First time? Quick start:\n rails generate rails_error_dashboard:install\n rails
|
|
408
408
|
db:migrate\n # Add to config/routes.rb:\n mount RailsErrorDashboard::Engine
|
|
409
409
|
=> '/error_dashboard'\n\n\U0001F504 Upgrading from v0.1.x?\n rails db:migrate\n
|