dryer-config 8.1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab3ba29e7d66d0f0edf86717e6c0d2a30f8982d8bebb9af2aa068bd98331d38d
4
- data.tar.gz: 1154ceee3c916a28fcb3a0476d88bd500c73bca2b10ac60134b8d482be034bdf
3
+ metadata.gz: 19fb2061cdbf2981e62acc715b9e7b375d3e4f432177005b3c969aeb1d9e83bc
4
+ data.tar.gz: 7e6188d967293274675a4d2d30fa364b9c9b971bebadf9325240638d73e583af
5
5
  SHA512:
6
- metadata.gz: 61ba411344dd96a0e0e95626b0e9e707fd73d51b9a2dbdb71441447c3998a24922065af905ecd65c3e46f6566eda067fe5bda3b880f28ab068e1f4c85478175a
7
- data.tar.gz: 351ee02dd7aa7e09192efe003ef9b2ac0ea0d7e8c59c7c09da4c7cc11a5c350202506bd1475bcb3b47fcb4e32b35b53ef0d1112164b0e9f5f9a1395268cbed75
6
+ metadata.gz: 5a016e35fe42d85a6e69f30870005461d9cf19de6b558b3bcd85cb0a05a78794bd2d6e025d5a4a3fb66ab88527be0c05c8cdae3cdc2394678abc86c3a32bc6a1
7
+ data.tar.gz: d3895e410d1da9f506f76de4ff2da4aad9325749273136858a77fd0b58da9d91116c1fb39a86b0be18336d4db35167d8b9c8e4e7997446ae969cd2253710c206
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ rails-8.1
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.4.7
data/config/deploy.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  # Name of your application. Used to uniquely configure containers.
2
- service: sample_8_1_0
2
+ service: sample_8_1_1
3
3
 
4
4
  # Name of the container image (use your-user/app-name on external registries).
5
- image: sample_8_1_0
5
+ image: sample_8_1_1
6
6
 
7
7
  # Deploy to these servers.
8
8
  servers:
@@ -14,9 +14,12 @@ servers:
14
14
  # cmd: bin/jobs
15
15
 
16
16
  # Enable SSL auto certification via Let's Encrypt and allow for multiple apps on a single web server.
17
- # Remove this section when using multiple web servers and ensure you terminate SSL at your load balancer.
17
+ # If used with Cloudflare, set encryption mode in SSL/TLS setting to "Full" to enable CF-to-app encryption.
18
+ #
19
+ # Using an SSL proxy like this requires turning on config.assume_ssl and config.force_ssl in production.rb!
20
+ #
21
+ # Don't use this when deploying to multiple web servers (then you have to terminate SSL at your load balancer).
18
22
  #
19
- # Note: If using Cloudflare, set encryption mode in SSL/TLS setting to "Full" to enable CF-to-app encryption.
20
23
  # proxy:
21
24
  # ssl: true
22
25
  # host: app.example.com
@@ -49,7 +52,7 @@ env:
49
52
  # WEB_CONCURRENCY: 2
50
53
 
51
54
  # Match this to any external database server to configure Active Record correctly
52
- # Use sample_8_1_0-db for a db accessory server on same machine via local kamal docker network.
55
+ # Use sample_8_1_1-db for a db accessory server on same machine via local kamal docker network.
53
56
  # DB_HOST: 192.168.0.2
54
57
 
55
58
  # Log everything from Rails
@@ -66,7 +69,7 @@ aliases:
66
69
  # Use a persistent storage volume for sqlite database files and local Active Storage files.
67
70
  # Recommended to change this to a mounted volume path that is backed up off server.
68
71
  volumes:
69
- - "sample_8_1_0_storage:/rails/storage"
72
+ - "sample_8_1_1_storage:/rails/storage"
70
73
 
71
74
  # Bridge fingerprinted assets, like JS and CSS, between versions to avoid
72
75
  # hitting 404 on in-flight requests. Combines all files from new and old
@@ -25,10 +25,10 @@ Rails.application.configure do
25
25
  config.active_storage.service = :local
26
26
 
27
27
  # Assume all access to the app is happening through a SSL-terminating reverse proxy.
28
- config.assume_ssl = true
28
+ # config.assume_ssl = true
29
29
 
30
30
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- config.force_ssl = true
31
+ # config.force_ssl = true
32
32
 
33
33
  # Skip http-to-https redirect for the default health check endpoint.
34
34
  # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
@@ -1,5 +1,7 @@
1
1
  module DryerConfig
2
- VERSION = '8.1.0.1' # 2025-10-22
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
3
5
  # VERSION = '8.1.0' # 2025-10-22
4
6
  # VERSION = '8.0.0' # 2024-11-08
5
7
  # VERSION = '7.2.0' # 2024-08-23
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.0.1
4
+ version: 8.1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
@@ -31,10 +31,11 @@ extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
33
  - ".gitignore"
34
+ - ".ruby-gemset"
35
+ - ".ruby-version"
34
36
  - MIT-LICENSE
35
37
  - README.md
36
38
  - Rakefile
37
- - config.ru
38
39
  - config/boot.rb
39
40
  - config/bundler-audit.yml
40
41
  - config/cable.yml
data/config.ru DELETED
@@ -1,6 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require_relative "config/environment"
4
-
5
- run Rails.application
6
- Rails.application.load_server