ruby-dap 0.1.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 (123) hide show
  1. checksums.yaml +7 -0
  2. data/AUTHORS +7 -0
  3. data/LICENSE +201 -0
  4. data/lib/dap.rb +21 -0
  5. data/lib/dap/attach_request_arguments.rb +6 -0
  6. data/lib/dap/base.rb +145 -0
  7. data/lib/dap/breakpoint.rb +36 -0
  8. data/lib/dap/breakpoint_event_body.rb +10 -0
  9. data/lib/dap/breakpoint_location.rb +13 -0
  10. data/lib/dap/breakpoint_locations_arguments.rb +18 -0
  11. data/lib/dap/breakpoint_locations_response_body.rb +6 -0
  12. data/lib/dap/cancel_arguments.rb +9 -0
  13. data/lib/dap/capabilities.rb +110 -0
  14. data/lib/dap/capabilities_event_body.rb +6 -0
  15. data/lib/dap/checksum.rb +9 -0
  16. data/lib/dap/checksum_algorithm.rb +6 -0
  17. data/lib/dap/column_descriptor.rb +17 -0
  18. data/lib/dap/completion_item.rb +33 -0
  19. data/lib/dap/completion_item_type.rb +21 -0
  20. data/lib/dap/completions_arguments.rb +13 -0
  21. data/lib/dap/completions_response_body.rb +6 -0
  22. data/lib/dap/continue_arguments.rb +5 -0
  23. data/lib/dap/continue_response_body.rb +5 -0
  24. data/lib/dap/continued_event_body.rb +7 -0
  25. data/lib/dap/data_breakpoint.rb +16 -0
  26. data/lib/dap/data_breakpoint_access_type.rb +5 -0
  27. data/lib/dap/data_breakpoint_info_arguments.rb +8 -0
  28. data/lib/dap/data_breakpoint_info_response_body.rb +15 -0
  29. data/lib/dap/disassemble_arguments.rb +17 -0
  30. data/lib/dap/disassemble_response_body.rb +6 -0
  31. data/lib/dap/disassembled_instruction.rb +32 -0
  32. data/lib/dap/disconnect_arguments.rb +9 -0
  33. data/lib/dap/encoding.rb +47 -0
  34. data/lib/dap/enum.rb +28 -0
  35. data/lib/dap/error_response_body.rb +6 -0
  36. data/lib/dap/evaluate_arguments.rb +23 -0
  37. data/lib/dap/evaluate_response_body.rb +32 -0
  38. data/lib/dap/event.rb +42 -0
  39. data/lib/dap/exception_break_mode.rb +6 -0
  40. data/lib/dap/exception_breakpoints_filter.rb +10 -0
  41. data/lib/dap/exception_details.rb +21 -0
  42. data/lib/dap/exception_info_arguments.rb +4 -0
  43. data/lib/dap/exception_info_response_body.rb +16 -0
  44. data/lib/dap/exception_options.rb +11 -0
  45. data/lib/dap/exception_path_segment.rb +7 -0
  46. data/lib/dap/exited_event_body.rb +4 -0
  47. data/lib/dap/function_breakpoint.rb +13 -0
  48. data/lib/dap/goto_arguments.rb +7 -0
  49. data/lib/dap/goto_target.rb +22 -0
  50. data/lib/dap/goto_targets_arguments.rb +12 -0
  51. data/lib/dap/goto_targets_response_body.rb +6 -0
  52. data/lib/dap/initialize_request_arguments.rb +41 -0
  53. data/lib/dap/instruction_breakpoint.rb +18 -0
  54. data/lib/dap/invalidated_event_body.rb +10 -0
  55. data/lib/dap/launch_request_arguments.rb +9 -0
  56. data/lib/dap/loaded_source_event_body.rb +10 -0
  57. data/lib/dap/loaded_sources_response_body.rb +6 -0
  58. data/lib/dap/message.rb +23 -0
  59. data/lib/dap/module.rb +28 -0
  60. data/lib/dap/module_event_body.rb +10 -0
  61. data/lib/dap/modules_arguments.rb +7 -0
  62. data/lib/dap/modules_response_body.rb +9 -0
  63. data/lib/dap/next_arguments.rb +9 -0
  64. data/lib/dap/output_event_body.rb +36 -0
  65. data/lib/dap/pause_arguments.rb +4 -0
  66. data/lib/dap/process_event_body.rb +21 -0
  67. data/lib/dap/progress_end_event_body.rb +7 -0
  68. data/lib/dap/progress_start_event_body.rb +24 -0
  69. data/lib/dap/progress_update_event_body.rb +10 -0
  70. data/lib/dap/protocol_message.rb +38 -0
  71. data/lib/dap/read_memory_arguments.rb +10 -0
  72. data/lib/dap/read_memory_response_body.rb +12 -0
  73. data/lib/dap/relation.rb +28 -0
  74. data/lib/dap/request.rb +91 -0
  75. data/lib/dap/response.rb +86 -0
  76. data/lib/dap/restart_frame_arguments.rb +4 -0
  77. data/lib/dap/reverse_continue_arguments.rb +4 -0
  78. data/lib/dap/run_in_terminal_request_arguments.rb +17 -0
  79. data/lib/dap/run_in_terminal_response_body.rb +7 -0
  80. data/lib/dap/scope.rb +43 -0
  81. data/lib/dap/scopes_arguments.rb +4 -0
  82. data/lib/dap/scopes_response_body.rb +6 -0
  83. data/lib/dap/set_breakpoints_arguments.rb +16 -0
  84. data/lib/dap/set_breakpoints_response_body.rb +7 -0
  85. data/lib/dap/set_data_breakpoints_arguments.rb +6 -0
  86. data/lib/dap/set_data_breakpoints_response_body.rb +6 -0
  87. data/lib/dap/set_exception_breakpoints_arguments.rb +10 -0
  88. data/lib/dap/set_expression_arguments.rb +15 -0
  89. data/lib/dap/set_expression_response_body.rb +27 -0
  90. data/lib/dap/set_function_breakpoints_arguments.rb +6 -0
  91. data/lib/dap/set_function_breakpoints_response_body.rb +6 -0
  92. data/lib/dap/set_instruction_breakpoints_arguments.rb +6 -0
  93. data/lib/dap/set_instruction_breakpoints_response_body.rb +6 -0
  94. data/lib/dap/set_variable_arguments.rb +15 -0
  95. data/lib/dap/set_variable_response_body.rb +21 -0
  96. data/lib/dap/source.rb +35 -0
  97. data/lib/dap/source_arguments.rb +10 -0
  98. data/lib/dap/source_breakpoint.rb +21 -0
  99. data/lib/dap/source_response_body.rb +7 -0
  100. data/lib/dap/stack_frame.rb +36 -0
  101. data/lib/dap/stack_frame_format.rb +24 -0
  102. data/lib/dap/stack_trace_arguments.rb +16 -0
  103. data/lib/dap/stack_trace_response_body.rb +10 -0
  104. data/lib/dap/step_back_arguments.rb +9 -0
  105. data/lib/dap/step_in_arguments.rb +12 -0
  106. data/lib/dap/step_in_target.rb +7 -0
  107. data/lib/dap/step_in_targets_arguments.rb +4 -0
  108. data/lib/dap/step_in_targets_response_body.rb +6 -0
  109. data/lib/dap/step_out_arguments.rb +9 -0
  110. data/lib/dap/stepping_granularity.rb +5 -0
  111. data/lib/dap/stopped_event_body.rb +23 -0
  112. data/lib/dap/terminate_arguments.rb +4 -0
  113. data/lib/dap/terminate_threads_arguments.rb +4 -0
  114. data/lib/dap/terminated_event_body.rb +5 -0
  115. data/lib/dap/thread.rb +7 -0
  116. data/lib/dap/thread_event_body.rb +8 -0
  117. data/lib/dap/threads_response_body.rb +6 -0
  118. data/lib/dap/value_format.rb +4 -0
  119. data/lib/dap/variable.rb +34 -0
  120. data/lib/dap/variable_presentation_hint.rb +34 -0
  121. data/lib/dap/variables_arguments.rb +20 -0
  122. data/lib/dap/variables_response_body.rb +6 -0
  123. metadata +163 -0
