YARD:记录包含的模块添加的类方法

发布于 2024-12-27 06:53:07 字数 842 浏览 1 评论 0原文

我正在使用 YARD 为我的 ruby​​ gem 编写文档。在我的 gem 中,我有一些代码遵循这种常见的 ruby​​ 模式,其中模块包含在类中,并且该模块不仅添加实例方法,还添加类方法:

module Moo
  def self.included(klass)
    klass.extend ClassMethods
  end

  module ClassMethods
    def hello
      puts "hello"
    end
  end
end

class Foo
  include Moo
end

Foo.hello  # => class method runs, printing "hello"

默认情况下,YARD 将为 Foo 类生成文档看起来像这样:

Inadequate Documentation of the Foo class

我认为这个文档不充分,因为它确实不告诉用户Foo.hello 方法可用。要了解 hello,用户必须单击 Moo,然后单击 ClassMethods

如果能在一页上列出 Foo 的所有类和实例方法,那就太好了。我怎样才能做到这一点?我是否需要更改代码,或者是否可以添加一个标签来为 YARD 提供有关 ClassMethods 的提示?

I am writing documentation for my ruby gem using YARD. In my gem, I have some code which follows this common ruby pattern where a module is included in a class, and that module not only adds instance methods but it also adds class methods:

module Moo
  def self.included(klass)
    klass.extend ClassMethods
  end

  module ClassMethods
    def hello
      puts "hello"
    end
  end
end

class Foo
  include Moo
end

Foo.hello  # => class method runs, printing "hello"

By default, YARD will generate documentation for the Foo class that looks like this:

Inadequate documentation of the Foo class

I think this documentation is inadequate because it does not tell the user that the Foo.hello method is available. To learn about hello, the user has to click on Moo and then click on ClassMethods.

It would be great to have a list of all the class and instance methods of Foo on one page. How can I make that happen? Do I need to change the code, or is there a tag I can add to give YARD a hint about ClassMethods?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾听心声的旋律 2025-01-03 06:53:07

从 v0.8.0 开始,您可以使用 @!parse 指令:

class Foo
  include Moo
  # @!parse extend Moo::ClassMethods
end

Since v0.8.0 you can use the @!parse directive:

class Foo
  include Moo
  # @!parse extend Moo::ClassMethods
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文