hyper-mesh 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/Gemfile +7 -2
  4. data/README.md +112 -87
  5. data/Rakefile +6 -1
  6. data/docs/action_cable_quickstart.md +20 -16
  7. data/docs/activerecord_api.md +23 -17
  8. data/docs/authorization-policies.md +45 -35
  9. data/docs/client_side_scoping.md +5 -5
  10. data/docs/configuration_details.md +6 -46
  11. data/docs/pusher_faker_quickstart.md +7 -68
  12. data/docs/pusher_quickstart.md +7 -68
  13. data/docs/simple_poller_quickstart.md +6 -67
  14. data/docs/todo-example.md +2 -2
  15. data/docs/word_game.md +3 -1
  16. data/docs/words-example.md +2 -3
  17. data/examples/action-cable/Gemfile +2 -1
  18. data/examples/action-cable/Gemfile.lock +73 -54
  19. data/examples/action-cable/config/initializers/{hyper_mesh.rb → hyperloop.rb} +1 -1
  20. data/examples/action-cable/config/routes.rb +1 -1
  21. data/hyper-mesh.gemspec +10 -4
  22. data/lib/active_record_base.rb +3 -3
  23. data/{examples/action-cable-production-mode/log/.keep → lib/acts_as_string.rb} +0 -0
  24. data/lib/hyper-mesh.rb +11 -19
  25. data/lib/hyper_mesh/version.rb +3 -0
  26. data/lib/hypermesh/version.rb +1 -1
  27. data/lib/reactive_record/active_record/class_methods.rb +10 -3
  28. data/lib/reactive_record/active_record/instance_methods.rb +8 -0
  29. data/lib/reactive_record/active_record/public_columns_hash.rb +8 -2
  30. data/lib/reactive_record/active_record/reactive_record/collection.rb +0 -1
  31. data/lib/reactive_record/active_record/reactive_record/dummy_value.rb +2 -1
  32. data/lib/reactive_record/active_record/reactive_record/isomorphic_base.rb +55 -63
  33. data/lib/reactive_record/active_record/reactive_record/operations.rb +51 -0
  34. data/lib/reactive_record/active_record/reactive_record/reactive_set_relationship_helpers.rb +3 -3
  35. data/lib/reactive_record/active_record/reactive_record/while_loading.rb +93 -84
  36. data/lib/reactive_record/broadcast.rb +183 -0
  37. data/lib/reactive_record/permissions.rb +2 -2
  38. data/reactive_record_test_app/Gemfile +6 -2
  39. data/reactive_record_test_app/Gemfile.lock +120 -60
  40. data/reactive_record_test_app/app/assets/javascripts/application.rb +3 -5
  41. data/reactive_record_test_app/app/assets/javascripts/bigdecimal.rb +1 -0
  42. data/reactive_record_test_app/app/assets/javascripts/reactive_record_config.js +2 -2
  43. data/reactive_record_test_app/app/controllers/application_controller.rb +3 -3
  44. data/reactive_record_test_app/app/controllers/home_controller.rb +1 -1
  45. data/reactive_record_test_app/app/models/models.rb.erb +6 -0
  46. data/reactive_record_test_app/config/application.rb +2 -0
  47. data/reactive_record_test_app/config/environments/development.rb +1 -1
  48. data/reactive_record_test_app/config/routes.rb +1 -2
  49. data/reactive_record_test_app/db/seeds.rb +6 -0
  50. data/reactive_record_test_app/script/rails +0 -0
  51. data/reactive_record_test_app/spec-opal/active-record/rendering_spec.rb +11 -2
  52. data/reactive_record_test_app/spec-opal/active-record/save_spec.rb +3 -4
  53. data/reactive_record_test_app/spec-opal/spec_helper.js.rb +1 -1
  54. data/reactive_record_test_app/spec-opal/test_spec.rb +7 -0
  55. data/reactive_record_test_app/spec_dont_run/README.md +7 -0
  56. data/reactive_record_test_app/{spec-opal/active-record → spec_dont_run/active_record_broken}/permissions_spec.rb +0 -0
  57. data/reactive_record_test_app/{spec-opal/active-record → spec_dont_run/active_record_broken}/prerendering_spec.rb +1 -0
  58. data/spec/{synchromesh/aaa-unit_tests/connection_spec.rb → batch1/aaa-unit_tests/connection_movedspec.rb} +0 -0
  59. data/spec/{synchromesh → batch1}/aaa-unit_tests/dummy_value_spec.rb +2 -2
  60. data/spec/{synchromesh → batch1}/column_types/column_type_spec.rb +2 -2
  61. data/spec/{synchromesh → batch1}/crud_access_regulation/broadcast_controls_access_spec.rb +1 -1
  62. data/spec/{synchromesh → batch1}/crud_access_regulation/model_policies_spec.rb +6 -6
  63. data/spec/batch1/misc/access_like_hash_spec.rb +43 -0
  64. data/spec/batch1/misc/while_loading_spec.rb +196 -0
  65. data/spec/{synchromesh → batch1}/policies/regulate_all_broadcasts_spec.rb +12 -12
  66. data/spec/{synchromesh → batch1}/policies/regulate_broadcast_spec.rb +25 -25
  67. data/spec/{synchromesh/integration → batch2}/authorization_spec.rb +8 -7
  68. data/spec/{synchromesh/integration → batch2}/default_scope_spec.rb +2 -2
  69. data/spec/{synchromesh/integration → batch2}/has_many_through_spec.rb +2 -2
  70. data/spec/{synchromesh/integration → batch2}/relationships_spec.rb +3 -3
  71. data/spec/{reactive_record → batch3}/auto_load_itself_spec.rb +1 -1
  72. data/spec/{reactive_record → batch3}/edge_cases_spec.rb +1 -1
  73. data/spec/{reactive_record → batch3}/finder_method_spec.rb +1 -1
  74. data/spec/{reactive_record → batch3}/many_to_many_spec.rb +2 -2
  75. data/spec/{reactive_record → batch3}/pry_rescue_xspec.rb +0 -0
  76. data/{examples/action-cable-production-mode/public/assets/application-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css → spec/batch3/readme.txt} +0 -0
  77. data/spec/{reactive_record → batch3}/revert_spec.rb +2 -2
  78. data/spec/{reactive_record → batch3}/save_while_loading_spec.rb +1 -1
  79. data/spec/{reactive_record → batch3}/update_associations_spec.rb +2 -2
  80. data/spec/{reactive_record → batch3}/update_scopes_spec.rb +2 -2
  81. data/spec/{synchromesh/integration → batch4}/saving_during_commit_spec.rb +2 -2
  82. data/spec/{synchromesh/integration → batch4}/scope_spec.rb +30 -2
  83. data/spec/{synchromesh/examples → batch4}/scoped_todos_spec.rb +3 -3
  84. data/spec/{synchromesh/integration → batch4}/synchromesh_spec.rb +2 -2
  85. data/spec/{synchromesh/examples → examples}/dictionary.rb +2 -2
  86. data/spec/{synchromesh/examples → examples}/dictionary_with_client_scopes.rb +2 -2
  87. data/spec/{synchromesh/examples → examples}/random_examples.rb +1 -1
  88. data/spec/{reactive_record/play.rb → play_ground.rb} +0 -0
  89. data/spec/{reactive_record/factory.rb → reactive_record_factory.rb} +0 -0
  90. data/spec/spec_helper.rb +3 -2
  91. data/spec/test_app/Gemfile +8 -3
  92. data/spec/test_app/Gemfile.lock +114 -64
  93. data/spec/test_app/app/views/components.rb +1 -2
  94. data/spec/test_app/config/application.rb +2 -0
  95. data/spec/test_app/config/routes.rb +1 -1
  96. data/spec/{synchromesh/integration/test_components.rb → test_components.rb} +0 -0
  97. metadata +144 -137
  98. data/app/controllers/reactive_record/application_controller.rb +0 -4
  99. data/app/controllers/reactive_record/reactive_record_controller.rb +0 -49
  100. data/config/routes.rb +0 -7
  101. data/examples/action-cable-production-mode/public/assets/application-90043e04e9e784054fd08159fa7aafe5e23d3ffb31584b1bea1e47043c9cfb5a.js +0 -50
  102. data/examples/action-cable-production-mode/public/assets/application-90043e04e9e784054fd08159fa7aafe5e23d3ffb31584b1bea1e47043c9cfb5a.js.gz +0 -0
  103. data/examples/action-cable-production-mode/public/assets/application-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css.gz +0 -0
  104. data/examples/action-cable-production-mode/tmp/.keep +0 -0
  105. data/examples/action-cable/log/.keep +0 -0
  106. data/examples/action-cable/tmp/.keep +0 -0
  107. data/examples/pusher-fake/log/.keep +0 -0
  108. data/examples/pusher-fake/tmp/.keep +0 -0
  109. data/examples/pusher/log/.keep +0 -0
  110. data/examples/pusher/tmp/.keep +0 -0
  111. data/examples/simple-poller/log/.keep +0 -0
  112. data/examples/simple-poller/tmp/.keep +0 -0
  113. data/examples/word-game/log/.keep +0 -0
  114. data/examples/word-game/tmp/.keep +0 -0
  115. data/examples/words/log/.keep +0 -0
  116. data/examples/words/tmp/.keep +0 -0
  117. data/lib/reactive_record/version.rb +0 -3
  118. data/lib/sources/hyper-mesh/pusher.js +0 -98
  119. data/lib/synchromesh/action_cable.rb +0 -39
  120. data/lib/synchromesh/client_drivers.rb +0 -357
  121. data/lib/synchromesh/configuration.rb +0 -40
  122. data/lib/synchromesh/connection.rb +0 -170
  123. data/lib/synchromesh/policy.rb +0 -504
  124. data/lib/synchromesh/synchromesh.rb +0 -159
  125. data/lib/synchromesh/synchromesh_controller.rb +0 -162
  126. data/reactive_record_test_app/README.rdoc +0 -261
  127. data/reactive_record_test_app/app/assets/javascripts/components/another_component.rb +0 -24
  128. data/reactive_record_test_app/app/assets/javascripts/components/empty_component.rb +0 -6
  129. data/reactive_record_test_app/app/assets/javascripts/components/todo_item_component.js.rb +0 -16
  130. data/reactive_record_test_app/app/assets/javascripts/components/todos_component.js.rb +0 -42
  131. data/reactive_record_test_app/app/assets/javascripts/components/todos_main_component.rb +0 -49
  132. data/reactive_record_test_app/app/assets/javascripts/react_js_test_only.js +0 -21618
  133. data/reactive_record_test_app/app/assets/javascripts/spec/reactive_record_xspec.js.rb +0 -42
  134. data/reactive_record_test_app/app/controllers/test_controller.rb +0 -7
  135. data/reactive_record_test_app/app/mailers/.gitkeep +0 -0
  136. data/reactive_record_test_app/app/models/models.rb +0 -1
  137. data/reactive_record_test_app/app/policies/application_policy.rb +0 -5
  138. data/reactive_record_test_app/app/views/components.rb +0 -4
  139. data/reactive_record_test_app/app/views/components/test.rb +0 -18
  140. data/reactive_record_test_app/app/views/home/index.html.erb +0 -1
  141. data/reactive_record_test_app/app/views/layouts/application.html.erb +0 -17
  142. data/reactive_record_test_app/config/environments/production.rb +0 -70
  143. data/reactive_record_test_app/config/environments/test.rb +0 -41
  144. data/spec/synchromesh/integration/transports_spec.rb +0 -308
  145. data/spec/synchromesh/policies/auto_connect_spec.rb +0 -60
  146. data/spec/synchromesh/policies/auto_loader_spec.rb +0 -34
  147. data/spec/synchromesh/policies/policy_methods_spec.rb +0 -85
  148. data/spec/synchromesh/policies/regulate_class_connection_spec.rb +0 -50
  149. data/spec/synchromesh/policies/regulate_instance_connection_spec.rb +0 -66
  150. data/spec/test_app/log/.keep +0 -0
