wovnrb 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_todo.yml +5 -0
  3. data/docker/docker-compose.yml +11 -0
  4. data/docker/rails/Dockerfile +6 -0
  5. data/docker/rails/TestSite/.browserslistrc +1 -0
  6. data/docker/rails/TestSite/.gitignore +63 -0
  7. data/docker/rails/TestSite/Gemfile +56 -0
  8. data/docker/rails/TestSite/README.md +24 -0
  9. data/docker/rails/TestSite/Rakefile +6 -0
  10. data/docker/rails/TestSite/app/assets/config/manifest.js +2 -0
  11. data/docker/rails/TestSite/app/assets/images/.keep +0 -0
  12. data/docker/rails/TestSite/app/assets/stylesheets/application.css +15 -0
  13. data/docker/rails/TestSite/app/assets/stylesheets/redirects.scss +3 -0
  14. data/docker/rails/TestSite/app/channels/application_cable/channel.rb +4 -0
  15. data/docker/rails/TestSite/app/channels/application_cable/connection.rb +4 -0
  16. data/docker/rails/TestSite/app/controllers/application_controller.rb +2 -0
  17. data/docker/rails/TestSite/app/controllers/concerns/.keep +0 -0
  18. data/docker/rails/TestSite/app/controllers/pages_controller.rb +7 -0
  19. data/docker/rails/TestSite/app/controllers/redirects_controller.rb +5 -0
  20. data/docker/rails/TestSite/app/helpers/application_helper.rb +2 -0
  21. data/docker/rails/TestSite/app/helpers/pages_helper.rb +2 -0
  22. data/docker/rails/TestSite/app/helpers/redirects_helper.rb +2 -0
  23. data/docker/rails/TestSite/app/javascript/channels/consumer.js +6 -0
  24. data/docker/rails/TestSite/app/javascript/channels/index.js +5 -0
  25. data/docker/rails/TestSite/app/javascript/packs/application.js +17 -0
  26. data/docker/rails/TestSite/app/jobs/application_job.rb +7 -0
  27. data/docker/rails/TestSite/app/mailers/application_mailer.rb +4 -0
  28. data/docker/rails/TestSite/app/models/application_record.rb +3 -0
  29. data/docker/rails/TestSite/app/models/concerns/.keep +0 -0
  30. data/docker/rails/TestSite/app/views/layouts/application.html.erb +15 -0
  31. data/docker/rails/TestSite/app/views/layouts/mailer.html.erb +13 -0
  32. data/docker/rails/TestSite/app/views/layouts/mailer.text.erb +1 -0
  33. data/docker/rails/TestSite/babel.config.js +72 -0
  34. data/docker/rails/TestSite/bin/bundle +114 -0
  35. data/docker/rails/TestSite/bin/rails +4 -0
  36. data/docker/rails/TestSite/bin/rake +4 -0
  37. data/docker/rails/TestSite/bin/setup +36 -0
  38. data/docker/rails/TestSite/bin/webpack +18 -0
  39. data/docker/rails/TestSite/bin/webpack-dev-server +18 -0
  40. data/docker/rails/TestSite/bin/yarn +11 -0
  41. data/docker/rails/TestSite/config.ru +5 -0
  42. data/docker/rails/TestSite/config/application.rb +26 -0
  43. data/docker/rails/TestSite/config/boot.rb +4 -0
  44. data/docker/rails/TestSite/config/cable.yml +10 -0
  45. data/docker/rails/TestSite/config/credentials.yml.enc +1 -0
  46. data/docker/rails/TestSite/config/database.yml +25 -0
  47. data/docker/rails/TestSite/config/environment.rb +5 -0
  48. data/docker/rails/TestSite/config/environments/development.rb +62 -0
  49. data/docker/rails/TestSite/config/environments/production.rb +112 -0
  50. data/docker/rails/TestSite/config/environments/test.rb +49 -0
  51. data/docker/rails/TestSite/config/initializers/application_controller_renderer.rb +8 -0
  52. data/docker/rails/TestSite/config/initializers/assets.rb +14 -0
  53. data/docker/rails/TestSite/config/initializers/backtrace_silencers.rb +7 -0
  54. data/docker/rails/TestSite/config/initializers/content_security_policy.rb +30 -0
  55. data/docker/rails/TestSite/config/initializers/cookies_serializer.rb +5 -0
  56. data/docker/rails/TestSite/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/docker/rails/TestSite/config/initializers/inflections.rb +16 -0
  58. data/docker/rails/TestSite/config/initializers/mime_types.rb +4 -0
  59. data/docker/rails/TestSite/config/initializers/wrap_parameters.rb +14 -0
  60. data/docker/rails/TestSite/config/locales/en.yml +33 -0
  61. data/docker/rails/TestSite/config/puma.rb +38 -0
  62. data/docker/rails/TestSite/config/routes.rb +4 -0
  63. data/docker/rails/TestSite/config/spring.rb +6 -0
  64. data/docker/rails/TestSite/config/storage.yml +34 -0
  65. data/docker/rails/TestSite/config/webpack/development.js +5 -0
  66. data/docker/rails/TestSite/config/webpack/environment.js +3 -0
  67. data/docker/rails/TestSite/config/webpack/production.js +5 -0
  68. data/docker/rails/TestSite/config/webpack/test.js +5 -0
  69. data/docker/rails/TestSite/config/webpacker.yml +96 -0
  70. data/docker/rails/TestSite/db/seeds.rb +7 -0
  71. data/docker/rails/TestSite/lib/assets/.keep +0 -0
  72. data/docker/rails/TestSite/lib/tasks/.keep +0 -0
  73. data/docker/rails/TestSite/log/.keep +0 -0
  74. data/docker/rails/TestSite/package.json +15 -0
  75. data/docker/rails/TestSite/postcss.config.js +12 -0
  76. data/docker/rails/TestSite/public/index.html +9 -0
  77. data/docker/rails/TestSite/public/page.html +13 -0
  78. data/docker/rails/TestSite/public/pages/files/plaintext_unicode.txt +204 -0
  79. data/docker/rails/TestSite/public/pages/files/simple_css.css +8 -0
  80. data/docker/rails/TestSite/public/pages/files/simple_javascript.js +2 -0
  81. data/docker/rails/TestSite/public/pages/html5test.html +555 -0
  82. data/docker/rails/TestSite/public/pages/oldhtml.html +335 -0
  83. data/docker/rails/TestSite/public/pages/xhtml.xhtml +726 -0
  84. data/docker/rails/TestSite/public/redirection_target.html +10 -0
  85. data/docker/rails/TestSite/public/testdir/testpage-dir.html +9 -0
  86. data/docker/rails/TestSite/public/testdir/testpage-redirect-destination.html +9 -0
  87. data/docker/rails/TestSite/public/testpage.html +9 -0
  88. data/docker/rails/TestSite/public/wovn_index.html +24 -0
  89. data/docker/rails/TestSite/start.sh +13 -0
  90. data/docker/rails/TestSite/storage/.keep +0 -0
  91. data/docker/rails/TestSite/test/application_system_test_case.rb +5 -0
  92. data/docker/rails/TestSite/test/channels/application_cable/connection_test.rb +11 -0
  93. data/docker/rails/TestSite/test/controllers/.keep +0 -0
  94. data/docker/rails/TestSite/test/controllers/pages_controller_test.rb +7 -0
  95. data/docker/rails/TestSite/test/controllers/redirects_controller_test.rb +7 -0
  96. data/docker/rails/TestSite/test/fixtures/.keep +0 -0
  97. data/docker/rails/TestSite/test/fixtures/files/.keep +0 -0
  98. data/docker/rails/TestSite/test/helpers/.keep +0 -0
  99. data/docker/rails/TestSite/test/integration/.keep +0 -0
  100. data/docker/rails/TestSite/test/mailers/.keep +0 -0
  101. data/docker/rails/TestSite/test/models/.keep +0 -0
  102. data/docker/rails/TestSite/test/system/.keep +0 -0
  103. data/docker/rails/TestSite/test/test_helper.rb +13 -0
  104. data/docker/rails/TestSite/yarn.lock +7642 -0
  105. data/lib/wovnrb/version.rb +1 -1
  106. data/makefile +16 -0
  107. data/wovnrb.gemspec +3 -3
  108. metadata +112 -10
