dtk-dsl 1.0.2 → 1.0.3

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 (48) hide show
  1. checksums.yaml +4 -4
  2. data/lib/dsl/input_output_common/canonical/hash_key.rb +1 -0
  3. data/lib/dsl/input_output_common/semantic_parse/hash.rb +5 -0
  4. data/lib/dsl/input_output_common/semantic_parse/mixin.rb +1 -1
  5. data/lib/dsl/service_and_component_info/info/input_files.rb +58 -0
  6. data/lib/dsl/service_and_component_info/info.rb +64 -0
  7. data/lib/dsl/service_and_component_info/module_ref.rb +56 -0
  8. data/lib/dsl/service_and_component_info/parser.rb +58 -0
  9. data/lib/dsl/service_and_component_info/transform_from/info/component.rb +42 -0
  10. data/lib/dsl/service_and_component_info/transform_from/info/input_files.rb +27 -0
  11. data/lib/dsl/service_and_component_info/transform_from/info/service.rb +43 -0
  12. data/lib/dsl/service_and_component_info/transform_from/info.rb +64 -0
  13. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies/node_bindings.rb +81 -0
  14. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies/workflows.rb +37 -0
  15. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies.rb +52 -0
  16. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/components.rb +33 -0
  17. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/dependencies.rb +74 -0
  18. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl/module_info.rb +31 -0
  19. data/lib/dsl/service_and_component_info/transform_from/parser/top_dsl.rb +36 -0
  20. data/lib/dsl/service_and_component_info/transform_from/parser.rb +24 -0
  21. data/lib/dsl/service_and_component_info/transform_from.rb +25 -0
  22. data/lib/dsl/service_and_component_info/transform_to/info/component.rb +70 -0
  23. data/lib/dsl/service_and_component_info/transform_to/info/input_files.rb +36 -0
  24. data/lib/dsl/service_and_component_info/transform_to/info/service.rb +72 -0
  25. data/lib/dsl/service_and_component_info/transform_to/info.rb +51 -0
  26. data/lib/dsl/service_and_component_info/transform_to/parser/component_module/module_refs.rb +27 -0
  27. data/lib/dsl/service_and_component_info/transform_to/parser/component_module/top_dsl.rb +47 -0
  28. data/lib/dsl/service_and_component_info/transform_to/parser/component_module.rb +28 -0
  29. data/lib/dsl/service_and_component_info/transform_to/parser/module_refs.rb +54 -0
  30. data/lib/dsl/service_and_component_info/transform_to/parser/service_module/module_refs.rb +27 -0
  31. data/lib/dsl/service_and_component_info/transform_to/parser/service_module/top_dsl.rb +73 -0
  32. data/lib/dsl/service_and_component_info/transform_to/parser/service_module.rb +28 -0
  33. data/lib/dsl/service_and_component_info/transform_to/parser/top_dsl.rb +36 -0
  34. data/lib/dsl/service_and_component_info/transform_to/parser.rb +39 -0
  35. data/lib/dsl/service_and_component_info/transform_to.rb +25 -0
  36. data/lib/dsl/service_and_component_info.rb +55 -0
  37. data/lib/dsl/template/parsing/mixin.rb +6 -5
  38. data/lib/dsl/template/parsing/parsing_error/subclasses.rb +13 -13
  39. data/lib/dsl/template/v1/common_module.rb +4 -2
  40. data/lib/dsl/template/v1/component.rb +11 -2
  41. data/lib/dsl/template/v1/component_def/semantic_parse.rb +26 -0
  42. data/lib/dsl/template/v1/component_def.rb +52 -0
  43. data/lib/dsl/template/v1/workflow.rb +0 -1
  44. data/lib/dsl/template/v1.rb +1 -0
  45. data/lib/dsl/version.rb +1 -1
  46. data/lib/dsl/yaml_helper.rb +1 -0
  47. data/lib/dtk_dsl.rb +2 -0
  48. metadata +41 -7
