marc-marc4j 0.1.1-java → 0.1.2-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.
- checksums.yaml +4 -4
- data/README.md +8 -4
- data/lib/marc/marc4j/version.rb +3 -3
- data/ruby-marc-marc4j.gemspec +1 -1
- data/test/test_ruby-marc-marc4j.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f60d057d9017883203186adf067c41514877b386
|
4
|
+
data.tar.gz: f732ce31d3140f6060b9b894f9453bcd2bc8342c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70d365f785aeb164acd7feb2d0762fbac2b505a0cda41c0cea5dd8ba4cdf414e8af1a45efa130811dd3db764fa8b7b82321e60694980019c61d34cd4cffcc089
|
7
|
+
data.tar.gz: 89dd75940fa3725192cb3d8f9617363917767dec66c12bd8e22360956877065f3086f827a7008101c1ada098d407fc1c153713bd1fb4a2a216a0748c5c24d2c8
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
[](http://travis-ci.org/billdueber/ruby-marc-marc4j)
|
2
2
|
|
3
3
|
|
4
|
-
#
|
4
|
+
# marc-marc4j
|
5
5
|
|
6
6
|
Convert ruby-marc `MARC::Record` objects to/from java marc4j `org.marc4j.marc.Record` objects under JRuby.
|
7
7
|
|
@@ -12,6 +12,13 @@ spool some functionality out to java code that relies on marc4j obejcts.
|
|
12
12
|
* [Issues](https://github.com/billdueber/ruby-marc-marc4j/issues)
|
13
13
|
|
14
14
|
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
```
|
18
|
+
chruby jruby # or however you use JRuby
|
19
|
+
gem install marc-marc4j
|
20
|
+
```
|
21
|
+
|
15
22
|
## Creating a converter
|
16
23
|
|
17
24
|
You can load up the `marc4j` jar file in three ways:
|
@@ -70,9 +77,6 @@ stick the result somewhere.
|
|
70
77
|
* `marc4j` records are built using a marc4j factory object. This defaults to a `org.marc4j.marc.MarcFactory`, but will
|
71
78
|
use whatever class is in the java system property `org.marc4j.marc.MarcFactory` (as seen in the [marc4j source code](https://github.com/marc4j/marc4j/blob/master/src/org/marc4j/marc/MarcFactory.java#L47)).
|
72
79
|
|
73
|
-
## Install
|
74
|
-
|
75
|
-
$ gem install ruby-marc-marc4j
|
76
80
|
|
77
81
|
## Copyright
|
78
82
|
|
data/lib/marc/marc4j/version.rb
CHANGED
data/ruby-marc-marc4j.gemspec
CHANGED
@@ -4,7 +4,7 @@ require File.expand_path('../lib/marc/marc4j/version', __FILE__)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "marc-marc4j"
|
7
|
-
gem.version =
|
7
|
+
gem.version = MARC::MARC4J::VERSION
|
8
8
|
gem.platform = 'java'
|
9
9
|
gem.summary = %q{convert marc4j and ruby-marc object to/from each other}
|
10
10
|
gem.description = %q{Provides converters (and bundled jar files if you don't already have your own) to convert ruby-marc and marc4j MARC records to/from each other. Works only under jruby)}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: marc-marc4j
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Bill Dueber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: marc
|
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
123
|
version: '0'
|
124
124
|
requirements: []
|
125
125
|
rubyforge_project:
|
126
|
-
rubygems_version: 2.1.
|
126
|
+
rubygems_version: 2.1.5
|
127
127
|
signing_key:
|
128
128
|
specification_version: 4
|
129
129
|
summary: convert marc4j and ruby-marc object to/from each other
|