opsask 2.0.9 → 2.0.10
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/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/public/css/style.css +5 -4
- data/views/_queue.erb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 015771f164a44ae7c15a5e03c4dc10545cdf4228
|
|
4
|
+
data.tar.gz: dc311d966f3e93acf248536ae49f355134f76f13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 561247423d77e930aa0e5b736afb80e4167575835acc3a3e10ffb4b41e06cb36b01b476574db8df5160615cc9de49e61606be403d3f314f68ed645495e05a739
|
|
7
|
+
data.tar.gz: 041ad7214863be4bcaa95f6c4c5c9e6a49218006f8d377a73078053aa2d5e98c4084bd815a83d07c2ab65740b97fbcc5fa6e02ed4fea9e9fe111ae7c29a4fd4a
|
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.0.
|
|
1
|
+
2.0.10
|
data/public/css/style.css
CHANGED
|
@@ -148,10 +148,11 @@ input[type="checkbox"] + label {
|
|
|
148
148
|
|
|
149
149
|
.stats .stat {
|
|
150
150
|
color: #ebebeb;
|
|
151
|
-
padding-top:
|
|
152
|
-
padding-bottom:
|
|
151
|
+
padding-top: 3em;
|
|
152
|
+
padding-bottom: 3em;
|
|
153
153
|
background-color: #333;
|
|
154
154
|
text-align: center;
|
|
155
|
+
font-size: 1.25em;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
158
|
.stat.resolved {
|
|
@@ -173,7 +174,7 @@ input[type="checkbox"] + label {
|
|
|
173
174
|
}
|
|
174
175
|
|
|
175
176
|
.stat .number {
|
|
176
|
-
font-size: 1.
|
|
177
|
+
font-size: 1.5em;
|
|
177
178
|
font-weight: bold;
|
|
178
179
|
}
|
|
179
180
|
|
|
@@ -182,7 +183,7 @@ input[type="checkbox"] + label {
|
|
|
182
183
|
}
|
|
183
184
|
|
|
184
185
|
.stat .about {
|
|
185
|
-
font-size: 1.
|
|
186
|
+
font-size: 1.4em;
|
|
186
187
|
padding-top: 0.75em;
|
|
187
188
|
font-weight: bold;
|
|
188
189
|
}
|
data/views/_queue.erb
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<% jiras.each do |jira| %>
|
|
6
6
|
<li class="jira <%= classes_for jira %>">
|
|
7
7
|
<a href="http://jira.bluejeansnet.com/browse/<%= jira.key %>">
|
|
8
|
-
<% labels = jira.fields['labels'].reject { |i| i == 'OpsAsk' || i =~ /Sprint/ }.map { |l| { 'name' => l } } + jira.fields['components'] %>
|
|
8
|
+
<% labels = jira.fields['labels'].reject { |i| i == 'OpsAsk' || i =~ /Sprint/ }.map { |l| { 'name' => l } } + jira.fields['components'] - %w[ OpsBLR ] %>
|
|
9
9
|
<h3><%= jira.key %> <%= partial :components, locals: { components: labels, epic: epic(jira.fields['customfield_10350']) } %></h3>
|
|
10
10
|
<p><%= jira.fields['summary'] %></p>
|
|
11
11
|
<p><%= %></p>
|