Skip to content

Commit

Permalink
Merge pull request #2339 from sul-dlss/bump-ruby-3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mjgiarlo authored Jun 20, 2024
2 parents 8d85006 + de890e1 commit ce883d4
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inherit_mode:
- Exclude

AllCops:
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
DisplayCopNames: true
Include:
- './Rakefile'
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ gem 'aws-sdk-s3', '~> 1.17'
gem 'committee' # Validates HTTP requests/responses per OpenAPI specification
gem 'connection_pool' # Used for redis
gem 'config' # Settings to manage configs on different instances
gem 'csv' # will be removed from standard library in Ruby 3.4
gem 'honeybadger' # for error reporting / tracking / notifications
gem "importmap-rails", "~> 1.2"
gem 'jbuilder' # Build JSON APIs with ease.
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ GEM
bigdecimal
rexml
crass (1.0.6)
csv (3.2.8)
date (3.3.4)
debug (1.9.2)
irb (~> 1.10)
Expand Down Expand Up @@ -469,6 +470,7 @@ DEPENDENCIES
committee
config
connection_pool
csv
debug
dlss-capistrano
dor-event-client
Expand Down
2 changes: 0 additions & 2 deletions app/controllers/objects_controller.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require 'csv'

##
# ObjectsController allows consumers to interact with preserved objects
# (Note: methods will eventually be ported from sdr-services-app)
Expand Down
2 changes: 0 additions & 2 deletions app/services/audit/checksum_validator_utils.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require 'csv'

module Audit
# Helper methods for invoking Audit::ChecksumValidator.
# These are for use from the Rails console; they are not called from the app.
Expand Down
2 changes: 0 additions & 2 deletions app/services/moab_storage_root_report_service.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require 'csv'

##
# run queries and produce reports from the results, for consumption
# by preservation catalog maintainers
Expand Down
2 changes: 0 additions & 2 deletions lib/tasks/prescat.rake
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require 'csv'

namespace :prescat do
desc 'Diagnose failed replication'
task :diagnose_replication, [:druid] => :environment do |_task, args|
Expand Down
1 change: 0 additions & 1 deletion spec/services/catalog_utils_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require 'rails_helper'
require 'csv'

RSpec.describe CatalogUtils do
let(:storage_dir) { 'spec/fixtures/storage_root01/sdr2objects' }
Expand Down

0 comments on commit ce883d4

Please sign in to comment.