dryer-config 8.1.1 → 8.1.1.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/.gitignore +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/MIT-LICENSE +20 -0
- data/README.md +122 -0
- data/Rakefile +6 -0
- data/dryer-config.gemspec +21 -0
- data/lib/dryer-config/engine.rb +4 -0
- data/lib/dryer-config/version.rb +15 -0
- data/lib/dryer-config.rb +1 -0
- metadata +11 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19fb2061cdbf2981e62acc715b9e7b375d3e4f432177005b3c969aeb1d9e83bc
|
|
4
|
+
data.tar.gz: 7e6188d967293274675a4d2d30fa364b9c9b971bebadf9325240638d73e583af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a016e35fe42d85a6e69f30870005461d9cf19de6b558b3bcd85cb0a05a78794bd2d6e025d5a4a3fb66ab88527be0c05c8cdae3cdc2394678abc86c3a32bc6a1
|
|
7
|
+
data.tar.gz: d3895e410d1da9f506f76de4ff2da4aad9325749273136858a77fd0b58da9d91116c1fb39a86b0be18336d4db35167d8b9c8e4e7997446ae969cd2253710c206
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rails-8.1
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby-3.4.7
|
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2016-2025 Dittmar Krall (www.matiq.com)
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# DryerConfig
|
|
2
|
+
|
|
3
|
+
[](https://rubygems.org/gems/dryer-config)
|
|
4
|
+
[](https://rubygems.org/gems/dryer-config)
|
|
5
|
+
[](http://choosealicense.com/licenses/mit/)
|
|
6
|
+
|
|
7
|
+
Contains most of the files of a pristine `rails new` `config` directories.
|
|
8
|
+
They will be available to your application by
|
|
9
|
+
the engine nature of this gem.
|
|
10
|
+
|
|
11
|
+
Your private `config` directory (and your repository)
|
|
12
|
+
will contain just your particular requirements/options
|
|
13
|
+
(e.g. `config/database.yml`).
|
|
14
|
+
|
|
15
|
+
Version numbering is according to the Rails versions, e.g. use
|
|
16
|
+
|
|
17
|
+
gem 'dryer-config', '= 8.0.0' # for a Rails 8.0.0 applications
|
|
18
|
+
|
|
19
|
+
or
|
|
20
|
+
|
|
21
|
+
gem 'dryer-config', '~> 8.0' # expected to serve Rails 8.0.*
|
|
22
|
+
|
|
23
|
+
in your `Gemfile`.
|
|
24
|
+
|
|
25
|
+
It is expected that the version 8.0.0 is fine for the
|
|
26
|
+
complete Rails 8 serie.
|
|
27
|
+
If not, a new version of this gem will be released (hopefully).
|
|
28
|
+
|
|
29
|
+
## Why
|
|
30
|
+
|
|
31
|
+
Usually I run several applications based on the same Rails on one server.
|
|
32
|
+
There is no need to waste disk space (mostly irrelevant today,
|
|
33
|
+
but I still don't like wasting).
|
|
34
|
+
|
|
35
|
+
Several `config` files will be out of the way (less attention)
|
|
36
|
+
for the developer.
|
|
37
|
+
|
|
38
|
+
Lastly, during the port of a Rails application to another version
|
|
39
|
+
a pristine configuration is handy.
|
|
40
|
+
The few remaining options in your `config` files needs
|
|
41
|
+
less attention/work.
|
|
42
|
+
|
|
43
|
+
## Installation
|
|
44
|
+
|
|
45
|
+
As usual:
|
|
46
|
+
```ruby
|
|
47
|
+
# Gemfile
|
|
48
|
+
gem "dryer-config", "~> 8.0"
|
|
49
|
+
```
|
|
50
|
+
and run `bundle install`.
|
|
51
|
+
|
|
52
|
+
## Rails 8.1.0
|
|
53
|
+
|
|
54
|
+
See also "Configuration" below.
|
|
55
|
+
|
|
56
|
+
Added files:
|
|
57
|
+
./config/bundler-audit.yml
|
|
58
|
+
./config/cache.yml
|
|
59
|
+
./config/ci.rb
|
|
60
|
+
./config/deploy.yml
|
|
61
|
+
|
|
62
|
+
## Rails 8.0.0
|
|
63
|
+
|
|
64
|
+
See also "Configuration" below.
|
|
65
|
+
|
|
66
|
+
The following config file is obsolete:
|
|
67
|
+
./config/initializers/permissions_policy.rb
|
|
68
|
+
|
|
69
|
+
## Rails 7.2.1, 7.2.0
|
|
70
|
+
|
|
71
|
+
See also "Configuration" below.
|
|
72
|
+
|
|
73
|
+
The following config file is obsolete:
|
|
74
|
+
./config/spring.rb
|
|
75
|
+
|
|
76
|
+
## Rails 7.1.0, 7.0.0, 6.0.0, 5.2.0
|
|
77
|
+
|
|
78
|
+
See also "Configuration" below.
|
|
79
|
+
|
|
80
|
+
Create your own (there are still there for inspection):
|
|
81
|
+
|
|
82
|
+
./config/storage.yml
|
|
83
|
+
|
|
84
|
+
The Webpacker files may require your attention:
|
|
85
|
+
|
|
86
|
+
Configuration
|
|
87
|
+
-------------
|
|
88
|
+
|
|
89
|
+
The following original config files have been dropped:
|
|
90
|
+
|
|
91
|
+
./config/application.rb
|
|
92
|
+
./config/credentials.yml.enc
|
|
93
|
+
./config/locales/*
|
|
94
|
+
./config/master.key
|
|
95
|
+
./config/routes.rb
|
|
96
|
+
|
|
97
|
+
Create your owns.
|
|
98
|
+
|
|
99
|
+
The following files may require your attention:
|
|
100
|
+
|
|
101
|
+
./config/boot.rb
|
|
102
|
+
./config/cable.yml
|
|
103
|
+
./config/database.yml
|
|
104
|
+
./config/puma.rb
|
|
105
|
+
./config/storage.yml
|
|
106
|
+
|
|
107
|
+
Create/copy your owns. They are still there for inspection.
|
|
108
|
+
|
|
109
|
+
The following file requires your attention:
|
|
110
|
+
|
|
111
|
+
./config/initializers/assets.rb
|
|
112
|
+
|
|
113
|
+
Create your own. It will run after the one from the gem.
|
|
114
|
+
|
|
115
|
+
## See also
|
|
116
|
+
|
|
117
|
+
http://railsdiff.org/
|
|
118
|
+
|
|
119
|
+
## Miscellaneous
|
|
120
|
+
|
|
121
|
+
Copyright (c) 2016-2025 Dittmar Krall (www.matiq.com),
|
|
122
|
+
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require 'dryer-config/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = 'dryer-config'
|
|
7
|
+
s.version = DryerConfig::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.summary = "Several pristine Rails config files."
|
|
10
|
+
s.description = "Outsource several config files to a gem."
|
|
11
|
+
s.authors = ['Dittmar Krall']
|
|
12
|
+
s.email = ['dittmar.krall@matiq.com']
|
|
13
|
+
s.homepage = 'https://github.com/matique/dryer-config'
|
|
14
|
+
s.license = 'MIT'
|
|
15
|
+
s.platform = Gem::Platform::RUBY
|
|
16
|
+
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
s.require_paths = ["lib"]
|
|
19
|
+
|
|
20
|
+
s.add_development_dependency 'bundler'
|
|
21
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module DryerConfig
|
|
2
|
+
VERSION = '8.1.1.1' # 2025-11-04
|
|
3
|
+
# VERSION = '8.1.1' # 2025-11-04
|
|
4
|
+
# VERSION = '8.1.0.1' # 2025-10-22
|
|
5
|
+
# VERSION = '8.1.0' # 2025-10-22
|
|
6
|
+
# VERSION = '8.0.0' # 2024-11-08
|
|
7
|
+
# VERSION = '7.2.0' # 2024-08-23
|
|
8
|
+
# VERSION = '7.1.0' # 2023-10-15
|
|
9
|
+
# VERSION = '7.0.0' # 2021-12-18
|
|
10
|
+
# VERSION = '6.1.4' # 2021-06-27
|
|
11
|
+
# VERSION = '6.0.3' # 2020-05-08
|
|
12
|
+
# VERSION = '6.0.2' # 2020-02-25
|
|
13
|
+
# VERSION = '6.0.0' # 2019-10-07
|
|
14
|
+
# VERSION = '5.2.0'
|
|
15
|
+
end
|
data/lib/dryer-config.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'dryer-config/engine.rb'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dryer-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.1.1
|
|
4
|
+
version: 8.1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
@@ -30,6 +30,12 @@ executables: []
|
|
|
30
30
|
extensions: []
|
|
31
31
|
extra_rdoc_files: []
|
|
32
32
|
files:
|
|
33
|
+
- ".gitignore"
|
|
34
|
+
- ".ruby-gemset"
|
|
35
|
+
- ".ruby-version"
|
|
36
|
+
- MIT-LICENSE
|
|
37
|
+
- README.md
|
|
38
|
+
- Rakefile
|
|
33
39
|
- config/boot.rb
|
|
34
40
|
- config/bundler-audit.yml
|
|
35
41
|
- config/cable.yml
|
|
@@ -50,6 +56,10 @@ files:
|
|
|
50
56
|
- config/queue.yml
|
|
51
57
|
- config/recurring.yml
|
|
52
58
|
- config/storage.yml
|
|
59
|
+
- dryer-config.gemspec
|
|
60
|
+
- lib/dryer-config.rb
|
|
61
|
+
- lib/dryer-config/engine.rb
|
|
62
|
+
- lib/dryer-config/version.rb
|
|
53
63
|
homepage: https://github.com/matique/dryer-config
|
|
54
64
|
licenses:
|
|
55
65
|
- MIT
|