hyper-mesh icon indicating copy to clipboard operation
hyper-mesh copied to clipboard

The project has moved to Hyperstack!! - Synchronization of active record models across multiple clients using Pusher, ActionCable, or Polling

Results 77 hyper-mesh issues
Sort by recently updated
recently updated
newest added

Line 23 in you gemspec file reads: s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } Your bin directory contains nothing special - just generic stuff. There is no...

on the same client that makes an update. I.e. if data is updated on server and is broadcast then all is well but if data is updated on one client,...

if you update a record on the client from an STI subclass that does not sync, to one that does sync, everything goes well, EXCEPT the server does not broad...

bug

In rails server side there is some trickery where the primary key can be overridden by some properties of the schema. This will not work for the client. It could...

enhancement
documentation

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

need to make column types module check and read correctly

When I use UUIDs as my primary keys, some lookups fail with a message like "undefined method for `'" on the collection. The error is thrown by isomorphic base in...

bug

If a Model.create is followed immediately by Model.update this may cause the client to fail to synchronize the data.

bug

I've opened a PR and described the problem there: #18 I have also verified my conclusion on another, more powerful docker machine. This blocks me at the moment with my...

documentation

Consider `Todo` `belongs_to :user`: `Todo.create user_id: some_user.id, ...` works, but `some_user.todos.create ...` results in `RuntimeError: Clock._create_synchromesh_scope_description_() (called class method missing)`

enhancement