@@ -0,0 +1,6 @@
1
+ require_relative 'step_in_target'
2
+
3
+ class DAP::StepInTargetsResponseBody < DAP::Base
4
+ # The possible stepIn targets of the specified source location.
5
+ property :targets, as: many(DAP::StepInTarget)
6
+ end
@@ -0,0 +1,9 @@
1
+ require_relative 'stepping_granularity'
2
+
3
+ class DAP::StepOutArguments < DAP::Base
4
+ # Execute 'stepOut' for this thread.
5
+ property :threadId
6
+
7
+ # Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed.
8
+ property :granularity, required: false, as: DAP::SteppingGranularity
9
+ end
@@ -0,0 +1,5 @@
1
+ class DAP::SteppingGranularity < DAP::Enum
2
+ STATEMENT = new('statement')
3
+ LINE = new('line')
4
+ INSTRUCTION = new('instruction')
5
+ end
@@ -0,0 +1,23 @@
1
+ class DAP::StoppedEventBody < DAP::Base
2
+ # The reason for the event.
3
+ # For backward compatibility this string is shown in the UI if the 'description' attribute is missing (but it must not be translated).
4
+ # Values: 'step', 'breakpoint', 'exception', 'pause', 'entry', 'goto', 'function breakpoint', 'data breakpoint', 'instruction breakpoint', etc.
5
+ property :reason # 'step' | 'breakpoint' | 'exception' | 'pause' | 'entry' | 'goto' | 'function breakpoint' | 'data breakpoint' | 'instruction breakpoint' | string
6
+
7
+ # The full reason for the event, e.g. 'Paused on exception'. This string is shown in the UI as is and must be translated.
8
+ property :description, required: false
9
+
10
+ # The thread which was stopped.
11
+ property :threadId, required: false
12
+
13
+ # A value of true hints to the frontend that this event should not change the focus.
14
+ property :preserveFocusHint, required: false
15
+
16
+ # Additional information. E.g. if reason is 'exception', text contains the exception name. This string is shown in the UI.
17
+ property :text, required: false
18
+
19
+ # If 'allThreadsStopped' is true, a debug adapter can announce that all threads have stopped.
20
+ # - The client should use this information to enable that all threads can be expanded to access their stacktraces.
21
+ # - If the attribute is missing or false, only the thread with the given threadId can be expanded.
22
+ property :allThreadsStopped, required: false
23
+ end
@@ -0,0 +1,4 @@
1
+ class DAP::TerminateArguments < DAP::Base
2
+ # A value of true indicates that this 'terminate' request is part of a restart sequence.
3
+ property :restart, required: false
4
+ end
@@ -0,0 +1,4 @@
1
+ class DAP::TerminateThreadsArguments < DAP::Base
2
+ # Ids of threads to be terminated.
3
+ property :threadIds, required: false
4
+ end
@@ -0,0 +1,5 @@
1
+ class DAP::TerminatedEventBody < DAP::Base
2
+ # A debug adapter may set 'restart' to true (or to an arbitrary object) to request that the front end restarts the session.
3
+ # The value is not interpreted by the client and passed unmodified as an attribute '__restart' to the 'launch' and 'attach' requests.
4
+ property :restart, required: false
5
+ end
@@ -0,0 +1,7 @@
1
+ class DAP::Thread < DAP::Base
2
+ # Unique identifier for the thread.
3
+ property :id
4
+
5
+ # A name of the thread.
6
+ property :name
7
+ end
@@ -0,0 +1,8 @@
1
+ class DAP::ThreadEventBody < DAP::Base
2
+ # The reason for the event.
3
+ # Values: 'started', 'exited', etc.
4
+ property :reason # 'started' | 'exited' | string
5
+
6
+ # The identifier of the thread.
7
+ property :threadId
8
+ end
@@ -0,0 +1,6 @@
1
+ require_relative 'thread'
2
+
3
+ class DAP::ThreadsResponseBody < DAP::Base
4
+ # All threads.
5
+ property :threads, as: many(DAP::Thread)
6
+ end
@@ -0,0 +1,4 @@
1
+ class DAP::ValueFormat < DAP::Base
2
+ # Display the value in hex.
3
+ property :hex, required: false
4
+ end
@@ -0,0 +1,34 @@
1
+ require_relative 'variable_presentation_hint'
2
+
3
+ class DAP::Variable < DAP::Base
4
+ # The variable's name.
5
+ property :name
6
+
7
+ # The variable's value. This can be a multi-line text, e.g. for a function the body of a function.
8
+ property :value
9
+
10
+ # The type of the variable's value. Typically shown in the UI when hovering over the value.
11
+ # This attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request.
12
+ property :type, required: false
13
+
14
+ # Properties of a variable that can be used to determine how to render the variable in the UI.
15
+ property :presentationHint, required: false, as: DAP::VariablePresentationHint
16
+
17
+ # Optional evaluatable name of this variable which can be passed to the 'EvaluateRequest' to fetch the variable's value.
18
+ property :evaluateName, required: false
19
+
20
+ # If variablesReference is > 0, the variable is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.
21
+ property :variablesReference
22
+
23
+ # The number of named child variables.
24
+ # The client can use this optional information to present the children in a paged UI and fetch them in chunks.
25
+ property :namedVariables, required: false
26
+
27
+ # The number of indexed child variables.
28
+ # The client can use this optional information to present the children in a paged UI and fetch them in chunks.
29
+ property :indexedVariables, required: false
30
+
31
+ # Optional memory reference for the variable if the variable represents executable code, such as a function pointer.
32
+ # This attribute is only required if the client has passed the value true for the 'supportsMemoryReferences' capability of the 'initialize' request.
33
+ property :memoryReference, required: false
34
+ end
@@ -0,0 +1,34 @@
1
+ class DAP::VariablePresentationHint < DAP::Base
2
+ # The kind of variable. Before introducing additional values, try to use the listed values.
3
+ # Values:
4
+ # 'property': Indicates that the object is a property.
5
+ # 'method': Indicates that the object is a method.
6
+ # 'class': Indicates that the object is a class.
7
+ # 'data': Indicates that the object is data.
8
+ # 'event': Indicates that the object is an event.
9
+ # 'baseClass': Indicates that the object is a base class.
10
+ # 'innerClass': Indicates that the object is an inner class.
11
+ # 'interface': Indicates that the object is an interface.
12
+ # 'mostDerivedClass': Indicates that the object is the most derived class.
13
+ # 'virtual': Indicates that the object is virtual, that means it is a synthetic object introducedby the
14
+ # adapter for rendering purposes, e.g. an index range for large arrays.
15
+ # 'dataBreakpoint': Indicates that a data breakpoint is registered for the object.
16
+ # etc.
17
+ property :kind, required: false # 'property' | 'method' | 'class' | 'data' | 'event' | 'baseClass' | 'innerClass' | 'interface' | 'mostDerivedClass' | 'virtual' | 'dataBreakpoint' | string
18
+
19
+ # Set of attributes represented as an array of strings. Before introducing additional values, try to use the listed values.
20
+ # Values:
21
+ # 'static': Indicates that the object is static.
22
+ # 'constant': Indicates that the object is a constant.
23
+ # 'readOnly': Indicates that the object is read only.
24
+ # 'rawString': Indicates that the object is a raw string.
25
+ # 'hasObjectId': Indicates that the object can have an Object ID created for it.
26
+ # 'canHaveObjectId': Indicates that the object has an Object ID associated with it.
27
+ # 'hasSideEffects': Indicates that the evaluation had side effects.
28
+ # etc.
29
+ property :attributes, required: false # ('static' | 'constant' | 'readOnly' | 'rawString' | 'hasObjectId' | 'canHaveObjectId' | 'hasSideEffects' | string)[]
30
+
31
+ # Visibility of variable. Before introducing additional values, try to use the listed values.
32
+ # Values: 'public', 'private', 'protected', 'internal', 'final', etc.
33
+ property :visibility, required: false # 'public' | 'private' | 'protected' | 'internal' | 'final' | string
34
+ end
@@ -0,0 +1,20 @@
1
+ require_relative 'value_format'
2
+
3
+ class DAP::VariablesArguments < DAP::Base
4
+ # The Variable reference.
5
+ property :variablesReference
6
+
7
+ # Optional filter to limit the child variables to either named or indexed. If omitted, both types are fetched.
8
+ # Values: 'indexed', 'named', etc.
9
+ property :filter, required: false # 'indexed' | 'named'
10
+
11
+ # The index of the first variable to return; if omitted children start at 0.
12
+ property :start, required: false
13
+
14
+ # The number of variables to return. If count is missing or 0, all variables are returned.
15
+ property :count, required: false
16
+
17
+ # Specifies details on how to format the Variable values.
18
+ # The attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true.
19
+ property :format, required: false, as: DAP::ValueFormat
20
+ end
@@ -0,0 +1,6 @@
1
+ require_relative 'variable'
2
+
3
+ class DAP::VariablesResponseBody < DAP::Base
4
+ # All (or a range) of variables for the given variable reference.
5
+ property :variables, as: many(DAP::Variable)
6
+ end
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-dap
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ethan Reesor
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-10-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Debug Adapter Protocol parsers and formatters
14
+ email: ethan.reesor@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - AUTHORS
20
+ - LICENSE
21
+ - lib/dap.rb
22
+ - lib/dap/attach_request_arguments.rb
23
+ - lib/dap/base.rb
24
+ - lib/dap/breakpoint.rb
25
+ - lib/dap/breakpoint_event_body.rb
26
+ - lib/dap/breakpoint_location.rb
27
+ - lib/dap/breakpoint_locations_arguments.rb
28
+ - lib/dap/breakpoint_locations_response_body.rb
29
+ - lib/dap/cancel_arguments.rb
30
+ - lib/dap/capabilities.rb
31
+ - lib/dap/capabilities_event_body.rb
32
+ - lib/dap/checksum.rb
33
+ - lib/dap/checksum_algorithm.rb
34
+ - lib/dap/column_descriptor.rb
35
+ - lib/dap/completion_item.rb
36
+ - lib/dap/completion_item_type.rb
37
+ - lib/dap/completions_arguments.rb
38
+ - lib/dap/completions_response_body.rb
39
+ - lib/dap/continue_arguments.rb
40
+ - lib/dap/continue_response_body.rb
41
+ - lib/dap/continued_event_body.rb
42
+ - lib/dap/data_breakpoint.rb
43
+ - lib/dap/data_breakpoint_access_type.rb
44
+ - lib/dap/data_breakpoint_info_arguments.rb
45
+ - lib/dap/data_breakpoint_info_response_body.rb
46
+ - lib/dap/disassemble_arguments.rb
47
+ - lib/dap/disassemble_response_body.rb
48
+ - lib/dap/disassembled_instruction.rb
49
+ - lib/dap/disconnect_arguments.rb
50
+ - lib/dap/encoding.rb
51
+ - lib/dap/enum.rb
52
+ - lib/dap/error_response_body.rb
53
+ - lib/dap/evaluate_arguments.rb
54
+ - lib/dap/evaluate_response_body.rb
55
+ - lib/dap/event.rb
56
+ - lib/dap/exception_break_mode.rb
57
+ - lib/dap/exception_breakpoints_filter.rb
58
+ - lib/dap/exception_details.rb
59
+ - lib/dap/exception_info_arguments.rb
60
+ - lib/dap/exception_info_response_body.rb
61
+ - lib/dap/exception_options.rb
62
+ - lib/dap/exception_path_segment.rb
63
+ - lib/dap/exited_event_body.rb
64
+ - lib/dap/function_breakpoint.rb
65
+ - lib/dap/goto_arguments.rb
66
+ - lib/dap/goto_target.rb
67
+ - lib/dap/goto_targets_arguments.rb
68
+ - lib/dap/goto_targets_response_body.rb
69
+ - lib/dap/initialize_request_arguments.rb
70
+ - lib/dap/instruction_breakpoint.rb
71
+ - lib/dap/invalidated_event_body.rb
72
+ - lib/dap/launch_request_arguments.rb
73
+ - lib/dap/loaded_source_event_body.rb
74
+ - lib/dap/loaded_sources_response_body.rb
75
+ - lib/dap/message.rb
76
+ - lib/dap/module.rb
77
+ - lib/dap/module_event_body.rb
78
+ - lib/dap/modules_arguments.rb
79
+ - lib/dap/modules_response_body.rb
80
+ - lib/dap/next_arguments.rb
81
+ - lib/dap/output_event_body.rb
82
+ - lib/dap/pause_arguments.rb
83
+ - lib/dap/process_event_body.rb
84
+ - lib/dap/progress_end_event_body.rb
85
+ - lib/dap/progress_start_event_body.rb
86
+ - lib/dap/progress_update_event_body.rb
87
+ - lib/dap/protocol_message.rb
88
+ - lib/dap/read_memory_arguments.rb
89
+ - lib/dap/read_memory_response_body.rb
90
+ - lib/dap/relation.rb
91
+ - lib/dap/request.rb
92
+ - lib/dap/response.rb
93
+ - lib/dap/restart_frame_arguments.rb
94
+ - lib/dap/reverse_continue_arguments.rb
95
+ - lib/dap/run_in_terminal_request_arguments.rb
96
+ - lib/dap/run_in_terminal_response_body.rb
97
+ - lib/dap/scope.rb
98
+ - lib/dap/scopes_arguments.rb
99
+ - lib/dap/scopes_response_body.rb
100
+ - lib/dap/set_breakpoints_arguments.rb
101
+ - lib/dap/set_breakpoints_response_body.rb
102
+ - lib/dap/set_data_breakpoints_arguments.rb
103
+ - lib/dap/set_data_breakpoints_response_body.rb
104
+ - lib/dap/set_exception_breakpoints_arguments.rb
105
+ - lib/dap/set_expression_arguments.rb
106
+ - lib/dap/set_expression_response_body.rb
107
+ - lib/dap/set_function_breakpoints_arguments.rb
108
+ - lib/dap/set_function_breakpoints_response_body.rb
109
+ - lib/dap/set_instruction_breakpoints_arguments.rb
110
+ - lib/dap/set_instruction_breakpoints_response_body.rb
111
+ - lib/dap/set_variable_arguments.rb
112
+ - lib/dap/set_variable_response_body.rb
113
+ - lib/dap/source.rb
114
+ - lib/dap/source_arguments.rb
115
+ - lib/dap/source_breakpoint.rb
116
+ - lib/dap/source_response_body.rb
117
+ - lib/dap/stack_frame.rb
118
+ - lib/dap/stack_frame_format.rb
119
+ - lib/dap/stack_trace_arguments.rb
120
+ - lib/dap/stack_trace_response_body.rb
121
+ - lib/dap/step_back_arguments.rb
122
+ - lib/dap/step_in_arguments.rb
123
+ - lib/dap/step_in_target.rb
124
+ - lib/dap/step_in_targets_arguments.rb
125
+ - lib/dap/step_in_targets_response_body.rb
126
+ - lib/dap/step_out_arguments.rb
127
+ - lib/dap/stepping_granularity.rb
128
+ - lib/dap/stopped_event_body.rb
129
+ - lib/dap/terminate_arguments.rb
130
+ - lib/dap/terminate_threads_arguments.rb
131
+ - lib/dap/terminated_event_body.rb
132
+ - lib/dap/thread.rb
133
+ - lib/dap/thread_event_body.rb
134
+ - lib/dap/threads_response_body.rb
135
+ - lib/dap/value_format.rb
136
+ - lib/dap/variable.rb
137
+ - lib/dap/variable_presentation_hint.rb
138
+ - lib/dap/variables_arguments.rb
139
+ - lib/dap/variables_response_body.rb
140
+ homepage: https://gitlab.com/firelizzard/ruby-dap
141
+ licenses:
142
+ - Apache-2.0
143
+ metadata: {}
144
+ post_install_message:
145
+ rdoc_options: []
146
+ require_paths:
147
+ - lib
148
+ required_ruby_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ required_rubygems_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ requirements: []
159
+ rubygems_version: 3.0.3
160
+ signing_key:
161
+ specification_version: 4
162
+ summary: Debug Adapter Protocol
163
+ test_files: []