@@ -0,0 +1,28 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class ServiceAndComponentInfo::TransformTo
20
+ class Parser
21
+ # parse to form component module files
22
+ module ServiceModule
23
+ require_relative('service_module/top_dsl')
24
+ require_relative('service_module/module_refs')
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,36 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class ServiceAndComponentInfo::TransformTo
20
+ class Parser
21
+ class TopDSL < self
22
+ require_relative('top_dsl/module_info')
23
+ require_relative('top_dsl/assemblies')
24
+ require_relative('top_dsl/components')
25
+ require_relative('top_dsl/dependencies')
26
+ end
27
+
28
+ private
29
+
30
+ def module_ref
31
+ info_object.module_ref
32
+ end
33
+
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,39 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class ServiceAndComponentInfo::TransformTo
20
+ class Parser < ServiceAndComponentInfo::Parser
21
+ require_relative('parser/module_refs')
22
+ require_relative('parser/component_module')
23
+ require_relative('parser/service_module')
24
+
25
+ private
26
+ def update_output_hash__dependencies?
27
+ if component_dsl_canonical_hash = input_file_hash?(:module)
28
+ if dependencies = component_dsl_canonical_hash['dependencies']
29
+ add_dependencies_to_output_hash!(dependencies)
30
+ output_hash
31
+ end
32
+ end
33
+ end
34
+
35
+ def add_dependencies_to_output_hash!(dependencies)
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,25 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class ServiceAndComponentInfo
20
+ class TransformTo < self
21
+ require_relative('transform_to/info')
22
+ require_relative('transform_to/parser')
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,55 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK
19
+ module DSL
20
+ class ServiceAndComponentInfo
21
+ require_relative('service_and_component_info/module_ref')
22
+ require_relative('service_and_component_info/info')
23
+ require_relative('service_and_component_info/parser')
24
+ # info and parser must be before transform_from and transform_to
25
+ require_relative('service_and_component_info/transform_from')
26
+ require_relative('service_and_component_info/transform_to')
27
+
28
+ attr_reader :module_ref, :output_path_hash_pairs
29
+ def initialize(namespace, module_name, version = nil)
30
+ @module_ref = ModuleRef.new(namespace, module_name, version)
31
+
32
+ # dynamically computed
33
+ @output_path_hash_pairs = {}
34
+ end
35
+
36
+ def info_processor(info_type)
37
+ case info_type
38
+ when :service_info then self.class::Info::Service.new(self)
39
+ when :component_info then self.class::Info::Component.new(self)
40
+ else
41
+ fail Error, "Unexpected info_type '#{info_type}'"
42
+ end
43
+ end
44
+
45
+ def output_path_text_pairs
46
+ @output_path_hash_pairs.inject({}) { |h, (path, hash_content)| h.merge(path => YamlHelper.generate(hash_content)) }
47
+ end
48
+
49
+
50
+ def update_or_add_output_hash!(path, hash_content)
51
+ @output_path_hash_pairs.merge!(path => hash_content)
52
+ end
53
+ end
54
+ end
55
+ end
@@ -139,11 +139,12 @@ module DTK::DSL
139
139
  # :input_hash
140
140
  def input_key_and_value?(constant, opts = {})
141
141
  input_hash = opts[:input_hash] || input_hash()
142
- constant_class.matching_key_and_value?(input_hash, constant)
143
- if ret = constant_class.matching_key_and_value?(input_hash, constant)
144
- add_found_key?(ret.keys.first)
142
+ if kv = constant_class.matching_key_and_value?(input_hash, constant)
143
+ unless kv.values.first.nil? # check if value is nil and if so nil is returned
144
+ add_found_key?(kv.keys.first)
145
+ kv
146
+ end
145
147
  end
146
- ret
147
148
  end
148
149
 
149
150
  def parsing_set(constant, val)
@@ -200,7 +201,7 @@ module DTK::DSL
200
201
  # :key
201
202
  # correct_ruby_types can also be scalar
202
203
  def raise_input_error(correct_ruby_types, opts = {})
203
- input = opts[:input] || @input
204
+ input = (opts.has_key?(:input) ? opts[:input] : @input)
204
205
  raise parsing_error_with_opts([:WrongObjectType, input, correct_ruby_types], opts)
205
206
  end
206
207
 
@@ -34,26 +34,26 @@ module DTK::DSL; class Template
34
34
  else
35
35
  "The key's value should be one of the types (#{correct_ruby_types.join(' ')})"
36
36
  end
37
- error_msg << ", but has type #{input_class_string(obj)}"
37
+ error_msg << (obj.nil? ? ", but has null value" : ", but has type #{input_class_string(obj)}")
38
38
  super(error_msg, opts)
39
39
  end
40
40
 
41
41
  private
42
42
 
43
43
  def input_class_string(obj)
44
- klass =
45
- if obj.kind_of?(::Hash)
46
- ::Hash
47
- elsif obj.kind_of?(::Array)
48
- ::Array
49
- elsif obj.kind_of?(::String)
50
- ::String
51
- else
52
- obj.class
53
- end
54
- # demodularize
55
- klass.to_s.split('::').last
44
+ if obj.kind_of?(::Hash)
45
+ 'Hash'
46
+ elsif obj.kind_of?(::Array)
47
+ 'Array'
48
+ elsif obj.kind_of?(::String)
49
+ 'String'
50
+ # elesif ..TODO: should we handle Booleans in special way
51
+ else
52
+ # demodularize
53
+ obj.class.to_s.split('::').last
54
+ end
56
55
  end
56
+
57
57
  end
58
58
  end
59
59
  end
@@ -26,12 +26,14 @@ class DTK::DSL::Template
26
26
  end
