rabl 0.14.1 → 0.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +2 -1
- data/CHANGELOG.md +5 -0
- data/README.md +0 -1
- data/fixtures/ashared/NOTES +10 -0
- data/fixtures/ashared/views_rails_6/layouts/application.html.erb +13 -0
- data/fixtures/ashared/views_rails_6/posts/_show_footer_script.js.erb +1 -0
- data/fixtures/ashared/views_rails_6/posts/date.rabl +3 -0
- data/fixtures/ashared/views_rails_6/posts/index.html.erb +3 -0
- data/fixtures/ashared/views_rails_6/posts/index.rabl +12 -0
- data/fixtures/ashared/views_rails_6/posts/renderer.rabl +8 -0
- data/fixtures/ashared/views_rails_6/posts/renderer_partial.rabl +4 -0
- data/fixtures/ashared/views_rails_6/posts/show.html.erb +3 -0
- data/fixtures/ashared/views_rails_6/posts/show.rabl +25 -0
- data/fixtures/ashared/views_rails_6/posts/show.rabl_test_v1.rabl +7 -0
- data/fixtures/ashared/views_rails_6/users/index.json.rabl +3 -0
- data/fixtures/ashared/views_rails_6/users/phone_number.json.rabl +8 -0
- data/fixtures/ashared/views_rails_6/users/phone_number.xml.rabl +1 -0
- data/fixtures/ashared/views_rails_6/users/show.json.rabl +16 -0
- data/fixtures/ashared/views_rails_6/users/show.rabl_test_v1.rabl +3 -0
- data/fixtures/padrino_test/app/views +1 -1
- data/fixtures/padrino_test/db/migrate +1 -1
- data/fixtures/padrino_test/models +1 -1
- data/fixtures/padrino_test/test/app/controllers/posts_controller_test.rb +1 -1
- data/fixtures/padrino_test/test/app/controllers/users_controller_test.rb +1 -1
- data/fixtures/rails2/app/models +1 -1
- data/fixtures/rails2/app/views +1 -1
- data/fixtures/rails2/db/migrate +1 -1
- data/fixtures/rails2/test/functionals/posts_controller_test.rb +1 -1
- data/fixtures/rails2/test/functionals/users_controller_test.rb +1 -1
- data/fixtures/rails3/app/models +1 -1
- data/fixtures/rails3/app/views +1 -1
- data/fixtures/rails3/db/migrate +1 -1
- data/fixtures/rails3/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/rails3/test/functional/users_controller_test.rb +1 -1
- data/fixtures/rails3_2/app/models +1 -1
- data/fixtures/rails3_2/app/views +1 -1
- data/fixtures/rails3_2/db/migrate +1 -1
- data/fixtures/rails3_2/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/rails3_2/test/functional/users_controller_test.rb +1 -1
- data/fixtures/rails4/app/models +1 -1
- data/fixtures/rails4/app/views +1 -1
- data/fixtures/rails4/db/migrate +1 -1
- data/fixtures/rails4/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/rails4/test/functional/users_controller_test.rb +1 -1
- data/fixtures/rails5/app/controllers/posts_controller.rb +1 -1
- data/fixtures/rails5/app/controllers/users_controller.rb +1 -1
- data/fixtures/rails5/app/helpers +1 -1
- data/fixtures/rails5/app/models +1 -1
- data/fixtures/rails5/app/views +1 -1
- data/fixtures/rails5/db/migrate +1 -1
- data/fixtures/rails5/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/rails5/test/functional/users_controller_test.rb +1 -1
- data/fixtures/rails5_api/app/controllers/posts_controller.rb +1 -1
- data/fixtures/rails5_api/app/controllers/users_controller.rb +1 -1
- data/fixtures/rails5_api/app/helpers +1 -1
- data/fixtures/rails5_api/app/models +1 -1
- data/fixtures/rails5_api/app/views +1 -1
- data/fixtures/rails5_api/db/migrate +1 -1
- data/fixtures/rails5_api/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/rails5_api/test/functional/users_controller_test.rb +1 -1
- data/fixtures/rails6/.gitignore +35 -0
- data/fixtures/rails6/Gemfile +58 -0
- data/fixtures/rails6/README.md +24 -0
- data/fixtures/rails6/Rakefile +14 -0
- data/fixtures/rails6/app/assets/config/manifest.js +2 -0
- data/fixtures/rails6/app/assets/images/.keep +0 -0
- data/fixtures/rails6/app/assets/stylesheets/application.css +15 -0
- data/fixtures/rails6/app/channels/application_cable/channel.rb +4 -0
- data/fixtures/rails6/app/channels/application_cable/connection.rb +4 -0
- data/fixtures/rails6/app/controllers/application_controller.rb +2 -0
- data/fixtures/rails6/app/controllers/concerns/.keep +0 -0
- data/fixtures/rails6/app/controllers/posts_controller.rb +17 -0
- data/fixtures/rails6/app/controllers/users_controller.rb +11 -0
- data/fixtures/rails6/app/helpers +1 -0
- data/fixtures/rails6/app/javascript/channels/consumer.js +6 -0
- data/fixtures/rails6/app/javascript/channels/index.js +5 -0
- data/fixtures/rails6/app/javascript/packs/application.js +17 -0
- data/fixtures/rails6/app/jobs/application_job.rb +7 -0
- data/fixtures/rails6/app/mailers/application_mailer.rb +4 -0
- data/fixtures/rails6/app/models +1 -0
- data/fixtures/rails6/app/views +1 -0
- data/fixtures/rails6/babel.config.js +72 -0
- data/fixtures/rails6/bin/bundle +105 -0
- data/fixtures/rails6/bin/rails +9 -0
- data/fixtures/rails6/bin/rake +9 -0
- data/fixtures/rails6/bin/setup +36 -0
- data/fixtures/rails6/bin/spring +17 -0
- data/fixtures/rails6/bin/webpack +19 -0
- data/fixtures/rails6/bin/webpack-dev-server +19 -0
- data/fixtures/rails6/bin/yarn +11 -0
- data/fixtures/rails6/config.ru +5 -0
- data/fixtures/rails6/config/application.rb +19 -0
- data/fixtures/rails6/config/boot.rb +4 -0
- data/fixtures/rails6/config/cable.yml +10 -0
- data/fixtures/rails6/config/credentials.yml.enc +1 -0
- data/fixtures/rails6/config/database.yml +25 -0
- data/fixtures/rails6/config/environment.rb +5 -0
- data/fixtures/rails6/config/environments/development.rb +62 -0
- data/fixtures/rails6/config/environments/production.rb +112 -0
- data/fixtures/rails6/config/environments/test.rb +48 -0
- data/fixtures/rails6/config/initializers/application_controller_renderer.rb +8 -0
- data/fixtures/rails6/config/initializers/assets.rb +14 -0
- data/fixtures/rails6/config/initializers/backtrace_silencers.rb +7 -0
- data/fixtures/rails6/config/initializers/content_security_policy.rb +27 -0
- data/fixtures/rails6/config/initializers/cookies_serializer.rb +5 -0
- data/fixtures/rails6/config/initializers/filter_parameter_logging.rb +4 -0
- data/fixtures/rails6/config/initializers/inflections.rb +16 -0
- data/fixtures/rails6/config/initializers/mime_types.rb +6 -0
- data/fixtures/rails6/config/initializers/wrap_parameters.rb +14 -0
- data/fixtures/rails6/config/locales/en.yml +33 -0
- data/fixtures/rails6/config/puma.rb +35 -0
- data/fixtures/rails6/config/routes.rb +8 -0
- data/fixtures/rails6/config/spring.rb +6 -0
- data/fixtures/rails6/config/storage.yml +34 -0
- data/fixtures/rails6/config/webpack/development.js +5 -0
- data/fixtures/rails6/config/webpack/environment.js +3 -0
- data/fixtures/rails6/config/webpack/production.js +5 -0
- data/fixtures/rails6/config/webpack/test.js +5 -0
- data/fixtures/rails6/config/webpacker.yml +95 -0
- data/fixtures/rails6/db/migrate/20111002092016_create_users.rb +11 -0
- data/fixtures/rails6/db/migrate/20111002092019_create_posts.rb +10 -0
- data/fixtures/rails6/db/migrate/20111002092024_create_phone_numbers.rb +12 -0
- data/fixtures/rails6/db/schema.rb +41 -0
- data/fixtures/rails6/db/seeds.rb +7 -0
- data/fixtures/rails6/lib/assets/.keep +0 -0
- data/fixtures/rails6/lib/tasks/.keep +0 -0
- data/fixtures/rails6/log/.keep +0 -0
- data/fixtures/rails6/package.json +15 -0
- data/fixtures/rails6/postcss.config.js +12 -0
- data/fixtures/rails6/public/404.html +67 -0
- data/fixtures/rails6/public/422.html +67 -0
- data/fixtures/rails6/public/500.html +66 -0
- data/fixtures/rails6/public/apple-touch-icon-precomposed.png +0 -0
- data/fixtures/rails6/public/apple-touch-icon.png +0 -0
- data/fixtures/rails6/public/favicon.ico +0 -0
- data/fixtures/rails6/public/robots.txt +1 -0
- data/fixtures/rails6/storage/.keep +0 -0
- data/fixtures/rails6/test/application_system_test_case.rb +5 -0
- data/fixtures/rails6/test/channels/application_cable/connection_test.rb +11 -0
- data/fixtures/rails6/test/controllers/.keep +0 -0
- data/fixtures/rails6/test/fixtures/.keep +0 -0
- data/fixtures/rails6/test/fixtures/files/.keep +0 -0
- data/fixtures/rails6/test/functional/posts_controller_test.rb +1 -0
- data/fixtures/rails6/test/functional/users_controller_test.rb +1 -0
- data/fixtures/rails6/test/helpers/.keep +0 -0
- data/fixtures/rails6/test/integration/.keep +0 -0
- data/fixtures/rails6/test/mailers/.keep +0 -0
- data/fixtures/rails6/test/models/.keep +0 -0
- data/fixtures/rails6/test/system/.keep +0 -0
- data/fixtures/rails6/test/test_helper.rb +27 -0
- data/fixtures/rails6/tmp/.keep +0 -0
- data/fixtures/rails6/vendor/.keep +0 -0
- data/fixtures/rails6/yarn.lock +7201 -0
- data/fixtures/sinatra_test/db/migrate +1 -1
- data/fixtures/sinatra_test/models +1 -1
- data/fixtures/sinatra_test/test/functional/posts_controller_test.rb +1 -1
- data/fixtures/sinatra_test/test/functional/users_controller_test.rb +1 -1
- data/fixtures/sinatra_test/views +1 -1
- data/lib/rabl.rb +3 -3
- data/lib/rabl/engine.rb +4 -2
- data/lib/rabl/railtie.rb +1 -1
- data/lib/rabl/template.rb +21 -1
- data/lib/rabl/version.rb +1 -1
- data/rabl.gemspec +0 -2
- data/test/integration/rails6/posts_controller_test.rb +185 -0
- data/test/integration/rails6/users_controller_test.rb +87 -0
- metadata +113 -4
@@ -0,0 +1,19 @@
|
|
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 "rubygems"
|
11
|
+
require "bundler/setup"
|
12
|
+
|
13
|
+
require "webpacker"
|
14
|
+
require "webpacker/dev_server_runner"
|
15
|
+
|
16
|
+
APP_ROOT = File.expand_path("..", __dir__)
|
17
|
+
Dir.chdir(APP_ROOT) do
|
18
|
+
Webpacker::DevServerRunner.run(ARGV)
|
19
|
+
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,19 @@
|
|
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 Rails6
|
10
|
+
class Application < Rails::Application
|
11
|
+
# Initialize configuration defaults for originally generated Rails version.
|
12
|
+
config.load_defaults 6.0
|
13
|
+
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration can go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded after loading
|
17
|
+
# the framework and any gems in your application.
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
ktYYtJbsh3y4BRILzT20SK4Fxc7oJz/tB9XKNKM2KYvIN/UhHYKyKdeSQmGmyGMgl8q2f5UukxMrp3eheRKcXb1PmkeD3x5VhYDi11iWbo8/buG1u4KWugT33iJu6AacUb10A71i2BBUGQHsUTmqm3sRCD96T+w8GHo8geDyqyCCT0cmsR04REXOIBB7Pg6AfbZLqQGC8PwFz4Lkn+OJmZ/RnWvbjzOmn7DxuEq0dhW2+vSVxSI06fJdyX7LPndo0xl+PinyUcN3uGEiNqyzuOXnaIyP7mGZtyhT5j4NN+HBVM7nfa7bLFVGlgIke4wKZcpqW5C1nAQPR/rKwqk8PtHqwPPvKCHDZdEcbIR5ByzX8du2dsrdmOH/Zm2F43YvlOnOoij2snnyA5ncPF1g/46S6Jx1dipVz4zd--WlaatyHNWBV1atxX--BOaXG/24ZPpiR3+SGx7/tg==
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
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,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 = "rails6_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
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# The test environment is used exclusively to run your application's
|
2
|
+
# test suite. You never need to work with it otherwise. Remember that
|
3
|
+
# your test database is "scratch space" for the test suite and is wiped
|
4
|
+
# and recreated between test runs. Don't rely on the data there!
|
5
|
+
|
6
|
+
Rails.application.configure do
|
7
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
8
|
+
|
9
|
+
config.cache_classes = false
|
10
|
+
|
11
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
12
|
+
# just for the purpose of running a single test. If you are using a tool that
|
13
|
+
# preloads Rails for running tests, you may have to set it to true.
|
14
|
+
config.eager_load = false
|
15
|
+
|
16
|
+
# Configure public file server for tests with Cache-Control for performance.
|
17
|
+
config.public_file_server.enabled = true
|
18
|
+
config.public_file_server.headers = {
|
19
|
+
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
20
|
+
}
|
21
|
+
|
22
|
+
# Show full error reports and disable caching.
|
23
|
+
config.consider_all_requests_local = true
|
24
|
+
config.action_controller.perform_caching = false
|
25
|
+
config.cache_store = :null_store
|
26
|
+
|
27
|
+
# Raise exceptions instead of rendering exception templates.
|
28
|
+
config.action_dispatch.show_exceptions = false
|
29
|
+
|
30
|
+
# Disable request forgery protection in test environment.
|
31
|
+
config.action_controller.allow_forgery_protection = false
|
32
|
+
|
33
|
+
# Store uploaded files on the local file system in a temporary directory.
|
34
|
+
config.active_storage.service = :test
|
35
|
+
|
36
|
+
config.action_mailer.perform_caching = false
|
37
|
+
|
38
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
39
|
+
# The :test delivery method accumulates sent emails in the
|
40
|
+
# ActionMailer::Base.deliveries array.
|
41
|
+
config.action_mailer.delivery_method = :test
|
42
|
+
|
43
|
+
# Print deprecation notices to the stderr.
|
44
|
+
config.active_support.deprecation = :stderr
|
45
|
+
|
46
|
+
# Raises error for missing translations.
|
47
|
+
# config.action_view.raise_on_missing_translations = true
|
48
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path.
|
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
|
+
|
11
|
+
# Precompile additional assets.
|
12
|
+
# application.js, application.css, and all non-JS/CSS in the app/assets
|
13
|
+
# folder are already added.
|
14
|
+
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
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| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,27 @@
|
|
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
|
+
# # If you are using webpack-dev-server then specify webpack-dev-server host
|
15
|
+
# policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development?
|
16
|
+
|
17
|
+
# # Specify URI for violation reports
|
18
|
+
# # policy.report_uri "/csp-violation-report-endpoint"
|
19
|
+
# end
|
20
|
+
|
21
|
+
# If you are using UJS then enable automatic nonce generation
|
22
|
+
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
23
|
+
|
24
|
+
# Report CSP violations to a specified URI
|
25
|
+
# For further information see the following documentation:
|
26
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
27
|
+
# Rails.application.config.content_security_policy_report_only = true
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|