xml-mapping 0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +56 -0
- data/README +386 -0
- data/README_XPATH +175 -0
- data/Rakefile +214 -0
- data/TODO.txt +32 -0
- data/doc/xpath_impl_notes.txt +119 -0
- data/examples/company.rb +34 -0
- data/examples/company.xml +26 -0
- data/examples/company_usage.intin.rb +19 -0
- data/examples/company_usage.intout +39 -0
- data/examples/order.rb +61 -0
- data/examples/order.xml +54 -0
- data/examples/order_signature_enhanced.rb +7 -0
- data/examples/order_signature_enhanced.xml +9 -0
- data/examples/order_signature_enhanced_usage.intin.rb +12 -0
- data/examples/order_signature_enhanced_usage.intout +16 -0
- data/examples/order_usage.intin.rb +73 -0
- data/examples/order_usage.intout +147 -0
- data/examples/time_augm.intin.rb +19 -0
- data/examples/time_augm.intout +23 -0
- data/examples/time_node.rb +27 -0
- data/examples/xpath_create_new.intin.rb +85 -0
- data/examples/xpath_create_new.intout +181 -0
- data/examples/xpath_docvsroot.intin.rb +30 -0
- data/examples/xpath_docvsroot.intout +34 -0
- data/examples/xpath_ensure_created.intin.rb +62 -0
- data/examples/xpath_ensure_created.intout +114 -0
- data/examples/xpath_pathological.intin.rb +42 -0
- data/examples/xpath_pathological.intout +56 -0
- data/examples/xpath_usage.intin.rb +51 -0
- data/examples/xpath_usage.intout +57 -0
- data/install.rb +40 -0
- data/lib/xml/mapping.rb +14 -0
- data/lib/xml/mapping/base.rb +563 -0
- data/lib/xml/mapping/standard_nodes.rb +343 -0
- data/lib/xml/mapping/version.rb +8 -0
- data/lib/xml/xxpath.rb +354 -0
- data/test/all_tests.rb +6 -0
- data/test/company.rb +54 -0
- data/test/documents_folders.rb +33 -0
- data/test/fixtures/bookmarks1.xml +24 -0
- data/test/fixtures/company1.xml +85 -0
- data/test/fixtures/documents_folders.xml +71 -0
- data/test/fixtures/documents_folders2.xml +30 -0
- data/test/multiple_mappings.rb +80 -0
- data/test/tests_init.rb +2 -0
- data/test/xml_mapping_adv_test.rb +84 -0
- data/test/xml_mapping_test.rb +182 -0
- data/test/xpath_test.rb +273 -0
- metadata +96 -0
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.4
|
3
|
+
specification_version: 1
|
4
|
+
name: xml-mapping
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: "0.8"
|
7
|
+
date: 2005-07-07
|
8
|
+
summary: "An easy to use, extensible library for mapping Ruby objects to XML and back.
|
9
|
+
Includes an XPath interpreter."
|
10
|
+
require_paths:
|
11
|
+
- lib
|
12
|
+
email: klischat@cs.tu-berlin.de
|
13
|
+
homepage: http://xml-mapping.rubyforge.org
|
14
|
+
rubyforge_project:
|
15
|
+
description:
|
16
|
+
autorequire: xml/mapping
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.0.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
authors:
|
29
|
+
- Olaf Klischat
|
30
|
+
files:
|
31
|
+
- README
|
32
|
+
- README_XPATH
|
33
|
+
- TODO.txt
|
34
|
+
- doc/xpath_impl_notes.txt
|
35
|
+
- lib/xml
|
36
|
+
- lib/xml/mapping
|
37
|
+
- lib/xml/mapping.rb
|
38
|
+
- lib/xml/xxpath.rb
|
39
|
+
- lib/xml/mapping/version.rb
|
40
|
+
- lib/xml/mapping/base.rb
|
41
|
+
- lib/xml/mapping/standard_nodes.rb
|
42
|
+
- examples/time_augm.intout
|
43
|
+
- examples/company.rb
|
44
|
+
- examples/company.xml
|
45
|
+
- examples/company_usage.intin.rb
|
46
|
+
- examples/order.rb
|
47
|
+
- examples/order.xml
|
48
|
+
- examples/order_signature_enhanced.rb
|
49
|
+
- examples/order_signature_enhanced.xml
|
50
|
+
- examples/order_signature_enhanced_usage.intin.rb
|
51
|
+
- examples/order_usage.intin.rb
|
52
|
+
- examples/time_augm.intin.rb
|
53
|
+
- examples/time_node.rb
|
54
|
+
- examples/xpath_create_new.intin.rb
|
55
|
+
- examples/xpath_docvsroot.intin.rb
|
56
|
+
- examples/xpath_ensure_created.intin.rb
|
57
|
+
- examples/xpath_pathological.intin.rb
|
58
|
+
- examples/xpath_usage.intin.rb
|
59
|
+
- examples/company_usage.intout
|
60
|
+
- examples/xpath_usage.intout
|
61
|
+
- examples/xpath_ensure_created.intout
|
62
|
+
- examples/xpath_create_new.intout
|
63
|
+
- examples/xpath_pathological.intout
|
64
|
+
- examples/xpath_docvsroot.intout
|
65
|
+
- examples/order_signature_enhanced_usage.intout
|
66
|
+
- examples/order_usage.intout
|
67
|
+
- test/fixtures
|
68
|
+
- test/all_tests.rb
|
69
|
+
- test/company.rb
|
70
|
+
- test/documents_folders.rb
|
71
|
+
- test/multiple_mappings.rb
|
72
|
+
- test/tests_init.rb
|
73
|
+
- test/xml_mapping_adv_test.rb
|
74
|
+
- test/xml_mapping_test.rb
|
75
|
+
- test/xpath_test.rb
|
76
|
+
- test/fixtures/bookmarks1.xml
|
77
|
+
- test/fixtures/company1.xml
|
78
|
+
- test/fixtures/documents_folders.xml
|
79
|
+
- test/fixtures/documents_folders2.xml
|
80
|
+
- LICENSE
|
81
|
+
- Rakefile
|
82
|
+
- install.rb
|
83
|
+
test_files:
|
84
|
+
- test/all_tests.rb
|
85
|
+
rdoc_options:
|
86
|
+
- "--include"
|
87
|
+
- examples
|
88
|
+
extra_rdoc_files:
|
89
|
+
- README
|
90
|
+
- README_XPATH
|
91
|
+
- TODO.txt
|
92
|
+
- doc/xpath_impl_notes.txt
|
93
|
+
executables: []
|
94
|
+
extensions: []
|
95
|
+
requirements: []
|
96
|
+
dependencies: []
|