@@ -0,0 +1,114 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'bundle' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "rubygems"
12
+
13
+ m = Module.new do
14
+ module_function
15
+
16
+ def invoked_as_script?
17
+ File.expand_path($0) == File.expand_path(__FILE__)
18
+ end
19
+
20
+ def env_var_version
21
+ ENV["BUNDLER_VERSION"]
22
+ end
23
+
24
+ def cli_arg_version
25
+ return unless invoked_as_script? # don't want to hijack other binstubs
26
+ return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27
+ bundler_version = nil
28
+ update_index = nil
29
+ ARGV.each_with_index do |a, i|
30
+ if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
31
+ bundler_version = a
32
+ end
33
+ next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34
+ bundler_version = $1
35
+ update_index = i
36
+ end
37
+ bundler_version
38
+ end
39
+
40
+ def gemfile
41
+ gemfile = ENV["BUNDLE_GEMFILE"]
42
+ return gemfile if gemfile && !gemfile.empty?
43
+
44
+ File.expand_path("../../Gemfile", __FILE__)
45
+ end
46
+
47
+ def lockfile
48
+ lockfile =
49
+ case File.basename(gemfile)
50
+ when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
51
+ else "#{gemfile}.lock"
52
+ end
53
+ File.expand_path(lockfile)
54
+ end
55
+
56
+ def lockfile_version
57
+ return unless File.file?(lockfile)
58
+ lockfile_contents = File.read(lockfile)
59
+ return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60
+ Regexp.last_match(1)
61
+ end
62
+
63
+ def bundler_version
64
+ @bundler_version ||=
65
+ env_var_version || cli_arg_version ||
66
+ lockfile_version
67
+ end
68
+
69
+ def bundler_requirement
70
+ return "#{Gem::Requirement.default}.a" unless bundler_version
71
+
72
+ bundler_gem_version = Gem::Version.new(bundler_version)
73
+
74
+ requirement = bundler_gem_version.approximate_recommendation
75
+
76
+ return requirement unless Gem::Version.new(Gem::VERSION) < Gem::Version.new("2.7.0")
77
+
78
+ requirement += ".a" if bundler_gem_version.prerelease?
79
+
80
+ requirement
81
+ end
82
+
83
+ def load_bundler!
84
+ ENV["BUNDLE_GEMFILE"] ||= gemfile
85
+
86
+ activate_bundler
87
+ end
88
+
89
+ def activate_bundler
90
+ gem_error = activation_error_handling do
91
+ gem "bundler", bundler_requirement
92
+ end
93
+ return if gem_error.nil?
94
+ require_error = activation_error_handling do
95
+ require "bundler/version"
96
+ end
97
+ return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
98
+ warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
99
+ exit 42
100
+ end
101
+
102
+ def activation_error_handling
103
+ yield
104
+ nil
105
+ rescue StandardError, LoadError => e
106
+ e
107
+ end
108
+ end
109
+
110
+ m.load_bundler!
111
+
112
+ if m.invoked_as_script?
113
+ load Gem.bin_path("bundler", "bundle")
114
+ end
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../config/application', __dir__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,36 @@
1
+ #!/usr/bin/env ruby
2
+ require 'fileutils'
3
+
4
+ # path to your application root.
5
+ APP_ROOT = File.expand_path('..', __dir__)
6
+
7
+ def system!(*args)
8
+ system(*args) || abort("\n== Command #{args} failed ==")
9
+ end
10
+
11
+ FileUtils.chdir APP_ROOT do
12
+ # This script is a way to setup or update your development environment automatically.
13
+ # This script is idempotent, so that you can run it at anytime and get an expectable outcome.
14
+ # Add necessary setup steps to this file.
15
+
16
+ puts '== Installing dependencies =='
17
+ system! 'gem install bundler --conservative'
18
+ system('bundle check') || system!('bundle install')
19
+
20
+ # Install JavaScript dependencies
21
+ # system('bin/yarn')
22
+
23
+ # puts "\n== Copying sample files =="
24
+ # unless File.exist?('config/database.yml')
25
+ # FileUtils.cp 'config/database.yml.sample', 'config/database.yml'
26
+ # end
27
+
28
+ puts "\n== Preparing database =="
29
+ system! 'bin/rails db:prepare'
30
+
31
+ puts "\n== Removing old logs and tempfiles =="
32
+ system! 'bin/rails log:clear tmp:clear'
33
+
34
+ puts "\n== Restarting application server =="
35
+ system! 'bin/rails restart'
36
+ end
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
4
+ ENV["NODE_ENV"] ||= "development"
5
+
6
+ require "pathname"
7
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
8
+ Pathname.new(__FILE__).realpath)
9
+
10
+ require "bundler/setup"
11
+
12
+ require "webpacker"
13
+ require "webpacker/webpack_runner"
14
+
15
+ APP_ROOT = File.expand_path("..", __dir__)
16
+ Dir.chdir(APP_ROOT) do
17
+ Webpacker::WebpackRunner.run(ARGV)
18
+ end
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
4
+ ENV["NODE_ENV"] ||= "development"
5
+
6
+ require "pathname"
7
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
8
+ Pathname.new(__FILE__).realpath)
9
+
10
+ require "bundler/setup"
11
+
12
+ require "webpacker"
13
+ require "webpacker/dev_server_runner"
14
+
15
+ APP_ROOT = File.expand_path("..", __dir__)
16
+ Dir.chdir(APP_ROOT) do
17
+ Webpacker::DevServerRunner.run(ARGV)
18
+ end
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path('..', __dir__)
3
+ Dir.chdir(APP_ROOT) do
4
+ begin
5
+ exec "yarnpkg", *ARGV
6
+ rescue Errno::ENOENT
7
+ $stderr.puts "Yarn executable was not detected in the system."
8
+ $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
9
+ exit 1
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,26 @@
1
+ require_relative 'boot'
2
+
3
+ require 'rails/all'
4
+
5
+ # Require the gems listed in Gemfile, including any gems
6
+ # you've limited to :test, :development, or :production.
7
+ Bundler.require(*Rails.groups)
8
+
9
+ module TestSite
10
+ class Application < Rails::Application
11
+ # Initialize configuration defaults for originally generated Rails version.
12
+ config.load_defaults 6.0
13
+
14
+ config.wovnrb = {
15
+ :project_token => 'EnS!t3',
16
+ :default_lang => 'en',
17
+ :supported_langs => ['en', 'ja', 'fr'],
18
+ :url_pattern => 'path',
19
+ :install_middleware => true
20
+ }
21
+ # Settings in config/environments/* take precedence over those specified here.
22
+ # Application configuration can go into files in config/initializers
23
+ # -- all .rb files in that directory are automatically loaded after loading
24
+ # the framework and any gems in your application.
25
+ end
26
+ end
@@ -0,0 +1,4 @@
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2
+
3
+ require 'bundler/setup' # Set up gems listed in the Gemfile.
4
+ require 'bootsnap/setup' # Speed up boot time by caching expensive operations.
@@ -0,0 +1,10 @@
1
+ development:
2
+ adapter: async
3
+
4
+ test:
5
+ adapter: test
6
+
7
+ production:
8
+ adapter: redis
9
+ url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
10
+ channel_prefix: TestSite_production
@@ -0,0 +1 @@
1
+ 9KXW8oHIxDJairKMooC6q9gcRhRecAMOMrey2pqCzJPPtDoS0Kgc/FprU9tgGJSq5idlKjEGMnSvl6nXCZ8QSiR4i/yjaBikn1meT4Hja6uFnF52olcjcwSk2OcwlkeAvFouo6PxEpCz9TpHVRUG5VEH+UsTAujRFFaBF/LpU8jC+19QgprkkN2cCpfjOMgII+ZV1YCU1tRr/g3slzLqpznsIg0fEo9C+bogu2eUw+ihH4Xo/PZhTSCBgbvXoiFXfuRbuz0N9lbDzSacjKbLhK68RybMoqmPH68og3bpA+sQ5t/8aFe8PYYu2GOlFabd0sZz2A4OKKZXEH/ysD9sdmAlAl3ZMA/mFlRHgAlK5gSNKo97C5hhBNoLtzx5o8BifmHXuBbWhnY9JNv9cEYpqKV2yuw1/axu1Sf/--E2qY9bNe/ex8h+rh--MvxNoYjYHPf708qoHmyRgQ==
@@ -0,0 +1,25 @@
1
+ # SQLite. Versions 3.8.0 and up are supported.
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require_relative 'application'
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,62 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports.
13
+ config.consider_all_requests_local = true
14
+
15
+ # Enable/disable caching. By default caching is disabled.
16
+ # Run rails dev:cache to toggle caching.
17
+ if Rails.root.join('tmp', 'caching-dev.txt').exist?
18
+ config.action_controller.perform_caching = true
19
+ config.action_controller.enable_fragment_cache_logging = true
20
+
21
+ config.cache_store = :memory_store
22
+ config.public_file_server.headers = {
23
+ 'Cache-Control' => "public, max-age=#{2.days.to_i}"
24
+ }
25
+ else
26
+ config.action_controller.perform_caching = false
27
+
28
+ config.cache_store = :null_store
29
+ end
30
+
31
+ # Store uploaded files on the local file system (see config/storage.yml for options).
32
+ config.active_storage.service = :local
33
+
34
+ # Don't care if the mailer can't send.
35
+ config.action_mailer.raise_delivery_errors = false
36
+
37
+ config.action_mailer.perform_caching = false
38
+
39
+ # Print deprecation notices to the Rails logger.
40
+ config.active_support.deprecation = :log
41
+
42
+ # Raise an error on page load if there are pending migrations.
43
+ config.active_record.migration_error = :page_load
44
+
45
+ # Highlight code that triggered database queries in logs.
46
+ config.active_record.verbose_query_logs = true
47
+
48
+ # Debug mode disables concatenation and preprocessing of assets.
49
+ # This option may cause significant delays in view rendering with a large
50
+ # number of complex assets.
51
+ config.assets.debug = true
52
+
53
+ # Suppress logger output for asset requests.
54
+ config.assets.quiet = true
55
+
56
+ # Raises error for missing translations.
57
+ # config.action_view.raise_on_missing_translations = true
58
+
59
+ # Use an evented file watcher to asynchronously detect changes in source code,
60
+ # routes, locales, etc. This feature depends on the listen gem.
61
+ config.file_watcher = ActiveSupport::EventedFileUpdateChecker
62
+ end
@@ -0,0 +1,112 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
18
+ # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
19
+ # config.require_master_key = true
20
+
21
+ # Disable serving static files from the `/public` folder by default since
22
+ # Apache or NGINX already handles this.
23
+ config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
24
+
25
+ # Compress CSS using a preprocessor.
26
+ # config.assets.css_compressor = :sass
27
+
28
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
29
+ config.assets.compile = false
30
+
31
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
32
+ # config.action_controller.asset_host = 'http://assets.example.com'
33
+
34
+ # Specifies the header that your server uses for sending files.
35
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
36
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
37
+
38
+ # Store uploaded files on the local file system (see config/storage.yml for options).
39
+ config.active_storage.service = :local
40
+
41
+ # Mount Action Cable outside main process or domain.
42
+ # config.action_cable.mount_path = nil
43
+ # config.action_cable.url = 'wss://example.com/cable'
44
+ # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
45
+
46
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
47
+ # config.force_ssl = true
48
+
49
+ # Use the lowest log level to ensure availability of diagnostic information
50
+ # when problems arise.
51
+ config.log_level = :debug
52
+
53
+ # Prepend all log lines with the following tags.
54
+ config.log_tags = [ :request_id ]
55
+
56
+ # Use a different cache store in production.
57
+ # config.cache_store = :mem_cache_store
58
+
59
+ # Use a real queuing backend for Active Job (and separate queues per environment).
60
+ # config.active_job.queue_adapter = :resque
61
+ # config.active_job.queue_name_prefix = "TestSite_production"
62
+
63
+ config.action_mailer.perform_caching = false
64
+
65
+ # Ignore bad email addresses and do not raise email delivery errors.
66
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
67
+ # config.action_mailer.raise_delivery_errors = false
68
+
69
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
70
+ # the I18n.default_locale when a translation cannot be found).
71
+ config.i18n.fallbacks = true
72
+
73
+ # Send deprecation notices to registered listeners.
74
+ config.active_support.deprecation = :notify
75
+
76
+ # Use default logging formatter so that PID and timestamp are not suppressed.
77
+ config.log_formatter = ::Logger::Formatter.new
78
+
79
+ # Use a different logger for distributed setups.
80
+ # require 'syslog/logger'
81
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
82
+
83
+ if ENV["RAILS_LOG_TO_STDOUT"].present?
84
+ logger = ActiveSupport::Logger.new(STDOUT)
85
+ logger.formatter = config.log_formatter
86
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
87
+ end
88
+
89
+ # Do not dump schema after migrations.
90
+ config.active_record.dump_schema_after_migration = false
91
+
92
+ # Inserts middleware to perform automatic connection switching.
93
+ # The `database_selector` hash is used to pass options to the DatabaseSelector
94
+ # middleware. The `delay` is used to determine how long to wait after a write
95
+ # to send a subsequent read to the primary.
96
+ #
97
+ # The `database_resolver` class is used by the middleware to determine which
98
+ # database is appropriate to use based on the time delay.
99
+ #
100
+ # The `database_resolver_context` class is used by the middleware to set
101
+ # timestamps for the last write to the primary. The resolver uses the context
102
+ # class timestamps to determine how long to wait before reading from the
103
+ # replica.
104
+ #
105
+ # By default Rails will store a last write timestamp in the session. The
106
+ # DatabaseSelector middleware is designed as such you can define your own
107
+ # strategy for connection switching and pass that into the middleware through
108
+ # these configuration options.
109
+ # config.active_record.database_selector = { delay: 2.seconds }
110
+ # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
111
+ # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
112
+ end