xml-mapping 0.9.1 → 0.10.0

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.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +10 -53
  3. data/README.md +57 -0
  4. data/Rakefile +75 -85
  5. data/TODO.txt +12 -2
  6. data/examples/README +4 -4
  7. data/examples/cleanup.rb +11 -0
  8. data/examples/company_usage.intout +7 -7
  9. data/examples/documents_folders_usage.intout +2 -2
  10. data/examples/order_signature_enhanced_usage.intout +3 -3
  11. data/examples/order_usage.intout +26 -26
  12. data/examples/person.intout +3 -3
  13. data/examples/person_mm.intout +2 -2
  14. data/examples/publication.intout +2 -2
  15. data/examples/reader.intout +1 -1
  16. data/examples/stringarray_usage.intout +1 -1
  17. data/examples/time_augm.intout +6 -6
  18. data/examples/xpath_create_new.intout +13 -13
  19. data/examples/xpath_ensure_created.intout +2 -2
  20. data/examples/xpath_usage.intout +1 -1
  21. data/lib/xml/mapping.rb +0 -2
  22. data/lib/xml/mapping/base.rb +24 -9
  23. data/lib/xml/mapping/version.rb +1 -1
  24. data/test/company.rb +43 -0
  25. data/test/documents_folders.rb +7 -0
  26. data/test/multiple_mappings_test.rb +3 -1
  27. data/test/xml_mapping_adv_test.rb +20 -20
  28. data/test/xml_mapping_test.rb +31 -2
  29. data/{README → user_manual.md} +916 -154
  30. data/user_manual_xxpath.md +677 -0
  31. metadata +100 -112
  32. data/ChangeLog +0 -189
  33. data/README_XPATH +0 -202
  34. data/examples/company_usage.intin.rb +0 -19
  35. data/examples/documents_folders_usage.intin.rb +0 -18
  36. data/examples/order_signature_enhanced_usage.intin.rb +0 -12
  37. data/examples/order_usage.intin.rb +0 -120
  38. data/examples/person.intin.rb +0 -44
  39. data/examples/person_mm.intin.rb +0 -119
  40. data/examples/publication.intin.rb +0 -44
  41. data/examples/reader.intin.rb +0 -33
  42. data/examples/stringarray_usage.intin.rb +0 -11
  43. data/examples/time_augm.intin.rb +0 -19
  44. data/examples/time_augm_loading.intin.rb +0 -44
  45. data/examples/time_node.intin.rb +0 -79
  46. data/examples/time_node_w_marshallers.intin.rb +0 -48
  47. data/examples/xpath_create_new.intin.rb +0 -85
  48. data/examples/xpath_docvsroot.intin.rb +0 -30
  49. data/examples/xpath_ensure_created.intin.rb +0 -62
  50. data/examples/xpath_pathological.intin.rb +0 -42
  51. data/examples/xpath_usage.intin.rb +0 -51
  52. data/install.rb +0 -41
  53. data/test/xxpath_benchmark.result1.txt +0 -17
data/install.rb DELETED
@@ -1,41 +0,0 @@
1
- require 'rbconfig'
2
- require 'find'
3
- require 'ftools'
4
-
5
- include Config
6
-
7
- # this was adapted from active_record's install.rb
8
-
9
- $sitedir = CONFIG["sitelibdir"]
10
- unless $sitedir
11
- version = CONFIG["MAJOR"] + "." + CONFIG["MINOR"]
12
- $libdir = File.join(CONFIG["libdir"], "ruby", version)
13
- $sitedir = $:.find {|x| x =~ /site_ruby/ }
14
- if !$sitedir
15
- $sitedir = File.join($libdir, "site_ruby")
16
- elsif $sitedir !~ Regexp.quote(version)
17
- $sitedir = File.join($sitedir, version)
18
- end
19
- end
20
-
21
-
22
- # deprecated files that should be removed
23
- # deprecated = %w{ }
24
-
25
- # files to install in library path
26
- files = %w-
27
- xml/mapping.rb
28
- xml/xxpath.rb
29
- xml/xxpath_methods.rb
30
- xml/mapping/base.rb
31
- xml/mapping/standard_nodes.rb
32
- xml/mapping/version.rb
33
- -
34
-
35
- # the acual gruntwork
36
- Dir.chdir("lib")
37
- # File::safe_unlink *deprecated.collect{|f| File.join($sitedir, f.split(/\//))}
38
- files.each {|f|
39
- File::makedirs(File.join($sitedir, *f.split(/\//)[0..-2]))
40
- File::install(f, File.join($sitedir, *f.split(/\//)), 0644, true)
41
- }
@@ -1,17 +0,0 @@
1
- 17.2.06
2
-
3
- (500 runs)
4
- Rehearsal ------------------------------------------------
5
- by_name 0.560000 0.040000 0.600000 ( 0.600790)
6
- by_idx 0.380000 0.020000 0.400000 ( 0.402161)
7
- by_idx_idx 0.540000 0.050000 0.590000 ( 0.596949)
8
- by_attr_idx 0.520000 0.060000 0.580000 ( 0.568362)
9
- path_by_attr 0.100000 0.000000 0.100000 ( 0.096042)
10
- --------------------------------------- total: 2.270000sec
11
-
12
- user system total real
13
- by_name 0.550000 0.070000 0.620000 ( 0.622124)
14
- by_idx 0.380000 0.040000 0.420000 ( 0.418242)
15
- by_idx_idx 0.540000 0.040000 0.580000 ( 0.586023)
16
- by_attr_idx 0.570000 0.030000 0.600000 ( 0.593609)
17
- path_by_attr 0.070000 0.010000 0.080000 ( 0.078452)