sw2at-ui 0.0.8 → 0.0.9

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.
@@ -0,0 +1,55 @@
1
+ //= require_tree .
2
+ //= require_self
3
+
4
+ @import "bootstrap";
5
+
6
+ $greyBg: #9f9f9f;
7
+ $greenMain: greenyellow;
8
+
9
+ #swat {
10
+ font-size: 13px;
11
+ #header-label {
12
+ margin-top: 0;
13
+ padding: 12px;
14
+ a {
15
+ color: $greenMain;
16
+ &:hover {
17
+ text-decoration: none;
18
+ }
19
+ }
20
+ .label {
21
+ width: 100%;
22
+ float: left;
23
+ font-size: 12px;
24
+ color: $greenMain;
25
+ }
26
+ &:hover .label {
27
+ display: inline !important;
28
+ }
29
+ }
30
+ h1, h2, h3 {
31
+ text-align: center;
32
+ }
33
+ header {
34
+ background-color: black;
35
+ color: white;
36
+ h2 {
37
+ color: $greenMain;
38
+ text-align: center;
39
+ sub {
40
+ font-size: 12px;
41
+ }
42
+ }
43
+ }
44
+ #subheader {
45
+ h3 {
46
+ margin: 5px;
47
+ }
48
+ }
49
+ #content {
50
+ background: rgb(240, 240, 240);
51
+ }
52
+ #container {
53
+ padding: 0px 15px 15px 15px;
54
+ }
55
+ }
@@ -0,0 +1,261 @@
1
+ $footerSize: 45px;
2
+ $negativeFooterSize: -$footerSize;
3
+
4
+ $commandWidth: 400px;
5
+ $copyIconWidth: 30px;
6
+ $commandTextWidth: $commandWidth - $copyIconWidth;
7
+
8
+ html, body {
9
+ height: 100% !important;
10
+ min-height: 100%;
11
+ }
12
+
13
+ #swat {
14
+ height: 100%;
15
+ min-height: 100%;
16
+ #container {
17
+
18
+ .has-status {
19
+
20
+ &.in_progress_failed, &.completed_failed {
21
+ color: rgb(242, 40, 77);
22
+ background: rgba(252, 226, 222, 0.49);
23
+ }
24
+
25
+ &.in_progress_success, &.completed_passed {
26
+ color: rgb(59, 153, 78);
27
+ background: rgba(134, 252, 148, 0.49);
28
+ }
29
+
30
+ }
31
+
32
+
33
+ min-height: 100%;
34
+ .invisible {
35
+ opacity: 0;
36
+ }
37
+ .loader {
38
+ background: url("/assets/swat/loading-green.gif") no-repeat;
39
+ width: 50px;
40
+ height: 50px;
41
+ display: inline-block;
42
+ float: left;
43
+ margin-left: 16px;
44
+ }
45
+ #revision-info {
46
+ .revision {
47
+ color: grey;
48
+ padding-top: 9px;
49
+ float: left;
50
+ width: 100%;
51
+ .revision-name {
52
+ padding-left: 10px;
53
+ color: black;
54
+ }
55
+ .revision-status {
56
+ float: left;
57
+ margin-left: 20px;
58
+ &.in_progress_success, &.completed_passed {
59
+ color: #50ce5f;
60
+ }
61
+ &.in_progress_failed,&.completed_failed {
62
+ color: #ff5246;
63
+ }
64
+ }
65
+ .controls {
66
+ float: right;
67
+ .btn {
68
+ background-color: rgb(124, 222, 124);
69
+ color: green;
70
+ font-weight: bold;
71
+ margin-right: 10px;
72
+ &:hover {
73
+ background-color: rgb(169, 222, 157);
74
+ }
75
+ }
76
+ .revisions {
77
+ opacity: 1;
78
+ }
79
+ .reload {
80
+ opacity: 1;
81
+ }
82
+ }
83
+ }
84
+ .total-examples {
85
+ background: #e8e8e8;
86
+ display: inline-block;
87
+ padding: 6px;
88
+ border-radius: 30px;
89
+ color: #887171;
90
+ font-weight: bold;
91
+ text-align: center;
92
+ margin-left: 10px;
93
+ }
94
+
95
+ #metrics-container {
96
+ background: white;
97
+ border: 1px solid rgb(228, 225, 225);
98
+ border-top: none;
99
+ min-height: 500px;
100
+ overflow: hidden;
101
+ }
102
+ #charts-container {
103
+ width: 500px;
104
+ float: left;
105
+ }
106
+ #global-stats-container {
107
+ padding: 30px;
108
+ width: 500px;
109
+ float: left;
110
+ table {
111
+
112
+ }
113
+ }
114
+
115
+ }
116
+ #revisions-container {
117
+ .revisions-header {
118
+ margin: 0;
119
+ padding-right: 50px;
120
+ padding-top: 8px;
121
+ }
122
+ .list {
123
+ padding: 13px;
124
+ }
125
+ table.revisions-table {
126
+ background: white;
127
+ tr {
128
+ cursor: pointer;
129
+ }
130
+ }
131
+ }
132
+ #revisions-container {
133
+ tr {
134
+ cursor: pointer;
135
+ }
136
+ }
137
+ table#test-cases {
138
+ border-top: 0;
139
+ tr {
140
+ cursor: default;
141
+ th {
142
+ border-top: 0;
143
+ background: white;
144
+ &.command {
145
+ width: $commandWidth;
146
+ }
147
+ &.status {
148
+ width: 100px;
149
+ }
150
+ &.duration {
151
+ width: 100px;
152
+ }
153
+ &.exception {
154
+ width: 400px;
155
+ }
156
+ }
157
+ td {
158
+ &:hover {}
159
+ background-color: transparent;
160
+ padding: 0;
161
+ .cell {
162
+ padding: 8px;
163
+ display: block;
164
+ }
165
+ .detailed-info {
166
+ padding: 0 8px;
167
+ }
168
+ }
169
+ td.status {
170
+ font-weight: bold;
171
+ text-transform: capitalize;
172
+ }
173
+ td.command {
174
+ background: white;
175
+ cursor: pointer;
176
+ margin: 0;
177
+ padding: 0;
178
+ input {
179
+ width: $commandTextWidth;
180
+ margin-right: 5px;
181
+ height: 100%;
182
+ padding-left: 10px;
183
+ padding-right: 10px;
184
+ margin: 0;
185
+ border: none;
186
+ font-weight: bold;
187
+ background: black;
188
+ color: red;
189
+ }
190
+ }
191
+ &.failed {
192
+ background: mistyrose;
193
+ color: red;
194
+ .main-info {
195
+ cursor: pointer;
196
+ &:hover {
197
+ background: #ffd7e5;
198
+ }
199
+ }
200
+ td.command {
201
+ input {
202
+ color: rgb(223, 96, 96);
203
+ }
204
+ }
205
+ }
206
+ &.passed {
207
+ background: lightgreen;
208
+ color: green;
209
+ td.command {
210
+ input {
211
+ color: rgb(129, 192, 129);
212
+ }
213
+ }
214
+ }
215
+ }
216
+ }
217
+ }
218
+ .push {
219
+ height: $footerSize;
220
+ }
221
+ #footer {
222
+ height: $footerSize;
223
+ margin-top: $negativeFooterSize;
224
+ text-align: center;
225
+ }
226
+ .nav-tabs {
227
+ margin-left: 12px;
228
+ margin-right: 12px;
229
+ span.label {
230
+ color: black;
231
+ font-size: 15px;
232
+ }
233
+ span.status {
234
+ &.in_progress_success {
235
+ color: rgb(192, 175, 84);
236
+ }
237
+ &.in_progress_failed {
238
+ color: rgb(217, 140, 160);
239
+ }
240
+ &.completed_failed {
241
+ color: rgb(242, 40, 77);
242
+ }
243
+ &.completed_passed {
244
+ color: rgb(61, 168, 83);
245
+ }
246
+ }
247
+ }
248
+ .tab-content {
249
+ .tab-pane {
250
+ padding: 12px;
251
+ padding-top: 0;
252
+ }
253
+ }
254
+ .copy-icon {
255
+ font-size: 20px;
256
+ display: inline-block;
257
+ text-decoration: none;
258
+ color: black;
259
+ margin-left: 5px;
260
+ }
261
+ }
@@ -22,8 +22,7 @@ class Revision < Fire::SingleNestedModel
22
22
 
