Skip to content

Commit

Permalink
fixing rubocop and removing superfluous requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-raitz committed Oct 7, 2024
1 parent 85adde5 commit a60e430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion av_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'irb', '~> 1.2' # workaroundfor https://github.com/bundler/bundler/issues/6929
spec.add_development_dependency 'listen', '>= 3.0.5', '< 3.2'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec-support', '~> 3.9'
spec.add_development_dependency 'rubocop', '1.26.0'
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
Expand Down
4 changes: 3 additions & 1 deletion lib/berkeley_library/av/metadata/fields.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ module Fields
CREATOR_CORPORATE = Field.new(order: 2, label: 'Creator', spec: '710')
TRACKS = Field.new(order: 99, label: 'Tracks', spec: TAG_TRACK_FIELD, subfield_order: %w[g t a])
CATALOG_LINK = Field.new(order: 998, label: 'Linked Resources', spec: "#{TAG_LINK_FIELD}{^1=\\4}{^2=\\1}")
TRANSCRIPTS = Field.new(order: 999, label: 'Transcripts', spec: "#{TAG_TRANSCRIPT_FIELD}{$y~\\Transcript}{^1=\\4}{^2=\\2}", subfield_order: %w[u y])
# rubocop:disable Layout/LineLength
Field.new(order: 999, label: 'Transcripts', spec: "#{TAG_TRANSCRIPT_FIELD}{$y~\\Transcript}{^1=\\4}{^2=\\2}", subfield_order: %w[u y])
# rubocop:enable Layout/LineLength

STANDARD_FIELDS = [
TITLE,
Expand Down

0 comments on commit a60e430

Please sign in to comment.