hyper-mesh 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
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,4 @@
1
+ #config/initializers/hyper_mesh.rb
2
+ HyperMesh.configuration do |config|
3
+ config.transport = :action_cable
4
+ end
@@ -1,5 +1,5 @@
1
1
  Rails.application.routes.draw do
2
- mount ReactiveRecord::Engine => '/rr'
3
2
  get 'test', to: 'test#app'
3
+ mount HyperMesh::Engine => '/rr'
4
4
  # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
5
5
  end
@@ -11,10 +11,10 @@
11
11
  # if you're sharing your code publicly.
12
12
 
13
13
  development:
14
- secret_key_base: 5ca46f80991d79a0ce0c951dfa2dc18ff02a87d5442fe8fa3194bf5379dabc50508fe7fed09e2f5f86a3970ee50310695ad5a0c13598a779126f3697a1cff185
14
+ secret_key_base: ee1aa7002f86244721981841f0ffcf089cf11bd102dd10067c33c80472070a64e7ef116f267d93e9226de18842f946eb537949e1e0b94235bd8c952c34e80cc4
15
15
 
16
16
  test:
17
- secret_key_base: 8a98d85d0e342ceacbe0b2b39f771077eb1ad6ed44dfeee13cc0455d660ee1f3ff0602cdb42e4c1333fcae097d91d45dc3185731f7326be78ca270452679923c
17
+ secret_key_base: 2f38b435308d899cffff6653e5d4778d886f94ac1fa33cd04d9f99d43a306e7051f2f1abe236c6f04d5c114c90c3d0007b5958e4f8af7ec467221a82e4f59c09
18
18
 
19
19
  # Do not keep production secrets in the repository,
20
20
  # instead read values from the environment.
@@ -10,7 +10,20 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 20160921223808) do
13
+ ActiveRecord::Schema.define(version: 20161114213840) do
14
+
15
+ create_table "synchromesh_connections", force: :cascade do |t|
16
+ t.string "channel"
17
+ t.string "session"
18
+ t.datetime "created_at"
19
+ t.datetime "expires_at"
20
+ t.datetime "refresh_at"
21
+ end
22
+
23
+ create_table "synchromesh_queued_messages", force: :cascade do |t|
24
+ t.text "data"
25
+ t.integer "connection_id"
26
+ end
14
27
 
15
28
  create_table "words", force: :cascade do |t|
