marc 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/lib/marc/writer.rb +1 -1
  3. metadata +1 -1
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- RUBY_MARC_VERSION = '0.3.2'
1
+ RUBY_MARC_VERSION = '0.3.3'
2
2
 
3
3
  require 'rubygems'
4
4
  require 'rake'
data/lib/marc/writer.rb CHANGED
@@ -45,7 +45,7 @@ module MARC
45
45
  field_data = ''
46
46
  if field.class == MARC::DataField
47
47
  warn("Warn: Missing indicator") unless field.indicator1 && field.indicator2
48
- field_data = (field.indicator1 || "z") + (field.indicator2 || "z")
48
+ field_data = (field.indicator1 || " ") + (field.indicator2 || " ")
49
49
  for s in field.subfields
50
50
  field_data += SUBFIELD_INDICATOR + s.code + s.value
51
51
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Clarke