jobsworth 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d22c678937b0e4f726b7aa42c8766fd6e6db59c648229021bd2b3eecd5f2fe99
4
+ data.tar.gz: fdcee0d0f1abb56fcdc40f66661f315ca2ac5e4f47d270f1f550bfb2242751b4
5
+ SHA512:
6
+ metadata.gz: f3ce93d0a73cf372b22849eb8d77269f42f6e86c01424965a2da17535a6a27596bc2a30556b071e87576a764dfeab5f84ab4013b3bf0766c575a739d6f0bb618
7
+ data.tar.gz: e87af6c11d435c4115ad84817667b7c9f185ebdcc1b8446241b7a6fa816b2700fbc20885d2706f5b3d886a63444316e6dd1182f083da549cf00ad5cae36ba7ca
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Jobsworth
2
+
3
+ A better admin UI for [good_job](https://github.com/bensheldon/good_job).
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem "jobsworth"
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ bundle install
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ Mount the engine in your `config/routes.rb`:
22
+
23
+ ```ruby
24
+ mount Jobsworth::Engine => "/jobsworth"
25
+ ```
26
+
27
+ ## License
28
+
29
+ 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,10 @@
1
+ require "bundler/setup"
2
+ require "bundler/gem_tasks"
3
+
4
+ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
5
+ load "rails/tasks/engine.rake"
6
+
7
+ require "rspec/core/rake_task"
8
+ RSpec::Core::RakeTask.new(:spec)
9
+
10
+ task default: :spec
@@ -0,0 +1 @@
1
+ /* Jobsworth styles */
@@ -0,0 +1,5 @@
1
+ module Jobsworth
2
+ class ApplicationController < ActionController::Base
3
+ ActiveSupport.run_load_hooks(:jobsworth_application_controller, self)
4
+ end
5
+ end
@@ -0,0 +1,4 @@
1
+ module Jobsworth
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Jobsworth</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= yield :head %>
9
+
10
+ <%= stylesheet_link_tag "jobsworth/application", media: "all" %>
11
+ </head>
12
+ <body>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Jobsworth::Engine.routes.draw do
2
+ end
@@ -0,0 +1,5 @@
1
+ module Jobsworth
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Jobsworth
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Jobsworth
2
+ VERSION = "0.0.1"
3
+ end
data/lib/jobsworth.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "jobsworth/version"
2
+ require "jobsworth/engine"
3
+
4
+ module Jobsworth
5
+ end
@@ -0,0 +1,4 @@
1
+ desc "Explaining what the task does"
2
+ task :jobsworth do
3
+ # Task goes here
4
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jobsworth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Alex Speller
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-02-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '8.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '8.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: good_job
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '4.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ description: A better admin UI for good_job
42
+ email:
43
+ - alex@alexspeller.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - README.md
49
+ - Rakefile
50
+ - app/assets/stylesheets/jobsworth/application.css
51
+ - app/controllers/jobsworth/application_controller.rb
52
+ - app/helpers/jobsworth/application_helper.rb
53
+ - app/views/layouts/jobsworth/application.html.erb
54
+ - config/routes.rb
55
+ - lib/jobsworth.rb
56
+ - lib/jobsworth/engine.rb
57
+ - lib/jobsworth/version.rb
58
+ - lib/tasks/jobsworth_tasks.rake
59
+ homepage: https://github.com/alexspeller/jobsworth
60
+ licenses:
61
+ - MIT
62
+ metadata:
63
+ homepage_uri: https://github.com/alexspeller/jobsworth
64
+ source_code_uri: https://github.com/alexspeller/jobsworth
65
+ changelog_uri: https://github.com/alexspeller/jobsworth/blob/main/CHANGELOG.md
66
+ rubygems_mfa_required: 'true'
67
+ post_install_message:
68
+ rdoc_options: []
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '3.1'
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubygems_version: 3.5.22
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: A better admin UI for good_job
86
+ test_files: []