Skip to content

Commit

Permalink
Merge pull request #746 from sul-dlss/update-dependencies
Browse files Browse the repository at this point in the history
Merged by automated merge script
  • Loading branch information
peetucket authored Oct 21, 2024
2 parents 82a3617 + 06ee8a0 commit 867afd1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (7.2.1)
activesupport (7.2.1.1)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
Expand Down Expand Up @@ -108,7 +108,7 @@ GEM
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.1)
rspec-core (3.13.2)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
Expand All @@ -119,7 +119,7 @@ GEM
rspec-support (3.13.1)
rspec_junit_formatter (0.6.0)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.66.1)
rubocop (1.67.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand Down Expand Up @@ -160,7 +160,7 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)
zeitwerk (2.7.0)
zeitwerk (2.7.1)

PLATFORMS
ruby
Expand Down
6 changes: 3 additions & 3 deletions lib/cocina/models/mapping/from_mods/note.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def abstracts
note_present?(node)
end
altrepgroup_abstract_nodes, other_abstract_nodes = AltRepGroup.split(nodes: all_abstract_nodes)
other_abstract_nodes.map { |node| common_note_for(node).merge(abstract_type(node)) } + \
other_abstract_nodes.map { |node| common_note_for(node).merge(abstract_type(node)) } +
altrepgroup_abstract_nodes.map { |parallel_nodes| parallel_abstract_for(parallel_nodes) }
end

Expand Down Expand Up @@ -92,7 +92,7 @@ def notes
note_present?(node) && node[:type] != 'contact'
end
altrepgroup_note_nodes, other_note_nodes = AltRepGroup.split(nodes: all_note_nodes)
other_note_nodes.map { |node| common_note_for(node) } + \
other_note_nodes.map { |node| common_note_for(node) } +
altrepgroup_note_nodes.map { |parallel_nodes| parallel_note_for(parallel_nodes) }
end

Expand Down Expand Up @@ -123,7 +123,7 @@ def table_of_contents
note_present?(node)
end
altrepgroup_toc_nodes, other_toc_nodes = AltRepGroup.split(nodes: all_toc_nodes)
other_toc_nodes.map { |node| toc_for(node).merge({ type: 'table of contents' }) } + \
other_toc_nodes.map { |node| toc_for(node).merge({ type: 'table of contents' }) } +
altrepgroup_toc_nodes.map { |parallel_nodes| parallel_toc_for(parallel_nodes) }
end

Expand Down

0 comments on commit 867afd1

Please sign in to comment.