active_job_log 0.2.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +104 -0
- data/.circleci/setup-rubygems.sh +3 -0
- data/.rubocop.yml +65 -600
- data/.ruby-version +1 -1
- data/CHANGELOG.md +25 -0
- data/Gemfile.lock +170 -154
- data/LICENSE.txt +1 -1
- data/README.md +15 -4
- data/active_job_log.gemspec +7 -5
- data/db/migrate/20180511184635_create_active_job_log_jobs.rb +1 -1
- data/lib/active_job_log/engine.rb +1 -0
- data/lib/active_job_log/log_ext.rb +1 -1
- data/lib/active_job_log/loggeable.rb +75 -0
- data/lib/active_job_log/version.rb +1 -1
- data/lib/generators/active_job_log/install/install_generator.rb +4 -0
- data/lib/generators/active_job_log/install/templates/job_model.rb +5 -0
- data/spec/dummy/Rakefile +1 -1
- data/spec/dummy/app/assets/config/manifest.js +0 -2
- data/spec/dummy/app/controllers/application_controller.rb +0 -1
- data/spec/dummy/app/{assets/javascripts → javascript/packs}/application.js +2 -0
- data/spec/dummy/app/jobs/application_job.rb +5 -0
- data/spec/dummy/app/models/active_job_log/job.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +3 -2
- data/spec/dummy/bin/rails +2 -2
- data/spec/dummy/bin/rake +2 -2
- data/spec/dummy/bin/setup +7 -12
- data/spec/dummy/config.ru +2 -1
- data/spec/dummy/config/application.rb +12 -17
- data/spec/dummy/config/boot.rb +1 -1
- data/spec/dummy/config/cable.yml +2 -2
- data/spec/dummy/config/database.yml +1 -1
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/dummy/config/environments/development.rb +28 -6
- data/spec/dummy/config/environments/production.rb +45 -16
- data/spec/dummy/config/environments/test.rb +24 -7
- data/spec/dummy/config/initializers/assets.rb +0 -2
- data/spec/dummy/config/initializers/backtrace_silencers.rb +4 -3
- data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +3 -1
- data/spec/dummy/config/initializers/permissions_policy.rb +11 -0
- data/spec/dummy/config/locales/en.yml +1 -1
- data/spec/dummy/config/puma.rb +14 -27
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/schema.rb +1 -1
- data/spec/factories/active_job_log_jobs.rb +2 -2
- data/spec/lib/active_job_log/log_ext_spec.rb +3 -6
- metadata +54 -31
- data/.hound.yml +0 -4
- data/.travis.yml +0 -15
- data/Guardfile +0 -15
- data/app/models/active_job_log/job.rb +0 -72
- data/spec/dummy/app/assets/javascripts/cable.js +0 -13
- data/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/bin/update +0 -29
- data/spec/dummy/bin/yarn +0 -11
- data/spec/dummy/config/secrets.yml +0 -32
- data/spec/dummy/config/spring.rb +0 -6
@@ -1,10 +1,13 @@
|
|
1
|
+
require "active_support/core_ext/integer/time"
|
2
|
+
|
3
|
+
# The test environment is used exclusively to run your application's
|
4
|
+
# test suite. You never need to work with it otherwise. Remember that
|
5
|
+
# your test database is "scratch space" for the test suite and is wiped
|
6
|
+
# and recreated between test runs. Don't rely on the data there!
|
7
|
+
|
1
8
|
Rails.application.configure do
|
2
9
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
10
|
|
4
|
-
# The test environment is used exclusively to run your application's
|
5
|
-
# test suite. You never need to work with it otherwise. Remember that
|
6
|
-
# your test database is "scratch space" for the test suite and is wiped
|
7
|
-
# and recreated between test runs. Don't rely on the data there!
|
8
11
|
config.cache_classes = true
|
9
12
|
|
10
13
|
# Do not eager load code on boot. This avoids loading your whole application
|
@@ -15,18 +18,23 @@ Rails.application.configure do
|
|
15
18
|
# Configure public file server for tests with Cache-Control for performance.
|
16
19
|
config.public_file_server.enabled = true
|
17
20
|
config.public_file_server.headers = {
|
18
|
-
'Cache-Control' => "public, max-age=#{1.hour.
|
21
|
+
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
19
22
|
}
|
20
23
|
|
21
24
|
# Show full error reports and disable caching.
|
22
25
|
config.consider_all_requests_local = true
|
23
26
|
config.action_controller.perform_caching = false
|
27
|
+
config.cache_store = :null_store
|
24
28
|
|
25
29
|
# Raise exceptions instead of rendering exception templates.
|
26
30
|
config.action_dispatch.show_exceptions = false
|
27
31
|
|
28
32
|
# Disable request forgery protection in test environment.
|
29
33
|
config.action_controller.allow_forgery_protection = false
|
34
|
+
|
35
|
+
# Store uploaded files on the local file system in a temporary directory.
|
36
|
+
config.active_storage.service = :test
|
37
|
+
|
30
38
|
config.action_mailer.perform_caching = false
|
31
39
|
|
32
40
|
# Tell Action Mailer not to deliver emails to the real world.
|
@@ -37,6 +45,15 @@ Rails.application.configure do
|
|
37
45
|
# Print deprecation notices to the stderr.
|
38
46
|
config.active_support.deprecation = :stderr
|
39
47
|
|
40
|
-
#
|
41
|
-
|
48
|
+
# Raise exceptions for disallowed deprecations.
|
49
|
+
config.active_support.disallowed_deprecation = :raise
|
50
|
+
|
51
|
+
# Tell Active Support which deprecation messages to disallow.
|
52
|
+
config.active_support.disallowed_deprecation_warnings = []
|
53
|
+
|
54
|
+
# Raises error for missing translations.
|
55
|
+
# config.i18n.raise_on_missing_translations = true
|
56
|
+
|
57
|
+
# Annotate rendered view with file names.
|
58
|
+
# config.action_view.annotate_rendered_view_with_filenames = true
|
42
59
|
end
|
@@ -5,8 +5,6 @@ Rails.application.config.assets.version = '1.0'
|
|
5
5
|
|
6
6
|
# Add additional assets to the asset load path.
|
7
7
|
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
-
# Add Yarn node_modules folder to the asset load path.
|
9
|
-
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
10
8
|
|
11
9
|
# Precompile additional assets.
|
12
10
|
# application.js, application.css, and all non-JS/CSS in the app/assets
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
3
|
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
-
# Rails.backtrace_cleaner.add_silencer { |line|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| /my_noisy_library/.match?(line) }
|
5
5
|
|
6
|
-
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code
|
7
|
-
#
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code
|
7
|
+
# by setting BACKTRACE=1 before calling your invocation, like "BACKTRACE=1 ./bin/rails runner 'MyClass.perform'".
|
8
|
+
Rails.backtrace_cleaner.remove_silencers! if ENV["BACKTRACE"]
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Define an application-wide content security policy
|
4
|
+
# For further information see the following documentation
|
5
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
6
|
+
|
7
|
+
# Rails.application.config.content_security_policy do |policy|
|
8
|
+
# policy.default_src :self, :https
|
9
|
+
# policy.font_src :self, :https, :data
|
10
|
+
# policy.img_src :self, :https, :data
|
11
|
+
# policy.object_src :none
|
12
|
+
# policy.script_src :self, :https
|
13
|
+
# policy.style_src :self, :https
|
14
|
+
|
15
|
+
# # Specify URI for violation reports
|
16
|
+
# # policy.report_uri "/csp-violation-report-endpoint"
|
17
|
+
# end
|
18
|
+
|
19
|
+
# If you are using UJS then enable automatic nonce generation
|
20
|
+
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
21
|
+
|
22
|
+
# Set the nonce only to specific directives
|
23
|
+
# Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
|
24
|
+
|
25
|
+
# Report CSP violations to a specified URI
|
26
|
+
# For further information see the following documentation:
|
27
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
28
|
+
# Rails.application.config.content_security_policy_report_only = true
|
@@ -1,4 +1,6 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
3
|
# Configure sensitive parameters which will be filtered from the log file.
|
4
|
-
Rails.application.config.filter_parameters += [
|
4
|
+
Rails.application.config.filter_parameters += [
|
5
|
+
:passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
|
6
|
+
]
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Define an application-wide HTTP permissions policy. For further
|
2
|
+
# information see https://developers.google.com/web/updates/2018/06/feature-policy
|
3
|
+
#
|
4
|
+
# Rails.application.config.permissions_policy do |f|
|
5
|
+
# f.camera :none
|
6
|
+
# f.gyroscope :none
|
7
|
+
# f.microphone :none
|
8
|
+
# f.usb :none
|
9
|
+
# f.fullscreen :self
|
10
|
+
# f.payment :self, "https://secure.example.com"
|
11
|
+
# end
|
data/spec/dummy/config/puma.rb
CHANGED
@@ -4,19 +4,28 @@
|
|
4
4
|
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
5
|
# and maximum; this matches the default thread size of Active Record.
|
6
6
|
#
|
7
|
-
|
8
|
-
|
7
|
+
max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
8
|
+
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
|
9
|
+
threads min_threads_count, max_threads_count
|
10
|
+
|
11
|
+
# Specifies the `worker_timeout` threshold that Puma will use to wait before
|
12
|
+
# terminating a worker in development environments.
|
13
|
+
#
|
14
|
+
worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
|
9
15
|
|
10
16
|
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
11
17
|
#
|
12
|
-
port
|
18
|
+
port ENV.fetch("PORT") { 3000 }
|
13
19
|
|
14
20
|
# Specifies the `environment` that Puma will run in.
|
15
21
|
#
|
16
22
|
environment ENV.fetch("RAILS_ENV") { "development" }
|
17
23
|
|
24
|
+
# Specifies the `pidfile` that Puma will use.
|
25
|
+
pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
|
26
|
+
|
18
27
|
# Specifies the number of `workers` to boot in clustered mode.
|
19
|
-
# Workers are forked
|
28
|
+
# Workers are forked web server processes. If using threads and workers together
|
20
29
|
# the concurrency of the application would be max `threads` * `workers`.
|
21
30
|
# Workers do not work on JRuby or Windows (both of which do not support
|
22
31
|
# processes).
|
@@ -26,31 +35,9 @@ environment ENV.fetch("RAILS_ENV") { "development" }
|
|
26
35
|
# Use the `preload_app!` method when specifying a `workers` number.
|
27
36
|
# This directive tells Puma to first boot the application and load code
|
28
37
|
# before forking the application. This takes advantage of Copy On Write
|
29
|
-
# process behavior so workers use less memory.
|
30
|
-
# you need to make sure to reconnect any threads in the `on_worker_boot`
|
31
|
-
# block.
|
38
|
+
# process behavior so workers use less memory.
|
32
39
|
#
|
33
40
|
# preload_app!
|
34
41
|
|
35
|
-
# If you are preloading your application and using Active Record, it's
|
36
|
-
# recommended that you close any connections to the database before workers
|
37
|
-
# are forked to prevent connection leakage.
|
38
|
-
#
|
39
|
-
# before_fork do
|
40
|
-
# ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
|
41
|
-
# end
|
42
|
-
|
43
|
-
# The code in the `on_worker_boot` will be called if you are using
|
44
|
-
# clustered mode by specifying a number of `workers`. After each worker
|
45
|
-
# process is booted, this block will be run. If you are using the `preload_app!`
|
46
|
-
# option, you will want to use this block to reconnect to any threads
|
47
|
-
# or connections that may have been created at application boot, as Ruby
|
48
|
-
# cannot share connections between processes.
|
49
|
-
#
|
50
|
-
# on_worker_boot do
|
51
|
-
# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
52
|
-
# end
|
53
|
-
#
|
54
|
-
|
55
42
|
# Allow puma to be restarted by `rails restart` command.
|
56
43
|
plugin :tmp_restart
|
@@ -0,0 +1,34 @@
|
|
1
|
+
test:
|
2
|
+
service: Disk
|
3
|
+
root: <%= Rails.root.join("tmp/storage") %>
|
4
|
+
|
5
|
+
local:
|
6
|
+
service: Disk
|
7
|
+
root: <%= Rails.root.join("storage") %>
|
8
|
+
|
9
|
+
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
10
|
+
# amazon:
|
11
|
+
# service: S3
|
12
|
+
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
13
|
+
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
14
|
+
# region: us-east-1
|
15
|
+
# bucket: your_own_bucket
|
16
|
+
|
17
|
+
# Remember not to checkin your GCS keyfile to a repository
|
18
|
+
# google:
|
19
|
+
# service: GCS
|
20
|
+
# project: your_project
|
21
|
+
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
22
|
+
# bucket: your_own_bucket
|
23
|
+
|
24
|
+
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
25
|
+
# microsoft:
|
26
|
+
# service: AzureStorage
|
27
|
+
# storage_account_name: your_account_name
|
28
|
+
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
29
|
+
# container: your_container_name
|
30
|
+
|
31
|
+
# mirror:
|
32
|
+
# service: Mirror
|
33
|
+
# primary: local
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -14,10 +14,7 @@ RSpec.describe ActiveJobLog::LogExt do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
let(:job_params) do
|
17
|
-
|
18
|
-
"p1",
|
19
|
-
"p2"
|
20
|
-
]
|
17
|
+
%w{p1 p2}
|
21
18
|
end
|
22
19
|
|
23
20
|
before { remove_job_class }
|
@@ -50,7 +47,7 @@ RSpec.describe ActiveJobLog::LogExt do
|
|
50
47
|
it { expect(@job.queued_duration).to be_nil }
|
51
48
|
it { expect(@job.execution_duration).not_to be_nil }
|
52
49
|
it { expect(@job.total_duration).not_to be_nil }
|
53
|
-
it { expect(@job.executions).to eq(
|
50
|
+
it { expect(@job.executions).to eq(1) }
|
54
51
|
end
|
55
52
|
|
56
53
|
context "with failed job" do
|
@@ -79,6 +76,6 @@ RSpec.describe ActiveJobLog::LogExt do
|
|
79
76
|
it { expect(@job.queued_duration).to be_nil }
|
80
77
|
it { expect(@job.execution_duration).not_to be_nil }
|
81
78
|
it { expect(@job.total_duration).not_to be_nil }
|
82
|
-
it { expect(@job.executions).to eq(
|
79
|
+
it { expect(@job.executions).to eq(1) }
|
83
80
|
end
|
84
81
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_job_log
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Platanus
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-06-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: '6.0'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: '6.0'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: enumerize
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '1.0'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
43
|
+
name: coveralls
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - ">="
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '0'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
|
-
name:
|
57
|
+
name: factory_bot_rails
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - ">="
|
@@ -68,7 +68,7 @@ dependencies:
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
71
|
+
name: pry
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
@@ -82,7 +82,7 @@ dependencies:
|
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '0'
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
|
-
name:
|
85
|
+
name: pry-rails
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
88
|
- - ">="
|
@@ -96,7 +96,7 @@ dependencies:
|
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: '0'
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
|
-
name:
|
99
|
+
name: rspec_junit_formatter
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
101
101
|
requirements:
|
102
102
|
- - ">="
|
@@ -110,7 +110,7 @@ dependencies:
|
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: '0'
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
|
-
name:
|
113
|
+
name: rspec-rails
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
116
|
- - ">="
|
@@ -124,7 +124,35 @@ dependencies:
|
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '0'
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
|
-
name:
|
127
|
+
name: rubocop
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '1.9'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '1.9'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: rubocop-rails
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
147
|
+
type: :development
|
148
|
+
prerelease: false
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
- !ruby/object:Gem::Dependency
|
155
|
+
name: sqlite3
|
128
156
|
requirement: !ruby/object:Gem::Requirement
|
129
157
|
requirements:
|
130
158
|
- - ">="
|
@@ -146,17 +174,16 @@ executables: []
|
|
146
174
|
extensions: []
|
147
175
|
extra_rdoc_files: []
|
148
176
|
files:
|
177
|
+
- ".circleci/config.yml"
|
178
|
+
- ".circleci/setup-rubygems.sh"
|
149
179
|
- ".coveralls.yml"
|
150
180
|
- ".gitignore"
|
151
|
-
- ".hound.yml"
|
152
181
|
- ".rspec"
|
153
182
|
- ".rubocop.yml"
|
154
183
|
- ".ruby-version"
|
155
|
-
- ".travis.yml"
|
156
184
|
- CHANGELOG.md
|
157
185
|
- Gemfile
|
158
186
|
- Gemfile.lock
|
159
|
-
- Guardfile
|
160
187
|
- LICENSE.txt
|
161
188
|
- README.md
|
162
189
|
- Rakefile
|
@@ -170,7 +197,6 @@ files:
|
|
170
197
|
- app/jobs/active_job_log/application_job.rb
|
171
198
|
- app/mailers/active_job_log/application_mailer.rb
|
172
199
|
- app/models/active_job_log/application_record.rb
|
173
|
-
- app/models/active_job_log/job.rb
|
174
200
|
- app/views/layouts/active_job_log/application.html.erb
|
175
201
|
- bin/rails
|
176
202
|
- config/routes.rb
|
@@ -178,32 +204,31 @@ files:
|
|
178
204
|
- lib/active_job_log.rb
|
179
205
|
- lib/active_job_log/engine.rb
|
180
206
|
- lib/active_job_log/log_ext.rb
|
207
|
+
- lib/active_job_log/loggeable.rb
|
181
208
|
- lib/active_job_log/version.rb
|
182
209
|
- lib/generators/active_job_log/install/USAGE
|
183
210
|
- lib/generators/active_job_log/install/install_generator.rb
|
184
211
|
- lib/generators/active_job_log/install/templates/initializer.rb
|
212
|
+
- lib/generators/active_job_log/install/templates/job_model.rb
|
185
213
|
- lib/tasks/active_job_log_tasks.rake
|
186
214
|
- spec/dummy/Rakefile
|
187
215
|
- spec/dummy/app/assets/config/manifest.js
|
188
|
-
- spec/dummy/app/assets/javascripts/application.js
|
189
|
-
- spec/dummy/app/assets/javascripts/cable.js
|
190
216
|
- spec/dummy/app/assets/stylesheets/application.css
|
191
217
|
- spec/dummy/app/channels/application_cable/channel.rb
|
192
218
|
- spec/dummy/app/channels/application_cable/connection.rb
|
193
219
|
- spec/dummy/app/controllers/application_controller.rb
|
194
220
|
- spec/dummy/app/helpers/application_helper.rb
|
221
|
+
- spec/dummy/app/javascript/packs/application.js
|
195
222
|
- spec/dummy/app/jobs/application_job.rb
|
196
223
|
- spec/dummy/app/mailers/application_mailer.rb
|
224
|
+
- spec/dummy/app/models/active_job_log/job.rb
|
197
225
|
- spec/dummy/app/models/application_record.rb
|
198
226
|
- spec/dummy/app/views/layouts/application.html.erb
|
199
227
|
- spec/dummy/app/views/layouts/mailer.html.erb
|
200
228
|
- spec/dummy/app/views/layouts/mailer.text.erb
|
201
|
-
- spec/dummy/bin/bundle
|
202
229
|
- spec/dummy/bin/rails
|
203
230
|
- spec/dummy/bin/rake
|
204
231
|
- spec/dummy/bin/setup
|
205
|
-
- spec/dummy/bin/update
|
206
|
-
- spec/dummy/bin/yarn
|
207
232
|
- spec/dummy/config.ru
|
208
233
|
- spec/dummy/config/application.rb
|
209
234
|
- spec/dummy/config/boot.rb
|
@@ -216,16 +241,17 @@ files:
|
|
216
241
|
- spec/dummy/config/initializers/application_controller_renderer.rb
|
217
242
|
- spec/dummy/config/initializers/assets.rb
|
218
243
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
244
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
219
245
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
220
246
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
221
247
|
- spec/dummy/config/initializers/inflections.rb
|
222
248
|
- spec/dummy/config/initializers/mime_types.rb
|
249
|
+
- spec/dummy/config/initializers/permissions_policy.rb
|
223
250
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
224
251
|
- spec/dummy/config/locales/en.yml
|
225
252
|
- spec/dummy/config/puma.rb
|
226
253
|
- spec/dummy/config/routes.rb
|
227
|
-
- spec/dummy/config/
|
228
|
-
- spec/dummy/config/spring.rb
|
254
|
+
- spec/dummy/config/storage.yml
|
229
255
|
- spec/dummy/db/schema.rb
|
230
256
|
- spec/dummy/package.json
|
231
257
|
- spec/dummy/public/404.html
|
@@ -261,33 +287,29 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
261
287
|
- !ruby/object:Gem::Version
|
262
288
|
version: '0'
|
263
289
|
requirements: []
|
264
|
-
|
265
|
-
rubygems_version: 2.7.7
|
290
|
+
rubygems_version: 3.1.6
|
266
291
|
signing_key:
|
267
292
|
specification_version: 4
|
268
293
|
summary: Rails engine to keep jobs history
|
269
294
|
test_files:
|
270
295
|
- spec/dummy/Rakefile
|
271
296
|
- spec/dummy/app/assets/config/manifest.js
|
272
|
-
- spec/dummy/app/assets/javascripts/application.js
|
273
|
-
- spec/dummy/app/assets/javascripts/cable.js
|
274
297
|
- spec/dummy/app/assets/stylesheets/application.css
|
275
298
|
- spec/dummy/app/channels/application_cable/channel.rb
|
276
299
|
- spec/dummy/app/channels/application_cable/connection.rb
|
277
300
|
- spec/dummy/app/controllers/application_controller.rb
|
278
301
|
- spec/dummy/app/helpers/application_helper.rb
|
302
|
+
- spec/dummy/app/javascript/packs/application.js
|
279
303
|
- spec/dummy/app/jobs/application_job.rb
|
280
304
|
- spec/dummy/app/mailers/application_mailer.rb
|
305
|
+
- spec/dummy/app/models/active_job_log/job.rb
|
281
306
|
- spec/dummy/app/models/application_record.rb
|
282
307
|
- spec/dummy/app/views/layouts/application.html.erb
|
283
308
|
- spec/dummy/app/views/layouts/mailer.html.erb
|
284
309
|
- spec/dummy/app/views/layouts/mailer.text.erb
|
285
|
-
- spec/dummy/bin/bundle
|
286
310
|
- spec/dummy/bin/rails
|
287
311
|
- spec/dummy/bin/rake
|
288
312
|
- spec/dummy/bin/setup
|
289
|
-
- spec/dummy/bin/update
|
290
|
-
- spec/dummy/bin/yarn
|
291
313
|
- spec/dummy/config.ru
|
292
314
|
- spec/dummy/config/application.rb
|
293
315
|
- spec/dummy/config/boot.rb
|
@@ -300,16 +322,17 @@ test_files:
|
|
300
322
|
- spec/dummy/config/initializers/application_controller_renderer.rb
|
301
323
|
- spec/dummy/config/initializers/assets.rb
|
302
324
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
325
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
303
326
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
304
327
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
305
328
|
- spec/dummy/config/initializers/inflections.rb
|
306
329
|
- spec/dummy/config/initializers/mime_types.rb
|
330
|
+
- spec/dummy/config/initializers/permissions_policy.rb
|
307
331
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
308
332
|
- spec/dummy/config/locales/en.yml
|
309
333
|
- spec/dummy/config/puma.rb
|
310
334
|
- spec/dummy/config/routes.rb
|
311
|
-
- spec/dummy/config/
|
312
|
-
- spec/dummy/config/spring.rb
|
335
|
+
- spec/dummy/config/storage.yml
|
313
336
|
- spec/dummy/db/schema.rb
|
314
337
|
- spec/dummy/package.json
|
315
338
|
- spec/dummy/public/404.html
|