zzak
zzak
@tenpaiyomi The last bugfix release was 7.1.3, before the backport was merged. So whenever 7.1.4 is out, that should include this. Thanks for your patience.
Ok, I looked into this. Basically, inside of `activesupport/lib/active_support.rb` we have `:include: activesupport/README.rdoc`. When generating the documentation with `rake rdoc` from the Rails root, this path is correct. However, when...
Maybe, I'd have to see what you mean. I don't like that RG runs rdoc in the first place, we write documentation for `api.rubyonrails.org`. I expect other things to be...
@AlexMooney Could you [squash your commits](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#squashing-commits) please? :bow:
I don't think `require` here is the answer, I guess AM should be autoloaded. Maybe the correct thing to do is add the require to this test file, like we...
Does this actually change anything to what we're trying to test here? It seems like just a [cosmetic change](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#write-your-code) which we don't accept.
Ok, actually I thought it's better to remove downcase and then I found #43473. I would investigate _why_ that one test needs to be downcased and if there is a...
Sure, but does it make sense that we shouldn't need to downcase in the first place?
Yeah it seems #41210 went pretty hard into downcasing the model names but still missing some spots. I'd like to get another opinion, maybe @seanpdoyle has thoughts here?
I agree this is surprising, can reproduce it simply with a newly generated application like this: ```ruby # bin/rails c # Loading development environment (Rails 7.1.0.alpha) >> app.url_options => {:host=>"www.example.com",...