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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7593ebb23913d8819ff7dac0be32f50d9a6da078289ed7ed985ab65543fc488e
4
- data.tar.gz: c38fddac3da64ef2ea35b5c2323adb1adb4ff1fdc19482675267defc41c8e293
3
+ metadata.gz: 68c843969c7c0f9e2792f38c244de4c832ef974878784fd08875a9a594fde536
4
+ data.tar.gz: 5beafd8c66698cf20b7c47658ccf01b6244080020d83423c1c653865e67e60f3
5
5
  SHA512:
6
- metadata.gz: fb246a7bce63c93a1493dea4b46947210ee3a1939183cb097302aa2e980e1b6b35689022a31b4e28f8ed83daa9bfabb3810ec742f5c06f3b0220a8e443eca258
7
- data.tar.gz: 9acd5664d10abdf247463d65f623522e3e3634f473c7e9ba3fb3480df9b5a5b744a86d6848f1af3d1b5298745c16dd864c527e214ddd0a7a7bed44d210badbd0
6
+ metadata.gz: 53b88f4a5564c551ec1eb398ea392353d50e1220f904403f6fb6dff55174981873b9b290ce6a0c2bf31da0581235059fa5cf73f0114b32376f72008575bed13f
7
+ data.tar.gz: f82ff5292f6fc4246ceee4f81bbe7a5f11d6fecaccfe343b9cd547297b4829a1fd6d6899db16c8e833db35c9b29ebdc0088b9be6c03b8ec26bfb1e54332aefda
@@ -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.0
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