23
23
  class Thread < Fire::NestedModel
24
24
  nested_in Revision::Root, folder: 'threads'
25
- set_id_key(:thread_id)
26
- has_path_keys
25
+ set_id_key :thread_id
27
26
  attr_accessor :tests
28
27
  end
29
28
 
@@ -5,21 +5,21 @@
5
5
  .list ng-if="revisions"
6
6
  table.revisions-table.table.table-bordered.table-hover
7
7
  tr
8
+ th Name
8
9
  th Branch
9
10
  th User
10
- th Name
11
11
  th Time
12
12
  th Status
13
- tr ng-repeat="revision in revisions | orderBy: 'data.time'" ui-sref="revision(revision.data)"
13
+ tr.has-status ng-class="revision.data.status.name" ng-repeat="revision in revisions | orderBy: '-data.time'" ui-sref="revision(revision.data)"
14
+ td
15
+ strong
16
+ | {{ revision.data.name || revision.data.time }}
14
17
  td
15
18
  | {{ revision.data.branch }}
16
19
  td
17
20
  | {{ revision.data.user }}
18
21
  td
19
- strong
20
- | {{ revision.data.name || revision.data.time }}
21
- td
22
- | {{ revision.data.time | date: "yyyy/MM/dd h:mm:ss a" }}
23
- td.revision-status ng-class="revision.data.status.name"
22
+ | {{ revision.data.time * 1000 | date: "yyyy/MM/dd h:mm:ss a" }}
23
+ td.revision-status ng-class="revision.data.status.name" title="{{ revision.data.status.name }}"
24
24
  | {{ revision.data.status.label }}
