You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2018. It is now read-only.
[Synchromesh](https://en.wikipedia.org/wiki/Manual_transmission#Synchromesh) provides multi-client synchronization for [reactive-record.](https://github.com/catprintlabs/reactive-record)
3
+
Hyper-mesh] provides multi-client synchronization for [reactive-record.](https://github.com/catprintlabs/reactive-record)
4
4
5
5
In other words browser 1 creates, updates, or destroys a model, and the changes are broadcast to all other clients.
6
6
@@ -77,7 +77,7 @@ For complete details see [Authorization Policies](docs/authorization-policies.md
77
77
78
78
## Installation
79
79
80
-
If you do not already have reactrb installed, then use the reactrb-rails-generator gem to setup reactrb, reactive-record and associated gems.
80
+
If you do not already have hyper-react installed, then use the reactrb-rails-generator gem to setup hyper-react, reactive-record and associated gems.
81
81
82
82
Then add this line to your application's Gemfile:
83
83
@@ -244,7 +244,7 @@ pusher.self.js?body=1:62 WebSocket connection to
244
244
failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED
245
245
```
246
246
Check to see if you are including the pusher-fake gem.
247
-
Synchromesh will always try to use pusher-fake if it sees the gem included. Remove it and you should be good to go. See [issue #5](https://github.com/reactrb/synchromesh/issues/5) for more details.
247
+
Synchromesh will always try to use pusher-fake if it sees the gem included. Remove it and you should be good to go. See [issue #5](https://github.com/hyper-react/synchromesh/issues/5) for more details.
Copy file name to clipboardexpand all lines: docs/action_cable_quickstart.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -8,24 +8,24 @@ You need to be on rails 5 to use ActionCable. Make sure you upgrade to rails 5
8
8
9
9
#### 2 Add ReactRb
10
10
11
-
If you have not already installed the `reactrb` and `reactive-record` gems, then do so now using the [reactrb-rails-generator](https://github.com/reactrb/reactrb-rails-generator) gem.
11
+
If you have not already installed the `hyper-react` and `reactive-record` gems, then do so now using the [reactrb-rails-generator](https://github.com/hyper-react/reactrb-rails-generator) gem.
12
12
13
13
- add `gem 'reactrb-rails-generator'` to your gem file (in the development section)
14
14
- run `bundle install`
15
-
- run `rails g reactrb:install --all` (make sure to use the --all option)
15
+
- run `rails g hyper-react:install --all` (make sure to use the --all option)
Copy file name to clipboardexpand all lines: docs/simple_poller_quickstart.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -8,23 +8,23 @@ Either take an existing rails app, or create a new one the usual way.
8
8
9
9
#### 2 Add ReactRb
10
10
11
-
If you have not already installed the `reactrb` and `reactive-record` gems, then do so now using the [reactrb-rails-generator](https://github.com/reactrb/reactrb-rails-generator) gem.
11
+
If you have not already installed the `hyper-react` and `reactive-record` gems, then do so now using the [reactrb-rails-generator](https://github.com/hyper-react/reactrb-rails-generator) gem.
12
12
13
13
- add `gem 'reactrb-rails-generator'` to your gem file (in the development section)
14
14
- run `bundle install`
15
-
- run `bundle exec rails g reactrb:install --all` (make sure to use the --all option)
15
+
- run `bundle exec rails g hyper-react:install --all` (make sure to use the --all option)
# the if prevents double update if delete is being called from << (see << above)
157
-
backing_record.update_attribute(inverse_of,nil)
158
-
end
159
-
all.delete(item).tap{@owner.backing_record.update_attribute(@association.attribute)}# forces a check if association contents have changed from synced values
160
-
else
161
-
all.delete(item)
162
-
end)
163
-
end
186
+
# def delete(item)
187
+
# notify_of_change(if @owner and @association and inverse_of = @association.inverse_of
188
+
# if backing_record = item.backing_record and backing_record.attributes[inverse_of] == @owner
189
+
# # the if prevents double update if delete is being called from << (see << above)
# all.delete(item).tap { @owner.backing_record.update_attribute(@association.attribute) } # forces a check if association contents have changed from synced values
0 commit comments