enhanced_marc 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ad98f5c0586a829731494c6607834f40172ecaa
4
- data.tar.gz: 66b1336d2b53c0d3e961369afb600cd9c19f68d2
3
+ metadata.gz: 07c6480defdddee56ed969e37689f68200634a4c
4
+ data.tar.gz: eb238e80e3af04c515c424e988d0705a7a14a259
5
5
  SHA512:
6
- metadata.gz: 01f621f5eed7ccca3d200284d9c0241c65122a134e545837262d78074fe4126388f18b0697fec18c17f8cc6769fdbb70df105be880ea4192c21c540a8ce845b2
7
- data.tar.gz: 6c065bbd2ff56ffff49b31630614252ca302238d0a18753295d506822e0c26b4da12801cc51878a8a69f156ce04a682f25ddaeb0680eb0fa0df5f9d0df09fcf5
6
+ metadata.gz: afc67a8415825b3647041ecb7c52bd0ff113352d8400247fbd96b5a33a2cd90ec20f3fac69c8dbcf096daedaba4dd0c0cb3e4405a433d8a48d9bcd2546cce0bf
7
+ data.tar.gz: aef1d2c9c28e26de017b6405d4e591ef51ea1914bd1ae290162fbfff81405fad33918fd9169f5beca57d24afd22ef30caeba8ce05d32e9b246253048a8fee3c2
data/.gitignore CHANGED
@@ -1,2 +1,4 @@
1
1
 
2
2
  Gemfile.lock
3
+
4
+ *.gem
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 (http://rubyforge.org/projects/marc) to help parse the contents of MARC records more easily and conveniently.
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
  [![Build Status](https://travis-ci.org/rsinger/enhanced-marc.svg?branch=master)](https://travis-ci.org/rsinger/enhanced-marc)
4
4
 
@@ -1,10 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{enhanced_marc}
3
- s.version = "0.3.0"
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{1.3.7}
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.0
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: 2010-09-24 00:00:00.000000000 Z
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:
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # local marc library gets tested
4
- # not already installed one
5
- $LOAD_PATH.unshift("enhanced_marc")