25
25
 
@@ -0,0 +1,31 @@
1
+ - test_id = '{{ "failed_"+test.id }}'
2
+ table#test-cases.table.table-bordered.table-hover
3
+ tr
4
+ th.exception Exception
5
+ th Tests
6
+ th.duration Count
7
+ tr.failed ng-repeat="exception in summary.exceptions"
8
+ td title="{{ exception.message }}"
9
+ .cell
10
+ strong
11
+ | {{ $index+1 }}. &nbsp;
12
+ | {{ exception.message }}
13
+ td.failed-tests
14
+ span.cell
15
+ .test ng-repeat="test in exception.tests"
16
+ .main-info data-toggle="collapse" data-target="##{test_id}"
17
+ strong
18
+ | {{ test.full_description }}
19
+ p
20
+ | {{ test.location }}
21
+ .detailed-info.collapse id="#{test_id}"
22
+ span.message
23
+ strong
24
+ | {{ test.exception.message }}
25
+ .backtrace
26
+ p.trace-line ng-repeat="line in test.exception.backtrace track by $index"
27
+ | {{ line }}
28
+
29
+ th.count
30
+ span.cell
31
+ | {{ exception.tests.length }}
@@ -0,0 +1,29 @@
1
+ table#test-cases.table.table-bordered.table-hover
2
+ tr
3
+ th Test
4
+ th.duration Duration
5
+ th.status Status
6
+ th.command Location
7
+ - test_id = '{{ "full_"+test.id }}'
8
+ tr ng-class="test.status" ng-repeat="test in #{ object }"
9
+ td title="{{ test.full_description }}"
10
+ .main-info.cell data-toggle="collapse" data-target="##{test_id}"
11
+ strong
12
+ | {{ $index+1 }}. &nbsp;
13
+ | {{ test.full_description }}
14
+ .detailed-info.collapse id="#{test_id}" ng-if="test.exception"
15
+ span.message
16
+ strong
17
+ | {{ test.exception.message }}
18
+ .backtrace
19
+ p.trace-line ng-repeat="line in test.exception.backtrace track by $index"
20
+ | {{ line }}
21
+ td.duration
22
+ span.cell
23
+ | {{ test.run_time | number:0 }} sec
24
+ td.status
25
+ span.cell
26
+ | {{ test.status }}
27
+ td.command clip-copy="'rspec ' + test.location" title="{{ 'rspec ' + test.location }}"
28
+ input type="text" value="rspec {{ test.location }}" disabled="disabled"
29
+ a.fa.fa-copy.copy-icon
@@ -6,9 +6,11 @@
6
6
  | {{ ' '+revision.data.status.label }}
