From 01a6953df7bf52b148eb22a39b4545dfeb779724 Mon Sep 17 00:00:00 2001 From: Benjamin ter Kuile Date: Sun, 14 Jan 2024 10:38:01 -0500 Subject: [PATCH] upgrade things --- Gemfile | 4 ++-- config/boot.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index d8280bc4..1faef8b3 100644 --- a/Gemfile +++ b/Gemfile @@ -134,7 +134,7 @@ group :test do gem 'timecop' gem 'turnip' gem 'webmock' - gem 'rails-controller-testing' + #gem 'rails-controller-testing' #gem 'rb-fsevent', require: false #if RUBY_PLATFORM =~ /darwin/i end @@ -147,7 +147,7 @@ end # Use unicorn as the app server # gem 'unicorn' -gem 'puma', '~> 4.3.10' +gem 'puma', '>= 5.0' # Deploy with Capistrano # gem 'capistrano' diff --git a/config/boot.rb b/config/boot.rb index 4489e586..f2830ae3 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -3,4 +3,4 @@ require 'rubygems' # Set up gems listed in the Gemfile. ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])