baldr 0.3.7 → 0.3.8
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/baldr/grammar/version4010/set315.rb +29 -0
- data/lib/baldr/version.rb +1 -1
- data/lib/baldr.rb +1 -0
- metadata +2 -1
@@ -0,0 +1,29 @@
|
|
1
|
+
module Baldr::Grammar::Version4010::Set315
|
2
|
+
|
3
|
+
extend self
|
4
|
+
|
5
|
+
def structure
|
6
|
+
STRUCTURE
|
7
|
+
end
|
8
|
+
|
9
|
+
def record_defs
|
10
|
+
Baldr::Grammar::Version4010::RECORD_DEFS
|
11
|
+
end
|
12
|
+
|
13
|
+
FUNCTIONAL_GROUP = 'QO'
|
14
|
+
|
15
|
+
STRUCTURE = {
|
16
|
+
id: 'ST', min: 1, max: 1, level: [
|
17
|
+
{id: 'B4', min: 1, max: 1},
|
18
|
+
{id: 'N9', min: 0, max: 30},
|
19
|
+
{id: 'Q2', min: 0, max: 1},
|
20
|
+
{id: 'SG', min: 0, max: 15},
|
21
|
+
{id: 'R4', min: 1, max: 20, level: [
|
22
|
+
{id: 'DTM', min: 0, max: 15},
|
23
|
+
]},
|
24
|
+
{id: 'V9', min: 0, max: 10},
|
25
|
+
{id: 'SE', min: 1, max: 1},
|
26
|
+
]
|
27
|
+
}.freeze
|
28
|
+
|
29
|
+
end
|
data/lib/baldr/version.rb
CHANGED
data/lib/baldr.rb
CHANGED
@@ -27,6 +27,7 @@ require 'baldr/grammar/version4010'
|
|
27
27
|
require 'baldr/grammar/version4010/set204'
|
28
28
|
require 'baldr/grammar/version4010/set210'
|
29
29
|
require 'baldr/grammar/version4010/set214'
|
30
|
+
require 'baldr/grammar/version4010/set315'
|
30
31
|
require 'baldr/grammar/version4010/set810'
|
31
32
|
require 'baldr/grammar/version4010/set850'
|
32
33
|
require 'baldr/grammar/version4010/set855'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: baldr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -47,6 +47,7 @@ files:
|
|
47
47
|
- lib/baldr/grammar/version4010/set204.rb
|
48
48
|
- lib/baldr/grammar/version4010/set210.rb
|
49
49
|
- lib/baldr/grammar/version4010/set214.rb
|
50
|
+
- lib/baldr/grammar/version4010/set315.rb
|
50
51
|
- lib/baldr/grammar/version4010/set810.rb
|
51
52
|
- lib/baldr/grammar/version4010/set850.rb
|
52
53
|
- lib/baldr/grammar/version4010/set855.rb
|