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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01b184f12d6a090c5820597352efca6d960a6298
4
- data.tar.gz: b59eeaf411e501f5aaf74353bf0b296bd2e3d3c9
3
+ metadata.gz: f60d057d9017883203186adf067c41514877b386
4
+ data.tar.gz: f732ce31d3140f6060b9b894f9453bcd2bc8342c
5
5
  SHA512:
6
- metadata.gz: 9ec350093dfde8b6911d683b234d64e04ea4118049e3cff06db6974c3a9f0cabeeee4b65ac0ee907a44da494134b90f14f4ab717e429d65554faea7485e92e13
7
- data.tar.gz: 24da9e85db811396e31c2fa622c679698d03e4ea35c248e17086bd9aa1c12755bb9a354883ff4eb336ade03e610b6e5da1296a0b9ce2a1c388a88a4978d139fd
6
+ metadata.gz: 70d365f785aeb164acd7feb2d0762fbac2b505a0cda41c0cea5dd8ba4cdf414e8af1a45efa130811dd3db764fa8b7b82321e60694980019c61d34cd4cffcc089
7
+ data.tar.gz: 89dd75940fa3725192cb3d8f9617363917767dec66c12bd8e22360956877065f3086f827a7008101c1ada098d407fc1c153713bd1fb4a2a216a0748c5c24d2c8
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  [![Build Status](https://secure.travis-ci.org/billdueber/ruby-marc-marc4j.png)](http://travis-ci.org/billdueber/ruby-marc-marc4j)
2
2
 
3
3
 
4
- # ruby-marc-marc4j
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
 
@@ -1,6 +1,6 @@
1
- module Marc
2
- module Marc4j
1
+ module MARC
2
+ class MARC4J
3
3
  # ruby-marc-marc4j version
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
@@ -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 = Marc::Marc4j::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)}
@@ -8,7 +8,7 @@ require 'test_helper'
8
8
  describe "basics" do
9
9
 
10
10
  it "has a version" do
11
- version = Marc::Marc4j.const_get('VERSION')
11
+ version = MARC::MARC4J.const_get('VERSION')
12
12
  assert !version.empty?, 'should have a VERSION constant'
13
13
  end
14
14
 
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.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-09-12 00:00:00.000000000 Z
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.2
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