Some spring related changes?!

This commit is contained in:
bumi 2020-06-10 15:15:37 +02:00
parent b1588988a7
commit 7eb0ca6753
3 changed files with 0 additions and 11 deletions

View File

@ -1,11 +1,6 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
begin
load File.expand_path('spring', __dir__)
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'

View File

@ -1,11 +1,6 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
begin
load File.expand_path('spring', __dir__)
rescue LoadError => e
raise unless e.message.include?('spring')
end
require_relative '../config/boot'
require 'rake'
Rake.application.run

View File

@ -1,5 +1,4 @@
#!/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.