diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 11:54:08 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 11:54:08 -0500 |
commit | e28f6b73ab7f2e59605ebd800e921a6146fc49ae (patch) | |
tree | 087d61ffbfde35123c3ec0c88302a81fbfef742b /bin/rails | |
parent | 32d4d3c1fc54721c3c99a15415cf698475237984 (diff) | |
download | pokeviewer-e28f6b73ab7f2e59605ebd800e921a6146fc49ae.tar.gz pokeviewer-e28f6b73ab7f2e59605ebd800e921a6146fc49ae.tar.bz2 pokeviewer-e28f6b73ab7f2e59605ebd800e921a6146fc49ae.zip |
Updated to Rails 7.0.3
Diffstat (limited to 'bin/rails')
-rwxr-xr-x | bin/rails | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/rails b/bin/rails index 73a6f70..056c65f 100755 --- a/bin/rails +++ b/bin/rails | |||
@@ -2,13 +2,13 @@ | |||
2 | # This command will automatically be run when you run "rails" with Rails gems | 2 | # This command will automatically be run when you run "rails" with Rails gems |
3 | # installed from the root of your application. | 3 | # installed from the root of your application. |
4 | 4 | ||
5 | ENGINE_ROOT = File.expand_path('../..', __FILE__) | 5 | ENGINE_ROOT = File.expand_path("..", __dir__) |
6 | ENGINE_PATH = File.expand_path('../../lib/pokeviewer/engine', __FILE__) | 6 | ENGINE_PATH = File.expand_path("../lib/pokeviewer/engine", __dir__) |
7 | APP_PATH = File.expand_path('../../test/dummy/config/application', __FILE__) | 7 | APP_PATH = File.expand_path("../test/dummy/config/application", __dir__) |
8 | 8 | ||
9 | # Set up gems listed in the Gemfile. | 9 | # Set up gems listed in the Gemfile. |
10 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) | 10 | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) |
11 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) | 11 | require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"]) |
12 | 12 | ||
13 | require 'rails/all' | 13 | require "rails/all" |
14 | require 'rails/engine/commands' | 14 | require "rails/engine/commands" |