hyper-mesh 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (234) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -13
  3. data/docs/action_cable_quickstart.md +9 -7
  4. data/docs/activerecord_api.md +73 -0
  5. data/docs/client_side_scoping.md +5 -5
  6. data/docs/configuration_details.md +11 -0
  7. data/docs/pusher_faker_quickstart.md +95 -6
  8. data/docs/pusher_quickstart.md +96 -8
  9. data/docs/simple_poller_quickstart.md +21 -55
  10. data/docs/todo-example.md +2 -0
  11. data/docs/words-example.md +3 -0
  12. data/examples/action-cable/Gemfile +7 -8
  13. data/examples/action-cable/Gemfile.lock +28 -46
  14. data/examples/{simple-poller/app/assets/javascripts/channels → action-cable/app/assets/images}/.keep +0 -0
  15. data/examples/action-cable/app/assets/javascripts/application.js +5 -3
  16. data/examples/action-cable/app/assets/javascripts/cable.js +13 -0
  17. data/examples/{simple-poller/app/controllers/concerns → action-cable/app/assets/javascripts/channels}/.keep +0 -0
  18. data/examples/{simple-poller → action-cable}/app/channels/application_cable/channel.rb +0 -0
  19. data/examples/{simple-poller → action-cable}/app/channels/application_cable/connection.rb +0 -0
  20. data/examples/action-cable/app/controllers/test_controller.rb +0 -1
  21. data/examples/{simple-poller/app/models/concerns → action-cable/app/models/public}/.keep +0 -0
  22. data/examples/action-cable/app/policies/application_policy.rb +9 -1
  23. data/examples/action-cable/app/views/components.rb +2 -3
  24. data/examples/action-cable/bin/spring +4 -3
  25. data/examples/action-cable/config/application.rb +1 -11
  26. data/examples/action-cable/config/environments/development.rb +12 -1
  27. data/examples/action-cable/config/initializers/hyper_mesh.rb +4 -0
  28. data/examples/action-cable/config/routes.rb +1 -1
  29. data/examples/action-cable/config/secrets.yml +2 -2
  30. data/examples/action-cable/db/migrate/{20160921223808_create_words.rb → 20161114213840_create_words.rb} +0 -0
  31. data/examples/action-cable/db/schema.rb +14 -1
  32. data/examples/action-cable/db/seeds.rb +7 -0
  33. data/examples/{simple-poller/app/views/components → action-cable/lib/assets}/.keep +0 -0
  34. data/examples/action-cable/lib/tasks/.keep +0 -0
  35. data/examples/action-cable/test/controllers/.keep +0 -0
  36. data/examples/action-cable/test/fixtures/.keep +0 -0
  37. data/examples/action-cable/test/fixtures/files/.keep +0 -0
  38. data/examples/action-cable/test/fixtures/words.yml +7 -0
  39. data/examples/action-cable/test/helpers/.keep +0 -0
  40. data/examples/action-cable/test/integration/.keep +0 -0
  41. data/examples/action-cable/test/mailers/.keep +0 -0
  42. data/examples/action-cable/test/models/.keep +0 -0
  43. data/examples/action-cable/test/models/word_test.rb +7 -0
  44. data/examples/action-cable/test/test_helper.rb +10 -0
  45. data/examples/pusher-fake/.gitignore +21 -0
  46. data/examples/pusher-fake/Gemfile +59 -0
  47. data/examples/pusher-fake/Gemfile.lock +262 -0
  48. data/examples/pusher-fake/README.md +24 -0
  49. data/examples/pusher-fake/Rakefile +6 -0
  50. data/examples/pusher-fake/app/assets/config/manifest.js +3 -0
  51. data/examples/pusher-fake/app/assets/images/.keep +0 -0
  52. data/examples/pusher-fake/app/assets/javascripts/application.js +21 -0
  53. data/examples/pusher-fake/app/assets/stylesheets/application.css +15 -0
  54. data/examples/pusher-fake/app/controllers/application_controller.rb +3 -0
  55. data/examples/pusher-fake/app/controllers/test_controller.rb +5 -0
  56. data/examples/pusher-fake/app/models/models.rb +2 -0
  57. data/examples/pusher-fake/app/models/public/.keep +0 -0
  58. data/examples/pusher-fake/app/models/public/application_record.rb +3 -0
  59. data/examples/pusher-fake/app/models/public/word.rb +2 -0
  60. data/examples/pusher-fake/app/policies/application_policy.rb +14 -0
  61. data/examples/pusher-fake/app/views/components.rb +16 -0
  62. data/examples/pusher-fake/app/views/components/app.rb +18 -0
  63. data/examples/pusher-fake/app/views/layouts/application.html.erb +14 -0
  64. data/examples/pusher-fake/app/views/layouts/mailer.html.erb +13 -0
  65. data/examples/pusher-fake/app/views/layouts/mailer.text.erb +1 -0
  66. data/examples/pusher-fake/bin/bundle +3 -0
  67. data/examples/pusher-fake/bin/rails +9 -0
  68. data/examples/pusher-fake/bin/rake +9 -0
  69. data/examples/pusher-fake/bin/setup +34 -0
  70. data/examples/pusher-fake/bin/spring +16 -0
  71. data/examples/pusher-fake/bin/update +29 -0
  72. data/examples/pusher-fake/config.ru +5 -0
  73. data/examples/pusher-fake/config/application.rb +20 -0
  74. data/examples/pusher-fake/config/boot.rb +3 -0
  75. data/examples/pusher-fake/config/database.yml +25 -0
  76. data/examples/pusher-fake/config/environment.rb +5 -0
  77. data/examples/pusher-fake/config/environments/development.rb +56 -0
  78. data/examples/pusher-fake/config/environments/production.rb +86 -0
  79. data/examples/pusher-fake/config/environments/test.rb +42 -0
  80. data/examples/pusher-fake/config/initializers/application_controller_renderer.rb +6 -0
  81. data/examples/pusher-fake/config/initializers/assets.rb +11 -0
  82. data/examples/pusher-fake/config/initializers/backtrace_silencers.rb +7 -0
  83. data/examples/pusher-fake/config/initializers/cookies_serializer.rb +5 -0
  84. data/examples/pusher-fake/config/initializers/filter_parameter_logging.rb +4 -0
  85. data/examples/pusher-fake/config/initializers/hyper_mesh.rb +21 -0
  86. data/examples/pusher-fake/config/initializers/inflections.rb +16 -0
  87. data/examples/pusher-fake/config/initializers/mime_types.rb +4 -0
  88. data/examples/pusher-fake/config/initializers/new_framework_defaults.rb +24 -0
  89. data/examples/pusher-fake/config/initializers/session_store.rb +3 -0
  90. data/examples/pusher-fake/config/initializers/wrap_parameters.rb +14 -0
  91. data/examples/pusher-fake/config/locales/en.yml +23 -0
  92. data/examples/pusher-fake/config/puma.rb +47 -0
  93. data/examples/pusher-fake/config/routes.rb +5 -0
  94. data/examples/pusher-fake/config/secrets.yml +22 -0
  95. data/examples/pusher-fake/config/spring.rb +6 -0
  96. data/examples/{simple-poller/db/migrate/20161013220135_create_words.rb → pusher-fake/db/migrate/20161114213840_create_words.rb} +0 -0
  97. data/examples/pusher-fake/db/schema.rb +34 -0
  98. data/examples/pusher-fake/db/seeds.rb +7 -0
  99. data/examples/pusher-fake/lib/assets/.keep +0 -0
  100. data/examples/pusher-fake/lib/tasks/.keep +0 -0
  101. data/examples/pusher-fake/log/.keep +0 -0
  102. data/examples/pusher-fake/public/404.html +67 -0
  103. data/examples/pusher-fake/public/422.html +67 -0
  104. data/examples/pusher-fake/public/500.html +66 -0
  105. data/examples/pusher-fake/public/apple-touch-icon-precomposed.png +0 -0
  106. data/examples/pusher-fake/public/apple-touch-icon.png +0 -0
  107. data/examples/pusher-fake/public/favicon.ico +0 -0
  108. data/examples/pusher-fake/public/robots.txt +5 -0
  109. data/examples/pusher-fake/test/controllers/.keep +0 -0
  110. data/examples/pusher-fake/test/fixtures/.keep +0 -0
  111. data/examples/pusher-fake/test/fixtures/files/.keep +0 -0
  112. data/examples/pusher-fake/test/fixtures/words.yml +7 -0
  113. data/examples/pusher-fake/test/helpers/.keep +0 -0
  114. data/examples/pusher-fake/test/integration/.keep +0 -0
  115. data/examples/pusher-fake/test/mailers/.keep +0 -0
  116. data/examples/pusher-fake/test/models/.keep +0 -0
  117. data/examples/pusher-fake/test/models/word_test.rb +7 -0
  118. data/examples/pusher-fake/test/test_helper.rb +10 -0
  119. data/examples/pusher-fake/tmp/.keep +0 -0
  120. data/examples/pusher-fake/vendor/assets/javascripts/.keep +0 -0
  121. data/examples/pusher-fake/vendor/assets/stylesheets/.keep +0 -0
  122. data/examples/pusher/.gitignore +21 -0
  123. data/examples/pusher/Gemfile +58 -0
  124. data/examples/pusher/Gemfile.lock +236 -0
  125. data/examples/pusher/README.md +24 -0
  126. data/examples/pusher/Rakefile +6 -0
  127. data/examples/pusher/app/assets/config/manifest.js +3 -0
  128. data/examples/pusher/app/assets/images/.keep +0 -0
  129. data/examples/pusher/app/assets/javascripts/application.js +21 -0
  130. data/examples/pusher/app/assets/stylesheets/application.css +15 -0
  131. data/examples/pusher/app/controllers/application_controller.rb +3 -0
  132. data/examples/pusher/app/controllers/test_controller.rb +5 -0
  133. data/examples/pusher/app/models/models.rb +2 -0
  134. data/examples/pusher/app/models/public/.keep +0 -0
  135. data/examples/pusher/app/models/public/application_record.rb +3 -0
  136. data/examples/pusher/app/models/public/word.rb +2 -0
  137. data/examples/pusher/app/policies/application_policy.rb +14 -0
  138. data/examples/pusher/app/views/components.rb +16 -0
  139. data/examples/pusher/app/views/components/app.rb +18 -0
  140. data/examples/pusher/app/views/layouts/application.html.erb +14 -0
  141. data/examples/pusher/app/views/layouts/mailer.html.erb +13 -0
  142. data/examples/pusher/app/views/layouts/mailer.text.erb +1 -0
  143. data/examples/pusher/bin/bundle +3 -0
  144. data/examples/pusher/bin/rails +9 -0
  145. data/examples/pusher/bin/rake +9 -0
  146. data/examples/pusher/bin/setup +34 -0
  147. data/examples/pusher/bin/spring +16 -0
  148. data/examples/pusher/bin/update +29 -0
  149. data/examples/pusher/config.ru +5 -0
  150. data/examples/pusher/config/application.rb +20 -0
  151. data/examples/pusher/config/boot.rb +3 -0
  152. data/examples/pusher/config/database.yml +25 -0
  153. data/examples/pusher/config/environment.rb +5 -0
  154. data/examples/pusher/config/environments/development.rb +56 -0
  155. data/examples/pusher/config/environments/production.rb +86 -0
  156. data/examples/pusher/config/environments/test.rb +42 -0
  157. data/examples/pusher/config/initializers/application_controller_renderer.rb +6 -0
  158. data/examples/pusher/config/initializers/assets.rb +11 -0
  159. data/examples/pusher/config/initializers/backtrace_silencers.rb +7 -0
  160. data/examples/pusher/config/initializers/cookies_serializer.rb +5 -0
  161. data/examples/pusher/config/initializers/filter_parameter_logging.rb +4 -0
  162. data/examples/pusher/config/initializers/hyper_mesh.rb +10 -0
  163. data/examples/pusher/config/initializers/inflections.rb +16 -0
  164. data/examples/pusher/config/initializers/mime_types.rb +4 -0
  165. data/examples/pusher/config/initializers/new_framework_defaults.rb +24 -0
  166. data/examples/pusher/config/initializers/session_store.rb +3 -0
  167. data/examples/pusher/config/initializers/wrap_parameters.rb +14 -0
  168. data/examples/pusher/config/locales/en.yml +23 -0
  169. data/examples/pusher/config/puma.rb +47 -0
  170. data/examples/pusher/config/routes.rb +5 -0
  171. data/examples/pusher/config/secrets.yml +22 -0
  172. data/examples/pusher/config/spring.rb +6 -0
  173. data/examples/pusher/db/migrate/20161114213840_create_words.rb +9 -0
  174. data/examples/pusher/db/schema.rb +34 -0
  175. data/examples/pusher/db/seeds.rb +7 -0
  176. data/examples/pusher/lib/assets/.keep +0 -0
  177. data/examples/pusher/lib/tasks/.keep +0 -0
  178. data/examples/pusher/log/.keep +0 -0
  179. data/examples/pusher/public/404.html +67 -0
  180. data/examples/pusher/public/422.html +67 -0
  181. data/examples/pusher/public/500.html +66 -0
  182. data/examples/pusher/public/apple-touch-icon-precomposed.png +0 -0
  183. data/examples/pusher/public/apple-touch-icon.png +0 -0
  184. data/examples/pusher/public/favicon.ico +0 -0
  185. data/examples/pusher/public/robots.txt +5 -0
  186. data/examples/pusher/test/controllers/.keep +0 -0
  187. data/examples/pusher/test/fixtures/.keep +0 -0
  188. data/examples/pusher/test/fixtures/files/.keep +0 -0
  189. data/examples/pusher/test/fixtures/words.yml +7 -0
  190. data/examples/pusher/test/helpers/.keep +0 -0
  191. data/examples/pusher/test/integration/.keep +0 -0
  192. data/examples/pusher/test/mailers/.keep +0 -0
  193. data/examples/pusher/test/models/.keep +0 -0
  194. data/examples/pusher/test/models/word_test.rb +7 -0
  195. data/examples/pusher/test/test_helper.rb +10 -0
  196. data/examples/pusher/tmp/.keep +0 -0
  197. data/examples/pusher/vendor/assets/javascripts/.keep +0 -0
  198. data/examples/pusher/vendor/assets/stylesheets/.keep +0 -0
  199. data/examples/simple-poller/Gemfile +7 -14
  200. data/examples/simple-poller/Gemfile.lock +23 -66
  201. data/examples/simple-poller/app/assets/javascripts/application.js +5 -4
  202. data/examples/simple-poller/app/controllers/test_controller.rb +0 -1
  203. data/examples/simple-poller/app/policies/application_policy.rb +10 -1
  204. data/examples/simple-poller/app/views/components.rb +4 -6
  205. data/examples/simple-poller/app/views/components/app.rb +2 -24
  206. data/examples/simple-poller/app/views/layouts/application.html.erb +1 -1
  207. data/examples/simple-poller/bin/bundle +0 -0
  208. data/examples/simple-poller/bin/rails +0 -0
  209. data/examples/simple-poller/bin/rake +0 -0
  210. data/examples/simple-poller/bin/setup +0 -0
  211. data/examples/simple-poller/bin/spring +0 -0
  212. data/examples/simple-poller/bin/update +0 -0
  213. data/examples/simple-poller/config/application.rb +1 -1
  214. data/examples/simple-poller/config/environments/development.rb +13 -1
  215. data/examples/simple-poller/config/environments/production.rb +1 -1
  216. data/examples/simple-poller/config/initializers/hyper_mesh.rb +9 -0
  217. data/examples/simple-poller/config/initializers/session_store.rb +1 -1
  218. data/examples/simple-poller/config/routes.rb +1 -1
  219. data/examples/simple-poller/config/secrets.yml +2 -2
  220. data/examples/simple-poller/db/migrate/20161114213840_create_words.rb +9 -0
  221. data/examples/simple-poller/db/schema.rb +14 -1
  222. data/lib/hypermesh/version.rb +1 -1
  223. data/lib/reactive_record/active_record/reactive_record/dummy_value.rb +2 -0
  224. data/spec/synchromesh/{connection_spec.rb → unit_tests/connection_spec.rb} +0 -0
  225. data/spec/synchromesh/unit_tests/dummy_value_spec.rb +26 -0
  226. metadata +184 -20
  227. data/examples/action-cable/config/initializers/synchromesh.rb +0 -5
  228. data/examples/action-cable/rails_cache_dir2/C91/480/synchromesh_active_connections +0 -0
  229. data/examples/simple-poller/app/helpers/application_helper.rb +0 -2
  230. data/examples/simple-poller/app/jobs/application_job.rb +0 -2
  231. data/examples/simple-poller/app/mailers/application_mailer.rb +0 -4
  232. data/examples/simple-poller/config/cable.yml +0 -9
  233. data/examples/simple-poller/config/initializers/synchromesh.rb +0 -15
  234. data/hyper-mesh-0.4.0.gem +0 -0
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ text: MyString
5
+
6
+ two:
7
+ text: MyString
File without changes
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class WordTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,10 @@
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
7
+ fixtures :all
8
+
9
+ # Add more helper methods to be used by all tests here...
10
+ end
File without changes
@@ -0,0 +1,21 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore Byebug command history file.
21
+ .byebug_history
@@ -0,0 +1,58 @@
1
+ source 'https://rubygems.org'
2
+
3
+
4
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
+ gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
6
+ # Use sqlite3 as the database for Active Record
7
+ gem 'sqlite3'
8
+ # Use Puma as the app server
9
+ gem 'puma', '~> 3.0'
10
+ # Use SCSS for stylesheets
11
+ gem 'sass-rails', '~> 5.0'
12
+ # Use Uglifier as compressor for JavaScript assets
13
+ gem 'uglifier', '>= 1.3.0'
14
+ # Use CoffeeScript for .coffee assets and views
15
+ gem 'coffee-rails', '~> 4.2'
16
+ # See https://github.com/rails/execjs#readme for more supported runtimes
17
+ # gem 'therubyracer', platforms: :ruby
18
+
19
+ # Use jquery as the JavaScript library
20
+ gem 'jquery-rails'
21
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22
+ gem 'turbolinks', '~> 5'
23
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24
+ gem 'jbuilder', '~> 2.5'
25
+ # Use Redis adapter to run Action Cable in production
26
+ # gem 'redis', '~> 3.0'
27
+ # Use ActiveModel has_secure_password
28
+ # gem 'bcrypt', '~> 3.1.7'
29
+
30
+ # Use Capistrano for deployment
31
+ # gem 'capistrano-rails', group: :development
32
+
33
+ group :development, :test do
34
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
35
+ gem 'byebug', platform: :mri
36
+ end
37
+
38
+ group :development do
39
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
40
+ gem 'web-console'
41
+ gem 'listen', '~> 3.0.5'
42
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
43
+ #gem 'spring'
44
+ #gem 'spring-watcher-listen', '~> 2.0.0'
45
+ gem 'hyper-rails'
46
+ end
47
+
48
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
49
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
50
+
51
+ gem 'opal-rails'
52
+ gem 'opal-browser'
53
+ gem 'hyper-react'
54
+ gem 'therubyracer', platforms: :ruby
55
+ gem 'react-router-rails', '~> 0.13.3'
56
+ gem 'hyper-router'
57
+ gem 'hyper-mesh'
58
+ gem 'pusher'
@@ -0,0 +1,236 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (5.0.0.1)
5
+ actionpack (= 5.0.0.1)
6
+ nio4r (~> 1.2)
7
+ 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)
12
+ mail (~> 2.5, >= 2.5.4)
13
+ rails-dom-testing (~> 2.0)
14
+ actionpack (5.0.0.1)
15
+ actionview (= 5.0.0.1)
16
+ activesupport (= 5.0.0.1)
17
+ rack (~> 2.0)
18
+ rack-test (~> 0.6.3)
19
+ rails-dom-testing (~> 2.0)
20
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
+ actionview (5.0.0.1)
22
+ activesupport (= 5.0.0.1)
23
+ builder (~> 3.1)
24
+ erubis (~> 2.7.0)
25
+ 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)
29
+ 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)
35
+ arel (~> 7.0)
36
+ activesupport (5.0.0.1)
37
+ concurrent-ruby (~> 1.0, >= 1.0.2)
38
+ i18n (~> 0.7)
39
+ minitest (~> 5.1)
40
+ tzinfo (~> 1.1)
41
+ arel (7.1.4)
42
+ babel-source (5.8.35)
43
+ babel-transpiler (0.7.0)
44
+ babel-source (>= 4.0, < 6)
45
+ execjs (~> 2.0)
46
+ builder (3.2.2)
47
+ byebug (9.0.6)
48
+ coffee-rails (4.2.1)
49
+ coffee-script (>= 2.2.0)
50
+ railties (>= 4.0.0, < 5.2.x)
51
+ coffee-script (2.4.1)
52
+ coffee-script-source
53
+ execjs
54
+ coffee-script-source (1.10.0)
55
+ concurrent-ruby (1.0.2)
56
+ connection_pool (2.2.1)
57
+ debug_inspector (0.0.2)
58
+ erubis (2.7.0)
59
+ execjs (2.7.0)
60
+ ffi (1.9.14)
61
+ globalid (0.3.7)
62
+ activesupport (>= 4.1.0)
63
+ hike (1.2.3)
64
+ httpclient (2.8.1)
65
+ hyper-mesh (0.5.0)
66
+ activerecord (>= 0.3.0)
67
+ hyper-react (>= 0.10.0)
68
+ hyper-rails (0.4.0)
69
+ rails (>= 4.0.0)
70
+ hyper-react (0.10.0)
71
+ opal (>= 0.8.0)
72
+ opal-activesupport (>= 0.2.0)
73
+ react-rails
74
+ hyper-router (2.4.0)
75
+ hyper-react
76
+ opal-browser
77
+ i18n (0.7.0)
78
+ jbuilder (2.6.0)
79
+ activesupport (>= 3.0.0, < 5.1)
80
+ multi_json (~> 1.2)
81
+ jquery-rails (4.2.1)
82
+ rails-dom-testing (>= 1, < 3)
83
+ railties (>= 4.2.0)
84
+ thor (>= 0.14, < 2.0)
85
+ libv8 (3.16.14.15)
86
+ listen (3.0.8)
87
+ rb-fsevent (~> 0.9, >= 0.9.4)
88
+ rb-inotify (~> 0.9, >= 0.9.7)
89
+ loofah (2.0.3)
90
+ nokogiri (>= 1.5.9)
91
+ mail (2.6.4)
92
+ mime-types (>= 1.16, < 4)
93
+ method_source (0.8.2)
94
+ mime-types (3.1)
95
+ mime-types-data (~> 3.2015)
96
+ mime-types-data (3.2016.0521)
97
+ mini_portile2 (2.1.0)
98
+ minitest (5.9.1)
99
+ multi_json (1.12.1)
100
+ nio4r (1.2.1)
101
+ nokogiri (1.6.8.1)
102
+ mini_portile2 (~> 2.1.0)
103
+ opal (0.10.3)
104
+ hike (~> 1.2)
105
+ sourcemap (~> 0.1.0)
106
+ sprockets (~> 3.1)
107
+ tilt (>= 1.4)
108
+ opal-activesupport (0.3.0)
109
+ opal (>= 0.5.0, < 1.0.0)
110
+ opal-browser (0.2.0)
111
+ opal
112
+ paggio
113
+ opal-jquery (0.4.2)
114
+ opal (>= 0.7.0, < 0.11.0)
115
+ opal-rails (0.9.0)
116
+ jquery-rails
117
+ opal (>= 0.8.0, < 0.11)
118
+ opal-activesupport (>= 0.0.5)
119
+ opal-jquery (~> 0.4.0)
120
+ rails (>= 4.0, < 6.0)
121
+ sprockets-rails (< 3.0)
122
+ paggio (0.2.6)
123
+ puma (3.6.0)
124
+ pusher (1.1.0)
125
+ httpclient (~> 2.7)
126
+ multi_json (~> 1.0)
127
+ pusher-signature (~> 0.1.8)
128
+ pusher-signature (0.1.8)
129
+ rack (2.0.1)
130
+ rack-test (0.6.3)
131
+ rack (>= 1.0)
132
+ rails (5.0.0.1)
133
+ actioncable (= 5.0.0.1)
134
+ actionmailer (= 5.0.0.1)
135
+ actionpack (= 5.0.0.1)
136
+ actionview (= 5.0.0.1)
137
+ activejob (= 5.0.0.1)
138
+ activemodel (= 5.0.0.1)
139
+ activerecord (= 5.0.0.1)
140
+ activesupport (= 5.0.0.1)
141
+ bundler (>= 1.3.0, < 2.0)
142
+ railties (= 5.0.0.1)
143
+ sprockets-rails (>= 2.0.0)
144
+ rails-dom-testing (2.0.1)
145
+ activesupport (>= 4.2.0, < 6.0)
146
+ nokogiri (~> 1.6.0)
147
+ rails-html-sanitizer (1.0.3)
148
+ loofah (~> 2.0)
149
+ railties (5.0.0.1)
150
+ actionpack (= 5.0.0.1)
151
+ activesupport (= 5.0.0.1)
152
+ method_source
153
+ rake (>= 0.8.7)
154
+ thor (>= 0.18.1, < 2.0)
155
+ rake (11.3.0)
156
+ rb-fsevent (0.9.8)
157
+ rb-inotify (0.9.7)
158
+ ffi (>= 0.5.0)
159
+ react-rails (1.4.2)
160
+ babel-transpiler (>= 0.7.0)
161
+ coffee-script-source (~> 1.8)
162
+ connection_pool
163
+ execjs
164
+ rails (>= 3.2)
165
+ tilt
166
+ react-router-rails (0.13.3.2)
167
+ rails (>= 3.1)
168
+ react-rails (~> 1.4.0)
169
+ ref (2.0.0)
170
+ sass (3.4.22)
171
+ sass-rails (5.0.6)
172
+ railties (>= 4.0.0, < 6)
173
+ sass (~> 3.1)
174
+ sprockets (>= 2.8, < 4.0)
175
+ sprockets-rails (>= 2.0, < 4.0)
176
+ tilt (>= 1.1, < 3)
177
+ sourcemap (0.1.1)
178
+ sprockets (3.7.0)
179
+ concurrent-ruby (~> 1.0)
180
+ rack (> 1, < 3)
181
+ sprockets-rails (2.3.3)
182
+ actionpack (>= 3.0)
183
+ activesupport (>= 3.0)
184
+ sprockets (>= 2.8, < 4.0)
185
+ sqlite3 (1.3.12)
186
+ therubyracer (0.12.2)
187
+ libv8 (~> 3.16.14.0)
188
+ ref
189
+ thor (0.19.1)
190
+ thread_safe (0.3.5)
191
+ tilt (2.0.5)
192
+ turbolinks (5.0.1)
193
+ turbolinks-source (~> 5)
194
+ turbolinks-source (5.0.0)
195
+ tzinfo (1.2.2)
196
+ thread_safe (~> 0.1)
197
+ uglifier (3.0.3)
198
+ execjs (>= 0.3.0, < 3)
199
+ web-console (3.4.0)
200
+ actionview (>= 5.0)
201
+ activemodel (>= 5.0)
202
+ debug_inspector
203
+ railties (>= 5.0)
204
+ websocket-driver (0.6.4)
205
+ websocket-extensions (>= 0.1.0)
206
+ websocket-extensions (0.1.2)
207
+
208
+ PLATFORMS
209
+ ruby
210
+
211
+ DEPENDENCIES
212
+ byebug
213
+ coffee-rails (~> 4.2)
214
+ hyper-mesh
215
+ hyper-rails
216
+ hyper-react
217
+ hyper-router
218
+ jbuilder (~> 2.5)
219
+ jquery-rails
220
+ listen (~> 3.0.5)
221
+ opal-browser
222
+ opal-rails
223
+ puma (~> 3.0)
224
+ pusher
225
+ rails (~> 5.0.0, >= 5.0.0.1)
226
+ react-router-rails (~> 0.13.3)
227
+ sass-rails (~> 5.0)
228
+ sqlite3
229
+ therubyracer
230
+ turbolinks (~> 5)
231
+ tzinfo-data
232
+ uglifier (>= 1.3.0)
233
+ web-console
234
+
235
+ BUNDLED WITH
236
+ 1.12.5