Adam

Results 13 issues of Adam

Fixes #410 This adds fallback lookup to the `I18n#t` helper method available for components. It first checks the full namespace as it did before, but also will then look without...

Right now `Hyperstack::I18n#t` is smart in that it uses the name-spacing to look up the translation. This works great for those, but if we're trying to look up a translation...

enhancement

chromedriver-helper has been unsupported for a while now in favor of webdrivers. webdrivers is included in the hyper-spec gemfile, but isn't actually used. I usually end up fighting against chromedriver-helper,...

Right now all the specs are grouped into batch folders as a means to optimize parallel runtime efficiency. Batching them is great, but doing so by folder organization makes it...

maintainability

Lately I've noticed poor performance in our production database for the Hyperstack tables, and noticed we had about 400K QueuedMessages in the table. Upon looking in the code, I found...

performance

Defaults delaying state updates to true to prevent unnecessary queuing up of render cycles, but only delays updates if we are on the client.

Currently to use it on the client you must do this: ```ruby class ApplicationRecord < ActiveRecord::Base regulate_scope limit: :always_allow end ``` Even if you have regulate_scope for all and unscoped

I defined a method on my model: ```ruby server_method :past_due? do ... end ``` Nothing is broken on the client, but I get this message: ```javascript Warning: Deprecated feature used...

A bug was discovered in staging and production environments only, pre-rendering was breaking with the error `RuntimeError (HyperModel fetching records failed, exception caught when applying ["find_by_nickname", "adamcreekroad"] to db object...