dryer-config 7.0.0 → 7.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/MIT-LICENSE +3 -1
- data/README.md +27 -31
- data/config/cable.yml +1 -1
- data/config/database.yml +3 -3
- data/config/environments/development.rb +7 -1
- data/config/environments/production.rb +28 -24
- data/config/environments/test.rb +10 -6
- data/config/initializers/content_security_policy.rb +6 -7
- data/config/initializers/filter_parameter_logging.rb +3 -1
- data/config/initializers/permissions_policy.rb +11 -9
- data/config/puma.rb +11 -19
- data/dryer-config.gemspec +2 -9
- data/lib/dryer-config/version.rb +6 -5
- metadata +6 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 544f1ae9a3f4fc1ca6f8db135da6c84ef4037f51748f28320092a0f64e6d21ce
|
4
|
+
data.tar.gz: 7bad8361981a43f151c5a5c9d2d1754df713a8122c981b4866d7a0a6429ae4a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70db039f17d65d4ccd0f7cfe337ab12e99361a07d129d0436712c48ebd06325d412f70a135cf0e11d11097c8739b51f61f0cd2406f4bdca15f9129c042c67f3f
|
7
|
+
data.tar.gz: 9405afb279831775d4e71a8619cb7cd9934d4babdcf44961cd88ab76ff2e9eb4a054d938e77cb7e43df5337a847076c9215448eb352be206f7246baa577ff588
|
data/.ruby-gemset
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rails-7.
|
1
|
+
rails-7.1
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby-3.
|
1
|
+
ruby-3.2.2
|
data/MIT-LICENSE
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016-2023 Dittmar Krall (www.matiq.com)
|
2
4
|
|
3
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
6
|
a copy of this software and associated documentation files (the
|
data/README.md
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
DryerConfig
|
2
|
-
|
1
|
+
# DryerConfig
|
2
|
+
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/dryer-config.png)](http://badge.fury.io/rb/dryer-config)
|
4
4
|
|
5
|
-
Contains most of the files of a pristine
|
5
|
+
Contains most of the files of a pristine `rails new` `config` directories.
|
6
6
|
They will be available to your application by
|
7
7
|
the engine nature of this gem.
|
8
8
|
|
9
|
-
Your private
|
9
|
+
Your private `config` directory (and your repository)
|
10
10
|
will contain just your particular requirements/options
|
11
|
-
(e.g. config/database.yml).
|
11
|
+
(e.g. `config/database.yml`).
|
12
12
|
|
13
13
|
Version numbering is according to the Rails versions, e.g. use
|
14
14
|
|
@@ -18,37 +18,36 @@ or
|
|
18
18
|
|
19
19
|
gem 'dryer-config', '~> 5.2' # expected to serve Rails 5.2.*
|
20
20
|
|
21
|
-
in your Gemfile
|
21
|
+
in your `Gemfile`.
|
22
22
|
|
23
|
-
It is expected that the version
|
24
|
-
complete Rails
|
23
|
+
It is expected that the version 7.0.0 is fine for the
|
24
|
+
complete Rails 7 serie.
|
25
25
|
If not, a new version of this gem will be released (hopefully).
|
26
26
|
|
27
|
-
Why
|
28
|
-
---
|
27
|
+
## Why
|
29
28
|
|
30
29
|
Usually I run several applications based on the same Rails on one server.
|
31
30
|
There is no need to waste disk space (mostly irrelevant today,
|
32
31
|
but I still don't like wasting).
|
33
32
|
|
34
|
-
Several
|
33
|
+
Several `config` files will be out of the way (less attention)
|
35
34
|
for the developer.
|
36
35
|
|
37
36
|
Lastly, during the port of a Rails application to another version
|
38
37
|
a pristine configuration is handy.
|
39
|
-
The few remaining options in your
|
38
|
+
The few remaining options in your `config` files needs
|
40
39
|
less attention/work.
|
41
40
|
|
42
|
-
Installation
|
43
|
-
------------
|
44
|
-
To install add the following to your Gemfile (e.g.):
|
45
|
-
|
46
|
-
gem 'dryer-config', '~> 6.0'
|
41
|
+
## Installation
|
47
42
|
|
48
|
-
|
43
|
+
As usual:
|
44
|
+
```ruby
|
45
|
+
# Gemfile
|
46
|
+
gem "dryer-config", "~> 7.1"
|
47
|
+
```
|
48
|
+
and run `bundle install`.
|
49
49
|
|
50
|
-
Rails 6.0.0
|
51
|
-
-----------
|
50
|
+
## Rails 7.1.0, 7.0.0, 6.0.0, 5.2.0
|
52
51
|
|
53
52
|
See also "Configuration" below.
|
54
53
|
|
@@ -58,15 +57,6 @@ Create your own (there are still there for inspection):
|
|
58
57
|
|
59
58
|
The Webpacker files may require your attention:
|
60
59
|
|
61
|
-
Rails 5.2.0
|
62
|
-
-----------
|
63
|
-
|
64
|
-
See also Configuration below.
|
65
|
-
|
66
|
-
Create your own (there are still there for inspection):
|
67
|
-
|
68
|
-
./config/storage.yml
|
69
|
-
|
70
60
|
Configuration
|
71
61
|
-------------
|
72
62
|
|
@@ -97,7 +87,13 @@ The following file requires your attention:
|
|
97
87
|
|
98
88
|
Create your own. It will run after the one from the gem.
|
99
89
|
|
100
|
-
See also
|
101
|
-
--------
|
90
|
+
## See also
|
102
91
|
|
103
92
|
http://railsdiff.org/
|
93
|
+
|
94
|
+
## Miscellaneous
|
95
|
+
|
96
|
+
Copyright (c) 2016-2023 Dittmar Krall (www.matiq.com),
|
97
|
+
released under the MIT license:
|
98
|
+
|
99
|
+
* https://opensource.org/licenses/MIT
|
data/config/cable.yml
CHANGED
data/config/database.yml
CHANGED
@@ -11,15 +11,15 @@ default: &default
|
|
11
11
|
|
12
12
|
development:
|
13
13
|
<<: *default
|
14
|
-
database:
|
14
|
+
database: storage/development.sqlite3
|
15
15
|
|
16
16
|
# Warning: The database defined as "test" will be erased and
|
17
17
|
# re-generated from your development database when you run "rake".
|
18
18
|
# Do not set this db to the same as development or production.
|
19
19
|
test:
|
20
20
|
<<: *default
|
21
|
-
database:
|
21
|
+
database: storage/test.sqlite3
|
22
22
|
|
23
23
|
production:
|
24
24
|
<<: *default
|
25
|
-
database:
|
25
|
+
database: storage/production.sqlite3
|
@@ -6,7 +6,7 @@ Rails.application.configure do
|
|
6
6
|
# In the development environment your application's code is reloaded any time
|
7
7
|
# it changes. This slows down response time but is perfect for development
|
8
8
|
# since you don't have to restart the web server when you make code changes.
|
9
|
-
config.
|
9
|
+
config.enable_reloading = true
|
10
10
|
|
11
11
|
# Do not eager load code on boot.
|
12
12
|
config.eager_load = false
|
@@ -56,6 +56,9 @@ Rails.application.configure do
|
|
56
56
|
# Highlight code that triggered database queries in logs.
|
57
57
|
config.active_record.verbose_query_logs = true
|
58
58
|
|
59
|
+
# Highlight code that enqueued background job in logs.
|
60
|
+
config.active_job.verbose_enqueue_logs = true
|
61
|
+
|
59
62
|
# Suppress logger output for asset requests.
|
60
63
|
config.assets.quiet = true
|
61
64
|
|
@@ -67,4 +70,7 @@ Rails.application.configure do
|
|
67
70
|
|
68
71
|
# Uncomment if you wish to allow Action Cable access from any origin.
|
69
72
|
# config.action_cable.disable_request_forgery_protection = true
|
73
|
+
|
74
|
+
# Raise error when a before_action's only/except options reference missing actions
|
75
|
+
config.action_controller.raise_on_missing_callback_actions = true
|
70
76
|
end
|
@@ -4,7 +4,7 @@ Rails.application.configure do
|
|
4
4
|
# Settings specified here will take precedence over those in config/application.rb.
|
5
5
|
|
6
6
|
# Code is not reloaded between requests.
|
7
|
-
config.
|
7
|
+
config.enable_reloading = false
|
8
8
|
|
9
9
|
# Eager load code on boot. This eager loads most of Rails and
|
10
10
|
# your application in memory, allowing both threaded web servers
|
@@ -16,13 +16,12 @@ Rails.application.configure do
|
|
16
16
|
config.consider_all_requests_local = false
|
17
17
|
config.action_controller.perform_caching = true
|
18
18
|
|
19
|
-
# Ensures that a master key has been made available in
|
20
|
-
#
|
19
|
+
# Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
|
20
|
+
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
|
21
21
|
# config.require_master_key = true
|
22
22
|
|
23
|
-
#
|
24
|
-
|
25
|
-
config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present?
|
23
|
+
# Enable static file serving from the `/public` folder (turn off if using NGINX/Apache for it).
|
24
|
+
config.public_file_server.enabled = true
|
26
25
|
|
27
26
|
# Compress CSS using a preprocessor.
|
28
27
|
# config.assets.css_compressor = :sass
|
@@ -45,22 +44,32 @@ Rails.application.configure do
|
|
45
44
|
# config.action_cable.url = "wss://example.com/cable"
|
46
45
|
# config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ]
|
47
46
|
|
47
|
+
# Assume all access to the app is happening through a SSL-terminating reverse proxy.
|
48
|
+
# Can be used together with config.force_ssl for Strict-Transport-Security and secure cookies.
|
49
|
+
# config.assume_ssl = true
|
50
|
+
|
48
51
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
49
|
-
|
52
|
+
config.force_ssl = true
|
50
53
|
|
51
|
-
#
|
52
|
-
|
53
|
-
|
54
|
+
# Log to STDOUT by default
|
55
|
+
config.logger = ActiveSupport::Logger.new(STDOUT)
|
56
|
+
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
57
|
+
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
54
58
|
|
55
59
|
# Prepend all log lines with the following tags.
|
56
60
|
config.log_tags = [ :request_id ]
|
57
61
|
|
62
|
+
# Info include generic and useful information about system operation, but avoids logging too much
|
63
|
+
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
|
64
|
+
# want to log everything, set the level to "debug".
|
65
|
+
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
66
|
+
|
58
67
|
# Use a different cache store in production.
|
59
68
|
# config.cache_store = :mem_cache_store
|
60
69
|
|
61
70
|
# Use a real queuing backend for Active Job (and separate queues per environment).
|
62
71
|
# config.active_job.queue_adapter = :resque
|
63
|
-
# config.active_job.queue_name_prefix = "
|
72
|
+
# config.active_job.queue_name_prefix = "sample_7_1_0_production"
|
64
73
|
|
65
74
|
config.action_mailer.perform_caching = false
|
66
75
|
|
@@ -75,19 +84,14 @@ Rails.application.configure do
|
|
75
84
|
# Don't log any deprecations.
|
76
85
|
config.active_support.report_deprecations = false
|
77
86
|
|
78
|
-
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
-
config.log_formatter = ::Logger::Formatter.new
|
80
|
-
|
81
|
-
# Use a different logger for distributed setups.
|
82
|
-
# require "syslog/logger"
|
83
|
-
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new "app-name")
|
84
|
-
|
85
|
-
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
86
|
-
logger = ActiveSupport::Logger.new(STDOUT)
|
87
|
-
logger.formatter = config.log_formatter
|
88
|
-
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
89
|
-
end
|
90
|
-
|
91
87
|
# Do not dump schema after migrations.
|
92
88
|
config.active_record.dump_schema_after_migration = false
|
89
|
+
|
90
|
+
# Enable DNS rebinding protection and other `Host` header attacks.
|
91
|
+
# config.hosts = [
|
92
|
+
# "example.com", # Allow requests from example.com
|
93
|
+
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
|
94
|
+
# ]
|
95
|
+
# Skip DNS rebinding protection for the default health check endpoint.
|
96
|
+
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
|
93
97
|
end
|
data/config/environments/test.rb
CHANGED
@@ -8,12 +8,13 @@ require "active_support/core_ext/integer/time"
|
|
8
8
|
Rails.application.configure do
|
9
9
|
# Settings specified here will take precedence over those in config/application.rb.
|
10
10
|
|
11
|
-
#
|
12
|
-
config.
|
11
|
+
# While tests run files are not watched, reloading is not necessary.
|
12
|
+
config.enable_reloading = false
|
13
13
|
|
14
|
-
# Eager loading loads your
|
15
|
-
# this
|
16
|
-
#
|
14
|
+
# Eager loading loads your entire application. When running a single test locally,
|
15
|
+
# this is usually not necessary, and can slow down your test suite. However, it's
|
16
|
+
# recommended that you enable it in continuous integration systems to ensure eager
|
17
|
+
# loading is working properly before deploying your code.
|
17
18
|
config.eager_load = ENV["CI"].present?
|
18
19
|
|
19
20
|
# Configure public file server for tests with Cache-Control for performance.
|
@@ -28,7 +29,7 @@ Rails.application.configure do
|
|
28
29
|
config.cache_store = :null_store
|
29
30
|
|
30
31
|
# Raise exceptions instead of rendering exception templates.
|
31
|
-
config.action_dispatch.show_exceptions =
|
32
|
+
config.action_dispatch.show_exceptions = :rescuable
|
32
33
|
|
33
34
|
# Disable request forgery protection in test environment.
|
34
35
|
config.action_controller.allow_forgery_protection = false
|
@@ -57,4 +58,7 @@ Rails.application.configure do
|
|
57
58
|
|
58
59
|
# Annotate rendered view with file names.
|
59
60
|
# config.action_view.annotate_rendered_view_with_filenames = true
|
61
|
+
|
62
|
+
# Raise error when a before_action's only/except options reference missing actions
|
63
|
+
config.action_controller.raise_on_missing_callback_actions = true
|
60
64
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
# Define an application-wide content security policy
|
4
|
-
#
|
5
|
-
# https://
|
3
|
+
# Define an application-wide content security policy.
|
4
|
+
# See the Securing Rails Applications Guide for more information:
|
5
|
+
# https://guides.rubyonrails.org/security.html#content-security-policy-header
|
6
6
|
|
7
7
|
# Rails.application.configure do
|
8
8
|
# config.content_security_policy do |policy|
|
@@ -16,11 +16,10 @@
|
|
16
16
|
# # policy.report_uri "/csp-violation-report-endpoint"
|
17
17
|
# end
|
18
18
|
#
|
19
|
-
# # Generate session nonces for permitted importmap and inline
|
19
|
+
# # Generate session nonces for permitted importmap, inline scripts, and inline styles.
|
20
20
|
# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
|
21
|
-
# config.content_security_policy_nonce_directives = %w(script-src)
|
21
|
+
# config.content_security_policy_nonce_directives = %w(script-src style-src)
|
22
22
|
#
|
23
|
-
# # Report
|
24
|
-
# # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
23
|
+
# # Report violations without enforcing the policy.
|
25
24
|
# # config.content_security_policy_report_only = true
|
26
25
|
# end
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
# Configure
|
3
|
+
# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
|
4
|
+
# Use this to limit dissemination of sensitive information.
|
5
|
+
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
4
6
|
Rails.application.config.filter_parameters += [
|
5
7
|
:passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
|
6
8
|
]
|
@@ -1,11 +1,13 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
1
3
|
# 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 |
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
4
|
+
# information see: https://developers.google.com/web/updates/2018/06/feature-policy
|
5
|
+
|
6
|
+
# Rails.application.config.permissions_policy do |policy|
|
7
|
+
# policy.camera :none
|
8
|
+
# policy.gyroscope :none
|
9
|
+
# policy.microphone :none
|
10
|
+
# policy.usb :none
|
11
|
+
# policy.fullscreen :self
|
12
|
+
# policy.payment :self, "https://secure.example.com"
|
11
13
|
# end
|
data/config/puma.rb
CHANGED
@@ -1,43 +1,35 @@
|
|
1
|
+
# This configuration file will be evaluated by Puma. The top-level methods that
|
2
|
+
# are invoked here are part of Puma's configuration DSL. For more information
|
3
|
+
# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
|
4
|
+
|
1
5
|
# Puma can serve each request in a thread from an internal thread pool.
|
2
6
|
# The `threads` method setting takes two numbers: a minimum and maximum.
|
3
7
|
# Any libraries that use thread pools should be configured to match
|
4
8
|
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
9
|
# and maximum; this matches the default thread size of Active Record.
|
6
|
-
#
|
7
10
|
max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
8
11
|
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
|
9
12
|
threads min_threads_count, max_threads_count
|
10
13
|
|
14
|
+
# Specifies that the worker count should equal the number of processors in production.
|
15
|
+
if ENV["RAILS_ENV"] == "production"
|
16
|
+
require "concurrent-ruby"
|
17
|
+
worker_count = Integer(ENV.fetch("WEB_CONCURRENCY") { Concurrent.physical_processor_count })
|
18
|
+
workers worker_count if worker_count > 1
|
19
|
+
end
|
20
|
+
|
11
21
|
# Specifies the `worker_timeout` threshold that Puma will use to wait before
|
12
22
|
# terminating a worker in development environments.
|
13
|
-
#
|
14
23
|
worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
|
15
24
|
|
16
25
|
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
17
|
-
#
|
18
26
|
port ENV.fetch("PORT") { 3000 }
|
19
27
|
|
20
28
|
# Specifies the `environment` that Puma will run in.
|
21
|
-
#
|
22
29
|
environment ENV.fetch("RAILS_ENV") { "development" }
|
23
30
|
|
24
31
|
# Specifies the `pidfile` that Puma will use.
|
25
32
|
pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
|
26
33
|
|
27
|
-
# Specifies the number of `workers` to boot in clustered mode.
|
28
|
-
# Workers are forked web server processes. If using threads and workers together
|
29
|
-
# the concurrency of the application would be max `threads` * `workers`.
|
30
|
-
# Workers do not work on JRuby or Windows (both of which do not support
|
31
|
-
# processes).
|
32
|
-
#
|
33
|
-
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
34
|
-
|
35
|
-
# Use the `preload_app!` method when specifying a `workers` number.
|
36
|
-
# This directive tells Puma to first boot the application and load code
|
37
|
-
# before forking the application. This takes advantage of Copy On Write
|
38
|
-
# process behavior so workers use less memory.
|
39
|
-
#
|
40
|
-
# preload_app!
|
41
|
-
|
42
34
|
# Allow puma to be restarted by `bin/rails restart` command.
|
43
35
|
plugin :tmp_restart
|
data/dryer-config.gemspec
CHANGED
@@ -9,20 +9,13 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.summary = "Several pristine Rails config files."
|
10
10
|
s.description = "Outsource several config files to a gem."
|
11
11
|
s.authors = ['Dittmar Krall']
|
12
|
-
s.email = ['dittmar.krall@
|
13
|
-
s.homepage = '
|
12
|
+
s.email = ['dittmar.krall@matiq.com']
|
13
|
+
s.homepage = 'https://github.com/matique/dryer-config'
|
14
14
|
s.license = 'MIT'
|
15
15
|
s.platform = Gem::Platform::RUBY
|
16
16
|
|
17
|
-
s.metadata['source_code_uri'] = 'https://github.com/matique/dryer-config'
|
18
|
-
|
19
17
|
s.files = `git ls-files`.split("\n")
|
20
|
-
# s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
-
# s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
22
18
|
s.require_paths = ["lib"]
|
23
19
|
|
24
20
|
s.add_development_dependency 'bundler'
|
25
|
-
s.add_development_dependency 'rake'
|
26
|
-
|
27
|
-
s.add_development_dependency 'minitest'
|
28
21
|
end
|
data/lib/dryer-config/version.rb
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
module DryerConfig
|
2
|
-
VERSION = '7.
|
3
|
-
# VERSION = '
|
4
|
-
# VERSION = '6.
|
5
|
-
# VERSION = '6.0.
|
6
|
-
# VERSION = '6.0.
|
2
|
+
VERSION = '7.1.0' # 2023-10-15
|
3
|
+
# VERSION = '7.0.0' # 2021-12-18
|
4
|
+
# VERSION = '6.1.4' # 2021-06-27
|
5
|
+
# VERSION = '6.0.3' # 2020-05-08
|
6
|
+
# VERSION = '6.0.2' # 2020-02-25
|
7
|
+
# VERSION = '6.0.0' # 2019-10-07
|
7
8
|
# VERSION = '5.2.0'
|
8
9
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dryer-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dittmar Krall
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -24,37 +24,9 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: minitest
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
27
|
description: Outsource several config files to a gem.
|
56
28
|
email:
|
57
|
-
- dittmar.krall@
|
29
|
+
- dittmar.krall@matiq.com
|
58
30
|
executables: []
|
59
31
|
extensions: []
|
60
32
|
extra_rdoc_files: []
|
@@ -85,11 +57,10 @@ files:
|
|
85
57
|
- lib/dryer-config.rb
|
86
58
|
- lib/dryer-config/engine.rb
|
87
59
|
- lib/dryer-config/version.rb
|
88
|
-
homepage:
|
60
|
+
homepage: https://github.com/matique/dryer-config
|
89
61
|
licenses:
|
90
62
|
- MIT
|
91
|
-
metadata:
|
92
|
-
source_code_uri: https://github.com/matique/dryer-config
|
63
|
+
metadata: {}
|
93
64
|
post_install_message:
|
94
65
|
rdoc_options: []
|
95
66
|
require_paths:
|
@@ -105,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
76
|
- !ruby/object:Gem::Version
|
106
77
|
version: '0'
|
107
78
|
requirements: []
|
108
|
-
rubygems_version: 3.
|
79
|
+
rubygems_version: 3.4.20
|
109
80
|
signing_key:
|
110
81
|
specification_version: 4
|
111
82
|
summary: Several pristine Rails config files.
|