7
7
  span.loader ng-class="{ true: 'invisible' }[(revisionPromise && revisionPromise.$resolved)]"
8
8
  .controls
9
- button.btn.revisions ui-sref="revisions"
9
+ button.btn.revisions ui-sref="revisions" title="See all revisions list"
10
10
  | Go to Revisions
11
- button.btn.reload ng-click="reloadData()"
11
+ button.btn.revisions ui-sref="summary(revision.data)" title="See this revision summary"
12
+ | Summary
13
+ button.btn.reload ng-click="reloadData()" title="Refresh this revision"
12
14
  | Refresh
13
15
 
14
16
  div
@@ -19,36 +21,7 @@
19
21
  | {{ tab.thread.thread_name }}
20
22
  span.label.total-examples
21
23
  | {{ tab.thread.tests.length }} / {{ tab.thread.total_runned }}
22
- table#test-cases.table.table-bordered.table-hover
23
- tr
24
- th Test
25
- th.duration Duration
26
- th.status Status
27
- th.command Location
28
- tr ng-class="test.status" ng-repeat="test in tab.thread.tests"
29
- - test_id = '{{ test.id }}'
30
- td title="{{ test.full_description }}"
31
- .main-info.cell data-toggle="collapse" data-target="##{test_id}"
32
- strong
33
- | {{ $index+1 }}. &nbsp;
34
- | {{ test.full_description }}
35
- .detailed-info.collapse id="#{test_id}" ng-if="test.exception"
36
- span.message
37
- strong
38
- | {{ test.exception.message }}
39
- .backtrace
40
- p.trace-line ng-repeat="line in test.exception.backtrace track by $index"
41
- | {{ line }}
42
- td.duration
43
- span.cell
44
- | {{ test.run_time | number:0 }} sec
45
- td.status
46
- span.cell
47
- | {{ test.status }}
48
- td.command clip-copy="'rspec ' + test.location" title="{{ 'rspec ' + test.location }}"
49
- input type="text" value="rspec {{ test.location }}" disabled="disabled"
50
- a.fa.fa-copy.copy-icon
51
-
24
+ = render partial: 'swat/pages/revisions/partials/test_cases', locals: { object: 'tab.thread.tests' }
52
25
 
53
26
 
54
27
 
@@ -0,0 +1,52 @@
1
+ #revision-info
2
+ h1.revision
3
+ span.revision-name
4
+ | {{ revision.data.name || revision.data.time }}
5
+ span.revision-status ng-class="revision.data.status.name"
6
+ | {{ ' '+revision.data.status.label }}
7
+ span.loader ng-class="{ true: 'invisible' }[(revisionPromise && revisionPromise.$resolved)]"
8
+ .controls
9
+ button.btn.revisions ui-sref="revisions" title="See all revisions list"
10
+ | Go to Revisions
11
+ button.btn.revisions ui-sref="revision(revision.data)" title="See this revision tests"
12
+ | Tests
13
+ button.btn.reload ng-click="reloadData()" title="Refresh this revision"
14
+ | Refresh
15
+
16
+ div
17
+ tabset
18
+ tab
19
+ tab-heading
20
+ span.label Graph
21
+ .tab-content
22
+ #metrics-container
23
+ #global-stats-container
24
+ table#global-stats.table.table-bordered.table-hover
25
+ tr ng-repeat="metric in summary.metrics"
26
+ td.name
27
+ strong
28
+ | {{ metric.name }}
29
+ td.value
30
+ | {{ metric.value }}
31
+
32
+ #charts-container
33
+ div ng-if="failsStats"
34
+ highchart id="fails_stats" config="failsStats"
35
+ tab
36
+ tab-heading
37
+ span.label Fails
38
+ .tab-content
39
+ #fails
40
+ = render partial: 'swat/pages/revisions/partials/test_cases', locals: { object: 'summary.fails' }
41
+ tab
42
+ tab-heading
43
+ span.label Exceptions
44
+ .tab-content
45
+ #exceptions
46
+ = render partial: 'swat/pages/revisions/partials/exceptions'
47
+
48
+
49
+
50
+
51
+
52
+
data/config/routes.rb CHANGED
@@ -28,7 +28,7 @@ Swat::Engine.routes.draw do
28
28
  # Angular Pages
