Ryosuke Hiroe
Ryosuke Hiroe
@richardonrails Hi, this repository has not been maintained for a long time. Please fork the repository at https://github.com/wested/crummy and try modifying `lib/crummy/standard_renderer.rb:7` as follows ```diff - ActionView::Helpers::TagHelper::BOOLEAN_ATTRIBUTES.merge([:itemscope].to_set) + ActionView::Helpers::TagHelper::BOOLEAN_ATTRIBUTES.dup.merge([:itemscope].to_set) ```
@AlexeyMatskevich Hello, I am hoping this PR will resolve the related issue. Do you plan to continue working on it?
@AlexeyMatskevich In my personal opinion, > Then it's a flexibility issue where we want to throw all sample responses into examles or just certain ones For the ones we don't...
@ipepe Hello. Regarding how to reproduce the error, it seems to work fine when the YAML value is a string: ```yaml date: "2025-01-02" ``` On the other hand, if the...
> this is valid YAML to have unquoted date in the file. It's valid YAML, but it's not valid under the OpenAPI Specification. Without quotes, the value is interpreted as...
I see. Hmm, that said, since there's no real need to convert values to `Date` objects when using this library, I'm not sure if it's appropriate to include `Date` (or...
If I understand correctly, we want to load values like `2020-01-02` as a String, not a Date. To achieve that, I believe we need to make changes to how `Psych`...