enhanced_marc 0.3.0 → 0.3.1
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/.gitignore +2 -0
- data/README.md +1 -1
- data/enhanced_marc.gemspec +2 -6
- metadata +3 -5
- data/test/ts_enhanced_marc.rb +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07c6480defdddee56ed969e37689f68200634a4c
|
|
4
|
+
data.tar.gz: eb238e80e3af04c515c424e988d0705a7a14a259
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afc67a8415825b3647041ecb7c52bd0ff113352d8400247fbd96b5a33a2cd90ec20f3fac69c8dbcf096daedaba4dd0c0cb3e4405a433d8a48d9bcd2546cce0bf
|
|
7
|
+
data.tar.gz: aef1d2c9c28e26de017b6405d4e591ef51ea1914bd1ae290162fbfff81405fad33918fd9169f5beca57d24afd22ef30caeba8ce05d32e9b246253048a8fee3c2
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Enhanced MARC is a set of classes, modules and methods that sit on top of ruby-marc (
|
|
1
|
+
Enhanced MARC is a set of classes, modules and methods that sit on top of ruby-marc (https://github.com/ruby-marc/ruby-marc) to help parse the contents of MARC records more easily and conveniently.
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/rsinger/enhanced-marc)
|
|
4
4
|
|
data/enhanced_marc.gemspec
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{enhanced_marc}
|
|
3
|
-
s.version = "0.3.
|
|
3
|
+
s.version = "0.3.1"
|
|
4
4
|
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
6
6
|
s.authors = ["Ross Singer"]
|
|
7
|
-
s.date = %q{2010-09-24}
|
|
8
7
|
s.description = %q{A set of enhancements to ruby-marc to make parsing MARC data easier}
|
|
9
8
|
s.email = %q{rossfsinger@gmail.com}
|
|
10
9
|
s.extra_rdoc_files = [
|
|
@@ -15,11 +14,8 @@ Gem::Specification.new do |s|
|
|
|
15
14
|
s.homepage = %q{http://github.com/rsinger/enhanced-marc/tree}
|
|
16
15
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
17
16
|
s.require_paths = ["lib"]
|
|
18
|
-
s.rubygems_version = %q{
|
|
17
|
+
s.rubygems_version = %q{2.0.0}
|
|
19
18
|
s.summary = %q{A DSL for MARC data}
|
|
20
|
-
s.test_files = [
|
|
21
|
-
"test/ts_enhanced_marc.rb"
|
|
22
|
-
]
|
|
23
19
|
|
|
24
20
|
if s.respond_to? :specification_version then
|
|
25
21
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: enhanced_marc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ross Singer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: marc
|
|
@@ -88,7 +88,6 @@ files:
|
|
|
88
88
|
- pkg/enhanced_marc-0.1/README
|
|
89
89
|
- pkg/enhanced_marc-0.1/Rakefile
|
|
90
90
|
- pkg/enhanced_marc-0.1/test/ts_enhanced_marc.rb
|
|
91
|
-
- test/ts_enhanced_marc.rb
|
|
92
91
|
homepage: http://github.com/rsinger/enhanced-marc/tree
|
|
93
92
|
licenses: []
|
|
94
93
|
metadata: {}
|
|
@@ -113,6 +112,5 @@ rubygems_version: 2.4.5.1
|
|
|
113
112
|
signing_key:
|
|
114
113
|
specification_version: 3
|
|
115
114
|
summary: A DSL for MARC data
|
|
116
|
-
test_files:
|
|
117
|
-
- test/ts_enhanced_marc.rb
|
|
115
|
+
test_files: []
|
|
118
116
|
has_rdoc:
|