marc4j4r 1.4.3-java
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/.document +3 -0
- data/.gitignore +4 -0
- data/.yardopts +1 -0
- data/ChangeLog.md +40 -0
- data/Gemfile +16 -0
- data/LICENSE.txt +20 -0
- data/README.md +164 -0
- data/Rakefile +34 -0
- data/jars/jackson-all-1.6.0.jar +0 -0
- data/jars/javamarc.jar +0 -0
- data/jars/marc4j-extra-readers-writers.jar +0 -0
- data/lib/marc4j4r.rb +73 -0
- data/lib/marc4j4r/controlfield.rb +34 -0
- data/lib/marc4j4r/datafield.rb +195 -0
- data/lib/marc4j4r/reader.rb +129 -0
- data/lib/marc4j4r/record.rb +257 -0
- data/lib/marc4j4r/version.rb +4 -0
- data/lib/marc4j4r/writer.rb +34 -0
- data/marc4j4r.gemspec +21 -0
- data/spec/alephsequentialreader_spec.rb +111 -0
- data/spec/bad.dat +1 -0
- data/spec/badbatch.dat +1 -0
- data/spec/badbatch.xml +13 -0
- data/spec/batch.dat +1 -0
- data/spec/batch.txt +193 -0
- data/spec/batch.xml +13 -0
- data/spec/chinese_utf8.dat +1 -0
- data/spec/controlfield_spec.rb +42 -0
- data/spec/datafield_spec.rb +115 -0
- data/spec/errors.seq +118 -0
- data/spec/helper.rb +21 -0
- data/spec/one.dat +1 -0
- data/spec/one.txt +17 -0
- data/spec/one.xml +4 -0
- data/spec/reader_spec.rb +112 -0
- data/spec/record_spec.rb +146 -0
- data/spec/test_marc4j4r.rb +12 -0
- data/spec/three.seq +118 -0
- metadata +116 -0
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: marc4j4r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 1.4.3
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- Bill Dueber
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2013-02-20 00:00:00 Z
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Syntactic sugar and some extra methods to deal with MARC data using a fork of the excellent java library marc4j
|
17
|
+
email: bill@dueber.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- .document
|
26
|
+
- .gitignore
|
27
|
+
- .yardopts
|
28
|
+
- ChangeLog.md
|
29
|
+
- Gemfile
|
30
|
+
- LICENSE.txt
|
31
|
+
- README.md
|
32
|
+
- Rakefile
|
33
|
+
- jars/jackson-all-1.6.0.jar
|
34
|
+
- jars/javamarc.jar
|
35
|
+
- jars/marc4j-extra-readers-writers.jar
|
36
|
+
- lib/marc4j4r.rb
|
37
|
+
- lib/marc4j4r/controlfield.rb
|
38
|
+
- lib/marc4j4r/datafield.rb
|
39
|
+
- lib/marc4j4r/reader.rb
|
40
|
+
- lib/marc4j4r/record.rb
|
41
|
+
- lib/marc4j4r/version.rb
|
42
|
+
- lib/marc4j4r/writer.rb
|
43
|
+
- marc4j4r.gemspec
|
44
|
+
- spec/alephsequentialreader_spec.rb
|
45
|
+
- spec/bad.dat
|
46
|
+
- spec/badbatch.dat
|
47
|
+
- spec/badbatch.xml
|
48
|
+
- spec/batch.dat
|
49
|
+
- spec/batch.txt
|
50
|
+
- spec/batch.xml
|
51
|
+
- spec/chinese_utf8.dat
|
52
|
+
- spec/controlfield_spec.rb
|
53
|
+
- spec/datafield_spec.rb
|
54
|
+
- spec/errors.seq
|
55
|
+
- spec/helper.rb
|
56
|
+
- spec/one.dat
|
57
|
+
- spec/one.txt
|
58
|
+
- spec/one.xml
|
59
|
+
- spec/reader_spec.rb
|
60
|
+
- spec/record_spec.rb
|
61
|
+
- spec/test_marc4j4r.rb
|
62
|
+
- spec/three.seq
|
63
|
+
homepage: https://github.com/billdueber/marc4j4r#readme
|
64
|
+
licenses:
|
65
|
+
- MIT
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
hash: 2
|
77
|
+
segments:
|
78
|
+
- 0
|
79
|
+
version: "0"
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
hash: 2
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
version: "0"
|
89
|
+
requirements: []
|
90
|
+
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 1.8.24
|
93
|
+
signing_key:
|
94
|
+
specification_version: 3
|
95
|
+
summary: A minimal jruby wrapper around marc4j (http://marc4j.tigris.com)
|
96
|
+
test_files:
|
97
|
+
- spec/alephsequentialreader_spec.rb
|
98
|
+
- spec/bad.dat
|
99
|
+
- spec/badbatch.dat
|
100
|
+
- spec/badbatch.xml
|
101
|
+
- spec/batch.dat
|
102
|
+
- spec/batch.txt
|
103
|
+
- spec/batch.xml
|
104
|
+
- spec/chinese_utf8.dat
|
105
|
+
- spec/controlfield_spec.rb
|
106
|
+
- spec/datafield_spec.rb
|
107
|
+
- spec/errors.seq
|
108
|
+
- spec/helper.rb
|
109
|
+
- spec/one.dat
|
110
|
+
- spec/one.txt
|
111
|
+
- spec/one.xml
|
112
|
+
- spec/reader_spec.rb
|
113
|
+
- spec/record_spec.rb
|
114
|
+
- spec/test_marc4j4r.rb
|
115
|
+
- spec/three.seq
|
116
|
+
has_rdoc:
|