pennmarc 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7c380943acc4f69a8a7555260d122aa77046b2ab62a2f73e1b3559740bd409b
4
- data.tar.gz: 0cc7fb1a1860265fb9bb2fcd637966d0d2972e6496a79545328649fa27fc1445
3
+ metadata.gz: c48634bf726b824f79d9682b82973af5223035ff6e0a999ffb0a83d26f338893
4
+ data.tar.gz: 4b874bd557519dd16a898faaa4c74ef6415b0b489fbf1ed2082fb1956c4cfaa4
5
5
  SHA512:
6
- metadata.gz: 0265623f80ef1573fdf1d5c2a6a62636291a8edc4e7d06350238b3133071b30cd01a58a9679047578546e856f166ac6df9a9e413c562fafff60eecfc6eb12b93
7
- data.tar.gz: aea9b53a26a97e7ff018fda2aacb6101bfb1c21585ac663fcbbdfba7084235de148643b9b03cc1478e230944ce3d45be641189f9852c6b88d7017da00c652bbc
6
+ metadata.gz: 88c102ca50391a3f48076c626bdca735612ddc0ca33eb93c11b4268de1c896c90e12d342080c5a254a07267659f7855cc4ef2dc4ed03a329b57e313754cb6589
7
+ data.tar.gz: 3c02ea8c8e60fb51b89cdc55f4f7329602cf3d5af20434dda37b181f0db527bce20d4fdaf6fe0383d2f26c9a910d49935ffa0173c832d35c57837e446bca82b4
@@ -132,6 +132,8 @@ module PennMARC
132
132
  # @return [String] title value for sorting
133
133
  def sort(record)
134
134
  title_field = record.fields('245').first
135
+ return unless title_field.present?
136
+
135
137
  # attempt to get number of non-filing characters present, default to 0
136
138
  offset = if /^[0-9]$/.match?(title_field.indicator2)
137
139
  title_field.indicator2.to_i
@@ -1597,7 +1597,7 @@ vpfeatdvd:
1597
1597
  vpfolio:
1598
1598
  specific_location: Van Pelt - Folios
1599
1599
  library: Van Pelt-Dietrich Library Center
1600
- display: Van Pelt Library
1600
+ display: Van Pelt - Folios
1601
1601
  vpjuv:
1602
1602
  specific_location: Van Pelt - Notable Juvenile Books
1603
1603
  library: Van Pelt-Dietrich Library Center
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PennMARC
4
- VERSION = '1.2.1'
4
+ VERSION = '1.2.2'
5
5
  end
@@ -209,6 +209,18 @@ describe 'PennMARC::Title' do
209
209
  end
210
210
 
211
211
  describe '.sort' do
212
+ context 'with no 245' do
213
+ let(:record) do
214
+ # Simulate a miscoded record
215
+ marc_record fields: [marc_field(tag: '246', indicator1: '1', indicator2: '4',
216
+ subfields: { a: 'The horn concertos', c: 'Mozart' })]
217
+ end
218
+
219
+ it 'returns nil' do
220
+ expect(helper.sort(record)).to be_nil
221
+ end
222
+ end
223
+
212
224
  context 'with a record with a valid indicator2 value' do
213
225
  let(:record) do
214
226
  marc_record fields: [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pennmarc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Kanning
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2024-09-17 00:00:00.000000000 Z
15
+ date: 2024-10-28 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activesupport