rush_job 0.1.0
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +40 -0
- data/Rakefile +8 -0
- data/app/assets/config/rush_job_manifest.js +3 -0
- data/app/assets/images/rush_job/arrow-down.svg +3 -0
- data/app/assets/images/rush_job/arrow-up.svg +3 -0
- data/app/assets/javascript/rush_job/application.js +1 -0
- data/app/assets/stylesheets/rush_job/application.scss +15 -0
- data/app/assets/stylesheets/rush_job/pages/_index.scss +23 -0
- data/app/controllers/rush_job/application_controller.rb +5 -0
- data/app/controllers/rush_job/rush_jobs_controller.rb +10 -0
- data/app/helpers/rush_job/application_helper.rb +4 -0
- data/app/helpers/rush_job/rush_jobs_helper.rb +21 -0
- data/app/helpers/rush_job/sort_helper.rb +11 -0
- data/app/models/rush_job/application_record.rb +5 -0
- data/app/models/rush_job/rush_job.rb +24 -0
- data/app/views/layouts/rush_job/application.html.erb +18 -0
- data/app/views/rush_job/rush_jobs/index.html.erb +64 -0
- data/config/importmap.rb +2 -0
- data/config/locales/en.yml +14 -0
- data/config/routes.rb +3 -0
- data/lib/rush_job/engine.rb +25 -0
- data/lib/rush_job/version.rb +3 -0
- data/lib/rush_job.rb +6 -0
- data/lib/tasks/rush_job_tasks.rake +4 -0
- metadata +338 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 100ed627f08ab8045f14e2aa96185c60ff877d78452f73a259de21e612ab67bc
|
4
|
+
data.tar.gz: b1d4ad45fd475b170fc8ab881a7b7ae91938b5e9f29dac883e0deabd2a00d24b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 579b4b83fc3e00d7c1979e4c36d6db3a99b9f54ae34bff8b31914288b64d8a93ac39eec8673b54dbdc0a3124a3db43582215ec6048fb7c22c9b3c56ed11288ca
|
7
|
+
data.tar.gz: f01cf38565a8cb450ba693bce3301826b33961b5f3c9b730738c07151bd1eb4ca8764c18b916921d2c4a46f074feb2e3183f7c9006746a877f28ad5db95dd1fd
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2023 JavaKoala
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# RushJob
|
2
|
+
User interface for Delayed Job (https://github.com/collectiveidea/delayed_job) in Ruby on Rails
|
3
|
+
|
4
|
+
### Note
|
5
|
+
This has only been tested with SQLite and Postgresql.
|
6
|
+
|
7
|
+
## Usage
|
8
|
+
You will need Delayed Job, `delayed_job`, and Delayed Job ActiveRecord, `delayed_job_active_record`, installed in a Ruby on Rails application for this gem to work properly.
|
9
|
+
|
10
|
+
Navigate to the `/rush_job` route in your application to see the Delayed Jobs. Locally this would be `http://localhost:3000/rush_job`
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
Add this line to your Ruby on Rails application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem "rush_job", '~> 0.1'
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
```bash
|
21
|
+
$ bundle install
|
22
|
+
```
|
23
|
+
|
24
|
+
Add the following to your `config/routes.rb` file:
|
25
|
+
```ruby
|
26
|
+
mount RushJob::Engine => '/rush_job'
|
27
|
+
```
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
Open an issue or
|
31
|
+
1. Fork
|
32
|
+
2. Update
|
33
|
+
3. Test
|
34
|
+
1. `bundle exec rails app:test:all` and check coverage in `test/coverage/index.html`
|
35
|
+
2. `bundle exec rubocop`
|
36
|
+
3. `bundle exec brakeman`
|
37
|
+
4. Open pull request
|
38
|
+
|
39
|
+
## License
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-down" viewBox="0 0 16 16">
|
2
|
+
<path fill-rule="evenodd" d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-up" viewBox="0 0 16 16">
|
2
|
+
<path fill-rule="evenodd" d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z"/>
|
3
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
import "bootstrap"
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*/
|
14
|
+
@import "bootstrap";
|
15
|
+
@import "pages/index";
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.header-container {
|
2
|
+
background-color: #d3d3d3;
|
3
|
+
border-radius: 10px;
|
4
|
+
margin-top: 1em;
|
5
|
+
margin-bottom: 1em;
|
6
|
+
margin-left: 5%;
|
7
|
+
margin-right: 5%;
|
8
|
+
}
|
9
|
+
|
10
|
+
.delayed_title {
|
11
|
+
margin-top: 0.5rem;
|
12
|
+
}
|
13
|
+
|
14
|
+
.jobs-container {
|
15
|
+
margin-left: 5%;
|
16
|
+
margin-right: 5%;
|
17
|
+
}
|
18
|
+
|
19
|
+
.footer-container {
|
20
|
+
margin-left: 5%;
|
21
|
+
margin-right: 5%;
|
22
|
+
float: right;
|
23
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module RushJob
|
2
|
+
module RushJobsHelper
|
3
|
+
include SortHelper
|
4
|
+
include Pagy::Frontend
|
5
|
+
|
6
|
+
def sortable(column)
|
7
|
+
direction = column == sort_column && sort_direction == 'asc' ? 'desc' : 'asc'
|
8
|
+
link_to t(column), rush_job.root_path({ sort: column, direction: })
|
9
|
+
end
|
10
|
+
|
11
|
+
def sort_arrow(column)
|
12
|
+
return unless column == sort_column
|
13
|
+
|
14
|
+
if sort_direction == 'desc'
|
15
|
+
image_tag('rush_job/arrow-down.svg', id: 'rush-job-down-arrow', alt: 'down arrow')
|
16
|
+
else
|
17
|
+
image_tag('rush_job/arrow-up.svg', id: 'rush-job-up-arrow', alt: 'up arrow')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module RushJob
|
2
|
+
class RushJob < ApplicationRecord
|
3
|
+
self.table_name = 'delayed_jobs'
|
4
|
+
|
5
|
+
def job_class
|
6
|
+
job_data[:job_class]
|
7
|
+
end
|
8
|
+
|
9
|
+
def job_arguments
|
10
|
+
job_data[:arguments].presence || ''
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def handler_hash
|
16
|
+
safe_yaml = handler.sub('!ruby/object:ActiveJob::QueueAdapters::DelayedJobAdapter::JobWrapper', '')
|
17
|
+
Psych.safe_load(safe_yaml, symbolize_names: true)
|
18
|
+
end
|
19
|
+
|
20
|
+
def job_data
|
21
|
+
handler_hash[:job_data]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<title>Rush job</title>
|
5
|
+
<%= csrf_meta_tags %>
|
6
|
+
<%= csp_meta_tag %>
|
7
|
+
|
8
|
+
<%= javascript_importmap_tags %>
|
9
|
+
<%= javascript_import_module_tag "rush_job/application" %>
|
10
|
+
|
11
|
+
<%= stylesheet_link_tag "rush_job/application", media: "all" %>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
|
15
|
+
<%= yield %>
|
16
|
+
|
17
|
+
</body>
|
18
|
+
</html>
|
@@ -0,0 +1,64 @@
|
|
1
|
+
<div class="header-container">
|
2
|
+
<div class="container text-center">
|
3
|
+
<div class="row align-items-center">
|
4
|
+
<div class="col-6">
|
5
|
+
<h2 class="delayed_title">
|
6
|
+
<%= t :delayed_title %>
|
7
|
+
</h2>
|
8
|
+
</div>
|
9
|
+
<div class="col-6">
|
10
|
+
<button
|
11
|
+
type="button"
|
12
|
+
class="btn btn-primary"
|
13
|
+
onclick="location.reload();">
|
14
|
+
<%= t :reload %>
|
15
|
+
</button>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
<div class="jobs-container">
|
22
|
+
<div class="table-responsive">
|
23
|
+
<table class="table
|
24
|
+
table-bordered
|
25
|
+
table-striped">
|
26
|
+
<thead>
|
27
|
+
<tr>
|
28
|
+
<th><%= sortable 'id' %><%= sort_arrow 'id' %></th>
|
29
|
+
<th><%= sortable 'priority' %><%= sort_arrow 'priority' %></th>
|
30
|
+
<th><%= sortable 'attempts' %><%= sort_arrow 'attempts' %></th>
|
31
|
+
<th><%= t :job_class %></th>
|
32
|
+
<th><%= t :arguments %></th>
|
33
|
+
<th><%= sortable 'last_error' %><%= sort_arrow 'last_error' %></th>
|
34
|
+
<th><%= sortable 'run_at' %><%= sort_arrow 'run_at' %></th>
|
35
|
+
<th><%= sortable 'locked_at' %><%= sort_arrow 'locked_at' %></th>
|
36
|
+
<th><%= sortable 'failed_at' %><%= sort_arrow 'failed_at' %></th>
|
37
|
+
<th><%= sortable 'locked_by' %><%= sort_arrow'locked_by' %></th>
|
38
|
+
<th><%= sortable 'queue' %><%= sort_arrow 'queue' %></th>
|
39
|
+
</tr>
|
40
|
+
</thead>
|
41
|
+
<tbody class="table-group-divider">
|
42
|
+
<% @rush_jobs.each do |job| %>
|
43
|
+
<tr>
|
44
|
+
<td><%= job.id %></td>
|
45
|
+
<td><%= job.priority %></td>
|
46
|
+
<td><%= job.attempts %></td>
|
47
|
+
<td><%= job.job_class %></td>
|
48
|
+
<td><%= job.job_arguments %></td>
|
49
|
+
<td><%= job.last_error %></td>
|
50
|
+
<td><%= job.run_at %></td>
|
51
|
+
<td><%= job.locked_at %></td>
|
52
|
+
<td><%= job.failed_at %></td>
|
53
|
+
<td><%= job.locked_by %></td>
|
54
|
+
<td><%= job.queue %></td>
|
55
|
+
</tr>
|
56
|
+
<% end %>
|
57
|
+
</tbody>
|
58
|
+
</table>
|
59
|
+
</div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div class="footer-container">
|
63
|
+
<%== pagy_bootstrap_nav(@pagy) if @pagy.pages > 1 %>
|
64
|
+
</div>
|
data/config/importmap.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
en:
|
2
|
+
arguments: "Arguments"
|
3
|
+
attempts: "Attempts"
|
4
|
+
delayed_title: "Delayed jobs"
|
5
|
+
failed_at: "Failed at"
|
6
|
+
id: "Id"
|
7
|
+
job_class: "Job class"
|
8
|
+
last_error: "Last error"
|
9
|
+
locked_at: "Locked at"
|
10
|
+
locked_by: "Locked by"
|
11
|
+
priority: "Priority"
|
12
|
+
queue: "Queue"
|
13
|
+
reload: "Reload"
|
14
|
+
run_at: "Run at"
|
data/config/routes.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
module RushJob
|
2
|
+
require 'importmap-rails'
|
3
|
+
require 'bootstrap'
|
4
|
+
require 'pagy'
|
5
|
+
require 'pagy/extras/bootstrap'
|
6
|
+
|
7
|
+
class Engine < ::Rails::Engine
|
8
|
+
isolate_namespace RushJob
|
9
|
+
|
10
|
+
initializer 'rush_job.importmap', before: 'importmap' do |app|
|
11
|
+
app.config.importmap.paths << root.join('config/importmap.rb')
|
12
|
+
app.config.importmap.cache_sweepers << root.join('app/assets/javascripts')
|
13
|
+
end
|
14
|
+
|
15
|
+
initializer 'rush_job.assets.precompile' do |app|
|
16
|
+
app.config.assets.precompile += %w[
|
17
|
+
rush_job/application.css
|
18
|
+
rush_job/application.scss
|
19
|
+
rush_job/application.js
|
20
|
+
rush_job_manifest.js
|
21
|
+
bootstrap.min.js
|
22
|
+
]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/rush_job.rb
ADDED
metadata
ADDED
@@ -0,0 +1,338 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rush_job
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- JavaKoala
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-07-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: actionview
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '7.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '7.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '7.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '7.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activesupport
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '7.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '7.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bootstrap
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.2'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: importmap-rails
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.2'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.2'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: pagy
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '6.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '6.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: delayed_job
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '4.1'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '4.1'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: delayed_job_active_record
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '4.1'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '4.1'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: brakeman
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '6.0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '6.0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: capybara
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '3.39'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '3.39'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: debug
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '1.8'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '1.8'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: puma
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '6.3'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '6.3'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rubocop-capybara
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '2.18'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '2.18'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: rubocop-minitest
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: 0.31.0
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: 0.31.0
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rubocop-rails
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '2.20'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '2.20'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: selenium-webdriver
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - "~>"
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '4.10'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - "~>"
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '4.10'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: simplecov
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - "~>"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: 0.22.0
|
244
|
+
type: :development
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - "~>"
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: 0.22.0
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: sprockets-rails
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - "~>"
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '3.4'
|
258
|
+
type: :development
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - "~>"
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '3.4'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: sqlite3
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - "~>"
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '1.6'
|
272
|
+
type: :development
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - "~>"
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '1.6'
|
279
|
+
description: Rails web interface for delayed_job using Rails::Engine.
|
280
|
+
email:
|
281
|
+
- javakoala1@gmail.com
|
282
|
+
executables: []
|
283
|
+
extensions: []
|
284
|
+
extra_rdoc_files: []
|
285
|
+
files:
|
286
|
+
- MIT-LICENSE
|
287
|
+
- README.md
|
288
|
+
- Rakefile
|
289
|
+
- app/assets/config/rush_job_manifest.js
|
290
|
+
- app/assets/images/rush_job/arrow-down.svg
|
291
|
+
- app/assets/images/rush_job/arrow-up.svg
|
292
|
+
- app/assets/javascript/rush_job/application.js
|
293
|
+
- app/assets/stylesheets/rush_job/application.scss
|
294
|
+
- app/assets/stylesheets/rush_job/pages/_index.scss
|
295
|
+
- app/controllers/rush_job/application_controller.rb
|
296
|
+
- app/controllers/rush_job/rush_jobs_controller.rb
|
297
|
+
- app/helpers/rush_job/application_helper.rb
|
298
|
+
- app/helpers/rush_job/rush_jobs_helper.rb
|
299
|
+
- app/helpers/rush_job/sort_helper.rb
|
300
|
+
- app/models/rush_job/application_record.rb
|
301
|
+
- app/models/rush_job/rush_job.rb
|
302
|
+
- app/views/layouts/rush_job/application.html.erb
|
303
|
+
- app/views/rush_job/rush_jobs/index.html.erb
|
304
|
+
- config/importmap.rb
|
305
|
+
- config/locales/en.yml
|
306
|
+
- config/routes.rb
|
307
|
+
- lib/rush_job.rb
|
308
|
+
- lib/rush_job/engine.rb
|
309
|
+
- lib/rush_job/version.rb
|
310
|
+
- lib/tasks/rush_job_tasks.rake
|
311
|
+
homepage: https://github.com/JavaKoala/rush_job
|
312
|
+
licenses:
|
313
|
+
- MIT
|
314
|
+
metadata:
|
315
|
+
homepage_uri: https://github.com/JavaKoala/rush_job
|
316
|
+
source_code_uri: https://github.com/JavaKoala/rush_job
|
317
|
+
changelog_uri: https://github.com/JavaKoala/rush_job
|
318
|
+
rubygems_mfa_required: 'true'
|
319
|
+
post_install_message:
|
320
|
+
rdoc_options: []
|
321
|
+
require_paths:
|
322
|
+
- lib
|
323
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - ">="
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: 3.2.0
|
328
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
329
|
+
requirements:
|
330
|
+
- - ">="
|
331
|
+
- !ruby/object:Gem::Version
|
332
|
+
version: '0'
|
333
|
+
requirements: []
|
334
|
+
rubygems_version: 3.4.10
|
335
|
+
signing_key:
|
336
|
+
specification_version: 4
|
337
|
+
summary: User interface for delayed_job
|
338
|
+
test_files: []
|