Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 0 additions & 152 deletions .idea/lost-and-found.iml

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Layout/MultilineMethodCallIndentation:
Layout/MultilineOperationIndentation:
Enabled: false

Metrics/BlockLength:
Exclude:
- 'spec/**/*'

Metrics/MethodLength:
Max: 25

Expand Down Expand Up @@ -370,4 +374,4 @@ Style/SuperArguments: # new in 1.64
Style/SuperWithArgsParentheses: # new in 1.58
Enabled: true
Style/YAMLFileRead: # new in 1.53
Enabled: true
Enabled: true
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The base stage scaffolds elements which are common to building and running
# the application, such as installing ca-certificates, creating the app user,
# and installing runtime system dependencies.
FROM ruby:3.3-slim AS base
FROM ruby:3.4-slim AS base

# This declares that the container intends to listen on port 3000. It doesn't
# actually "expose" the port anywhere -- it is just metadata. It advises tools
Expand Down Expand Up @@ -114,7 +114,7 @@ RUN apt-get install -y --no-install-recommends \
USER $APP_USER

# Use a recent version of Bundler
RUN gem install bundler -v 2.5.23
RUN gem install bundler -v 4.0.15

# Install gems. We don't enforce the validity of the Gemfile.lock until the
# final (production) stage.
Expand Down
9 changes: 5 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,32 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 3.3.6'
ruby '~> 3.4'

gem 'activerecord-import'
gem 'berkeley_library-docker', '~> 0.2.0'
gem 'berkeley_library-logging', '~> 0.2', '>= 0.2.5'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'bootstrap'
gem 'csv'
gem 'kaminari'
gem 'lograge', '>=0.11.2'
gem 'okcomputer', '~> 1.19'
gem 'omniauth-cas',
git: 'https://github.com/dlindahl/omniauth-cas.git',
ref: '7087bda829e14c0f7cab2aece5045ad7015669b1'
gem 'paper_trail', '~> 16.0'
gem 'paper_trail', '~> 17.0'
gem 'pg'
gem 'pg_search'
gem 'puma', '~> 7.2'
gem 'puma-plugin-delayed_stop', '~> 0.1.2'
gem 'rails', '~> 8.0.5'
gem 'rails', '~> 8.1.3'
gem 'sass-rails', '~> 6.0'
gem 'typesafe_enum'
gem 'webpacker', '~> 5.4'

group :development, :test do
gem 'brakeman', '~> 4.8'
gem 'brakeman', '~> 8.0'
gem 'bundler-audit'
gem 'colorize'
gem 'factory_bot_rails'
Expand Down
Loading
Loading