rabl 0.14.1 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (168) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +2 -1
  3. data/CHANGELOG.md +5 -0
  4. data/README.md +0 -1
  5. data/fixtures/ashared/NOTES +10 -0
  6. data/fixtures/ashared/views_rails_6/layouts/application.html.erb +13 -0
  7. data/fixtures/ashared/views_rails_6/posts/_show_footer_script.js.erb +1 -0
  8. data/fixtures/ashared/views_rails_6/posts/date.rabl +3 -0
  9. data/fixtures/ashared/views_rails_6/posts/index.html.erb +3 -0
  10. data/fixtures/ashared/views_rails_6/posts/index.rabl +12 -0
  11. data/fixtures/ashared/views_rails_6/posts/renderer.rabl +8 -0
  12. data/fixtures/ashared/views_rails_6/posts/renderer_partial.rabl +4 -0
  13. data/fixtures/ashared/views_rails_6/posts/show.html.erb +3 -0
  14. data/fixtures/ashared/views_rails_6/posts/show.rabl +25 -0
  15. data/fixtures/ashared/views_rails_6/posts/show.rabl_test_v1.rabl +7 -0
  16. data/fixtures/ashared/views_rails_6/users/index.json.rabl +3 -0
  17. data/fixtures/ashared/views_rails_6/users/phone_number.json.rabl +8 -0
  18. data/fixtures/ashared/views_rails_6/users/phone_number.xml.rabl +1 -0
  19. data/fixtures/ashared/views_rails_6/users/show.json.rabl +16 -0
  20. data/fixtures/ashared/views_rails_6/users/show.rabl_test_v1.rabl +3 -0
  21. data/fixtures/padrino_test/app/views +1 -1
  22. data/fixtures/padrino_test/db/migrate +1 -1
  23. data/fixtures/padrino_test/models +1 -1
  24. data/fixtures/padrino_test/test/app/controllers/posts_controller_test.rb +1 -1
  25. data/fixtures/padrino_test/test/app/controllers/users_controller_test.rb +1 -1
  26. data/fixtures/rails2/app/models +1 -1
  27. data/fixtures/rails2/app/views +1 -1
  28. data/fixtures/rails2/db/migrate +1 -1
  29. data/fixtures/rails2/test/functionals/posts_controller_test.rb +1 -1
  30. data/fixtures/rails2/test/functionals/users_controller_test.rb +1 -1
  31. data/fixtures/rails3/app/models +1 -1
  32. data/fixtures/rails3/app/views +1 -1
  33. data/fixtures/rails3/db/migrate +1 -1
  34. data/fixtures/rails3/test/functional/posts_controller_test.rb +1 -1
  35. data/fixtures/rails3/test/functional/users_controller_test.rb +1 -1
  36. data/fixtures/rails3_2/app/models +1 -1
  37. data/fixtures/rails3_2/app/views +1 -1
  38. data/fixtures/rails3_2/db/migrate +1 -1
  39. data/fixtures/rails3_2/test/functional/posts_controller_test.rb +1 -1
  40. data/fixtures/rails3_2/test/functional/users_controller_test.rb +1 -1
  41. data/fixtures/rails4/app/models +1 -1
  42. data/fixtures/rails4/app/views +1 -1
  43. data/fixtures/rails4/db/migrate +1 -1
  44. data/fixtures/rails4/test/functional/posts_controller_test.rb +1 -1
  45. data/fixtures/rails4/test/functional/users_controller_test.rb +1 -1
  46. data/fixtures/rails5/app/controllers/posts_controller.rb +1 -1
  47. data/fixtures/rails5/app/controllers/users_controller.rb +1 -1
  48. data/fixtures/rails5/app/helpers +1 -1
  49. data/fixtures/rails5/app/models +1 -1
  50. data/fixtures/rails5/app/views +1 -1
  51. data/fixtures/rails5/db/migrate +1 -1
  52. data/fixtures/rails5/test/functional/posts_controller_test.rb +1 -1
  53. data/fixtures/rails5/test/functional/users_controller_test.rb +1 -1
  54. data/fixtures/rails5_api/app/controllers/posts_controller.rb +1 -1
  55. data/fixtures/rails5_api/app/controllers/users_controller.rb +1 -1
  56. data/fixtures/rails5_api/app/helpers +1 -1
  57. data/fixtures/rails5_api/app/models +1 -1
  58. data/fixtures/rails5_api/app/views +1 -1
  59. data/fixtures/rails5_api/db/migrate +1 -1
  60. data/fixtures/rails5_api/test/functional/posts_controller_test.rb +1 -1
  61. data/fixtures/rails5_api/test/functional/users_controller_test.rb +1 -1
  62. data/fixtures/rails6/.gitignore +35 -0
  63. data/fixtures/rails6/Gemfile +58 -0
  64. data/fixtures/rails6/README.md +24 -0
  65. data/fixtures/rails6/Rakefile +14 -0
  66. data/fixtures/rails6/app/assets/config/manifest.js +2 -0
  67. data/fixtures/rails6/app/assets/images/.keep +0 -0
  68. data/fixtures/rails6/app/assets/stylesheets/application.css +15 -0
  69. data/fixtures/rails6/app/channels/application_cable/channel.rb +4 -0
  70. data/fixtures/rails6/app/channels/application_cable/connection.rb +4 -0
  71. data/fixtures/rails6/app/controllers/application_controller.rb +2 -0
  72. data/fixtures/rails6/app/controllers/concerns/.keep +0 -0
  73. data/fixtures/rails6/app/controllers/posts_controller.rb +17 -0
  74. data/fixtures/rails6/app/controllers/users_controller.rb +11 -0
  75. data/fixtures/rails6/app/helpers +1 -0
  76. data/fixtures/rails6/app/javascript/channels/consumer.js +6 -0
  77. data/fixtures/rails6/app/javascript/channels/index.js +5 -0
  78. data/fixtures/rails6/app/javascript/packs/application.js +17 -0
  79. data/fixtures/rails6/app/jobs/application_job.rb +7 -0
  80. data/fixtures/rails6/app/mailers/application_mailer.rb +4 -0
  81. data/fixtures/rails6/app/models +1 -0
  82. data/fixtures/rails6/app/views +1 -0
  83. data/fixtures/rails6/babel.config.js +72 -0
  84. data/fixtures/rails6/bin/bundle +105 -0
  85. data/fixtures/rails6/bin/rails +9 -0
  86. data/fixtures/rails6/bin/rake +9 -0
  87. data/fixtures/rails6/bin/setup +36 -0
  88. data/fixtures/rails6/bin/spring +17 -0
  89. data/fixtures/rails6/bin/webpack +19 -0
  90. data/fixtures/rails6/bin/webpack-dev-server +19 -0
  91. data/fixtures/rails6/bin/yarn +11 -0
  92. data/fixtures/rails6/config.ru +5 -0
  93. data/fixtures/rails6/config/application.rb +19 -0
  94. data/fixtures/rails6/config/boot.rb +4 -0
  95. data/fixtures/rails6/config/cable.yml +10 -0
  96. data/fixtures/rails6/config/credentials.yml.enc +1 -0
  97. data/fixtures/rails6/config/database.yml +25 -0
  98. data/fixtures/rails6/config/environment.rb +5 -0
  99. data/fixtures/rails6/config/environments/development.rb +62 -0
  100. data/fixtures/rails6/config/environments/production.rb +112 -0
  101. data/fixtures/rails6/config/environments/test.rb +48 -0
  102. data/fixtures/rails6/config/initializers/application_controller_renderer.rb +8 -0
  103. data/fixtures/rails6/config/initializers/assets.rb +14 -0
  104. data/fixtures/rails6/config/initializers/backtrace_silencers.rb +7 -0
  105. data/fixtures/rails6/config/initializers/content_security_policy.rb +27 -0
  106. data/fixtures/rails6/config/initializers/cookies_serializer.rb +5 -0
  107. data/fixtures/rails6/config/initializers/filter_parameter_logging.rb +4 -0
  108. data/fixtures/rails6/config/initializers/inflections.rb +16 -0
  109. data/fixtures/rails6/config/initializers/mime_types.rb +6 -0
  110. data/fixtures/rails6/config/initializers/wrap_parameters.rb +14 -0
  111. data/fixtures/rails6/config/locales/en.yml +33 -0
  112. data/fixtures/rails6/config/puma.rb +35 -0
  113. data/fixtures/rails6/config/routes.rb +8 -0
  114. data/fixtures/rails6/config/spring.rb +6 -0
  115. data/fixtures/rails6/config/storage.yml +34 -0
  116. data/fixtures/rails6/config/webpack/development.js +5 -0
  117. data/fixtures/rails6/config/webpack/environment.js +3 -0
  118. data/fixtures/rails6/config/webpack/production.js +5 -0
  119. data/fixtures/rails6/config/webpack/test.js +5 -0
  120. data/fixtures/rails6/config/webpacker.yml +95 -0
  121. data/fixtures/rails6/db/migrate/20111002092016_create_users.rb +11 -0
  122. data/fixtures/rails6/db/migrate/20111002092019_create_posts.rb +10 -0
  123. data/fixtures/rails6/db/migrate/20111002092024_create_phone_numbers.rb +12 -0
  124. data/fixtures/rails6/db/schema.rb +41 -0
  125. data/fixtures/rails6/db/seeds.rb +7 -0
  126. data/fixtures/rails6/lib/assets/.keep +0 -0
  127. data/fixtures/rails6/lib/tasks/.keep +0 -0
  128. data/fixtures/rails6/log/.keep +0 -0
  129. data/fixtures/rails6/package.json +15 -0
  130. data/fixtures/rails6/postcss.config.js +12 -0
  131. data/fixtures/rails6/public/404.html +67 -0
  132. data/fixtures/rails6/public/422.html +67 -0
  133. data/fixtures/rails6/public/500.html +66 -0
  134. data/fixtures/rails6/public/apple-touch-icon-precomposed.png +0 -0
  135. data/fixtures/rails6/public/apple-touch-icon.png +0 -0
  136. data/fixtures/rails6/public/favicon.ico +0 -0
  137. data/fixtures/rails6/public/robots.txt +1 -0
  138. data/fixtures/rails6/storage/.keep +0 -0
  139. data/fixtures/rails6/test/application_system_test_case.rb +5 -0
  140. data/fixtures/rails6/test/channels/application_cable/connection_test.rb +11 -0
  141. data/fixtures/rails6/test/controllers/.keep +0 -0
  142. data/fixtures/rails6/test/fixtures/.keep +0 -0
  143. data/fixtures/rails6/test/fixtures/files/.keep +0 -0
  144. data/fixtures/rails6/test/functional/posts_controller_test.rb +1 -0
  145. data/fixtures/rails6/test/functional/users_controller_test.rb +1 -0
  146. data/fixtures/rails6/test/helpers/.keep +0 -0
  147. data/fixtures/rails6/test/integration/.keep +0 -0
  148. data/fixtures/rails6/test/mailers/.keep +0 -0
  149. data/fixtures/rails6/test/models/.keep +0 -0
  150. data/fixtures/rails6/test/system/.keep +0 -0
  151. data/fixtures/rails6/test/test_helper.rb +27 -0
  152. data/fixtures/rails6/tmp/.keep +0 -0
  153. data/fixtures/rails6/vendor/.keep +0 -0
  154. data/fixtures/rails6/yarn.lock +7201 -0
  155. data/fixtures/sinatra_test/db/migrate +1 -1
  156. data/fixtures/sinatra_test/models +1 -1
  157. data/fixtures/sinatra_test/test/functional/posts_controller_test.rb +1 -1
  158. data/fixtures/sinatra_test/test/functional/users_controller_test.rb +1 -1
  159. data/fixtures/sinatra_test/views +1 -1
  160. data/lib/rabl.rb +3 -3
  161. data/lib/rabl/engine.rb +4 -2
  162. data/lib/rabl/railtie.rb +1 -1
  163. data/lib/rabl/template.rb +21 -1
  164. data/lib/rabl/version.rb +1 -1
  165. data/rabl.gemspec +0 -2
  166. data/test/integration/rails6/posts_controller_test.rb +185 -0
  167. data/test/integration/rails6/users_controller_test.rb +87 -0
  168. 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,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,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,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: rails6_production
@@ -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,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 = "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,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ActiveSupport::Reloader.to_prepare do
4
+ # ApplicationController.renderer.defaults.merge!(
5
+ # http_host: 'example.org',
6
+ # https: false
7
+ # )
8
+ # 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,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Specify a serializer for the signed and encrypted cookie jars.
4
+ # Valid options are :json, :marshal, and :hybrid.
5
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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
@@ -0,0 +1,6 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+
6
+ Mime::Type.register 'application/vnd.rabl-test_v1+json', :rabl_test_v1