editx 0.2.0 → 0.2.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.
- data/lib/editx.rb +1 -1
- data/lib/editx/order.rb +1 -1
- metadata +40 -15
data/lib/editx.rb
CHANGED
data/lib/editx/order.rb
CHANGED
|
@@ -35,7 +35,7 @@ module EDItX
|
|
|
35
35
|
# puts msg.to_s
|
|
36
36
|
#
|
|
37
37
|
# The challenge comes in making sure you output a VALID order file. Several elements are
|
|
38
|
-
# compulsory - I
|
|
38
|
+
# compulsory - I recommend having a copy of the spec open to check which elements you
|
|
39
39
|
# need to include, and valid options for elements like fill_terms_code.
|
|
40
40
|
#
|
|
41
41
|
# To check the validity of your output, save it to a file and run xmllint on it, using
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: editx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 21
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 2
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- James Healy
|
|
@@ -9,29 +15,39 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date:
|
|
18
|
+
date: 2010-09-09 00:00:00 +10:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: roxml
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
22
|
+
name: yob-roxml
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ">="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
23
|
-
|
|
24
|
-
|
|
29
|
+
hash: 15
|
|
30
|
+
segments:
|
|
31
|
+
- 3
|
|
32
|
+
- 1
|
|
33
|
+
- 6
|
|
34
|
+
version: 3.1.6
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
25
37
|
- !ruby/object:Gem::Dependency
|
|
26
38
|
name: andand
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
30
42
|
requirements:
|
|
31
43
|
- - ">="
|
|
32
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 3
|
|
46
|
+
segments:
|
|
47
|
+
- 0
|
|
33
48
|
version: "0"
|
|
34
|
-
|
|
49
|
+
type: :runtime
|
|
50
|
+
version_requirements: *id002
|
|
35
51
|
description: A convient mapping between ruby objects and the various EDItX XML specifications
|
|
36
52
|
email: jimmy@deefa.com
|
|
37
53
|
executables: []
|
|
@@ -60,6 +76,9 @@ files:
|
|
|
60
76
|
- schemas/editx_codelists.xsd
|
|
61
77
|
- schemas/order_1_1.xsd
|
|
62
78
|
- schemas/order_1_2.xsd
|
|
79
|
+
- spec/sample_data_spec.rb
|
|
80
|
+
- spec/order_spec.rb
|
|
81
|
+
- spec/spec_helper.rb
|
|
63
82
|
has_rdoc: true
|
|
64
83
|
homepage: http://github.com/yob/editx/tree/master
|
|
65
84
|
licenses: []
|
|
@@ -72,21 +91,27 @@ rdoc_options:
|
|
|
72
91
|
require_paths:
|
|
73
92
|
- lib
|
|
74
93
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
|
+
none: false
|
|
75
95
|
requirements:
|
|
76
96
|
- - ">="
|
|
77
97
|
- !ruby/object:Gem::Version
|
|
98
|
+
hash: 3
|
|
99
|
+
segments:
|
|
100
|
+
- 0
|
|
78
101
|
version: "0"
|
|
79
|
-
version:
|
|
80
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
|
+
none: false
|
|
81
104
|
requirements:
|
|
82
105
|
- - ">="
|
|
83
106
|
- !ruby/object:Gem::Version
|
|
107
|
+
hash: 3
|
|
108
|
+
segments:
|
|
109
|
+
- 0
|
|
84
110
|
version: "0"
|
|
85
|
-
version:
|
|
86
111
|
requirements: []
|
|
87
112
|
|
|
88
113
|
rubyforge_project: rbook
|
|
89
|
-
rubygems_version: 1.3.
|
|
114
|
+
rubygems_version: 1.3.7
|
|
90
115
|
signing_key:
|
|
91
116
|
specification_version: 3
|
|
92
117
|
summary: A convient mapping between ruby objects and the various EDItX XML specifications
|