docscribe 1.6.0 → 1.6.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/lib/docscribe/server/base.rb +224 -0
- data/lib/docscribe/server/client.rb +86 -0
- data/lib/docscribe/server/daemon.rb +501 -0
- data/lib/docscribe/server/protocol.rb +50 -0
- data/lib/docscribe/server.rb +4 -835
- data/lib/docscribe/version.rb +1 -1
- metadata +7 -3
data/lib/docscribe/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docscribe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- unurgunite
|
|
@@ -212,6 +212,10 @@ files:
|
|
|
212
212
|
- lib/docscribe/plugin/registry.rb
|
|
213
213
|
- lib/docscribe/plugin/tag.rb
|
|
214
214
|
- lib/docscribe/server.rb
|
|
215
|
+
- lib/docscribe/server/base.rb
|
|
216
|
+
- lib/docscribe/server/client.rb
|
|
217
|
+
- lib/docscribe/server/daemon.rb
|
|
218
|
+
- lib/docscribe/server/protocol.rb
|
|
215
219
|
- lib/docscribe/types/overload_selector.rb
|
|
216
220
|
- lib/docscribe/types/provider_chain.rb
|
|
217
221
|
- lib/docscribe/types/rbs/collection_loader.rb
|
|
@@ -234,7 +238,7 @@ metadata:
|
|
|
234
238
|
changelog_uri: https://github.com/unurgunite/docscribe/blob/master/CHANGELOG.md
|
|
235
239
|
rubygems_mfa_required: 'true'
|
|
236
240
|
post_install_message: |
|
|
237
|
-
You installed docscribe 1.6.
|
|
241
|
+
You installed docscribe 1.6.1. Your future self (and your team) thank you.
|
|
238
242
|
|
|
239
243
|
$ docscribe --help
|
|
240
244
|
|
|
@@ -254,7 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
254
258
|
- !ruby/object:Gem::Version
|
|
255
259
|
version: '0'
|
|
256
260
|
requirements: []
|
|
257
|
-
rubygems_version: 4.0.
|
|
261
|
+
rubygems_version: 4.0.18
|
|
258
262
|
specification_version: 4
|
|
259
263
|
summary: Auto-generate inline YARD documentation for Ruby by analyzing code AST. Supports
|
|
260
264
|
RBS and Sorbet type signatures.
|