27
27
 
28
28
  extend ClassMixin::Constant
29
- Assemblies = 'assemblies'
29
+ Assemblies = 'assemblies'
30
+ ComponentDefs = 'component_defs'
30
31
  end
31
32
 
32
33
  def parse!
33
34
  super
34
- set :Assemblies, parse_child_elements(:assembly, :Assemblies)
35
+ set :Assemblies, parse_child_elements?(:assembly, :Assemblies)
36
+ set :ComponentDefs, parse_child_elements?(:component_def, :ComponentDefs)
35
37
  end
36
38
  end
37
39
  end
@@ -60,7 +60,7 @@ module DTK::DSL
60
60
 
61
61
  ### For generation
62
62
  def self.generate_elements(components_content, parent)
63
- components_content.map do |name, component|
63
+ components_content.map do |name, component|
64
64
  if component_hash = generate_element?(component, parent)
65
65
  component_hash.empty? ? name : { name => component_hash }
66
66
  end
@@ -112,11 +112,20 @@ module DTK::DSL
112
112
  unless input_hash.size == 1 and input_hash.values.first.kind_of?(::Hash)
113
113
  raise parsing_error("Component is ill-formed; it must be string or hash")
114
114
  end
115
+
115
116
  properties = input_hash.values.first
116
- set? :Attributes, parse_child_elements?(:attribute, :Attributes, :input_hash => properties)
117
+ if attributes = properties['attributes']
118
+ set? :Attributes, parse_child_elements?(:attribute, :Attributes, :input_hash => { 'attributes' => attributes })
119
+ end
120
+
121
+ if component_links = properties['component_links']
122
+ set? :ComponentLinks, parse_child_elements?(:component_link, :ComponentLinks, :input_hash => { 'component_links' => component_links})
123
+ end
117
124
 
118
125
  # handle keys not processed
119
126
  properties.delete(Constant::Attributes)
127
+ properties.delete(Constant::ComponentLinks)
128
+
120
129
  merge properties unless properties.empty?
121
130
  end
122
131
 
@@ -0,0 +1,26 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class Template::V1
20
+ class ComponentDef
21
+ class SemanticParse < InputOutputCommon::SemanticParse::Hash
22
+ end
23
+ end
24
+ end
25
+ end
26
+
@@ -0,0 +1,52 @@
1
+ #
2
+ # Copyright (C) 2010-2016 dtk contributors
3
+ #
4
+ # This file is part of the dtk project.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ module DTK::DSL
19
+ class Template
20
+ class V1
21
+ class ComponentDef < self
22
+ require_relative('component_def/semantic_parse')
23
+
24
+ module Constant
25
+ module Variations
26
+ end
27
+
28
+ extend ClassMixin::Constant
29
+ end
30
+
31
+ ### For parsing
32
+ def parser_output_type
33
+ :hash
34
+ end
35
+
36
+ def self.parse_elements(input_hash, parent_info)
37
+ input_hash.inject(file_parser_output_hash) do |h, (name, component_def)|
38
+ h.merge(name => parse_element(component_def, parent_info, :index => name))
39
+ end
40
+ end
41
+
42
+ def parse!
43
+ # TODO: This does not parse and just passes through; parse routines from dtk-server will be migrated
44
+ # here
45
+ merge input_hash
46
+ end
47
+
48
+ end
49
+ end
50
+ end
51
+ end
52
+
@@ -19,7 +19,6 @@ module DTK::DSL
19
19
  class Template
20
20
  class V1
21
21
  class Workflow < self
22
- # TODO: do we want workflow/semantic_parse
23
22
  require_relative('workflow/semantic_parse')
24
23
 
25
24
  module Constant
@@ -24,6 +24,7 @@ module DTK::DSL
24
24
  require_relative('v1/common_module')
25
25
  require_relative('v1/service_instance')
26
26
  require_relative('v1/module_ref')
27
+ require_relative('v1/component_def')
27
28
  require_relative('v1/assembly')
28
29
  require_relative('v1/attribute')
29
30
  require_relative('v1/component_link')
data/lib/dsl/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module DTK
2
2
  module DSL
3
- VERSION="1.0.2"
3
+ VERSION="1.0.3"
4
4
  end
5
5
  end
6
6
 
@@ -27,6 +27,7 @@ module DTK::DSL
27
27
  end
28
28
  end
29
29
 
30
+ # yaml_object can be a ::Hash or child of a ::Hash
30
31
  def self.generate(yaml_object)
31
32
  ::YAML.dump(convert_for_yaml_dump(yaml_object))
32
33
  end
data/lib/dtk_dsl.rb CHANGED
@@ -32,6 +32,8 @@ module DTK
32
32
  require_relative('dsl/file_parser')
33
33
  require_relative('dsl/file_generator')
34
34
  require_relative('dsl/template')
