marc 0.1.9 → 0.2.0
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.
- data/Changes +6 -1
- data/Rakefile +2 -1
- data/lib/marc/xmlwriter.rb +1 -0
- metadata +4 -4
data/Changes
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
v0.
|
|
1
|
+
v0.2.0 Wed Jun 11 12:42:20 EDT 2008
|
|
2
|
+
- added newline to output generated by REXML::Formatters::Default to make
|
|
3
|
+
it a bit more friendly. REXML::Formatters::Pretty and Transitive just
|
|
4
|
+
don't do what I want (whitespace in weird places).
|
|
5
|
+
|
|
6
|
+
v0.1.9 Thu Jun 5 12:00:01 EDT 2008
|
|
2
7
|
- small docfix change in XMLReader
|
|
3
8
|
- use REXML::Formatters::Default instead of deprecated REXML::Element.write
|
|
4
9
|
|
data/Rakefile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
RUBY_MARC_VERSION = '0.
|
|
1
|
+
RUBY_MARC_VERSION = '0.2.0'
|
|
2
2
|
|
|
3
3
|
require 'rubygems'
|
|
4
4
|
require 'rake'
|
|
@@ -29,6 +29,7 @@ spec = Gem::Specification.new do |s|
|
|
|
29
29
|
s.require_path = 'lib'
|
|
30
30
|
s.autorequire = 'marc'
|
|
31
31
|
s.has_rdoc = true
|
|
32
|
+
s.required_ruby_version = '>= 1.8.6'
|
|
32
33
|
|
|
33
34
|
s.test_file = 'test/ts_marc.rb'
|
|
34
35
|
s.bindir = 'bin'
|
data/lib/marc/xmlwriter.rb
CHANGED
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: marc
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.
|
|
7
|
-
date: 2008-06-
|
|
6
|
+
version: 0.2.0
|
|
7
|
+
date: 2008-06-11 00:00:00 -04:00
|
|
8
8
|
summary: A ruby library for working with Machine Readable Cataloging
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -18,9 +18,9 @@ bindir: bin
|
|
|
18
18
|
has_rdoc: true
|
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
20
|
requirements:
|
|
21
|
-
- - "
|
|
21
|
+
- - ">="
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version:
|
|
23
|
+
version: 1.8.6
|
|
24
24
|
version:
|
|
25
25
|
platform: ruby
|
|
26
26
|
signing_key:
|