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.
- checksums.yaml +7 -0
- data/AUTHORS +7 -0
- data/LICENSE +201 -0
- data/lib/dap.rb +21 -0
- data/lib/dap/attach_request_arguments.rb +6 -0
- data/lib/dap/base.rb +145 -0
- data/lib/dap/breakpoint.rb +36 -0
- data/lib/dap/breakpoint_event_body.rb +10 -0
- data/lib/dap/breakpoint_location.rb +13 -0
- data/lib/dap/breakpoint_locations_arguments.rb +18 -0
- data/lib/dap/breakpoint_locations_response_body.rb +6 -0
- data/lib/dap/cancel_arguments.rb +9 -0
- data/lib/dap/capabilities.rb +110 -0
- data/lib/dap/capabilities_event_body.rb +6 -0
- data/lib/dap/checksum.rb +9 -0
- data/lib/dap/checksum_algorithm.rb +6 -0
- data/lib/dap/column_descriptor.rb +17 -0
- data/lib/dap/completion_item.rb +33 -0
- data/lib/dap/completion_item_type.rb +21 -0
- data/lib/dap/completions_arguments.rb +13 -0
- data/lib/dap/completions_response_body.rb +6 -0
- data/lib/dap/continue_arguments.rb +5 -0
- data/lib/dap/continue_response_body.rb +5 -0
- data/lib/dap/continued_event_body.rb +7 -0
- data/lib/dap/data_breakpoint.rb +16 -0
- data/lib/dap/data_breakpoint_access_type.rb +5 -0
- data/lib/dap/data_breakpoint_info_arguments.rb +8 -0
- data/lib/dap/data_breakpoint_info_response_body.rb +15 -0
- data/lib/dap/disassemble_arguments.rb +17 -0
- data/lib/dap/disassemble_response_body.rb +6 -0
- data/lib/dap/disassembled_instruction.rb +32 -0
- data/lib/dap/disconnect_arguments.rb +9 -0
- data/lib/dap/encoding.rb +47 -0
- data/lib/dap/enum.rb +28 -0
- data/lib/dap/error_response_body.rb +6 -0
- data/lib/dap/evaluate_arguments.rb +23 -0
- data/lib/dap/evaluate_response_body.rb +32 -0
- data/lib/dap/event.rb +42 -0
- data/lib/dap/exception_break_mode.rb +6 -0
- data/lib/dap/exception_breakpoints_filter.rb +10 -0
- data/lib/dap/exception_details.rb +21 -0
- data/lib/dap/exception_info_arguments.rb +4 -0
- data/lib/dap/exception_info_response_body.rb +16 -0
- data/lib/dap/exception_options.rb +11 -0
- data/lib/dap/exception_path_segment.rb +7 -0
- data/lib/dap/exited_event_body.rb +4 -0
- data/lib/dap/function_breakpoint.rb +13 -0
- data/lib/dap/goto_arguments.rb +7 -0
- data/lib/dap/goto_target.rb +22 -0
- data/lib/dap/goto_targets_arguments.rb +12 -0
- data/lib/dap/goto_targets_response_body.rb +6 -0
- data/lib/dap/initialize_request_arguments.rb +41 -0
- data/lib/dap/instruction_breakpoint.rb +18 -0
- data/lib/dap/invalidated_event_body.rb +10 -0
- data/lib/dap/launch_request_arguments.rb +9 -0
- data/lib/dap/loaded_source_event_body.rb +10 -0
- data/lib/dap/loaded_sources_response_body.rb +6 -0
- data/lib/dap/message.rb +23 -0
- data/lib/dap/module.rb +28 -0
- data/lib/dap/module_event_body.rb +10 -0
- data/lib/dap/modules_arguments.rb +7 -0
- data/lib/dap/modules_response_body.rb +9 -0
- data/lib/dap/next_arguments.rb +9 -0
- data/lib/dap/output_event_body.rb +36 -0
- data/lib/dap/pause_arguments.rb +4 -0
- data/lib/dap/process_event_body.rb +21 -0
- data/lib/dap/progress_end_event_body.rb +7 -0
- data/lib/dap/progress_start_event_body.rb +24 -0
- data/lib/dap/progress_update_event_body.rb +10 -0
- data/lib/dap/protocol_message.rb +38 -0
- data/lib/dap/read_memory_arguments.rb +10 -0
- data/lib/dap/read_memory_response_body.rb +12 -0
- data/lib/dap/relation.rb +28 -0
- data/lib/dap/request.rb +91 -0
- data/lib/dap/response.rb +86 -0
- data/lib/dap/restart_frame_arguments.rb +4 -0
- data/lib/dap/reverse_continue_arguments.rb +4 -0
- data/lib/dap/run_in_terminal_request_arguments.rb +17 -0
- data/lib/dap/run_in_terminal_response_body.rb +7 -0
- data/lib/dap/scope.rb +43 -0
- data/lib/dap/scopes_arguments.rb +4 -0
- data/lib/dap/scopes_response_body.rb +6 -0
- data/lib/dap/set_breakpoints_arguments.rb +16 -0
- data/lib/dap/set_breakpoints_response_body.rb +7 -0
- data/lib/dap/set_data_breakpoints_arguments.rb +6 -0
- data/lib/dap/set_data_breakpoints_response_body.rb +6 -0
- data/lib/dap/set_exception_breakpoints_arguments.rb +10 -0
- data/lib/dap/set_expression_arguments.rb +15 -0
- data/lib/dap/set_expression_response_body.rb +27 -0
- data/lib/dap/set_function_breakpoints_arguments.rb +6 -0
- data/lib/dap/set_function_breakpoints_response_body.rb +6 -0
- data/lib/dap/set_instruction_breakpoints_arguments.rb +6 -0
- data/lib/dap/set_instruction_breakpoints_response_body.rb +6 -0
- data/lib/dap/set_variable_arguments.rb +15 -0
- data/lib/dap/set_variable_response_body.rb +21 -0
- data/lib/dap/source.rb +35 -0
- data/lib/dap/source_arguments.rb +10 -0
- data/lib/dap/source_breakpoint.rb +21 -0
- data/lib/dap/source_response_body.rb +7 -0
- data/lib/dap/stack_frame.rb +36 -0
- data/lib/dap/stack_frame_format.rb +24 -0
- data/lib/dap/stack_trace_arguments.rb +16 -0
- data/lib/dap/stack_trace_response_body.rb +10 -0
- data/lib/dap/step_back_arguments.rb +9 -0
- data/lib/dap/step_in_arguments.rb +12 -0
- data/lib/dap/step_in_target.rb +7 -0
- data/lib/dap/step_in_targets_arguments.rb +4 -0
- data/lib/dap/step_in_targets_response_body.rb +6 -0
- data/lib/dap/step_out_arguments.rb +9 -0
- data/lib/dap/stepping_granularity.rb +5 -0
- data/lib/dap/stopped_event_body.rb +23 -0
- data/lib/dap/terminate_arguments.rb +4 -0
- data/lib/dap/terminate_threads_arguments.rb +4 -0
- data/lib/dap/terminated_event_body.rb +5 -0
- data/lib/dap/thread.rb +7 -0
- data/lib/dap/thread_event_body.rb +8 -0
- data/lib/dap/threads_response_body.rb +6 -0
- data/lib/dap/value_format.rb +4 -0
- data/lib/dap/variable.rb +34 -0
- data/lib/dap/variable_presentation_hint.rb +34 -0
- data/lib/dap/variables_arguments.rb +20 -0
- data/lib/dap/variables_response_body.rb +6 -0
- metadata +163 -0
@@ -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,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,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
|
data/lib/dap/thread.rb
ADDED
data/lib/dap/variable.rb
ADDED
@@ -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
|
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: []
|