35
+ # file_type needs to go before service_and_component_info
36
+ require_relative('dsl/service_and_component_info')
35
37
 
36
38
  end
37
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtk-dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reactor8
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-09 00:00:00.000000000 Z
11
+ date: 2017-01-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Library for parsing DT DSL files.
14
14
  email: support@reactor8.com
@@ -16,8 +16,8 @@ executables: []
16
16
  extensions: []
17
17
  extra_rdoc_files: []
18
18
  files:
19
- - .byebug_history
20
- - .gitignore
19
+ - ".byebug_history"
20
+ - ".gitignore"
21
21
  - Gemfile
22
22
  - README.md
23
23
  - dtk-dsl.gemspec
@@ -59,6 +59,38 @@ files:
59
59
  - lib/dsl/input_output_common/semantic_parse/hash.rb
60
60
  - lib/dsl/input_output_common/semantic_parse/mixin.rb
61
61
  - lib/dsl/qualified_key.rb
62
+ - lib/dsl/service_and_component_info.rb
63
+ - lib/dsl/service_and_component_info/info.rb
64
+ - lib/dsl/service_and_component_info/info/input_files.rb
65
+ - lib/dsl/service_and_component_info/module_ref.rb
66
+ - lib/dsl/service_and_component_info/parser.rb
67
+ - lib/dsl/service_and_component_info/transform_from.rb
68
+ - lib/dsl/service_and_component_info/transform_from/info.rb
69
+ - lib/dsl/service_and_component_info/transform_from/info/component.rb
70
+ - lib/dsl/service_and_component_info/transform_from/info/input_files.rb
71
+ - lib/dsl/service_and_component_info/transform_from/info/service.rb
72
+ - lib/dsl/service_and_component_info/transform_from/parser.rb
73
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl.rb
74
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies.rb
75
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies/node_bindings.rb
76
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/assemblies/workflows.rb
77
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/components.rb
78
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/dependencies.rb
79
+ - lib/dsl/service_and_component_info/transform_from/parser/top_dsl/module_info.rb
80
+ - lib/dsl/service_and_component_info/transform_to.rb
81
+ - lib/dsl/service_and_component_info/transform_to/info.rb
82
+ - lib/dsl/service_and_component_info/transform_to/info/component.rb
83
+ - lib/dsl/service_and_component_info/transform_to/info/input_files.rb
84
+ - lib/dsl/service_and_component_info/transform_to/info/service.rb
85
+ - lib/dsl/service_and_component_info/transform_to/parser.rb
86
+ - lib/dsl/service_and_component_info/transform_to/parser/component_module.rb
87
+ - lib/dsl/service_and_component_info/transform_to/parser/component_module/module_refs.rb
88
+ - lib/dsl/service_and_component_info/transform_to/parser/component_module/top_dsl.rb
89
+ - lib/dsl/service_and_component_info/transform_to/parser/module_refs.rb
90
+ - lib/dsl/service_and_component_info/transform_to/parser/service_module.rb
91
+ - lib/dsl/service_and_component_info/transform_to/parser/service_module/module_refs.rb
92
+ - lib/dsl/service_and_component_info/transform_to/parser/service_module/top_dsl.rb
93
+ - lib/dsl/service_and_component_info/transform_to/parser/top_dsl.rb
62
94
  - lib/dsl/template.rb
63
95
  - lib/dsl/template/constant_class_mixin.rb
64
96
  - lib/dsl/template/generation.rb
@@ -81,6 +113,8 @@ files:
81
113
  - lib/dsl/template/v1/common_module_summary.rb
82
114
  - lib/dsl/template/v1/component.rb
83
115
  - lib/dsl/template/v1/component/semantic_parse.rb
116
+ - lib/dsl/template/v1/component_def.rb
117
+ - lib/dsl/template/v1/component_def/semantic_parse.rb
84
118
  - lib/dsl/template/v1/component_link.rb
85
119
  - lib/dsl/template/v1/component_link/semantic_parse.rb
86
120
  - lib/dsl/template/v1/dependency.rb
@@ -106,17 +140,17 @@ require_paths:
106
140
  - lib
107
141
  required_ruby_version: !ruby/object:Gem::Requirement
108
142
  requirements:
109
- - - '>='
143
+ - - ">="
110
144
  - !ruby/object:Gem::Version
111
145
  version: 1.9.3
112
146
  required_rubygems_version: !ruby/object:Gem::Requirement
113
147
  requirements:
114
- - - '>='
148
+ - - ">="
115
149
  - !ruby/object:Gem::Version
116
150
  version: '0'
117
151
  requirements: []
118
152
  rubyforge_project:
119
- rubygems_version: 2.0.14.1
153
+ rubygems_version: 2.4.6
120
154
  signing_key:
121
155
  specification_version: 4
122
156
  summary: Library for parsing DT DSL files.