solid_queue_ui 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 985a9c19e4975054736df9f365ef44c9860a40e63a170519f98261aa29c14f33
4
- data.tar.gz: 45626fc20b57ca1ffd2a10611714d17be6dc22406e7eb402e3ae9e10d5594fcf
3
+ metadata.gz: 3e14b1961bcacd0a621a09464366e6f40e88df689ca77347e5c8cf4825a7478d
4
+ data.tar.gz: 849e2dd3f720aeb26c1ff068d75c87accf097cb6160a151c0debde43fe1dba46
5
5
  SHA512:
6
- metadata.gz: 0fca4095ab55709ac773f525d177b98cd0be3a1c8153ec380fe03c7b9e75fe10374bb1c64de2e5afcc3cf9fa207526390b6c538dfbadd9eeeb7f3e52de9747ba
7
- data.tar.gz: 9005fd05e2630acec335360b804a7ca5b0f69c576f398178ebdccab485a3cc8f16654ffa46a9c4af35a9f9b0574baac34fb2a4bd5842d0747e40ca5ba5ebef69
6
+ metadata.gz: 0174ffc28f9a6e57736fa3e0a4b19f5d6a4d4b324f490ef62095355445f6b93dae8e305e8f17e4fd1b5eb66fa8148798eb04e453dea745ff43c746fa25209eb3
7
+ data.tar.gz: 5d27d318001df787ce26283c7425fc22d03dd3d437e455fd59c569ce04d0b7e0bae8a5bcef0be1d8c0d4002009711c91904163ccc2d7e6dd72dfb4bbebae2c36
@@ -1,3 +1,3 @@
1
1
  module SolidQueueUi
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -52,10 +52,55 @@ module SolidQueueUi
52
52
  erb(:dashboard)
53
53
  end
54
54
 
55
- # get "/jobs" do
56
- # @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_jobs ORDER BY priority ASC")
57
- # erb(:jobs)
58
- # end
55
+ get "/jobs" do
56
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_jobs ORDER BY priority ASC")
57
+ erb(:jobs)
58
+ end
59
+
60
+ get "/pauses" do
61
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_pauses ORDER BY created_at ASC")
62
+ erb(:pauses)
63
+ end
64
+
65
+ get "/processes" do
66
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_processes ORDER BY created_at ASC")
67
+ erb(:processes)
68
+ end
69
+
70
+ get "/executions" do
71
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_jobs ORDER BY priority ASC")
72
+ erb(:executions)
73
+ end
74
+
75
+ get "/executions/claimed" do
76
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_claimed_executions ORDER BY job_id ASC")
77
+ erb(:claimed_executions)
78
+ end
79
+
80
+ get "/executions/ready" do
81
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_ready_executions ORDER BY priority ASC")
82
+ erb(:ready_executions)
83
+ end
84
+
85
+ get "/executions/failed" do
86
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_failed_executions ORDER BY job_id ASC")
87
+ erb(:failed_executions)
88
+ end
89
+
90
+ get "/executions/blocked" do
91
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_blocked_executions ORDER BY priority ASC")
92
+ erb(:blocked_executions)
93
+ end
94
+
95
+ get "/executions/scheduled" do
96
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_scheduled_executions ORDER BY priority ASC")
97
+ erb(:scheduled_executions)
98
+ end
99
+
100
+ get "/semaphores" do
101
+ @sq_jobs = ActiveRecord::Base.connection.execute("SELECT * FROM solid_queue_semaphores ORDER BY expires_at ASC")
102
+ erb(:semaphores)
103
+ end
59
104
 
60
105
  def call(env)
61
106
  action = self.class.match(env)
Binary file
@@ -2,36 +2,91 @@ body {
2
2
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
3
  }
4
4
 