29
29
  namespace :pages do
30
30
  namespace :revisions do
31
- pages = [ :index, :show ]
31
+ pages = [ :index, :show, :summary ]
32
32
  pages.each do |p|
33
33
  get p, to: p
34
34
  end
data/sw2at-ui.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: sw2at-ui 0.0.8 ruby lib
5
+ # stub: sw2at-ui 0.0.9 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "sw2at-ui"
9
- s.version = "0.0.8"
9
+ s.version = "0.0.9"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -32,6 +32,9 @@ Gem::Specification.new do |s|
32
32
  "app/assets/javascripts/swat/app/controllers/revision.coffee",
33
33
  "app/assets/javascripts/swat/app/controllers/revisions.coffee",
34
34
  "app/assets/javascripts/swat/app/controllers/root.coffee",
35
+ "app/assets/javascripts/swat/app/controllers/summary.coffee",
36
+ "app/assets/javascripts/swat/app/factories/fails_graph.coffee",
37
+ "app/assets/javascripts/swat/app/factories/helpers.coffee",
35
38
  "app/assets/javascripts/swat/app/factories/response.coffee",
36
39
  "app/assets/javascripts/swat/app/factories/revision_model.coffee",
37
40
  "app/assets/javascripts/swat/app/services/revision.coffee",
@@ -355,7 +358,9 @@ Gem::Specification.new do |s|
355
358
  "app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.js",
356
359
  "app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.min.js",
357
360
  "app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.swf",
358
- "app/assets/stylesheets/swat/application.sass",
361
+ "app/assets/javascripts/swat/lib/highcharts-ng.js",
362
+ "app/assets/javascripts/swat/lib/highcharts.src.js",
363
+ "app/assets/stylesheets/swat/application.scss",
359
364
  "app/assets/stylesheets/swat/default-theme.css",
360
365
  "app/assets/stylesheets/swat/font-awesome.css",
361
366
  "app/assets/stylesheets/swat/fonts/FontAwesome.otf",
@@ -364,7 +369,7 @@ Gem::Specification.new do |s|
364
369
  "app/assets/stylesheets/swat/fonts/fontawesome-webfont.ttf",
365
370
  "app/assets/stylesheets/swat/fonts/fontawesome-webfont.woff",
366
371
  "app/assets/stylesheets/swat/fonts/fontawesome-webfont.woff2",
367
- "app/assets/stylesheets/swat/swat_theme.sass",
372
+ "app/assets/stylesheets/swat/swat_theme.scss",
368
373
  "app/controllers/swat/api/revisions_controller.rb",
369
374
  "app/controllers/swat/api/test_cases_controller.rb",
370
375
  "app/controllers/swat/application_controller.rb",
@@ -382,7 +387,10 @@ Gem::Specification.new do |s|
382
387
  "app/views/layouts/swat/page.slim",
383
388
  "app/views/swat/application/index.slim",
384
389
  "app/views/swat/pages/revisions/index.slim",
390
+ "app/views/swat/pages/revisions/partials/_exceptions.slim",
391
+ "app/views/swat/pages/revisions/partials/_test_cases.slim",
385
392
  "app/views/swat/pages/revisions/show.slim",
393
+ "app/views/swat/pages/revisions/summary.slim",
386
394
  "app/views/swat/shared/_footer.slim",
387
395
  "app/views/swat/shared/_header.slim",
388
396
  "bin/rails",
@@ -419,7 +427,7 @@ Gem::Specification.new do |s|
419
427
 
420
428
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
421
429
  s.add_runtime_dependency(%q<rails>, [">= 3.1"])
422
- s.add_runtime_dependency(%q<fire-model>, ["~> 0.0.15"])
430
+ s.add_runtime_dependency(%q<fire-model>, ["~> 0.0.17"])
423
431
  s.add_runtime_dependency(%q<slim-rails>, [">= 0"])
424
432
  s.add_runtime_dependency(%q<sass-rails>, [">= 0"])
425
433
  s.add_runtime_dependency(%q<coffee-rails>, [">= 0"])
