active_job_log 1.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 +7 -0
- data/Gemfile.lock +165 -114
- data/LICENSE.txt +1 -1
- data/README.md +15 -4
- data/active_job_log.gemspec +7 -4
- data/lib/active_job_log/log_ext.rb +1 -1
- data/lib/active_job_log/loggeable.rb +5 -2
- data/lib/active_job_log/version.rb +1 -1
- 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/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/factories/active_job_log_jobs.rb +2 -2
- data/spec/lib/active_job_log/log_ext_spec.rb +3 -6
- metadata +97 -62
- data/.hound.yml +0 -4
- data/.travis.yml +0 -16
- data/Guardfile +0 -15
- 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
@@ -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 ]
|
@@ -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: 2021-
|
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
|
@@ -39,6 +39,34 @@ dependencies:
|
|
39
39
|
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '1.0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: coveralls
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: factory_bot_rails
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
42
70
|
- !ruby/object:Gem::Dependency
|
43
71
|
name: pry
|
44
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -68,7 +96,7 @@ dependencies:
|
|
68
96
|
- !ruby/object:Gem::Version
|
69
97
|
version: '0'
|
70
98
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
99
|
+
name: rspec_junit_formatter
|
72
100
|
requirement: !ruby/object:Gem::Requirement
|
73
101
|
requirements:
|
74
102
|
- - ">="
|
@@ -96,7 +124,21 @@ dependencies:
|
|
96
124
|
- !ruby/object:Gem::Version
|
97
125
|
version: '0'
|
98
126
|
- !ruby/object:Gem::Dependency
|
99
|
-
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
|
100
142
|
requirement: !ruby/object:Gem::Requirement
|
101
143
|
requirements:
|
102
144
|
- - ">="
|
@@ -110,7 +152,7 @@ dependencies:
|
|
110
152
|
- !ruby/object:Gem::Version
|
111
153
|
version: '0'
|
112
154
|
- !ruby/object:Gem::Dependency
|
113
|
-
name:
|
155
|
+
name: sqlite3
|
114
156
|
requirement: !ruby/object:Gem::Requirement
|
115
157
|
requirements:
|
116
158
|
- - ">="
|
@@ -132,17 +174,16 @@ executables: []
|
|
132
174
|
extensions: []
|
133
175
|
extra_rdoc_files: []
|
134
176
|
files:
|
177
|
+
- ".circleci/config.yml"
|
178
|
+
- ".circleci/setup-rubygems.sh"
|
135
179
|
- ".coveralls.yml"
|
136
180
|
- ".gitignore"
|
137
|
-
- ".hound.yml"
|
138
181
|
- ".rspec"
|
139
182
|
- ".rubocop.yml"
|
140
183
|
- ".ruby-version"
|
141
|
-
- ".travis.yml"
|
142
184
|
- CHANGELOG.md
|
143
185
|
- Gemfile
|
144
186
|
- Gemfile.lock
|
145
|
-
- Guardfile
|
146
187
|
- LICENSE.txt
|
147
188
|
- README.md
|
148
189
|
- Rakefile
|
@@ -172,13 +213,12 @@ files:
|
|
172
213
|
- lib/tasks/active_job_log_tasks.rake
|
173
214
|
- spec/dummy/Rakefile
|
174
215
|
- spec/dummy/app/assets/config/manifest.js
|
175
|
-
- spec/dummy/app/assets/javascripts/application.js
|
176
|
-
- spec/dummy/app/assets/javascripts/cable.js
|
177
216
|
- spec/dummy/app/assets/stylesheets/application.css
|
178
217
|
- spec/dummy/app/channels/application_cable/channel.rb
|
179
218
|
- spec/dummy/app/channels/application_cable/connection.rb
|
180
219
|
- spec/dummy/app/controllers/application_controller.rb
|
181
220
|
- spec/dummy/app/helpers/application_helper.rb
|
221
|
+
- spec/dummy/app/javascript/packs/application.js
|
182
222
|
- spec/dummy/app/jobs/application_job.rb
|
183
223
|
- spec/dummy/app/mailers/application_mailer.rb
|
184
224
|
- spec/dummy/app/models/active_job_log/job.rb
|
@@ -186,12 +226,9 @@ files:
|
|
186
226
|
- spec/dummy/app/views/layouts/application.html.erb
|
187
227
|
- spec/dummy/app/views/layouts/mailer.html.erb
|
188
228
|
- spec/dummy/app/views/layouts/mailer.text.erb
|
189
|
-
- spec/dummy/bin/bundle
|
190
229
|
- spec/dummy/bin/rails
|
191
230
|
- spec/dummy/bin/rake
|
192
231
|
- spec/dummy/bin/setup
|
193
|
-
- spec/dummy/bin/update
|
194
|
-
- spec/dummy/bin/yarn
|
195
232
|
- spec/dummy/config.ru
|
196
233
|
- spec/dummy/config/application.rb
|
197
234
|
- spec/dummy/config/boot.rb
|
@@ -204,16 +241,17 @@ files:
|
|
204
241
|
- spec/dummy/config/initializers/application_controller_renderer.rb
|
205
242
|
- spec/dummy/config/initializers/assets.rb
|
206
243
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
244
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
207
245
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
208
246
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
209
247
|
- spec/dummy/config/initializers/inflections.rb
|
210
248
|
- spec/dummy/config/initializers/mime_types.rb
|
249
|
+
- spec/dummy/config/initializers/permissions_policy.rb
|
211
250
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
212
251
|
- spec/dummy/config/locales/en.yml
|
213
252
|
- spec/dummy/config/puma.rb
|
214
253
|
- spec/dummy/config/routes.rb
|
215
|
-
- spec/dummy/config/
|
216
|
-
- spec/dummy/config/spring.rb
|
254
|
+
- spec/dummy/config/storage.yml
|
217
255
|
- spec/dummy/db/schema.rb
|
218
256
|
- spec/dummy/package.json
|
219
257
|
- spec/dummy/public/404.html
|
@@ -249,68 +287,65 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
249
287
|
- !ruby/object:Gem::Version
|
250
288
|
version: '0'
|
251
289
|
requirements: []
|
252
|
-
rubygems_version: 3.
|
290
|
+
rubygems_version: 3.1.6
|
253
291
|
signing_key:
|
254
292
|
specification_version: 4
|
255
293
|
summary: Rails engine to keep jobs history
|
256
294
|
test_files:
|
257
|
-
- spec/
|
258
|
-
- spec/dummy/app/
|
259
|
-
- spec/dummy/app/
|
295
|
+
- spec/dummy/Rakefile
|
296
|
+
- spec/dummy/app/assets/config/manifest.js
|
297
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
260
298
|
- spec/dummy/app/channels/application_cable/channel.rb
|
261
|
-
- spec/dummy/app/
|
262
|
-
- spec/dummy/app/
|
263
|
-
- spec/dummy/app/
|
299
|
+
- spec/dummy/app/channels/application_cable/connection.rb
|
300
|
+
- spec/dummy/app/controllers/application_controller.rb
|
301
|
+
- spec/dummy/app/helpers/application_helper.rb
|
302
|
+
- spec/dummy/app/javascript/packs/application.js
|
264
303
|
- spec/dummy/app/jobs/application_job.rb
|
265
|
-
- spec/dummy/app/
|
304
|
+
- spec/dummy/app/mailers/application_mailer.rb
|
266
305
|
- spec/dummy/app/models/active_job_log/job.rb
|
267
|
-
- spec/dummy/app/
|
268
|
-
- spec/dummy/app/
|
269
|
-
- spec/dummy/app/
|
270
|
-
- spec/dummy/app/
|
271
|
-
- spec/dummy/app/assets/config/manifest.js
|
272
|
-
- spec/dummy/app/controllers/application_controller.rb
|
273
|
-
- spec/dummy/Rakefile
|
274
|
-
- spec/dummy/bin/yarn
|
275
|
-
- spec/dummy/bin/update
|
276
|
-
- spec/dummy/bin/rake
|
277
|
-
- spec/dummy/bin/bundle
|
306
|
+
- spec/dummy/app/models/application_record.rb
|
307
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
308
|
+
- spec/dummy/app/views/layouts/mailer.html.erb
|
309
|
+
- spec/dummy/app/views/layouts/mailer.text.erb
|
278
310
|
- spec/dummy/bin/rails
|
311
|
+
- spec/dummy/bin/rake
|
279
312
|
- spec/dummy/bin/setup
|
280
|
-
- spec/dummy/spec/support/test_helpers.rb
|
281
|
-
- spec/dummy/spec/assets/image.png
|
282
|
-
- spec/dummy/spec/assets/video.mp4
|
283
|
-
- spec/dummy/public/404.html
|
284
|
-
- spec/dummy/public/500.html
|
285
|
-
- spec/dummy/public/apple-touch-icon-precomposed.png
|
286
|
-
- spec/dummy/public/422.html
|
287
|
-
- spec/dummy/public/apple-touch-icon.png
|
288
|
-
- spec/dummy/public/favicon.ico
|
289
313
|
- spec/dummy/config.ru
|
290
|
-
- spec/dummy/db/schema.rb
|
291
|
-
- spec/dummy/config/routes.rb
|
292
|
-
- spec/dummy/config/environment.rb
|
293
|
-
- spec/dummy/config/spring.rb
|
294
|
-
- spec/dummy/config/cable.yml
|
295
|
-
- spec/dummy/config/secrets.yml
|
296
314
|
- spec/dummy/config/application.rb
|
297
315
|
- spec/dummy/config/boot.rb
|
298
|
-
- spec/dummy/config/
|
316
|
+
- spec/dummy/config/cable.yml
|
317
|
+
- spec/dummy/config/database.yml
|
318
|
+
- spec/dummy/config/environment.rb
|
299
319
|
- spec/dummy/config/environments/development.rb
|
300
320
|
- spec/dummy/config/environments/production.rb
|
301
|
-
- spec/dummy/config/
|
302
|
-
- spec/dummy/config/puma.rb
|
303
|
-
- spec/dummy/config/initializers/wrap_parameters.rb
|
304
|
-
- spec/dummy/config/initializers/mime_types.rb
|
305
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
306
|
-
- spec/dummy/config/initializers/assets.rb
|
321
|
+
- spec/dummy/config/environments/test.rb
|
307
322
|
- spec/dummy/config/initializers/application_controller_renderer.rb
|
308
|
-
- spec/dummy/config/initializers/
|
309
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
323
|
+
- spec/dummy/config/initializers/assets.rb
|
310
324
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
311
|
-
- spec/dummy/config/
|
325
|
+
- spec/dummy/config/initializers/content_security_policy.rb
|
326
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
327
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
328
|
+
- spec/dummy/config/initializers/inflections.rb
|
329
|
+
- spec/dummy/config/initializers/mime_types.rb
|
330
|
+
- spec/dummy/config/initializers/permissions_policy.rb
|
331
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
332
|
+
- spec/dummy/config/locales/en.yml
|
333
|
+
- spec/dummy/config/puma.rb
|
334
|
+
- spec/dummy/config/routes.rb
|
335
|
+
- spec/dummy/config/storage.yml
|
336
|
+
- spec/dummy/db/schema.rb
|
312
337
|
- spec/dummy/package.json
|
338
|
+
- spec/dummy/public/404.html
|
339
|
+
- spec/dummy/public/422.html
|
340
|
+
- spec/dummy/public/500.html
|
341
|
+
- spec/dummy/public/apple-touch-icon-precomposed.png
|
342
|
+
- spec/dummy/public/apple-touch-icon.png
|
343
|
+
- spec/dummy/public/favicon.ico
|
344
|
+
- spec/dummy/spec/assets/image.png
|
345
|
+
- spec/dummy/spec/assets/video.mp4
|
346
|
+
- spec/dummy/spec/support/test_helpers.rb
|
347
|
+
- spec/factories/active_job_log_jobs.rb
|
313
348
|
- spec/lib/active_job_log/log_ext_spec.rb
|
314
349
|
- spec/models/active_job_log/job_spec.rb
|
315
|
-
- spec/factories/active_job_log_jobs.rb
|
316
350
|
- spec/rails_helper.rb
|
351
|
+
- spec/spec_helper.rb
|