Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Options a required constructor argument of Store #1309

Merged
merged 6 commits into from
Mar 11, 2025

Conversation

st0012
Copy link
Member

@st0012 st0012 commented Mar 9, 2025

Since Store relies on accessing Options for various tasks, it should simply hold a reference to the Options object itself, instead of accessing it through an RDoc instance and forming an unnecessary coupling.

This PR requires Store to be initialized with an Options instance.

st0012 added 4 commits March 9, 2025 13:04
This decouples RDoc::Store from RDoc::RDoc, which is only used to
access RDoc::Options.

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Mic92 Jörg Thalheim
@st0012 st0012 requested a review from tompng March 9, 2025 13:34
Copy link
Member

@kou kou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Can we move

rdoc/lib/rdoc/rdoc.rb

Lines 472 to 476 in c809ba8

@store.encoding = @options.encoding
@store.dry_run = @options.dry_run
@store.main = @options.main_page
@store.title = @options.title
@store.path = @options.op_dir
to Store?

Copy link

cloudflare-workers-and-pages bot commented Mar 10, 2025

Deploying rdoc with  Cloudflare Pages  Cloudflare Pages

Latest commit: a68dfb5
Status: ✅  Deploy successful!
Preview URL: https://d49372c5.rdoc-6cd.pages.dev
Branch Preview URL: https://decouple-store-and-rdoc.rdoc-6cd.pages.dev

View logs

@st0012
Copy link
Member Author

st0012 commented Mar 10, 2025

@kou Updated 👍

@st0012 st0012 requested a review from kou March 10, 2025 22:49
Copy link
Member

@kou kou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Co-authored-by: Sutou Kouhei <kou@clear-code.com>
@st0012 st0012 merged commit f517b02 into master Mar 11, 2025
60 checks passed
@st0012 st0012 deleted the decouple-store-and-rdoc branch March 11, 2025 11:41
@jonathanhefner
Copy link
Contributor

Hello, again! 👋 This is a breaking change for SDoc. As part of a performance optimization for its test suite, SDoc manually constructs fresh RDoc::Store instances. The new signature of RDoc::Store#initialize breaks RDoc::Store.new().

RDoc::Store#initialize appears to be a documented public API. Is that accurate?

@st0012
Copy link
Member Author

st0012 commented Mar 24, 2025

It's unfortunate that it added additional effort to upgrade, but I don't consider Store part of the official API. In fact, the only public components are probably RDoc::RDoc, RDoc::Options, and some of the Darkfish APIs.
As you probably are aware, RDoc is a legacy codebase and if we consider everything that's been documented as public, then it will take forever to improve its codebase enough to clear the ever-growing features backlog.

@st0012 st0012 mentioned this pull request Mar 25, 2025
@mullermp
Copy link

mullermp commented Mar 25, 2025

I ran into an issue with this change as well. I was using RDoc to parse documentation for an rspec matcher. I'm not sure if I am using it correctly, maybe I can get some guidance? I'm doing something like this now:

RSpec::Matchers.define :be_in_documentation do |file, klass, method|
  match do |expected|
    rdoc = RDoc::RDoc.new
    options = RDoc::Options.load_options
    rdoc.options = options
    rdoc.store = RDoc::Store.new(options)
    top_level = rdoc.parse_files([file]).first
    documentation = top_level.find_class_or_module(klass)
    documentation = documentation.find_method_named(method) if method
    @actual = documentation.comment.text
    @expected = expected.chomp
    expect(@actual).to include(@expected)
  end

  failure_message do
    differ = RSpec::Support::Differ.new
    differ.diff(@actual, @expected)
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants