-
Notifications
You must be signed in to change notification settings - Fork 142
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
59cf5ac
commit ece9d1c
Showing
17 changed files
with
233 additions
and
31 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,3 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) | ||
load Gem.bin_path('bundler', 'bundle') |
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,4 +1,7 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
load File.expand_path('spring', __dir__) | ||
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,4 +1,7 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
load File.expand_path('spring', __dir__) | ||
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 |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
# This file loads spring without using Bundler, in order to be fast. | ||
# It gets overwritten when you run the `spring binstub` command. | ||
|
||
unless defined?(Spring) | ||
require 'rubygems' | ||
if !defined?(Spring) && [nil, 'development', 'test'].include?(ENV.fetch('RAILS_ENV', nil)) | ||
gem 'bundler' | ||
require 'bundler' | ||
|
||
if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) | ||
Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } | ||
gem 'spring', match[1] | ||
# Load Spring without loading other gems in the Gemfile, for speed. | ||
Bundler.locked_gems&.specs&.find { |spec| spec.name == 'spring' }&.tap do |spring| | ||
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path | ||
gem 'spring', spring.version | ||
require 'spring/binstub' | ||
rescue Gem::LoadError | ||
# Ignore when Spring is not installed. | ||
end | ||
end |
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,4 +1,6 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
require 'fileutils' | ||
include FileUtils | ||
|
||
|
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,4 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file is used by Rack-based servers to start the application. | ||
|
||
require ::File.expand_path('../config/environment', __FILE__) | ||
require_relative 'config/environment' | ||
|
||
run Rails.application | ||
Rails.application.load_server |
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,12 @@ | ||
# Be sure to restart your server when you modify this file. | ||
|
||
# Version of your assets, change this if you want to expire all your assets. | ||
Rails.application.config.assets.version = '1.0' | ||
|
||
# Add additional assets to the asset load path. | ||
# Rails.application.config.assets.paths << Emoji.images_path | ||
|
||
# Precompile additional assets. | ||
# application.js, application.css, and all non-JS/CSS in the app/assets | ||
# folder are already added. | ||
# Rails.application.config.assets.precompile += %w( admin.js admin.css ) |
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,7 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
# Be sure to restart your server when you modify this file. | ||
|
||
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. | ||
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } | ||
# Rails.backtrace_cleaner.add_silencer { |line| /my_noisy_library/.match?(line) } | ||
|
||
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. | ||
# Rails.backtrace_cleaner.remove_silencers! | ||
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code | ||
# by setting BACKTRACE=1 before calling your invocation, like "BACKTRACE=1 ./bin/rails runner 'MyClass.perform'". | ||
Rails.backtrace_cleaner.remove_silencers! if ENV['BACKTRACE'] |
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,67 @@ | ||
# Be sure to restart your server when you modify this file. | ||
# | ||
# This file contains migration options to ease your Rails 6.1 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. | ||
|
||
# Support for inversing belongs_to -> has_many Active Record associations. | ||
# Rails.application.config.active_record.has_many_inversing = true | ||
|
||
# Track Active Storage variants in the database. | ||
# Rails.application.config.active_storage.track_variants = true | ||
|
||
# Apply random variation to the delay when retrying failed jobs. | ||
# Rails.application.config.active_job.retry_jitter = 0.15 | ||
|
||
# Stop executing `after_enqueue`/`after_perform` callbacks if | ||
# `before_enqueue`/`before_perform` respectively halts with `throw :abort`. | ||
# Rails.application.config.active_job.skip_after_callbacks_if_terminated = true | ||
|
||
# Specify cookies SameSite protection level: either :none, :lax, or :strict. | ||
# | ||
# This change is not backwards compatible with earlier Rails versions. | ||
# It's best enabled when your entire app is migrated and stable on 6.1. | ||
# Rails.application.config.action_dispatch.cookies_same_site_protection = :lax | ||
|
||
# Generate CSRF tokens that are encoded in URL-safe Base64. | ||
# | ||
# This change is not backwards compatible with earlier Rails versions. | ||
# It's best enabled when your entire app is migrated and stable on 6.1. | ||
# Rails.application.config.action_controller.urlsafe_csrf_tokens = true | ||
|
||
# Specify whether `ActiveSupport::TimeZone.utc_to_local` returns a time with an | ||
# UTC offset or a UTC time. | ||
# ActiveSupport.utc_to_local_returns_utc_offset_times = true | ||
|
||
# Change the default HTTP status code to `308` when redirecting non-GET/HEAD | ||
# requests to HTTPS in `ActionDispatch::SSL` middleware. | ||
# Rails.application.config.action_dispatch.ssl_default_redirect_status = 308 | ||
|
||
# Use new connection handling API. For most applications this won't have any | ||
# effect. For applications using multiple databases, this new API provides | ||
# support for granular connection swapping. | ||
# Rails.application.config.active_record.legacy_connection_handling = false | ||
|
||
# Make `form_with` generate non-remote forms by default. | ||
# Rails.application.config.action_view.form_with_generates_remote_forms = false | ||
|
||
# Set the default queue name for the analysis job to the queue adapter default. | ||
# Rails.application.config.active_storage.queues.analysis = nil | ||
|
||
# Set the default queue name for the purge job to the queue adapter default. | ||
# Rails.application.config.active_storage.queues.purge = nil | ||
|
||
# Set the default queue name for the incineration job to the queue adapter default. | ||
# Rails.application.config.action_mailbox.queues.incineration = nil | ||
|
||
# Set the default queue name for the routing job to the queue adapter default. | ||
# Rails.application.config.action_mailbox.queues.routing = nil | ||
|
||
# Set the default queue name for the mail deliver job to the queue adapter default. | ||
# Rails.application.config.action_mailer.deliver_later_queue_name = nil | ||
|
||
# Generate a `Link` header that gives a hint to modern browsers about | ||
# preloading assets when using `javascript_include_tag` and `stylesheet_link_tag`. | ||
# Rails.application.config.action_view.preload_links_header = true |
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,11 @@ | ||
# Define an application-wide HTTP permissions policy. For further | ||
# information see https://developers.google.com/web/updates/2018/06/feature-policy | ||
# | ||
# Rails.application.config.permissions_policy do |f| | ||
# f.camera :none | ||
# f.gyroscope :none | ||
# f.microphone :none | ||
# f.usb :none | ||
# f.fullscreen :self | ||
# f.payment :self, "https://secure.example.com" | ||
# end |
Oops, something went wrong.