paulreece
paulreece
Would you mind creating a simple repro script so we could see this behavior for ourselves locally? Thank you!
I'm currently looking into this, I'm hopeful we will find a working solution for everyone soon!
@shouichi Is your use case that is erroring out utilizing `or` too? If not could you please copy and paste your use case too. As I'm addressing this in the...
Thank you! I have narrowed it down quite a bit and should have a PR in soon!
As I alluded to in the PR that you closed, if the `missing` method is unaware that an alias has taken place, it ultimately can't know what to correctly put...
Hey @fcsonline yes it is still a bug in `7.1.1`. I'll try to ask again on the discord about this.
Hey there, would you mind creating a small [reproduction script](https://guides.rubyonrails.org/contributing_to_ruby_on_rails.html#creating-a-bug-report) so that we can confirm the bug and test locally?
Hey there. So in general it's recommended to not reference the ActiveRecord Model in the migrations. A better approach would be to add this to your `db/seed.rb` file, then run...
> `File` > I assume we're all just assuming that's not the real class name. Given that the migration is called `SomeMigration` I think that's a safe assumption. We need...
So in a default Rails app these are the only options that would be used for the `/authors` path: ```Ruby Controller#Action GET /authors(.:format) authors#index POST /authors(.:format) authors#create ``` The available...