rush_job 0.2.0 → 0.3.1
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/README.md +3 -2
- data/app/assets/config/rush_job_manifest.js +0 -1
- data/app/assets/images/rush_job/{arrow-down.svg → arrow-down-dark.svg} +1 -1
- data/app/assets/images/rush_job/arrow-down-light.svg +3 -0
- data/app/assets/images/rush_job/{arrow-up.svg → arrow-up-dark.svg} +1 -1
- data/app/assets/images/rush_job/arrow-up-light.svg +3 -0
- data/app/assets/stylesheets/rush_job/application.scss +2 -0
- data/app/assets/stylesheets/rush_job/pages/_index.scss +12 -0
- data/app/assets/stylesheets/rush_job/themes/_dark.scss +3 -0
- data/app/assets/stylesheets/rush_job/themes/_light.scss +3 -0
- data/app/controllers/rush_job/themes_controller.rb +13 -0
- data/app/helpers/rush_job/application_helper.rb +7 -0
- data/app/helpers/rush_job/rush_jobs_helper.rb +4 -3
- data/app/views/layouts/rush_job/application.html.erb +1 -1
- data/app/views/rush_job/rush_jobs/index.html.erb +11 -5
- data/config/importmap.rb +2 -1
- data/config/routes.rb +1 -0
- data/lib/rush_job/engine.rb +4 -3
- data/lib/rush_job/version.rb +1 -1
- data/vendor/stylesheets/rush_job/bootstrap.css +12273 -0
- metadata +10 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rush_job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JavaKoala
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionview
|
@@ -287,13 +287,18 @@ files:
|
|
287
287
|
- README.md
|
288
288
|
- Rakefile
|
289
289
|
- app/assets/config/rush_job_manifest.js
|
290
|
-
- app/assets/images/rush_job/arrow-down.svg
|
291
|
-
- app/assets/images/rush_job/arrow-
|
290
|
+
- app/assets/images/rush_job/arrow-down-dark.svg
|
291
|
+
- app/assets/images/rush_job/arrow-down-light.svg
|
292
|
+
- app/assets/images/rush_job/arrow-up-dark.svg
|
293
|
+
- app/assets/images/rush_job/arrow-up-light.svg
|
292
294
|
- app/assets/javascript/rush_job/application.js
|
293
295
|
- app/assets/stylesheets/rush_job/application.scss
|
294
296
|
- app/assets/stylesheets/rush_job/pages/_index.scss
|
297
|
+
- app/assets/stylesheets/rush_job/themes/_dark.scss
|
298
|
+
- app/assets/stylesheets/rush_job/themes/_light.scss
|
295
299
|
- app/controllers/rush_job/application_controller.rb
|
296
300
|
- app/controllers/rush_job/rush_jobs_controller.rb
|
301
|
+
- app/controllers/rush_job/themes_controller.rb
|
297
302
|
- app/helpers/rush_job/application_helper.rb
|
298
303
|
- app/helpers/rush_job/rush_jobs_helper.rb
|
299
304
|
- app/helpers/rush_job/sort_helper.rb
|
@@ -308,6 +313,7 @@ files:
|
|
308
313
|
- lib/rush_job/engine.rb
|
309
314
|
- lib/rush_job/version.rb
|
310
315
|
- lib/tasks/rush_job_tasks.rake
|
316
|
+
- vendor/stylesheets/rush_job/bootstrap.css
|
311
317
|
homepage: https://github.com/JavaKoala/rush_job
|
312
318
|
licenses:
|
313
319
|
- MIT
|