@@ -434,7 +442,7 @@ Gem::Specification.new do |s|
434
442
  s.add_development_dependency(%q<simplecov>, [">= 0"])
435
443
  else
436
444
  s.add_dependency(%q<rails>, [">= 3.1"])
437
- s.add_dependency(%q<fire-model>, ["~> 0.0.15"])
445
+ s.add_dependency(%q<fire-model>, ["~> 0.0.17"])
438
446
  s.add_dependency(%q<slim-rails>, [">= 0"])
439
447
  s.add_dependency(%q<sass-rails>, [">= 0"])
440
448
  s.add_dependency(%q<coffee-rails>, [">= 0"])
@@ -450,7 +458,7 @@ Gem::Specification.new do |s|
450
458
  end
451
459
  else
452
460
  s.add_dependency(%q<rails>, [">= 3.1"])
453
- s.add_dependency(%q<fire-model>, ["~> 0.0.15"])
461
+ s.add_dependency(%q<fire-model>, ["~> 0.0.17"])
454
462
  s.add_dependency(%q<slim-rails>, [">= 0"])
455
463
  s.add_dependency(%q<sass-rails>, [">= 0"])
456
464
  s.add_dependency(%q<coffee-rails>, [">= 0"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sw2at-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitaly Tarasenko
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 0.0.15
33
+ version: 0.0.17
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 0.0.15
40
+ version: 0.0.17
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: slim-rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -228,6 +228,9 @@ files:
228
228
  - app/assets/javascripts/swat/app/controllers/revision.coffee
229
229
  - app/assets/javascripts/swat/app/controllers/revisions.coffee
230
230
  - app/assets/javascripts/swat/app/controllers/root.coffee
231
+ - app/assets/javascripts/swat/app/controllers/summary.coffee
232
+ - app/assets/javascripts/swat/app/factories/fails_graph.coffee
233
+ - app/assets/javascripts/swat/app/factories/helpers.coffee
231
234
  - app/assets/javascripts/swat/app/factories/response.coffee
232
235
  - app/assets/javascripts/swat/app/factories/revision_model.coffee
233
236
  - app/assets/javascripts/swat/app/services/revision.coffee
@@ -551,7 +554,9 @@ files:
551
554
  - app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.js
552
555
  - app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.min.js
553
556
  - app/assets/javascripts/swat/bower_components/zeroclipboard/dist/ZeroClipboard.swf
554
- - app/assets/stylesheets/swat/application.sass
557
+ - app/assets/javascripts/swat/lib/highcharts-ng.js
558
+ - app/assets/javascripts/swat/lib/highcharts.src.js
559
+ - app/assets/stylesheets/swat/application.scss
555
560
  - app/assets/stylesheets/swat/default-theme.css
556
561
  - app/assets/stylesheets/swat/font-awesome.css
557
562
  - app/assets/stylesheets/swat/fonts/FontAwesome.otf
@@ -560,7 +565,7 @@ files:
560
565
  - app/assets/stylesheets/swat/fonts/fontawesome-webfont.ttf
561
566
  - app/assets/stylesheets/swat/fonts/fontawesome-webfont.woff
562
567
  - app/assets/stylesheets/swat/fonts/fontawesome-webfont.woff2
563
- - app/assets/stylesheets/swat/swat_theme.sass
568
+ - app/assets/stylesheets/swat/swat_theme.scss
564
569
  - app/controllers/swat/api/revisions_controller.rb
565
570
  - app/controllers/swat/api/test_cases_controller.rb
566
571
  - app/controllers/swat/application_controller.rb
@@ -578,7 +583,10 @@ files:
578
583
  - app/views/layouts/swat/page.slim
579
584
  - app/views/swat/application/index.slim
580
585
  - app/views/swat/pages/revisions/index.slim
586
+ - app/views/swat/pages/revisions/partials/_exceptions.slim
587
+ - app/views/swat/pages/revisions/partials/_test_cases.slim
581
588
  - app/views/swat/pages/revisions/show.slim
589
+ - app/views/swat/pages/revisions/summary.slim
582
590
  - app/views/swat/shared/_footer.slim
583
591
  - app/views/swat/shared/_header.slim
584
592
  - bin/rails