1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

devel/rubygem-yard-sorbet: Add rubygem-yard-sorbet 0.9.0

yard-sorbet is a YARD plugin that parses Sorbet type annotations.

Features:
- Attaches existing documentation to methods and attributes that follow sig
  declarations. (This information is otherwise discarded.)
- Translates sig type signatures into corresponding YARD tags
- Generates method definitions from T::Struct fields
- Generates constant definitions from T::Enum enums
- Modules marked abstract! or interface! are tagged @abstract
- Modules using mixes_in_class_methods will attach class methods
- Merges sigs in rbi files with source code documentation (rbi files must come
  after source code in yard configuration)
This commit is contained in:
Po-Chuan Hsieh 2024-08-05 00:44:26 +08:00
parent 5cf9876a62
commit 11cc85b90a
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 36 additions and 0 deletions

View File

@ -7857,6 +7857,7 @@
SUBDIR += rubygem-xpath
SUBDIR += rubygem-xxhash
SUBDIR += rubygem-yajl-ruby
SUBDIR += rubygem-yard-sorbet
SUBDIR += rubygem-yui-compressor
SUBDIR += rubygem-zeitwerk
SUBDIR += rubygem-zentest

View File

@ -0,0 +1,20 @@
PORTNAME= yard-sorbet
PORTVERSION= 0.9.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= YARD plugin that incorporates Sorbet type information
WWW= https://github.com/dduugg/yard-sorbet
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-sorbet-runtime>=0:devel/rubygem-sorbet-runtime \
rubygem-yard>=0:textproc/rubygem-yard
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1722711143
SHA256 (rubygem/yard-sorbet-0.9.0.gem) = 03d1aa461b9e9c82b886919a13aa3e09fcf4d1852239d2967ed97e92723ffe21
SIZE (rubygem/yard-sorbet-0.9.0.gem) = 15872

View File

@ -0,0 +1,12 @@
yard-sorbet is a YARD plugin that parses Sorbet type annotations.
Features:
- Attaches existing documentation to methods and attributes that follow sig
declarations. (This information is otherwise discarded.)
- Translates sig type signatures into corresponding YARD tags
- Generates method definitions from T::Struct fields
- Generates constant definitions from T::Enum enums
- Modules marked abstract! or interface! are tagged @abstract
- Modules using mixes_in_class_methods will attach class methods
- Merges sigs in rbi files with source code documentation (rbi files must come
after source code in yard configuration)