rsinger-enhanced_marc 0.1 → 0.1.2
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/README +2 -2
- data/Rakefile +17 -0
- data/VERSION +1 -0
- data/enhanced_marc-0.1.gem +0 -0
- data/lib/enhanced_marc/book_record.rb +37 -0
- data/lib/enhanced_marc/book_type.rb +86 -0
- data/lib/enhanced_marc/computer_record.rb +37 -0
- data/lib/enhanced_marc/computer_type.rb +14 -0
- data/lib/enhanced_marc/leader.rb +132 -0
- data/lib/enhanced_marc/leftovers.rb +122 -0
- data/lib/enhanced_marc/map_record.rb +38 -0
- data/lib/enhanced_marc/map_type.rb +99 -0
- data/lib/enhanced_marc/mixed_record.rb +37 -0
- data/lib/enhanced_marc/mixed_type.rb +4 -0
- data/lib/enhanced_marc/reader.rb +101 -0
- data/lib/enhanced_marc/record.rb +81 -0
- data/lib/enhanced_marc/record_type.rb +309 -0
- data/lib/enhanced_marc/score_record.rb +38 -0
- data/lib/enhanced_marc/score_type.rb +4 -0
- data/lib/enhanced_marc/serial_record.rb +37 -0
- data/lib/enhanced_marc/serial_type.rb +87 -0
- data/lib/enhanced_marc/sound_record.rb +37 -0
- data/lib/enhanced_marc/sound_type.rb +4 -0
- data/lib/enhanced_marc/visual_record.rb +37 -0
- data/lib/enhanced_marc/visual_type.rb +38 -0
- data/lib/enhanced_marc/xmlreader.rb +58 -0
- data/lib/enhanced_marc.rb +22 -0
- data/pkg/enhanced_marc-0.1/Changes +1 -0
- data/pkg/enhanced_marc-0.1/LICENSE +21 -0
- data/pkg/enhanced_marc-0.1/README +51 -0
- data/pkg/enhanced_marc-0.1/Rakefile +23 -0
- data/pkg/enhanced_marc-0.1/test/ts_enhanced_marc.rb +5 -0
- data/pkg/enhanced_marc-0.1.gem +0 -0
- data/pkg/enhanced_marc-0.1.tgz +0 -0
- data/pkg/enhanced_marc-0.1.zip +0 -0
- metadata +47 -12
@@ -0,0 +1,23 @@
|
|
1
|
+
RUBY_ENHANCED_MARC_VERSION = '0.1'
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'rake'
|
5
|
+
require 'rake/testtask'
|
6
|
+
require 'rake/rdoctask'
|
7
|
+
require 'rake/packagetask'
|
8
|
+
require 'rake/gempackagetask'
|
9
|
+
|
10
|
+
task :default => [:test]
|
11
|
+
|
12
|
+
Rake::TestTask.new('test') do |t|
|
13
|
+
t.libs << 'lib'
|
14
|
+
t.pattern = 'test/tc_*.rb'
|
15
|
+
t.verbose = true
|
16
|
+
t.ruby_opts = ['-r marc', '-r test/unit']
|
17
|
+
end
|
18
|
+
|
19
|
+
Rake::RDocTask.new('doc') do |rd|
|
20
|
+
rd.rdoc_files.include("enhanced_marc/**/*.rb")
|
21
|
+
rd.main = 'MARC::Record'
|
22
|
+
rd.rdoc_dir = 'doc'
|
23
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsinger-enhanced_marc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ross Singer
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-17 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -28,26 +28,61 @@ executables: []
|
|
28
28
|
|
29
29
|
extensions: []
|
30
30
|
|
31
|
-
extra_rdoc_files:
|
32
|
-
|
33
|
-
files:
|
34
|
-
- Rakefile
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
35
33
|
- README
|
34
|
+
files:
|
36
35
|
- Changes
|
37
36
|
- LICENSE
|
38
|
-
|
37
|
+
- README
|
38
|
+
- Rakefile
|
39
|
+
- VERSION
|
40
|
+
- enhanced_marc-0.1.gem
|
41
|
+
- lib/enhanced_marc.rb
|
42
|
+
- lib/enhanced_marc/book_record.rb
|
43
|
+
- lib/enhanced_marc/book_type.rb
|
44
|
+
- lib/enhanced_marc/computer_record.rb
|
45
|
+
- lib/enhanced_marc/computer_type.rb
|
46
|
+
- lib/enhanced_marc/leader.rb
|
47
|
+
- lib/enhanced_marc/leftovers.rb
|
48
|
+
- lib/enhanced_marc/map_record.rb
|
49
|
+
- lib/enhanced_marc/map_type.rb
|
50
|
+
- lib/enhanced_marc/mixed_record.rb
|
51
|
+
- lib/enhanced_marc/mixed_type.rb
|
52
|
+
- lib/enhanced_marc/reader.rb
|
53
|
+
- lib/enhanced_marc/record.rb
|
54
|
+
- lib/enhanced_marc/record_type.rb
|
55
|
+
- lib/enhanced_marc/score_record.rb
|
56
|
+
- lib/enhanced_marc/score_type.rb
|
57
|
+
- lib/enhanced_marc/serial_record.rb
|
58
|
+
- lib/enhanced_marc/serial_type.rb
|
59
|
+
- lib/enhanced_marc/sound_record.rb
|
60
|
+
- lib/enhanced_marc/sound_type.rb
|
61
|
+
- lib/enhanced_marc/visual_record.rb
|
62
|
+
- lib/enhanced_marc/visual_type.rb
|
63
|
+
- lib/enhanced_marc/xmlreader.rb
|
64
|
+
- pkg/enhanced_marc-0.1.gem
|
65
|
+
- pkg/enhanced_marc-0.1.tgz
|
66
|
+
- pkg/enhanced_marc-0.1.zip
|
67
|
+
- pkg/enhanced_marc-0.1/Changes
|
68
|
+
- pkg/enhanced_marc-0.1/LICENSE
|
69
|
+
- pkg/enhanced_marc-0.1/README
|
70
|
+
- pkg/enhanced_marc-0.1/Rakefile
|
71
|
+
- pkg/enhanced_marc-0.1/test/ts_enhanced_marc.rb
|
72
|
+
- test/ts_enhanced_marc.rb
|
73
|
+
has_rdoc: false
|
39
74
|
homepage: http://github.com/rsinger/enhanced-marc/tree
|
40
75
|
licenses:
|
41
76
|
post_install_message:
|
42
|
-
rdoc_options:
|
43
|
-
|
77
|
+
rdoc_options:
|
78
|
+
- --charset=UTF-8
|
44
79
|
require_paths:
|
45
80
|
- lib
|
46
81
|
required_ruby_version: !ruby/object:Gem::Requirement
|
47
82
|
requirements:
|
48
83
|
- - ">="
|
49
84
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
85
|
+
version: "0"
|
51
86
|
version:
|
52
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
88
|
requirements:
|
@@ -60,7 +95,7 @@ requirements: []
|
|
60
95
|
rubyforge_project:
|
61
96
|
rubygems_version: 1.3.5
|
62
97
|
signing_key:
|
63
|
-
specification_version:
|
64
|
-
summary: A
|
98
|
+
specification_version: 3
|
99
|
+
summary: A DSL for MARC data
|
65
100
|
test_files:
|
66
101
|
- test/ts_enhanced_marc.rb
|