-
Notifications
You must be signed in to change notification settings - Fork 438
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
Conversation
This decouples RDoc::Store from RDoc::RDoc, which is only used to access RDoc::Options.
There was a problem hiding this 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
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 |
Store
?
Deploying rdoc with
|
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 |
@kou Updated 👍 |
There was a problem hiding this 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>
Hello, again! 👋 This is a breaking change for SDoc. As part of a performance optimization for its test suite, SDoc manually constructs fresh
|
It's unfortunate that it added additional effort to upgrade, but I don't consider |
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:
|
Since
Store
relies on accessingOptions
for various tasks, it should simply hold a reference to theOptions
object itself, instead of accessing it through anRDoc
instance and forming an unnecessary coupling.This PR requires
Store
to be initialized with anOptions
instance.