-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3855aca
commit c750c11
Showing
12 changed files
with
59 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
#!/usr/bin/env ruby | ||
begin | ||
load File.expand_path('../spring', __FILE__) | ||
rescue LoadError => e | ||
raise unless e.message.include?('spring') | ||
end | ||
APP_PATH = File.expand_path('../config/application', __dir__) | ||
require_relative '../config/boot' | ||
require 'rails/commands' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
#!/usr/bin/env ruby | ||
begin | ||
load File.expand_path('../spring', __FILE__) | ||
rescue LoadError => e | ||
raise unless e.message.include?('spring') | ||
end | ||
require_relative '../config/boot' | ||
require 'rake' | ||
Rake.application.run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ development: | |
adapter: async | ||
|
||
test: | ||
adapter: async | ||
adapter: test | ||
|
||
production: | ||
adapter: redis | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Be sure to restart your server when you modify this file. | ||
# | ||
# This file contains migration options to ease your Rails 6.0 upgrade. | ||
# | ||
# Once upgraded flip defaults one by one to migrate to the new default. | ||
# | ||
# Read the Guide for Upgrading Ruby on Rails for more info on each option. | ||
|
||
# Don't force requests from old versions of IE to be UTF-8 encoded. | ||
# Rails.application.config.action_view.default_enforce_utf8 = false | ||
|
||
# Embed purpose and expiry metadata inside signed and encrypted | ||
# cookies for increased security. | ||
# | ||
# This option is not backwards compatible with earlier Rails versions. | ||
# It's best enabled when your entire app is migrated and stable on 6.0. | ||
# Rails.application.config.action_dispatch.use_cookies_with_metadata = true | ||
|
||
# Return false instead of self when enqueuing is aborted from a callback. | ||
# Rails.application.config.active_job.return_false_on_aborted_enqueue = true | ||
|
||
# Send Active Storage analysis and purge jobs to dedicated queues. | ||
# Rails.application.config.active_storage.queues.analysis = :active_storage_analysis | ||
# Rails.application.config.active_storage.queues.purge = :active_storage_purge | ||
|
||
# Use ActionMailer::MailDeliveryJob for sending parameterized and normal mail. | ||
# | ||
# The default delivery jobs (ActionMailer::Parameterized::DeliveryJob, ActionMailer::DeliveryJob), | ||
# will be removed in Rails 6.1. This setting is not backwards compatible with earlier Rails versions. | ||
# If you send mail in the background, job workers need to have a copy of | ||
# MailDeliveryJob to ensure all delivery jobs are processed properly. | ||
# Make sure your entire app is migrated and stable on 6.0 before using this setting. | ||
# Rails.application.config.action_mailer.delivery_job = "ActionMailer::MailDeliveryJob" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%w[ | ||
.ruby-version | ||
.rbenv-vars | ||
tmp/restart.txt | ||
tmp/caching-dev.txt | ||
].each { |path| Spring.watch(path) } | ||
Spring.watch( | ||
".ruby-version", | ||
".rbenv-vars", | ||
"tmp/restart.txt", | ||
"tmp/caching-dev.txt" | ||
) |