Daniel Colson
Daniel Colson
The way factory_bot's `create` strategy works is that it first builds the object, then assigns the attributes one by one (with traits getting assigned last, if I recall correctly), then...
> I do not think this is what's happening here though because in my example because if I refer to your explanation then this test should fail too but this...
I'd guess you are correct that adding a `some_value` declaration above the association would work. I'd also agree that it would be a confusing and perhaps brittle solution (I could...
To see this in action: ```sh set -e # Install all the things rails new test_app cd test_app echo 'gem "administrate", github: "thoughtbot/administrate", branch: "add-action-text-field"' >> Gemfile echo "gem 'image_processing',...
https://github.com/chimame/rails_on_wepacker_engine includes words that seem like the thing we want...
@palkan I know you have thought about using webpacker in an engine before. Do you have any advice here?
@tabfugnic @jsilasbailey I also noticed https://github.com/thoughtbot/administrate/wiki/Rails-6-&-Webpacker in our Wiki, in case that is useful.
> I use these in my own mappings, but my only hesitation is over making this choice for others. For what it is worth, I use these mappings and have...
I think essentially what I am trying to do is backport one line from https://github.com/ruby/ruby/commit/9cb1ffaa5c3a4b6921eaf748ffdef5dbd1c07877
Thank you! Based on the [backport documentation](https://github.com/ruby/ruby/blob/master/doc/contributing.rdoc#label-Backport+Requests) and the [list of branch maintainers](https://bugs.ruby-lang.org/projects/ruby/wiki/ReleaseEngineering#ruby_2_7) it seems like I need to ask @nagachika to backport (or partially backport) https://github.com/ruby/ruby/commit/9cb1ffaa5c3a4b6921eaf748ffdef5dbd1c07877 to 2.7. Please...