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

Adapted from active record: ```ruby module ActiveRecord module InstanceMethods def slice(methods) Hash[methods.map! { |method| [method, send(method)] }] end end end ```

help wanted

Models: ```ruby class Organization < ApplicationRecord has_many :memberships, class_name: 'OrganizationMembership', inverse_of: :organization end class OrganizationMembership < ApplicationRecord belongs_to :organization, inverse_of: :memberships end class Team < ApplicationRecord has_many :memberships, class_name: 'TeamMembership',...

The method Model.first(n) to get the n elements first is not implemented.

If another `active_record_base.rb` exists in another place (Gem, ...) then the Hyper-mesh `active_record_base.rb` is crushed when `Opal.append_path`.

I only found this while trying to debug why the client wasn't updating. I'm not sure where/when this breaks in use, but calling this stuff in the console breaks. ```ruby...

I'm getting this error when I load a page that calls for reception_index_url ActionController::UrlGenerationError - No route matches {:action=>"index", :channel_name=>"private--Application", :client_id=>"6c081015-2c97-42d5-9840-63a9663eac18-f3e8fa788cc8d405b8c169bf8225c277", :controller=>"reception"} I'm running ruby-2.4.0 rails 5.0.1 hyper-rails 0.4.1 hyper-mesh...

This is a discussion thread to talk about several related issues / requirements: 1) how to get rid of client *specific* code from models such as client side scope specifications,...

discussion