Josua Schmid
Josua Schmid
I've the same problem **with** a supported argument: ```diff def authorized_post(path, options = {}) - post path, { headers: { 'Api-Key': api_access.key }, as: :json }.merge(options) + post path, params:...
I had to disable this cop for the following code: Schema: ```rb create_table "time_slot_bookings", force: :cascade do |t| t.string "state", default: "pending" t.index ["state", "published_time_slot_id"], name: "index_time_slot_bookings_on_state_and_published_time_slot_id" … ``` Validation:...
> big companies have some random requirements This is not about random requirements. Be aware that I have to treat 0.x releases as major releases. It's mental overhead for everybody...
Ah, that's why.
I think it's not so nice to put the configuration into `config/application.rb` because it's production code. I've put it into the `Rakefile` instead (still may be run in production, but...
👍 I try to make this a bit clearer in #1117
Closing this due to inactivity.
Closing due to inactivity.
This blew my mind as well! But I think rather than implementing "business logic" you probably rather should think about how your idea is the perfect representation of a library....
For the sake of completeness: _ActiveStorage_ has a different approach than what is suggested by @dhh here. The idea there seems to be to rule out a default and to...