Mitch VanDuyn
Mitch VanDuyn
Has there been any thought to making only work within a transaction? I.e. if no AR transaction is happening then don't do anything, but once you are inside a transaction...
`server_method` applies to a record and returns a value computed on that record from the server, `finder_method` applies to a scope (all a model class) and returns a single record...
We are currently sending full records down on every change. Why this is happening is not clear. Something changed probably during a policy update.
This is testing the very tricky defaultValue operation. Something has changed in react and it no longer works properly.
you get this error: `undefined method `stdio' for Puma::Events:Class` For now locking development dependencies to puma at
in the after_commit method of hypermodel, the `SendPacket` operation is run which will return a promise, but it is not checked for an error state. ```ruby def self.after_commit(operation, model) #...
Hyperspec uses the Filecache gem, which uses Time.now. But if Timecop freezes time in a spec, then Time.now is not returning the system time, and the Filecache does not work....
just like rails does
In commit 36516765f840eade6a8862682dd5a12774b259cd a fix was made so that ActiveRecord#changed? would accept optionally the attribute that was changing. I.e. Job.changed? means anything in the job changes, vs Job.changed(:name) means did...
Currently `Opal.yield1` and `Opal.yieldX` use `block.length` to determine the blocks. This causes sadness if used in combination with the splat operator and javascript minimification. For example consider ```bash irb(main):010:0> [[1,...