blazer 1.7.4 → 1.7.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -12
- data/app/models/blazer/check.rb +1 -1
- data/app/views/blazer/checks/index.html.erb +1 -1
- data/app/views/blazer/dashboards/_form.html.erb +1 -1
- data/lib/blazer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0265c97c2a0672f33553de90d304f7cfe6b329fd
|
|
4
|
+
data.tar.gz: 8b75dd5df6a79ca85ea0dc57fb9cce0c57041f2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71cf44972395be5cbc664c6d37c9e85d8b2a4f33a70fec4d96da7f4fddff2e9fe4a89e99db42f2f150496c8ee2fe3f5c361d672bd3cbd3ef7fdf7aec653d9cd6
|
|
7
|
+
data.tar.gz: 0bd5ed95b4f97474e336e07cba17dc4b75188b22456c42a8aa8f85160866c58a2b83a6e27df644d25d756cd3b3da42d6324121853392e4ccf4ba24b23e65f00c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -672,18 +672,7 @@ View the [changelog](https://github.com/ankane/blazer/blob/master/CHANGELOG.md)
|
|
|
672
672
|
|
|
673
673
|
## Thanks
|
|
674
674
|
|
|
675
|
-
Blazer uses a number of awesome
|
|
676
|
-
|
|
677
|
-
- [Rails](https://github.com/rails/rails/)
|
|
678
|
-
- [jQuery](https://github.com/jquery/jquery)
|
|
679
|
-
- [Bootstrap](https://github.com/twbs/bootstrap)
|
|
680
|
-
- [Selectize](https://github.com/brianreavis/selectize.js)
|
|
681
|
-
- [List.js](https://github.com/javve/list.js)
|
|
682
|
-
- [StickyTableHeaders](https://github.com/jmosbech/StickyTableHeaders)
|
|
683
|
-
- [Stupid jQuery Table Sort](https://github.com/joequery/Stupid-Table-Plugin)
|
|
684
|
-
- [Date Range Picker](https://github.com/dangrossman/bootstrap-daterangepicker)
|
|
685
|
-
|
|
686
|
-
Created by [ankane](https://github.com/ankane) and [righi](https://github.com/righi)
|
|
675
|
+
Blazer uses a number of awesome open source projects, including [Rails](https://github.com/rails/rails/), [Vue.js](https://github.com/vuejs/vue), [jQuery](https://github.com/jquery/jquery), [Bootstrap](https://github.com/twbs/bootstrap), [Selectize](https://github.com/brianreavis/selectize.js), [StickyTableHeaders](https://github.com/jmosbech/StickyTableHeaders), [Stupid jQuery Table Sort](https://github.com/joequery/Stupid-Table-Plugin), and [Date Range Picker](https://github.com/dangrossman/bootstrap-daterangepicker).
|
|
687
676
|
|
|
688
677
|
Demo data from [MovieLens](http://grouplens.org/datasets/movielens/).
|
|
689
678
|
|
data/app/models/blazer/check.rb
CHANGED
|
@@ -58,7 +58,7 @@ module Blazer
|
|
|
58
58
|
|
|
59
59
|
# do not notify on creation, except when not passing
|
|
60
60
|
if (state_was != "new" || state != "passing") && state != state_was && emails.present?
|
|
61
|
-
Blazer::CheckMailer.state_change(self, state, state_was, result.rows.size, message, result.columns, result.rows.first(10).as_json, result.column_types, check_type).
|
|
61
|
+
Blazer::CheckMailer.state_change(self, state, state_was, result.rows.size, message, result.columns, result.rows.first(10).as_json, result.column_types, check_type).deliver_now
|
|
62
62
|
end
|
|
63
63
|
save! if changed?
|
|
64
64
|
end
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
</td>
|
|
25
25
|
<td><%= check.schedule if check.respond_to?(:schedule) %></td>
|
|
26
26
|
<td>
|
|
27
|
-
<ul class="list-unstyled" style="margin-bottom: 0;">
|
|
27
|
+
<ul class="list-unstyled" style="margin-bottom: 0; word-break: break-all;">
|
|
28
28
|
<% check.split_emails.each do |email| %>
|
|
29
29
|
<li><%= email %></li>
|
|
30
30
|
<% end %>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<%= f.label :name %>
|
|
8
8
|
<%= f.text_field :name, class: "form-control" %>
|
|
9
9
|
</div>
|
|
10
|
-
<div class="form-group" v-
|
|
10
|
+
<div class="form-group" v-show="queries.length">
|
|
11
11
|
<%= f.label :charts %>
|
|
12
12
|
<ul id="queries" class="list-group">
|
|
13
13
|
<li class="list-group-item" v-for="(query, index) in queries" :key="query.id" v-cloak>
|
data/lib/blazer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blazer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Kane
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-11-
|
|
11
|
+
date: 2016-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|