5
- table,
6
- thead,
7
- td {
8
- border: 1px solid #585858;
5
+ table {
6
+ border-collapse: collapse;
7
+ border-spacing: 0;
8
+ text-align: left;
9
+ width: 100%;
9
10
  }
10
11
 
11
- th {
12
- border-bottom: 1px solid #585858;
12
+ table.table-striped tbody tr:nth-of-type(odd) {
13
+ background: #f7f8f9;
13
14
  }
14
15
 
15
- table {
16
- border-spacing: 0;
16
+ table tbody tr.active,
17
+ table.table-striped tbody tr.active {
18
+ background: #eef0f3;
19
+ }
20
+
21
+ table.table-hover tbody tr:hover {
22
+ background: #eef0f3;
17
23
  }
18
24
 
19
- tbody {
25
+ table.table-scroll {
26
+ display: block;
27
+ overflow-x: auto;
28
+ padding-bottom: .75rem;
20
29
  white-space: nowrap;
21
30
  }
22
31
 
23
- thead,
24
- td {
25
- padding: 0.5em 1em;
26
- border-top-width: 0;
27
- border-left-width: 0;
32
+ table td,
33
+ table th {
34
+ border-bottom: .05rem solid #dadee4;
35
+ padding: .6rem .4rem;
36
+ }
37
+
38
+ table th {
39
+ border-bottom-width: .1rem;
40
+ }
41
+
42
+
43
+ .navbar {
44
+ align-items: stretch;
45
+ display: -ms-flexbox;
46
+ display: flex;
47
+ -ms-flex-align: stretch;
48
+ -ms-flex-pack: justify;
49
+ -ms-flex-wrap: wrap;
50
+ flex-wrap: wrap;
51
+ justify-content: space-between;
52
+ }
53
+
54
+ .navbar .navbar-section {
55
+ align-items: center;
56
+ display: -ms-flexbox;
57
+ display: flex;
58
+ -ms-flex: 1 0 0;
59
+ flex: 1 0 0;
60
+ -ms-flex-align: center;
61
+ }
62
+
63
+ .navbar .navbar-section:not(:first-child):last-child {
64
+ -ms-flex-pack: end;
65
+ justify-content: flex-end;
66
+ }
67
+
68
+ .navbar .navbar-center {
69
+ align-items: center;
70
+ display: -ms-flexbox;
71
+ display: flex;
72
+ -ms-flex: 0 0 auto;
73
+ flex: 0 0 auto;
74
+ -ms-flex-align: center;
75
+ }
76
+
77
+ .navbar .navbar-brand {
78
+ font-weight: bold;
79
+ text-decoration: none;
80
+ }
81
+
82
+ .navbar-link {
83
+ padding: 0 0.5em;
28
84
  }
29
85
 
30
- thead:last-child,
31
- td:last-child {
32
- border-right-width: 0;
86
+ .nav-sub-link {
87
+ font-size: 14px;
33
88
  }
34
89
 
35
- tr:last-child td {
36
- border-bottom-width: 0;
90
+ .nav-sub-section {
91
+ background: #e5e5e5;
37
92
  }
@@ -1,11 +1,34 @@
1
- <div>
2
- <div class="navbar-toggle collapsed navbar-livereload">
3
- <% if SolidQueueUi::Web.app_url %>
4
- <a class="btn btn-inverse" href="<%= SolidQueueUi::Web.app_url %>"><%= t('BackToApp') %></a>
5
- <% end %>
6
- </div>
7
- <a class="navbar-brand" href="<%= root_path %>">
8
- <%= SolidQueueUi::NAME %>
9
- </a>
10
-
11
- </div>
1
+ <header class="navbar">
2
+ <section class="navbar-section">
3
+ <a class="navbar-brand" href="<%= root_path %>">
4
+ <%= SolidQueueUi::NAME %>
5
+ </a>
6
+ <a href="<%= "#{root_path}jobs" %>" class="navbar-link">
7
+ Jobs
8
+ </a>
9
+ <a href="<%= "#{root_path}pauses"%>" class="navbar-link">
10
+ Pauses
11
+ </a>
12
+ <a href="<%= "#{root_path}processes"%>" class="navbar-link">
13
+ Processes
14
+ </a>
15
+ <a href="<%= "#{root_path}executions/claimed"%>" class="navbar-link nav-sub-link">
16
+ Claimed
17
+ </a>
18
+ <a href="<%= "#{root_path}executions/ready"%>" class="navbar-link nav-sub-link">
19
+ Ready
20
+ </a>
21
+ <a href="<%= "#{root_path}executions/scheduled"%>" class="navbar-link nav-sub-link">
22
+ Scheduled
23
+ </a>
24
+ <a href="<%= "#{root_path}executions/blocked"%>" class="navbar-link nav-sub-link">
25
+ Blocked
26
+ </a>
27
+ <a href="<%= "#{root_path}executions/failed"%>" class="navbar-link nav-sub-link">
28
+ Failed
29
+ </a>
30
+ <a href="<%= "#{root_path}semaphores"%>" class="navbar-link">
31
+ Semaphores
32
+ </a>
33
+ </section>
34
+ </header>
@@ -0,0 +1,34 @@
1
+ <h1>Blocked Executions</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No blocked executions</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Job ID</th>
11
+ <th>Queue Name</th>
12
+ <th>Priority</th>
13
+ <th>Concurrency Key</th>
14
+ <th>Expires</th>
15
+ <th>Created</th>
16
+ </tr>
17
+ </thead>
18
+ <tbody>
19
+ <% @sq_jobs.each do |page| %>
20
+ <tr>
21
+ <td><%= page['id'] %></td>
22
+ <td><%= page['job_id'] %></td>
23
+ <td><%= page['queue_name'] %></td>
24
+ <td><%= page['priority'] %></td>
25
+ <td><%= page['concurrency_key'] %></td>
26
+ <td><%= page['expires_at'] %></td>
27
+ <td><%= page['created_at'] %></td>
28
+ </tr>
29
+ <% end %>
30
+ </tbody>
31
+ </table>
32
+ <% end %>
33
+
34
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,28 @@
1
+ <h1>Claimed Executions</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No claimed executions</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Job ID</th>
11
+ <th>Process ID</th>
12
+ <th>Created</th>
13
+ </tr>
14
+ </thead>
15
+ <tbody>
16
+ <% @sq_jobs.each do |page| %>
17
+ <tr>
18
+ <td><%= page['id'] %></td>
19
+ <td><%= page['job_id'] %></td>
20
+ <td><%= page['process_id'] %></td>
21
+ <td><%= page['created_at'] %></td>
22
+ </tr>
23
+ <% end %>
24
+ </tbody>
25
+ </table>
26
+ <% end %>
27
+
28
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -1,31 +1,31 @@
1
- <h1>Jobs</h1>
1
+ <h1>Control Center</h1>
2
2
  <% if @sq_jobs.num_tuples.zero? %>
3
3
  <p>No jobs found</p>
4
4
  <% else %>
5
- <table>
5
+ <table class="table-striped">
6
6
  <thead>
7
7
  <tr>
8
- <td><strong>Job ID</strong></td>
9
- <td><strong>Queue Name</strong></td>
10
- <td><strong>Class Name</strong></td>
11
- <td><strong>Arguments</strong></td>
12
- <td><strong>Priority</strong></td>
13
- <td><strong>Active Job ID</strong></td>
14
- <td><strong>Scheduled At</strong></td>
15
- <td><strong>Finished At</strong></td>
8
+ <th>Job ID</th>
9
+ <th>Queue Name</th>
10
+ <th>Class Name</th>
11
+ <th>Arguments</th>
12
+ <th>Priority</th>
13
+ <th>Active Job ID</th>
14
+ <th>Scheduled At</th>
15
+ <th>Finished At</th>
16
16
  </tr>
17
17
  </thead>
18
18
  <tbody>
19
19
  <% @sq_jobs.each do |page| %>
20
20
  <tr>
21
- <td><p><%= page['id'] %> </p></td>
22
- <td><p><%= page['queue_name'] %> </p></td>
23
- <td><p><%= page['class_name'] %> </p></td>
24
- <td><p><%= page['arguments'] %> </p></td>
25
- <td><p><%= page['priority'] %> </p></td>
26
- <td><p><%= page['active_job_id'] %> </p></td>
27
- <td><p><%= page['scheduled_at'] %> </p></td>
28
- <td><p><%= page['finished_at'] %> </p></td>
21
+ <td><%= page['id'] %></td>
22
+ <td><%= page['queue_name'] %></td>
23
+ <td><%= page['class_name'] %></td>
24
+ <td><%= page['arguments'] %></td>
25
+ <td><%= page['priority'] %></td>
26
+ <td><%= page['active_job_id'] %></td>
27
+ <td><%= page['scheduled_at'] %></td>
28
+ <td><%= page['finished_at'] %></td>
29
29
  </tr>
30
30
  <% end %>
31
31
  </tbody>
@@ -0,0 +1,5 @@
1
+ <h1>Executions</h1>
2
+
3
+ Main page for all executions
4
+
5
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,29 @@
1
+ <h1>Failed Executions</h1>
2
+
3
+
4
+ <% if @sq_jobs.num_tuples.zero? %>
5
+ <p>No failed executions</p>
6
+ <% else %>
7
+ <table class="table-striped">
8
+ <thead>
9
+ <tr>
10
+ <th>ID</th>
11
+ <th>Job ID</th>
12
+ <th>Error</th>
13
+ <th>Created</th>
14
+ </tr>
15
+ </thead>
16
+ <tbody>
17
+ <% @sq_jobs.each do |page| %>
18
+ <tr>
19
+ <td><%= page['id'] %></td>
20
+ <td><%= page['job_id'] %></td>
21
+ <td><%= page['error'] %></td>
22
+ <td><%= page['created_at'] %></td>
23
+ </tr>
24
+ <% end %>
25
+ </tbody>
26
+ </table>
27
+ <% end %>
28
+
29
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -2,36 +2,30 @@
2
2
  <% if @sq_jobs.num_tuples.zero? %>
3
3
  <p>No jobs found</p>
4
4
  <% else %>
5
- <table>
5
+ <table class="table-striped">
6
6
  <thead>
7
7
  <tr>
8
- <td><p>id</p></td>
9
- <td><p>site_id</p></td>
10
- <td><p>local_url</p></td>
11
- <td><p>external_url</p></td>
12
- <td><p>created_at</p></td>
13
- <td><p>updated_at</p></td>
8
+ <th>Job ID</th>
9
+ <th>Queue Name</th>
10
+ <th>Class</th>
11
+ <th>Arguments</th>
12
+ <th>Priority</th>
13
+ <th>Active Job ID</th>
14
+ <th>Scheduled</th>
15
+ <th>Finished</th>
14
16
  </tr>
15
17
  </thead>
16
18
  <tbody>
17
19
  <% @sq_jobs.each do |page| %>
18
- <!--
19
- <p>id: <%= page['id'] %> </p>
20
- <p>queue_name: <%= page['queue_name'] %> </p>
21
- <p>class_name: <%= page['class_name'] %> </p>
22
- <p>arguments: <%= page['arguments'] %> </p>
23
- <p>priority: <%= page['priority'] %> </p>
24
- <p>active_job_id: <%= page['active_job_id'] %> </p>
25
- <p>scheduled_at: <%= page['scheduled_at'] %> </p>
26
- <p>finished_at: <%= page['finished_at'] %> </p>
27
- -->
28
20
  <tr>
29
- <td><p><%= page['id'] %> </p></td>
30
- <td><p><%= page['site_id'] %> </p></td>
31
- <td><p><%= page['local_url'] %> </p></td>
32
- <td><p><%= page['external_url'] %> </p></td>
33
- <td><p><%= page['created_at'] %> </p></td>
34
- <td><p><%= page['updated_at'] %> </p></td>
21
+ <td><%= page['id'] %></td>
22
+ <td><%= page['queue_name'] %></td>
23
+ <td><%= page['class_name'] %></td>
24
+ <td><%= page['arguments'] %></td>
25
+ <td><%= page['priority'] %></td>
26
+ <td><%= page['active_job_id'] %></td>
27
+ <td><%= page['scheduled_at'] %></td>
28
+ <td><%= page['finished_at'] %></td>
35
29
  </tr>
36
30
  <% end %>
37
31
  </tbody>
@@ -0,0 +1,26 @@
1
+ <h1>Pauses</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No Pauses</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Queue Name</th>
11
+ <th>Created</th>
12
+ </tr>
13
+ </thead>
14
+ <tbody>
15
+ <% @sq_jobs.each do |page| %>
16
+ <tr>
17
+ <td><%= page['id'] %></td>
18
+ <td><%= page['queue_name'] %></td>
19
+ <td><%= page['created_at'] %></td>
20
+ </tr>
21
+ <% end %>
22
+ </tbody>
23
+ </table>
24
+ <% end %>
25
+
26
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,36 @@
1
+ <h1>Processes</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No processes found</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Kind</th>
11
+ <th>Last Heartbeat</th>
12
+ <th>Supervisor</th>
13
+ <th>PID</th>
14
+ <th>Hostname</th>
15
+ <th>Metadata</th>
16
+ <th>Created</th>
17
+ </tr>
18
+ </thead>
19
+ <tbody>
20
+ <% @sq_jobs.each do |page| %>
21
+ <tr>
22
+ <td><%= page['id'] %></td>
23
+ <td><%= page['kind'] %></td>
24
+ <td><%= page['last_heartbeat_at'] %></td>
25
+ <td><%= page['supervisor_id'] %></td>
26
+ <td><%= page['pid'] %></td>
27
+ <td><%= page['hostname'] %></td>
28
+ <td><%= page['metadata'] %></td>
29
+ <td><%= page['created_at'] %></td>
30
+ </tr>
31
+ <% end %>
32
+ </tbody>
33
+ </table>
34
+ <% end %>
35
+
36
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,30 @@
1
+ <h1>Ready Executions</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No ready executions</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Job ID</th>
11
+ <th>Queue Name</th>
12
+ <th>Priority</th>
13
+ <th>Created</th>
14
+ </tr>
15
+ </thead>
16
+ <tbody>
17
+ <% @sq_jobs.each do |page| %>
18
+ <tr>
19
+ <td><%= page['id'] %></td>
20
+ <td><%= page['job_id'] %></td>
21
+ <td><%= page['queue_name'] %></td>
22
+ <td><%= page['priority'] %></td>
23
+ <td><%= page['created_at'] %></td>
24
+ </tr>
25
+ <% end %>
26
+ </tbody>
27
+ </table>
28
+ <% end %>
29
+
30
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,32 @@
1
+ <h1>Scheduled Executions</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No Scheduled executions</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Job ID</th>
11
+ <th>Queue Name</th>
12
+ <th>Priority</th>
13
+ <th>Scheduled</th>
14
+ <th>Created</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody>
18
+ <% @sq_jobs.each do |page| %>
19
+ <tr>
20
+ <td><%= page['id'] %></td>
21
+ <td><%= page['job_id'] %></td>
22
+ <td><%= page['queue_name'] %></td>
23
+ <td><%= page['priority'] %></td>
24
+ <td><%= page['scheduled_at'] %></td>
25
+ <td><%= page['created_at'] %></td>
26
+ </tr>
27
+ <% end %>
28
+ </tbody>
29
+ </table>
30
+ <% end %>
31
+
32
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
@@ -0,0 +1,34 @@
1
+ <h1>Semaphores</h1>
2
+
3
+ <% if @sq_jobs.num_tuples.zero? %>
4
+ <p>No semaphores</p>
5
+ <% else %>
6
+ <table class="table-striped">
7
+ <thead>
8
+ <tr>
9
+ <th>ID</th>
10
+ <th>Key</th>
11
+ <th>Value</th>
12
+ <th>Expires</th>
13
+ <th>Created</th>
14
+ <th>Updated</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody>
18
+ <% @sq_jobs.each do |page| %>
19
+ <tr>
20
+ <td><%= page['id'] %></td>
21
+ <td><%= page['kind'] %></td>
22
+ <td><%= page['last_heartbeat_at'] %></td>
23
+ <td><%= page['supervisor_id'] %></td>
24
+ <td><%= page['pid'] %></td>
25
+ <td><%= page['hostname'] %></td>
26
+ <td><%= page['metadata'] %></td>
27
+ <td><%= page['created_at'] %></td>
28
+ </tr>
29
+ <% end %>
30
+ </tbody>
31
+ </table>
32
+ <% end %>
33
+
34
+ <script type="text/javascript" src="<%= root_path %>javascripts/chart.min.js"></script>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_queue_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claude Ayitey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-22 00:00:00.000000000 Z
11
+ date: 2024-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solid_queue
@@ -82,6 +82,7 @@ files:
82
82
  - lib/solid_queue_ui/web/helpers.rb
83
83
  - lib/solid_queue_ui/web/router.rb
84
84
  - lib/tasks/solid_queue_ui_tasks.rake
85
+ - solid_queue_ui-0.0.1.gem
85
86
  - solid_queue_ui.gemspec
86
87
  - web/assets/javascripts/application.js
87
88
  - web/assets/javascripts/chart.min.js
@@ -89,9 +90,18 @@ files:
89
90
  - web/assets/stylesheets/application.css.scss
90
91
  - web/views/_footer.html.erb
91
92
  - web/views/_nav.html.erb
93
+ - web/views/blocked_executions.html.erb
94
+ - web/views/claimed_executions.html.erb
92
95
  - web/views/dashboard.html.erb
96
+ - web/views/executions.html.erb
97
+ - web/views/failed_executions.html.erb
93
98
  - web/views/jobs.html.erb
94
99
  - web/views/layout.html.erb
100
+ - web/views/pauses.html.erb
101
+ - web/views/processes.html.erb
102
+ - web/views/ready_executions.html.erb
103
+ - web/views/scheduled_executions.html.erb
104
+ - web/views/semaphores.html.erb
95
105
  - web/views/solid_queue_ui/application/_flashes.html.erb
96
106
  - web/views/solid_queue_ui/application/_index_header.html.erb
97
107
  - web/views/solid_queue_ui/application/_javascript.html.erb