* Initial automatic cleanup with rubocop * Fix syntax error introduced by rubocop * Cleanup seeds file * Cleanup lib folder * Exclude bin folder because it contains auto generated files * Make Rubocop a little bit more chatty * Block length should not include comments in the count * Cleanup config folder * Cleanup specs * Updated Rubocop version and generated a todo file * Fix broken ArticlesApi spec * Fix tests * Restored rubocop pre-commit hook
104 lines
3.6 KiB
Ruby
104 lines
3.6 KiB
Ruby
# rubocop:disable Metrics/BlockLength
|
|
|
|
Rails.application.configure do
|
|
# Verifies that versions and hashed value of the package contents in the project's package.json
|
|
config.webpacker.check_yarn_integrity = true
|
|
|
|
# Replace with a lambda or method name defined in ApplicationController
|
|
# to implement access control for the Flipflop dashboard.
|
|
config.flipflop.dashboard_access_filter = nil
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
|
|
|
# In the development environment your application's code is reloaded on
|
|
# every request. This slows down response time but is perfect for development
|
|
# since you don't have to restart the web server when you make code changes.
|
|
config.cache_classes = false
|
|
|
|
# Do not eager load code on boot.
|
|
config.eager_load = false
|
|
|
|
# Show full error reports and disable caching.
|
|
config.consider_all_requests_local = true
|
|
|
|
# Enable/disable caching. By default caching is disabled.
|
|
if Rails.root.join("tmp/caching-dev.txt").exist?
|
|
config.action_controller.perform_caching = true
|
|
|
|
config.cache_store = :memory_store
|
|
config.public_file_server.headers = {
|
|
"Cache-Control" => "public, max-age=172800",
|
|
}
|
|
else
|
|
config.action_controller.perform_caching = false
|
|
|
|
config.cache_store = :null_store
|
|
end
|
|
|
|
# Don't care if the mailer can't send.
|
|
config.action_mailer.raise_delivery_errors = false
|
|
|
|
# Print deprecation notices to the Rails logger.
|
|
config.active_support.deprecation = :log
|
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
config.active_record.migration_error = :page_load
|
|
|
|
# Debug mode disables concatenation and preprocessing of assets.
|
|
# This option may cause significant delays in view rendering with a large
|
|
# number of complex assets.
|
|
config.assets.debug = false
|
|
|
|
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
|
# yet still be able to expire them through the digest params.
|
|
config.assets.digest = false
|
|
|
|
# Supress logger output for asset requests.
|
|
config.assets.quiet = true
|
|
|
|
# Adds additional error checking when serving assets at runtime.
|
|
# Checks for improperly declared sprockets dependencies.
|
|
# Raises helpful error messages.
|
|
config.assets.raise_runtime_errors = true
|
|
|
|
config.action_mailer.perform_caching = false
|
|
|
|
config.app_domain = "localhost:3000"
|
|
|
|
config.action_mailer.default_url_options = { host: "localhost:3000" }
|
|
config.action_mailer.delivery_method = :smtp
|
|
config.action_mailer.perform_deliveries = true
|
|
config.action_mailer.default_url_options = { host: config.app_domain }
|
|
config.action_mailer.smtp_settings = {
|
|
address: "smtp.gmail.com",
|
|
port: "587",
|
|
enable_starttls_auto: true,
|
|
user_name: '<%= ENV["DEVELOPMENT_EMAIL_USERNAME"] %>',
|
|
password: '<%= ENV["DEVELOPMENT_EMAIL_PASSWORD"] %>',
|
|
authentication: :plain,
|
|
domain: "localhost:3000",
|
|
}
|
|
|
|
config.action_mailer.preview_path = "#{Rails.root}/spec/mailers/previews"
|
|
|
|
# Raises error for missing translations
|
|
# config.action_view.raise_on_missing_translations = true
|
|
|
|
config.public_file_server.enabled = true
|
|
|
|
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
|
|
|
# Install the Timber.io logger
|
|
send_logs_to_timber = false # <---- set to false to stop sending dev logs to Timber.io
|
|
|
|
log_device = send_logs_to_timber ? Timber::LogDevices::HTTP.new(ENV["TIMBER"]) : STDOUT
|
|
logger = Timber::Logger.new(log_device)
|
|
logger.level = config.log_level
|
|
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
|
|
|
config.after_initialize do
|
|
Bullet.enable = true
|
|
Bullet.console = true
|
|
end
|
|
end
|
|
|
|
# rubocop:enable Metrics/BlockLength
|