hyperstack
hyperstack copied to clipboard
Hyperstack ALPHA https://hyperstack.org
Fixes issue #134
similar to issue #134 https://guides.rubyonrails.org/association_basics.html#methods-added-by-has-one-create-association-attributes https://guides.rubyonrails.org/association_basics.html#methods-added-by-belongs-to-create-association-attributes
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...
Hey, do you want some help setting up anycable to be included in hyperstack? Hopefully, it will improve performance by default since it uses websockets https://github.com/anycable/anycable
i.e. ```ruby something.groups.create(name: 'new group') # roughly the same as new_group @association.klass.new(attributes) ) end else args.collect do |attributes| @association.klass.new(attributes).tap { |item| _internal_push(item) } end end Promise.new.tap do |promise| Promise.when(items_to_save.collect(&:save)).then do...
1. Need to add exception exclusions to Operations... i.e. add this method: ```ruby def hypertrace_class_exclusions [ list of expected internal exceptions ] end ``` define at both class and instance...
given you have an existing model, which needs some of the methods to be defined as server_methods, it would be nice to say something like: `remote_access_to(:foo, :bar) { acting_user.admin? }`...