@@ -6,7 +6,7 @@
6
6
 
7
7
  - add `gem 'pusher'` to your Gemfile.
8
8
 
9
- If you have not already installed the `hyper-react` and `hyper-mesh` gems, then do so now using the [hyper-rails](https://github.com/ruby-hyperloop/hyper-rails) gem.
9
+ If you have not already installed the `hyper-component` and `hyper-model` gems, then do so now using the [hyper-rails](https://github.com/ruby-hyperloop/hyper-rails) gem.
10
10
 
11
11
  - add `gem 'hyper-rails'` to your gem file (in the development section)
12
12
  - run `bundle install`
@@ -18,19 +18,19 @@ If you have not already installed the `hyper-react` and `hyper-mesh` gems, then
18
18
  ```ruby
19
19
  # app/assets/javascript/application.js
20
20
  ...
21
- //= require 'hyper-mesh/pusher'
21
+ //= require 'hyper-model/pusher'
22
22
  //= require_tree .
23
23
  Opal.load('components');
24
24
  ```
25
25
 
26
26
  #### 3 Set the transport
27
27
 
28
- Once you have HyperMesh and pusher installed then add this initializer:
28
+ Once you have Hyperloop and pusher installed then add this initializer:
29
29
  ```ruby
30
- # config/initializers/HyperMesh.rb
31
- HyperMesh.configuration do |config|
30
+ # config/initializers/Hyperloop.rb
31
+ Hyperloop.configuration do |config|
32
32
  config.transport = :pusher
33
- config.channel_prefix = "HyperMesh"
33
+ config.channel_prefix = "Hyperloop"
34
34
  config.opts = {
35
35
  app_id: "2....9",
36
36
  key: "f.....g",
@@ -41,65 +41,4 @@ end
41
41
 
42
42
  #### 4 Try It Out
43
43
 
44
- If you don't already have a model to play with, add one now:
45
-
46
- `bundle exec rails generate model Word text:string`
47
-
48
- `bundle exec rake db:migrate`
49
-
50
- Move `app/models/word.rb` to `app/models/public/word.rb`
51
-
52
- **Leave** `app/models/model.rb` where it is. This is your models client side manifest file.
53
-
54
- Whatever model(s) you will plan to access on the client need to moved to the `app/models/public` directory. This allows reactive-record to build a client side proxy for the models. Models not moved will be completely invisible on the client side.
55
-
56
- **Important** in rails 5 there is also a base `ApplicationRecord` class, that all other models are built from. This class must be moved to the public directory as well.
57
-
58
- If you don't already have a component to play with, here is a simple one (make sure you added the Word model):
59
-
60
- ```ruby
61
- # app/views/components/app.rb
62
- class App < React::Component::Base
63
-
64
- def add_new_word
65
- # for fun we will use setgetgo.com to get random words!
66
- HTTP.get("http://randomword.setgetgo.com/get.php", dataType: :jsonp) do |response|
67
- Word.new(text: response.json[:Word]).save
68
- end
69
- end
70
-
71
- render(DIV) do
72
- SPAN { "Count of Words: #{Word.count}" }
73
- BUTTON { "add another" }.on(:click) { add_new_word }
74
- UL do
75
- Word.each { |word| LI { word.text } }
76
- end
77
- end
78
- end
79
- ```
80
-
81
- Add a controller:
82
-
83
- ```ruby
84
- #app/controllers/test_controller.rb
85
- class TestController < ApplicationController
86
- def app
87
- render_component
88
- end
89
- end
90
- ```
91
-
92
- Add the `test` route to your routes file:
93
-
94
- ```ruby
95
- #app/config/routes.rb
96
-
97
- get 'test', to: 'test#app'
98
-
99
- ```
100
-
101
- Fire up rails with `bundle exec rails s` and open your app in a couple of browsers. As data changes you should see them all updating together.
102
-
103
- You can also fire up a rails console, and then for example do a `Word.new(text: "Hello").save` and again see any browsers updating.
104
-
105
- If you want to go into more details with the example check out [words-example](/docs/words-example.md)
44
+ TODO add try_it_out partial
@@ -1,10 +1,10 @@
1
1
  ### Simple Poller Quickstart
2
2
 
3
- The easiest push transport is the built-in simple poller. This is great for demos or trying out HyperMesh but because it is constantly polling it is not suitable for production systems or any kind of real debug or test activities.
3
+ The easiest push transport is the built-in simple poller. This is great for demos or trying out Hyperloop but because it is constantly polling it is not suitable for production systems or any kind of real debug or test activities.
4
4
 
5
5
  #### 1 Add the HyperLoop gems to your Rails app
6
6
 
7
- If you have not already installed the `hyper-react` and `hyper-mesh` gems, then do so now using the [hyper-rails](https://github.com/ruby-hyperloop/hyper-rails) gem.
7
+ If you have not already installed the `hyper-component` and `hyper-model` gems, then do so now using the [hyper-rails](https://github.com/ruby-hyperloop/hyper-rails) gem.
8
8
 
9
9
  - add `gem 'hyper-rails'` to your gem file (in the development section)
10
10
  - run `bundle install`
@@ -13,10 +13,10 @@ If you have not already installed the `hyper-react` and `hyper-mesh` gems, then
13
13
 
14
14
  #### 2 Set the transport
15
15
 
16
- Once you have HyperMesh installed then add this initializer:
16
+ Once you have Hyperloop installed then add this initializer:
17
17
  ```ruby
18
- #config/initializers/synchromesh.rb
19
- HyperMesh.configuration do |config|
18
+ #config/initializers/hyperloop.rb
19
+ Hyperloop.configuration do |config|
20
20
  config.transport = :simple_poller
21
21
  # options
22
22
  # config.opts = {
@@ -28,65 +28,4 @@ end
28
28
 
29
29
  #### 3 Try It Out
30
30
 
31
- If you don't already have a model to play with add one now:
32
-
33
- `bundle exec rails generate model Word text:string`
34
-
35
- `bundle exec rake db:migrate`
36
-
37
- Move `app/models/word.rb` to `app/models/public/word.rb`
38
-
39
- **Leave** `app/models/model.rb` where it is. This is your models client side manifest file.
40
-
41
- Whatever model(s) you will plan to access on the client need to moved to the `app/models/public` directory. This allows reactive-record to build a client side proxy for the models. Models not moved will be completely invisible on the client side.
42
-
43
- **Important** in rails 5 there is also a base `ApplicationRecord` class, that all other models are built from. This class must be moved to the public directory as well.
44
-
45
- If you don't already have a component to play with, here is a simple one (make sure you added the Word model):
46
-
47
- ```ruby
48
- # app/views/components/app.rb
49
- class App < React::Component::Base
50
-
51
- def add_new_word
52
- # for fun we will use setgetgo.com to get random words!
53
- HTTP.get("http://randomword.setgetgo.com/get.php", dataType: :jsonp) do |response|
54
- Word.new(text: response.json[:Word]).save
55
- end
56
- end
57
-
58
- render(DIV) do
59
- SPAN { "Count of Words: #{Word.count}" }
60
- BUTTON { "add another" }.on(:click) { add_new_word }
61
- UL do
62
- Word.each { |word| LI { word.text } }
63
- end
64
- end
65
- end
66
- ```
67
-
68
- Add a controller:
69
-
70
- ```ruby
71
- #app/controllers/test_controller.rb
72
- class TestController < ApplicationController
73
- def app
74
- render_component
75
- end
76
- end
77
- ```
78
-
79
- Add the `test` route to your routes file:
80
-
81
- ```ruby
82
- #app/config/routes.rb
83
-
84
- get 'test', to: 'test#app'
85
-
86
- ```
87
-
88
- Fire up rails with `bundle exec rails s` and open your app in a couple of browsers. As data changes you should see them all updating together.
89
-
90
- You can also fire up a rails console, and then for example do a `Word.new(text: "Hello").save` and again see any browsers updating.
91
-
92
- If you want to go into more details with the example check out [words-example](/docs/words-example.md)
31
+ TODO add try_it_out partial
@@ -1,4 +1,4 @@
1
- # ![](/work-in-progress-drinking.png) WARNING DOCS AND EXAMPLES ARE BEING REWRITTEN MANY LINKS MAY BE BROKEN STAY TUNED OR CHECK IN AT [![Join the chat at https://gitter.im/reactrb/chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/reactrb/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) FOR MORE INFO
1
+ TODO not sure where this example should go?
2
2
 
3
3
  Lets look at part of a very simple Todo application with one model:
4
4
 
@@ -14,7 +14,7 @@ To show our Todo's we might have a very simple app like this:
14
14
 
15
15
  ```ruby
16
16
  # app/views/components/app.rb
17
- class App < React::Component::Base
17
+ class App < Hyperloop::Component
18
18
 
19
19
  define_state scope: :active
20
20
  define_state new_todo: Todo.new
@@ -1,4 +1,6 @@
1
- ## The 5 Letter Word Game in HyperMesh
1
+ TODO: delete?
2
+
3
+ ## The 5 Letter Word Game in Hyperloop
2
4
 
3
5
  We are going to implement a simple game (that is actually quite fun to play) using HyperMesh.
4
6
 
@@ -1,5 +1,4 @@
1
- # ![](/work-in-progress-drinking.png) WARNING DOCS AND EXAMPLES ARE BEING REWRITTEN MANY LINKS MAY BE BROKEN STAY TUNED OR CHECK IN AT [![Join the chat at https://gitter.im/reactrb/chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/reactrb/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) FOR MORE INFO
2
-
1
+ TODO: not sure where this should go?
3
2
 
4
3
  ## Random Words example
5
4
 
@@ -13,7 +12,7 @@ Your initial component should look like this:
13
12
 
14
13
  ```ruby
15
14
  # app/views/components/app.rb
16
- class App < React::Component::Base
15
+ class App < Hyperloop::Component
17
16
 
18
17
  def add_new_word
19
18
  # for fun we will use setgetgo.com to get random words!
@@ -54,4 +54,5 @@ gem 'hyper-react'
54
54
  gem 'therubyracer', platforms: :ruby
55
55
  gem 'react-router-rails', '~> 0.13.3'
56
56
  gem 'hyper-router'
57
- gem 'hyper-mesh'
57
+ gem 'hyper-mesh', path: '../..'
58
+ gem 'hyper-operation', path: '../../../hyper-operation'
@@ -1,39 +1,57 @@
1
+ PATH
2
+ remote: ../../../hyper-operation
3
+ specs:
4
+ hyper-operation (0.1.0)
5
+ activerecord (>= 0.3.0)
6
+ hyper-react
7
+ hyperloop-config
8
+ mutations
9
+ opal-activesupport
10
+
11
+ PATH
12
+ remote: ../..
13
+ specs:
14
+ hyper-mesh (0.5.4)
15
+ activerecord (>= 0.3.0)
16
+ hyper-operation
17
+ hyper-react (>= 0.10.0)
18
+
1
19
  GEM
2
20
  remote: https://rubygems.org/
3
21
  specs:
4
- actioncable (5.0.0.1)
5
- actionpack (= 5.0.0.1)
6
- nio4r (~> 1.2)
22
+ actioncable (5.0.2)
23
+ actionpack (= 5.0.2)
24
+ nio4r (>= 1.2, < 3.0)
7
25
  websocket-driver (~> 0.6.1)
8
- actionmailer (5.0.0.1)
9
- actionpack (= 5.0.0.1)
10
- actionview (= 5.0.0.1)
11
- activejob (= 5.0.0.1)
26
+ actionmailer (5.0.2)
27
+ actionpack (= 5.0.2)
28
+ actionview (= 5.0.2)
29
+ activejob (= 5.0.2)
12
30
  mail (~> 2.5, >= 2.5.4)
13
31
  rails-dom-testing (~> 2.0)
14
- actionpack (5.0.0.1)
15
- actionview (= 5.0.0.1)
16
- activesupport (= 5.0.0.1)
32
+ actionpack (5.0.2)
33
+ actionview (= 5.0.2)
34
+ activesupport (= 5.0.2)
17
35
  rack (~> 2.0)
18
36
  rack-test (~> 0.6.3)
19
37
  rails-dom-testing (~> 2.0)
20
38
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
- actionview (5.0.0.1)
22
- activesupport (= 5.0.0.1)
39
+ actionview (5.0.2)
40
+ activesupport (= 5.0.2)
23
41
  builder (~> 3.1)
24
42
  erubis (~> 2.7.0)
25
43
  rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- activejob (5.0.0.1)
28
- activesupport (= 5.0.0.1)
44
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
45
+ activejob (5.0.2)
46
+ activesupport (= 5.0.2)
29
47
  globalid (>= 0.3.6)
30
- activemodel (5.0.0.1)
31
- activesupport (= 5.0.0.1)
32
- activerecord (5.0.0.1)
33
- activemodel (= 5.0.0.1)
34
- activesupport (= 5.0.0.1)
48
+ activemodel (5.0.2)
49
+ activesupport (= 5.0.2)
50
+ activerecord (5.0.2)
51
+ activemodel (= 5.0.2)
52
+ activesupport (= 5.0.2)
35
53
  arel (~> 7.0)
36
- activesupport (5.0.0.1)
54
+ activesupport (5.0.2)
37
55
  concurrent-ruby (~> 1.0, >= 1.0.2)
38
56
  i18n (~> 0.7)
39
57
  minitest (~> 5.1)
@@ -43,7 +61,7 @@ GEM
43
61
  babel-transpiler (0.7.0)
44
62
  babel-source (>= 4.0, < 6)
45
63
  execjs (~> 2.0)
46
- builder (3.2.2)
64
+ builder (3.2.3)
47
65
  byebug (9.0.6)
48
66
  coffee-rails (4.2.1)
49
67
  coffee-script (>= 2.2.0)
@@ -51,8 +69,8 @@ GEM
51
69
  coffee-script (2.4.1)
52
70
  coffee-script-source
53
71
  execjs
54
- coffee-script-source (1.10.0)
55
- concurrent-ruby (1.0.2)
72
+ coffee-script-source (1.12.2)
73
+ concurrent-ruby (1.0.5)
56
74
  connection_pool (2.2.1)
57
75
  debug_inspector (0.0.2)
58
76
  erubis (2.7.0)
@@ -61,19 +79,17 @@ GEM
61
79
  globalid (0.3.7)
62
80
  activesupport (>= 4.1.0)
63
81
  hike (1.2.3)
64
- hyper-mesh (0.5.0)
65
- activerecord (>= 0.3.0)
66
- hyper-react (>= 0.10.0)
67
82
  hyper-rails (0.4.0)
68
83
  rails (>= 4.0.0)
69
- hyper-react (0.10.0)
84
+ hyper-react (0.11.0)
70
85
  opal (>= 0.8.0)
71
86
  opal-activesupport (>= 0.2.0)
72
87
  react-rails
73
88
  hyper-router (2.4.0)
74
89
  hyper-react
75
90
  opal-browser
76
- i18n (0.7.0)
91
+ hyperloop-config (0.8.1)
92
+ i18n (0.8.1)
77
93
  jbuilder (2.6.0)
78
94
  activesupport (>= 3.0.0, < 5.1)
79
95
  multi_json (~> 1.2)
@@ -94,10 +110,12 @@ GEM
94
110
  mime-types-data (~> 3.2015)
95
111
  mime-types-data (3.2016.0521)
96
112
  mini_portile2 (2.1.0)
97
- minitest (5.9.1)
113
+ minitest (5.10.1)
98
114
  multi_json (1.12.1)
99
- nio4r (1.2.1)
100
- nokogiri (1.6.8.1)
115
+ mutations (0.8.1)
116
+ activesupport
117
+ nio4r (2.0.0)
118
+ nokogiri (1.7.0.1)
101
119
  mini_portile2 (~> 2.1.0)
102
120
  opal (0.10.3)
103
121
  hike (~> 1.2)
@@ -123,30 +141,30 @@ GEM
123
141
  rack (2.0.1)
124
142
  rack-test (0.6.3)
125
143
  rack (>= 1.0)
126
- rails (5.0.0.1)
127
- actioncable (= 5.0.0.1)
128
- actionmailer (= 5.0.0.1)
129
- actionpack (= 5.0.0.1)
130
- actionview (= 5.0.0.1)
131
- activejob (= 5.0.0.1)
132
- activemodel (= 5.0.0.1)
133
- activerecord (= 5.0.0.1)
134
- activesupport (= 5.0.0.1)
144
+ rails (5.0.2)
145
+ actioncable (= 5.0.2)
146
+ actionmailer (= 5.0.2)
147
+ actionpack (= 5.0.2)
148
+ actionview (= 5.0.2)
149
+ activejob (= 5.0.2)
150
+ activemodel (= 5.0.2)
151
+ activerecord (= 5.0.2)
152
+ activesupport (= 5.0.2)
135
153
  bundler (>= 1.3.0, < 2.0)
136
- railties (= 5.0.0.1)
154
+ railties (= 5.0.2)
137
155
  sprockets-rails (>= 2.0.0)
138
- rails-dom-testing (2.0.1)
156
+ rails-dom-testing (2.0.2)
139
157
  activesupport (>= 4.2.0, < 6.0)
140
- nokogiri (~> 1.6.0)
158
+ nokogiri (~> 1.6)
141
159
  rails-html-sanitizer (1.0.3)
142
160
  loofah (~> 2.0)
143
- railties (5.0.0.1)
144
- actionpack (= 5.0.0.1)
145
- activesupport (= 5.0.0.1)
161
+ railties (5.0.2)
162
+ actionpack (= 5.0.2)
163
+ activesupport (= 5.0.2)
146
164
  method_source
147
165
  rake (>= 0.8.7)
148
166
  thor (>= 0.18.1, < 2.0)
149
- rake (11.3.0)
167
+ rake (12.0.0)
150
168
  rb-fsevent (0.9.8)
151
169
  rb-inotify (0.9.7)
152
170
  ffi (>= 0.5.0)
@@ -169,7 +187,7 @@ GEM
169
187
  sprockets-rails (>= 2.0, < 4.0)
170
188
  tilt (>= 1.1, < 3)
171
189
  sourcemap (0.1.1)
172
- sprockets (3.7.0)
190
+ sprockets (3.7.1)
173
191
  concurrent-ruby (~> 1.0)
174
192
  rack (> 1, < 3)
175
193
  sprockets-rails (2.3.3)
@@ -180,9 +198,9 @@ GEM
180
198
  therubyracer (0.12.2)
181
199
  libv8 (~> 3.16.14.0)
182
200
  ref
183
- thor (0.19.1)
184
- thread_safe (0.3.5)
185
- tilt (2.0.5)
201
+ thor (0.19.4)
202
+ thread_safe (0.3.6)
203
+ tilt (2.0.6)
186
204
  turbolinks (5.0.1)
187
205
  turbolinks-source (~> 5)
188
206
  turbolinks-source (5.0.0)
@@ -195,7 +213,7 @@ GEM
195
213
  activemodel (>= 5.0)
196
214
  debug_inspector
197
215
  railties (>= 5.0)
198
- websocket-driver (0.6.4)
216
+ websocket-driver (0.6.5)
199
217
  websocket-extensions (>= 0.1.0)
200
218
  websocket-extensions (0.1.2)
201
219
 
@@ -205,7 +223,8 @@ PLATFORMS
205
223
  DEPENDENCIES
206
224
  byebug
207
225
  coffee-rails (~> 4.2)
208
- hyper-mesh
226
+ hyper-mesh!
227
+ hyper-operation!
209
228
  hyper-rails
210
229
  hyper-react
211
230
  hyper-router