Don't pin bootsnap version
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Basti 2022-02-12 14:25:36 -06:00
parent 30b2646b85
commit 0fa6c1a211
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
3 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ gem 'jbuilder', '~> 2.7'
# gem 'bcrypt', '~> 3.1.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
gem "bootsnap", require: false
# Configuration
gem 'dotenv-rails'

View File

@ -307,7 +307,7 @@ PLATFORMS
x86_64-linux
DEPENDENCIES
bootsnap (>= 1.4.2)
bootsnap
capybara
cssbundling-rails
database_cleaner

View File

@ -1,4 +1,4 @@
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
require 'bundler/setup' # Set up gems listed in the Gemfile.
require 'bootsnap/setup' # Speed up boot time by caching expensive operations.
require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup" # Speed up boot time by caching expensive operations.