ruby-dap 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +16 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68c843969c7c0f9e2792f38c244de4c832ef974878784fd08875a9a594fde536
|
4
|
+
data.tar.gz: 5beafd8c66698cf20b7c47658ccf01b6244080020d83423c1c653865e67e60f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53b88f4a5564c551ec1eb398ea392353d50e1220f904403f6fb6dff55174981873b9b290ce6a0c2bf31da0581235059fa5cf73f0114b32376f72008575bed13f
|
7
|
+
data.tar.gz: f82ff5292f6fc4246ceee4f81bbe7a5f11d6fecaccfe343b9cd547297b4829a1fd6d6899db16c8e833db35c9b29ebdc0088b9be6c03b8ec26bfb1e54332aefda
|
data/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Ruby Debug Adapter Protocol
|
2
|
+
|
3
|
+
This gem provides models, parsers, and formatters for the [Debug Adapter
|
4
|
+
Protocol](https://microsoft.github.io/debug-adapter-protocol).
|
5
|
+
|
6
|
+
## Updating Definitions
|
7
|
+
|
8
|
+
The [converter](convert.rb) script can be used to convert TypeScript definitions
|
9
|
+
from the [DAP
|
10
|
+
specification](https://microsoft.github.io/debug-adapter-protocol/specification)
|
11
|
+
to Ruby classes. To regenerate the Ruby classes, set `PRETEND = false` in the
|
12
|
+
file and run `echo <spec> | ruby convert.rb -` or `ruby convert.rb <spec-file>`.
|
13
|
+
If the input contains multiple files, `convert.rb` expects them to be separated
|
14
|
+
with `\n\n// ---\n\n`. All of the specs can be extracted at once by running
|
15
|
+
`$('.language-typescript').toArray().map(x => x.innerText).join('\n\n//
|
16
|
+
---\n\n')` in the browser JavaScript console.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-dap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan Reesor
|
@@ -18,6 +18,7 @@ extra_rdoc_files: []
|
|
18
18
|
files:
|
19
19
|
- AUTHORS
|
20
20
|
- LICENSE
|
21
|
+
- README.md
|
21
22
|
- lib/dap.rb
|
22
23
|
- lib/dap/attach_request_arguments.rb
|
23
24
|
- lib/dap/base.rb
|