16
29
  t.string "text"
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
File without changes
@@ -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
@@ -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
@@ -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,59 @@
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
+ gem 'pusher-fake'
37
+ end
38
+
39
+ group :development do
40
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
41
+ gem 'web-console'
42
+ gem 'listen', '~> 3.0.5'
43
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
44
+ #gem 'spring'
45
+ #gem 'spring-watcher-listen', '~> 2.0.0'
46
+ gem 'hyper-rails'
47
+ end
48
+
49
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
50
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
51
+
52
+ gem 'opal-rails'
53
+ gem 'opal-browser'
54
+ gem 'hyper-react'
55
+ gem 'therubyracer', platforms: :ruby
56
+ gem 'react-router-rails', '~> 0.13.3'
57
+ gem 'hyper-router'
58
+ gem 'hyper-mesh'
59
+ gem 'pusher'
@@ -0,0 +1,262 @@
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
+ addressable (2.4.0)
42
+ arel (7.1.4)
43
+ babel-source (5.8.35)
44
+ babel-transpiler (0.7.0)
45
+ babel-source (>= 4.0, < 6)
46
+ execjs (~> 2.0)
47
+ builder (3.2.2)
48
+ byebug (9.0.6)
49
+ coffee-rails (4.2.1)
50
+ coffee-script (>= 2.2.0)
51
+ railties (>= 4.0.0, < 5.2.x)
52
+ coffee-script (2.4.1)
53
+ coffee-script-source
54
+ execjs
55
+ coffee-script-source (1.10.0)
56
+ concurrent-ruby (1.0.2)
57
+ connection_pool (2.2.1)
58
+ cookiejar (0.3.3)
59
+ daemons (1.2.4)
60
+ debug_inspector (0.0.2)
61
+ em-http-request (1.1.5)
62
+ addressable (>= 2.3.4)
63
+ cookiejar (!= 0.3.1)
64
+ em-socksify (>= 0.3)
65
+ eventmachine (>= 1.0.3)
66
+ http_parser.rb (>= 0.6.0)
67
+ em-socksify (0.3.1)
68
+ eventmachine (>= 1.0.0.beta.4)
69
+ em-websocket (0.5.1)
70
+ eventmachine (>= 0.12.9)
71
+ http_parser.rb (~> 0.6.0)
72
+ erubis (2.7.0)
73
+ eventmachine (1.2.0.1)
74
+ execjs (2.7.0)
75
+ ffi (1.9.14)
76
+ globalid (0.3.7)
77
+ activesupport (>= 4.1.0)
78
+ hike (1.2.3)
79
+ http_parser.rb (0.6.0)
80
+ httpclient (2.8.1)
81
+ hyper-mesh (0.5.0)
82
+ activerecord (>= 0.3.0)
83
+ hyper-react (>= 0.10.0)
84
+ hyper-rails (0.4.0)
85
+ rails (>= 4.0.0)
86
+ hyper-react (0.10.0)
87
+ opal (>= 0.8.0)
88
+ opal-activesupport (>= 0.2.0)
89
+ react-rails
90
+ hyper-router (2.4.0)
91
+ hyper-react
92
+ opal-browser
93
+ i18n (0.7.0)
94
+ jbuilder (2.6.0)
95
+ activesupport (>= 3.0.0, < 5.1)
96
+ multi_json (~> 1.2)
97
+ jquery-rails (4.2.1)
98
+ rails-dom-testing (>= 1, < 3)
99
+ railties (>= 4.2.0)
100
+ thor (>= 0.14, < 2.0)
101
+ libv8 (3.16.14.15)
102
+ listen (3.0.8)
103
+ rb-fsevent (~> 0.9, >= 0.9.4)
104
+ rb-inotify (~> 0.9, >= 0.9.7)
105
+ loofah (2.0.3)
106
+ nokogiri (>= 1.5.9)
107
+ mail (2.6.4)
108
+ mime-types (>= 1.16, < 4)
109
+ method_source (0.8.2)
110
+ mime-types (3.1)
111
+ mime-types-data (~> 3.2015)
112
+ mime-types-data (3.2016.0521)
113
+ mini_portile2 (2.1.0)
114
+ minitest (5.9.1)
115
+ multi_json (1.12.1)
116
+ nio4r (1.2.1)
117
+ nokogiri (1.6.8.1)
118
+ mini_portile2 (~> 2.1.0)
119
+ opal (0.10.3)
120
+ hike (~> 1.2)
121
+ sourcemap (~> 0.1.0)
122
+ sprockets (~> 3.1)
123
+ tilt (>= 1.4)
124
+ opal-activesupport (0.3.0)
125
+ opal (>= 0.5.0, < 1.0.0)
126
+ opal-browser (0.2.0)
127
+ opal
128
+ paggio
129
+ opal-jquery (0.4.2)
130
+ opal (>= 0.7.0, < 0.11.0)
131
+ opal-rails (0.9.0)
132
+ jquery-rails
133
+ opal (>= 0.8.0, < 0.11)
134
+ opal-activesupport (>= 0.0.5)
135
+ opal-jquery (~> 0.4.0)
136
+ rails (>= 4.0, < 6.0)
137
+ sprockets-rails (< 3.0)
138
+ paggio (0.2.6)
139
+ puma (3.6.0)
140
+ pusher (1.1.0)
141
+ httpclient (~> 2.7)
142
+ multi_json (~> 1.0)
143
+ pusher-signature (~> 0.1.8)
144
+ pusher-fake (1.6.0)
145
+ em-http-request (~> 1.1)
146
+ em-websocket (~> 0.5)
147
+ multi_json (~> 1.6)
148
+ thin (~> 1.5)
149
+ pusher-signature (0.1.8)
150
+ rack (2.0.1)
151
+ rack-test (0.6.3)
152
+ rack (>= 1.0)
153
+ rails (5.0.0.1)
154
+ actioncable (= 5.0.0.1)
155
+ actionmailer (= 5.0.0.1)
156
+ actionpack (= 5.0.0.1)
157
+ actionview (= 5.0.0.1)
158
+ activejob (= 5.0.0.1)
159
+ activemodel (= 5.0.0.1)
160
+ activerecord (= 5.0.0.1)
161
+ activesupport (= 5.0.0.1)
162
+ bundler (>= 1.3.0, < 2.0)
163
+ railties (= 5.0.0.1)
164
+ sprockets-rails (>= 2.0.0)
165
+ rails-dom-testing (2.0.1)
166
+ activesupport (>= 4.2.0, < 6.0)
167
+ nokogiri (~> 1.6.0)
168
+ rails-html-sanitizer (1.0.3)
169
+ loofah (~> 2.0)
170
+ railties (5.0.0.1)
171
+ actionpack (= 5.0.0.1)
172
+ activesupport (= 5.0.0.1)
173
+ method_source
174
+ rake (>= 0.8.7)
175
+ thor (>= 0.18.1, < 2.0)
176
+ rake (11.3.0)
177
+ rb-fsevent (0.9.8)
178
+ rb-inotify (0.9.7)
179
+ ffi (>= 0.5.0)
180
+ react-rails (1.4.2)
181
+ babel-transpiler (>= 0.7.0)
182
+ coffee-script-source (~> 1.8)
183
+ connection_pool
184
+ execjs
185
+ rails (>= 3.2)
186
+ tilt
187
+ react-router-rails (0.13.3.2)
188
+ rails (>= 3.1)
189
+ react-rails (~> 1.4.0)
190
+ ref (2.0.0)
191
+ sass (3.4.22)
192
+ sass-rails (5.0.6)
193
+ railties (>= 4.0.0, < 6)
194
+ sass (~> 3.1)
195
+ sprockets (>= 2.8, < 4.0)
196
+ sprockets-rails (>= 2.0, < 4.0)
197
+ tilt (>= 1.1, < 3)
198
+ sourcemap (0.1.1)
199
+ sprockets (3.7.0)
200
+ concurrent-ruby (~> 1.0)
201
+ rack (> 1, < 3)
202
+ sprockets-rails (2.3.3)
203
+ actionpack (>= 3.0)
204
+ activesupport (>= 3.0)
205
+ sprockets (>= 2.8, < 4.0)
206
+ sqlite3 (1.3.12)
207
+ therubyracer (0.12.2)
208
+ libv8 (~> 3.16.14.0)
209
+ ref
210
+ thin (1.7.0)
211
+ daemons (~> 1.0, >= 1.0.9)
212
+ eventmachine (~> 1.0, >= 1.0.4)
213
+ rack (>= 1, < 3)
214
+ thor (0.19.1)
215
+ thread_safe (0.3.5)
216
+ tilt (2.0.5)
217
+ turbolinks (5.0.1)
218
+ turbolinks-source (~> 5)
219
+ turbolinks-source (5.0.0)
220
+ tzinfo (1.2.2)
221
+ thread_safe (~> 0.1)
222
+ uglifier (3.0.3)
223
+ execjs (>= 0.3.0, < 3)
224
+ web-console (3.4.0)
225
+ actionview (>= 5.0)
226
+ activemodel (>= 5.0)
227
+ debug_inspector
228
+ railties (>= 5.0)
229
+ websocket-driver (0.6.4)
230
+ websocket-extensions (>= 0.1.0)
231
+ websocket-extensions (0.1.2)
232
+
233
+ PLATFORMS
234
+ ruby
235
+
236
+ DEPENDENCIES
237
+ byebug
238
+ coffee-rails (~> 4.2)
239
+ hyper-mesh
240
+ hyper-rails
241
+ hyper-react
242
+ hyper-router
243
+ jbuilder (~> 2.5)
244
+ jquery-rails
245
+ listen (~> 3.0.5)
246
+ opal-browser
247
+ opal-rails
248
+ puma (~> 3.0)
249
+ pusher
250
+ pusher-fake
251
+ rails (~> 5.0.0, >= 5.0.0.1)
252
+ react-router-rails (~> 0.13.3)
253
+ sass-rails (~> 5.0)
254
+ sqlite3
255
+ therubyracer
256
+ turbolinks (~> 5)
257
+ tzinfo-data
258
+ uglifier (>= 1.3.0)
259
+ web-console
260
+
261
+ BUNDLED WITH
262
+ 1.12.5