hyper-model 0.6.0 → 0.99.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (140) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +35 -41
  3. data/.rspec +2 -0
  4. data/.travis.yml +33 -0
  5. data/CHANGELOG.md +34 -0
  6. data/DOCS.md +735 -0
  7. data/Gemfile +7 -0
  8. data/Gemfile.lock +298 -224
  9. data/{LICENSE → LICENSE.txt} +6 -6
  10. data/README.md +51 -2
  11. data/Rakefile +18 -0
  12. data/bin/console +14 -0
  13. data/bin/setup +7 -0
  14. data/codeship.database.yml +18 -0
  15. data/hyper-model.gemspec +62 -36
  16. data/lib/active_model_client_stubs.rb +16 -0
  17. data/lib/active_record_base.rb +331 -0
  18. data/{examples/chat-app/app/assets/images/.keep → lib/acts_as_string.rb} +0 -0
  19. data/lib/enumerable/pluck.rb +6 -0
  20. data/lib/hyper-model.rb +59 -8
  21. data/lib/hyper_model/version.rb +3 -0
  22. data/lib/hyper_react/input_tags.rb +47 -0
  23. data/lib/hyperloop/model/load.rb +1 -1
  24. data/lib/kernel/itself.rb +5 -0
  25. data/lib/object/tap.rb +7 -0
  26. data/lib/opal/equality_patches.rb +15 -0
  27. data/lib/opal/parse_patch.rb +14 -0
  28. data/lib/opal/set_patches.rb +8 -0
  29. data/lib/reactive_record/active_record/aggregations.rb +69 -0
  30. data/lib/reactive_record/active_record/associations.rb +118 -0
  31. data/lib/reactive_record/active_record/base.rb +10 -0
  32. data/lib/reactive_record/active_record/class_methods.rb +406 -0
  33. data/lib/reactive_record/active_record/error.rb +31 -0
  34. data/lib/reactive_record/active_record/errors.rb +374 -0
  35. data/lib/reactive_record/active_record/instance_methods.rb +187 -0
  36. data/lib/reactive_record/active_record/public_columns_hash.rb +44 -0
  37. data/lib/reactive_record/active_record/reactive_record/backing_record_inspector.rb +36 -0
  38. data/lib/reactive_record/active_record/reactive_record/base.rb +416 -0
  39. data/lib/reactive_record/active_record/reactive_record/collection.rb +558 -0
  40. data/lib/reactive_record/active_record/reactive_record/column_types.rb +75 -0
  41. data/lib/reactive_record/active_record/reactive_record/dummy_value.rb +236 -0
  42. data/lib/reactive_record/active_record/reactive_record/getters.rb +133 -0
  43. data/lib/reactive_record/active_record/reactive_record/isomorphic_base.rb +576 -0
  44. data/lib/reactive_record/active_record/reactive_record/lookup_tables.rb +54 -0
  45. data/lib/reactive_record/active_record/reactive_record/operations.rb +107 -0
  46. data/lib/reactive_record/active_record/reactive_record/scoped_collection.rb +62 -0
  47. data/lib/reactive_record/active_record/reactive_record/setters.rb +194 -0
  48. data/lib/reactive_record/active_record/reactive_record/unscoped_collection.rb +16 -0
  49. data/lib/reactive_record/active_record/reactive_record/while_loading.rb +343 -0
  50. data/lib/reactive_record/active_record_error.rb +4 -0
  51. data/lib/reactive_record/broadcast.rb +223 -0
  52. data/lib/reactive_record/engine.rb +11 -0
  53. data/lib/reactive_record/interval.rb +190 -0
  54. data/lib/reactive_record/permissions.rb +117 -0
  55. data/lib/reactive_record/pry.rb +13 -0
  56. data/lib/reactive_record/reactive_scope.rb +18 -0
  57. data/lib/reactive_record/scope_description.rb +121 -0
  58. data/lib/reactive_record/serializers.rb +7 -0
  59. data/lib/reactive_record/server_data_cache.rb +478 -0
  60. data/path_release_steps.md +9 -0
  61. metadata +399 -109
  62. data/CODE_OF_CONDUCT.md +0 -49
  63. data/examples/chat-app/.gitignore +0 -21
  64. data/examples/chat-app/Gemfile +0 -62
  65. data/examples/chat-app/Gemfile.lock +0 -309
  66. data/examples/chat-app/README.md +0 -3
  67. data/examples/chat-app/Rakefile +0 -6
  68. data/examples/chat-app/app/assets/config/manifest.js +0 -3
  69. data/examples/chat-app/app/assets/javascripts/application.js +0 -3
  70. data/examples/chat-app/app/assets/stylesheets/application.scss +0 -33
  71. data/examples/chat-app/app/controllers/application_controller.rb +0 -3
  72. data/examples/chat-app/app/controllers/home_controller.rb +0 -5
  73. data/examples/chat-app/app/hyperloop/components/app.rb +0 -12
  74. data/examples/chat-app/app/hyperloop/components/formatted_div.rb +0 -15
  75. data/examples/chat-app/app/hyperloop/components/input_box.rb +0 -26
  76. data/examples/chat-app/app/hyperloop/components/message.rb +0 -29
  77. data/examples/chat-app/app/hyperloop/components/messages.rb +0 -8
  78. data/examples/chat-app/app/hyperloop/components/nav.rb +0 -30
  79. data/examples/chat-app/app/hyperloop/models/application_record.rb +0 -3
  80. data/examples/chat-app/app/hyperloop/models/message.rb +0 -6
  81. data/examples/chat-app/app/hyperloop/operations/operations.rb +0 -13
  82. data/examples/chat-app/app/hyperloop/stores/message_store.rb +0 -17
  83. data/examples/chat-app/app/policies/application_policy.rb +0 -9
  84. data/examples/chat-app/app/views/layouts/application.html.erb +0 -12
  85. data/examples/chat-app/bin/bundle +0 -3
  86. data/examples/chat-app/bin/rails +0 -9
  87. data/examples/chat-app/bin/rake +0 -9
  88. data/examples/chat-app/bin/setup +0 -34
  89. data/examples/chat-app/bin/spring +0 -17
  90. data/examples/chat-app/bin/update +0 -29
  91. data/examples/chat-app/config.ru +0 -5
  92. data/examples/chat-app/config/application.rb +0 -12
  93. data/examples/chat-app/config/boot.rb +0 -3
  94. data/examples/chat-app/config/cable.yml +0 -9
  95. data/examples/chat-app/config/database.yml +0 -25
  96. data/examples/chat-app/config/environment.rb +0 -5
  97. data/examples/chat-app/config/environments/development.rb +0 -56
  98. data/examples/chat-app/config/environments/production.rb +0 -86
  99. data/examples/chat-app/config/environments/test.rb +0 -42
  100. data/examples/chat-app/config/initializers/application_controller_renderer.rb +0 -6
  101. data/examples/chat-app/config/initializers/assets.rb +0 -11
  102. data/examples/chat-app/config/initializers/backtrace_silencers.rb +0 -7
  103. data/examples/chat-app/config/initializers/cookies_serializer.rb +0 -5
  104. data/examples/chat-app/config/initializers/filter_parameter_logging.rb +0 -4
  105. data/examples/chat-app/config/initializers/hyperloop.rb +0 -6
  106. data/examples/chat-app/config/initializers/inflections.rb +0 -16
  107. data/examples/chat-app/config/initializers/mime_types.rb +0 -4
  108. data/examples/chat-app/config/initializers/new_framework_defaults.rb +0 -24
  109. data/examples/chat-app/config/initializers/session_store.rb +0 -3
  110. data/examples/chat-app/config/initializers/wrap_parameters.rb +0 -14
  111. data/examples/chat-app/config/locales/en.yml +0 -23
  112. data/examples/chat-app/config/puma.rb +0 -47
  113. data/examples/chat-app/config/routes.rb +0 -5
  114. data/examples/chat-app/config/secrets.yml +0 -22
  115. data/examples/chat-app/config/spring.rb +0 -6
  116. data/examples/chat-app/db/migrate/20170319194429_create_message.rb +0 -9
  117. data/examples/chat-app/db/schema.rb +0 -48
  118. data/examples/chat-app/db/seeds.rb +0 -7
  119. data/examples/chat-app/lib/assets/.keep +0 -0
  120. data/examples/chat-app/lib/tasks/.keep +0 -0
  121. data/examples/chat-app/log/.keep +0 -0
  122. data/examples/chat-app/public/404.html +0 -67
  123. data/examples/chat-app/public/422.html +0 -67
  124. data/examples/chat-app/public/500.html +0 -66
  125. data/examples/chat-app/public/apple-touch-icon-precomposed.png +0 -0
  126. data/examples/chat-app/public/apple-touch-icon.png +0 -0
  127. data/examples/chat-app/public/favicon.ico +0 -0
  128. data/examples/chat-app/public/robots.txt +0 -5
  129. data/examples/chat-app/test/controllers/.keep +0 -0
  130. data/examples/chat-app/test/fixtures/.keep +0 -0
  131. data/examples/chat-app/test/fixtures/files/.keep +0 -0
  132. data/examples/chat-app/test/helpers/.keep +0 -0
  133. data/examples/chat-app/test/integration/.keep +0 -0
  134. data/examples/chat-app/test/mailers/.keep +0 -0
  135. data/examples/chat-app/test/models/.keep +0 -0
  136. data/examples/chat-app/test/test_helper.rb +0 -10
  137. data/examples/chat-app/tmp/.keep +0 -0
  138. data/examples/chat-app/vendor/assets/javascripts/.keep +0 -0
  139. data/examples/chat-app/vendor/assets/stylesheets/.keep +0 -0
  140. data/lib/hyperloop/model/version.rb +0 -5
data/Gemfile CHANGED
@@ -1,3 +1,10 @@
1
1
  source 'https://rubygems.org'
2
+ #gem "opal-jquery", git: "https://github.com/opal/opal-jquery.git", branch: "master"
3
+ # hyper-model is still using an ancient inlined version of hyper-spec
4
+ #gem 'hyper-spec', path: '../hyper-spec'
5
+ gem 'hyperloop-config', path: '../hyperloop-config'
6
+ gem 'hyper-store', path: '../hyper-store'
7
+ gem 'hyper-component', path: '../hyper-component'
8
+ gem 'hyper-operation', path: '../hyper-operation'
2
9
 
3
10
  gemspec
@@ -1,358 +1,432 @@
1
+ GIT
2
+ remote: https://github.com/opal/opal-jquery.git
3
+ revision: 6249dfaf406ecd7199079b4f4d9dc67cfdf4d602
4
+ branch: master
5
+ specs:
6
+ opal-jquery (0.4.3)
7
+ opal (>= 0.10.0, < 0.12.0)
8
+
9
+ PATH
10
+ remote: ../hyper-component
11
+ specs:
12
+ hyper-component (1.0.0.lap28)
13
+ hyper-store (= 1.0.0.lap28)
14
+ hyperloop-config (= 1.0.0.lap28)
15
+ libv8 (~> 6.3.0)
16
+ mini_racer (~> 0.1.15)
17
+ opal (>= 0.11.0, < 0.12.0)
18
+ opal-activesupport (~> 0.3.1)
19
+ react-rails (>= 2.4.0, < 2.5.0)
20
+
21
+ PATH
22
+ remote: ../hyper-operation
23
+ specs:
24
+ hyper-operation (1.0.0.lap28)
25
+ activerecord (>= 4.0.0)
26
+ hyper-component (= 1.0.0.lap28)
27
+ mutations
28
+ opal-activesupport (~> 0.3.1)
29
+
30
+ PATH
31
+ remote: ../hyper-store
32
+ specs:
33
+ hyper-store (1.0.0.lap28)
34
+ hyperloop-config (= 1.0.0.lap28)
35
+ opal (>= 0.11.0, < 0.12.0)
36
+
37
+ PATH
38
+ remote: ../hyperloop-config
39
+ specs:
40
+ hyperloop-config (1.0.0.lap28)
41
+ libv8 (~> 6.3.0)
42
+ mini_racer (~> 0.1.15)
43
+ opal (>= 0.11.0, < 0.12.0)
44
+ opal-browser (~> 0.2.0)
45
+ uglifier
46
+
1
47
  PATH
2
48
  remote: .
3
49
  specs:
4
- hyper-model (0.6.0)
5
- hyper-mesh
50
+ hyper-model (1.0.0.lap28)
51
+ activemodel
52
+ activerecord (>= 4.0.0)
53
+ hyper-component (= 1.0.0.lap28)
54
+ hyper-operation (= 1.0.0.lap28)
6
55
 
7
56
  GEM
8
57
  remote: https://rubygems.org/
9
58
  specs:
10
59
  abstract_type (0.0.7)
11
- actioncable (5.0.2)
12
- actionpack (= 5.0.2)
13
- nio4r (>= 1.2, < 3.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.2)
16
- actionpack (= 5.0.2)
17
- actionview (= 5.0.2)
18
- activejob (= 5.0.2)
60
+ actioncable (5.2.1)
61
+ actionpack (= 5.2.1)
62
+ nio4r (~> 2.0)
63
+ websocket-driver (>= 0.6.1)
64
+ actionmailer (5.2.1)
65
+ actionpack (= 5.2.1)
66
+ actionview (= 5.2.1)
67
+ activejob (= 5.2.1)
19
68
  mail (~> 2.5, >= 2.5.4)
20
69
  rails-dom-testing (~> 2.0)
21
- actionpack (5.0.2)
22
- actionview (= 5.0.2)
23
- activesupport (= 5.0.2)
70
+ actionpack (5.2.1)
71
+ actionview (= 5.2.1)
72
+ activesupport (= 5.2.1)
24
73
  rack (~> 2.0)
25
- rack-test (~> 0.6.3)
74
+ rack-test (>= 0.6.3)
26
75
  rails-dom-testing (~> 2.0)
27
76
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.2)
29
- activesupport (= 5.0.2)
77
+ actionview (5.2.1)
78
+ activesupport (= 5.2.1)
30
79
  builder (~> 3.1)
31
- erubis (~> 2.7.0)
80
+ erubi (~> 1.4)
32
81
  rails-dom-testing (~> 2.0)
33
82
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.0.2)
35
- activesupport (= 5.0.2)
83
+ activejob (5.2.1)
84
+ activesupport (= 5.2.1)
36
85
  globalid (>= 0.3.6)
37
- activemodel (5.0.2)
38
- activesupport (= 5.0.2)
39
- activerecord (5.0.2)
40
- activemodel (= 5.0.2)
41
- activesupport (= 5.0.2)
42
- arel (~> 7.0)
43
- activesupport (5.0.2)
86
+ activemodel (5.2.1)
87
+ activesupport (= 5.2.1)
88
+ activerecord (5.2.1)
89
+ activemodel (= 5.2.1)
90
+ activesupport (= 5.2.1)
91
+ arel (>= 9.0)
92
+ activestorage (5.2.1)
93
+ actionpack (= 5.2.1)
94
+ activerecord (= 5.2.1)
95
+ marcel (~> 0.3.1)
96
+ activesupport (5.2.1)
44
97
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
98
+ i18n (>= 0.7, < 2)
46
99
  minitest (~> 5.1)
47
100
  tzinfo (~> 1.1)
48
101
  adamantium (0.2.0)
49
102
  ice_nine (~> 0.11.0)
50
103
  memoizable (~> 0.4.0)
51
- addressable (2.5.0)
52
- public_suffix (~> 2.0, >= 2.0.2)
53
- arel (7.1.4)
54
- ast (2.3.0)
104
+ addressable (2.5.2)
105
+ public_suffix (>= 2.0.2, < 4.0)
106
+ archive-zip (0.11.0)
107
+ io-like (~> 0.3.0)
108
+ arel (9.0.0)
109
+ ast (2.4.0)
55
110
  babel-source (5.8.35)
56
111
  babel-transpiler (0.7.0)
57
112
  babel-source (>= 4.0, < 6)
58
113
  execjs (~> 2.0)
59
114
  builder (3.2.3)
60
- byebug (9.0.6)
61
- capybara (2.12.1)
115
+ capybara (3.7.2)
62
116
  addressable
63
- mime-types (>= 1.16)
64
- nokogiri (>= 1.3.3)
65
- rack (>= 1.0.0)
66
- rack-test (>= 0.5.4)
67
- xpath (~> 2.0)
68
- childprocess (0.6.2)
117
+ mini_mime (>= 0.1.3)
118
+ nokogiri (~> 1.8)
119
+ rack (>= 1.6.0)
120
+ rack-test (>= 0.6.3)
121
+ xpath (~> 3.1)
122
+ childprocess (0.9.0)
69
123
  ffi (~> 1.0, >= 1.0.11)
70
- cliver (0.3.2)
71
- coderay (1.1.1)
72
- coffee-script-source (1.12.2)
124
+ chromedriver-helper (1.2.0)
125
+ archive-zip (~> 0.10)
126
+ nokogiri (~> 1.8)
127
+ coderay (1.1.2)
73
128
  concord (0.1.5)
74
129
  adamantium (~> 0.2.0)
75
130
  equalizer (~> 0.0.9)
76
131
  concurrent-ruby (1.0.5)
77
- connection_pool (2.2.1)
132
+ connection_pool (2.2.2)
78
133
  cookiejar (0.3.3)
79
- daemons (1.2.4)
80
- database_cleaner (1.5.3)
81
- diff-lcs (1.2.5)
134
+ crass (1.0.4)
135
+ daemons (1.2.6)
136
+ database_cleaner (1.7.0)
137
+ diff-lcs (1.3)
82
138
  em-http-request (1.1.5)
83
139
  addressable (>= 2.3.4)
84
140
  cookiejar (!= 0.3.1)
85
141
  em-socksify (>= 0.3)
86
142
  eventmachine (>= 1.0.3)
87
143
  http_parser.rb (>= 0.6.0)
88
- em-socksify (0.3.1)
144
+ em-socksify (0.3.2)
89
145
  eventmachine (>= 1.0.0.beta.4)
90
146
  em-websocket (0.5.1)
91
147
  eventmachine (>= 0.12.9)
92
148
  http_parser.rb (~> 0.6.0)
93
149
  equalizer (0.0.11)
94
- erubis (2.7.0)
95
- eventmachine (1.2.3)
150
+ erubi (1.7.1)
151
+ eventmachine (1.2.7)
96
152
  execjs (2.7.0)
97
- factory_girl (4.8.0)
153
+ factory_bot (4.11.1)
98
154
  activesupport (>= 3.0.0)
99
- factory_girl_rails (4.8.0)
100
- factory_girl (~> 4.8.0)
155
+ factory_bot_rails (4.11.1)
156
+ factory_bot (~> 4.11.1)
101
157
  railties (>= 3.0.0)
102
- ffi (1.9.18)
103
- globalid (0.3.7)
104
- activesupport (>= 4.1.0)
158
+ ffi (1.9.25)
159
+ globalid (0.4.1)
160
+ activesupport (>= 4.2.0)
105
161
  hike (1.2.3)
106
162
  http_parser.rb (0.6.0)
107
163
  httpclient (2.8.3)
108
- hyper-component (0.12.3)
109
- hyper-react (>= 0.12.3)
110
- hyperloop-config (>= 0.9.2)
111
- opal-rails (~> 0.9.0)
112
- react-rails (< 1.10.0)
113
- hyper-mesh (0.6.0)
114
- activerecord (>= 0.3.0)
115
- hyper-component (>= 0.12.3)
116
- hyper-operation (>= 0.5.0)
117
- hyper-operation (0.5.0)
118
- activerecord (>= 0.3.0)
119
- hyper-component (>= 0.12.2)
120
- hyperloop-config (>= 0.9.2)
121
- mutations
122
- opal-activesupport
123
- pusher
124
- pusher-fake
125
- hyper-react (0.12.3)
126
- hyper-store (>= 0.2.1)
127
- hyperloop-config (>= 0.9.2)
128
- opal (>= 0.8.0)
129
- opal-activesupport (>= 0.2.0)
130
- hyper-spec (0.1.0)
164
+ hyper-spec (1.0.0.lap28)
131
165
  capybara
132
- opal
133
- parser
134
- poltergeist
166
+ chromedriver-helper
167
+ method_source
168
+ opal (>= 0.11.0, < 0.12.0)
169
+ parser (>= 2.3.3.1)
135
170
  pry
136
171
  rspec-rails
137
- selenium-webdriver (= 2.53.4)
138
- timecop
139
- unparser (= 0.2.5)
140
- hyper-store (0.2.1)
141
- hyperloop-config (>= 0.9.2)
142
- hyperloop-config (0.9.2)
143
- opal
144
- i18n (0.8.1)
172
+ selenium-webdriver
173
+ timecop (~> 0.8.1)
174
+ uglifier
175
+ unparser
176
+ webdrivers
177
+ i18n (1.1.0)
178
+ concurrent-ruby (~> 1.0)
145
179
  ice_nine (0.11.2)
146
- jquery-rails (4.2.2)
180
+ interception (0.5)
181
+ io-like (0.3.0)
182
+ jquery-rails (4.3.3)
147
183
  rails-dom-testing (>= 1, < 3)
148
184
  railties (>= 4.2.0)
149
185
  thor (>= 0.14, < 2.0)
150
- listen (3.1.5)
151
- rb-fsevent (~> 0.9, >= 0.9.4)
152
- rb-inotify (~> 0.9, >= 0.9.7)
153
- ruby_dep (~> 1.2)
154
- loofah (2.0.3)
186
+ libv8 (6.3.292.48.1)
187
+ loofah (2.2.2)
188
+ crass (~> 1.0.2)
155
189
  nokogiri (>= 1.5.9)
156
- mail (2.6.4)
157
- mime-types (>= 1.16, < 4)
190
+ mail (2.7.0)
191
+ mini_mime (>= 0.1.1)
192
+ marcel (0.3.2)
193
+ mimemagic (~> 0.3.2)
158
194
  memoizable (0.4.2)
159
195
  thread_safe (~> 0.3, >= 0.3.1)
160
- method_source (0.8.2)
161
- mime-types (3.1)
162
- mime-types-data (~> 3.2015)
163
- mime-types-data (3.2016.0521)
164
- mini_portile2 (2.1.0)
165
- minitest (5.10.1)
166
- multi_json (1.12.1)
167
- mutations (0.8.1)
196
+ method_source (0.9.0)
197
+ mimemagic (0.3.2)
198
+ mini_mime (1.0.1)
199
+ mini_portile2 (2.3.0)
200
+ mini_racer (0.1.15)
201
+ libv8 (~> 6.3)
202
+ minitest (5.11.3)
203
+ multi_json (1.13.1)
204
+ mutations (0.8.3)
168
205
  activesupport
169
- nio4r (2.0.0)
170
- nokogiri (1.7.0.1)
171
- mini_portile2 (~> 2.1.0)
172
- opal (0.10.3)
206
+ mysql2 (0.5.2)
207
+ nio4r (2.3.1)
208
+ nokogiri (1.8.4)
209
+ mini_portile2 (~> 2.3.0)
210
+ opal (0.11.3)
211
+ ast (>= 2.3.0)
173
212
  hike (~> 1.2)
213
+ parser (= 2.3.3.1)
174
214
  sourcemap (~> 0.1.0)
175
- sprockets (~> 3.1)
176
- tilt (>= 1.4)
177
- opal-activesupport (0.3.0)
215
+ opal-activesupport (0.3.1)
178
216
  opal (>= 0.5.0, < 1.0.0)
179
217
  opal-browser (0.2.0)
180
218
  opal
181
219
  paggio
182
- opal-jquery (0.4.2)
183
- opal (>= 0.7.0, < 0.11.0)
184
- opal-rails (0.9.1)
220
+ opal-rails (0.9.5)
185
221
  jquery-rails
186
- opal (>= 0.8.0, < 0.11)
222
+ opal (>= 0.11.0, < 0.12)
187
223
  opal-activesupport (>= 0.0.5)
188
224
  opal-jquery (~> 0.4.0)
189
- opal-sprockets (~> 0.4.0)
190
- rails (>= 4.0, < 6.0)
191
- sprockets-rails (< 3.0)
192
- opal-sprockets (0.4.0.0.10.0.3.0.0)
193
- opal (~> 0.10.0)
194
- sprockets (~> 3.0)
225
+ opal-sprockets (~> 0.4.2)
226
+ rails (>= 4.1, < 6.0)
227
+ sprockets-rails (>= 2.3.3, < 4.0)
228
+ opal-sprockets (0.4.2.0.11.0.3.1)
229
+ opal (~> 0.11.0)
230
+ sprockets (~> 3.1)
195
231
  tilt (>= 1.4)
196
232
  paggio (0.2.6)
233
+ parallel (1.12.1)
197
234
  parser (2.3.3.1)
198
235
  ast (~> 2.2)
199
- poltergeist (1.13.0)
200
- capybara (~> 2.1)
201
- cliver (~> 0.3.1)
202
- websocket-driver (>= 0.2.0)
203
- powerpack (0.1.1)
236
+ powerpack (0.1.2)
204
237
  procto (0.0.3)
205
- pry (0.10.4)
238
+ pry (0.11.3)
206
239
  coderay (~> 1.1.0)
207
- method_source (~> 0.8.1)
208
- slop (~> 3.4)
209
- pry-byebug (3.4.2)
210
- byebug (~> 9.0)
211
- pry (~> 0.10)
212
- public_suffix (2.0.5)
213
- puma (3.8.2)
240
+ method_source (~> 0.9.0)
241
+ pry-rescue (1.4.5)
242
+ interception (>= 0.5)
243
+ pry
244
+ public_suffix (3.0.3)
245
+ puma (3.12.0)
214
246
  pusher (1.3.1)
215
247
  httpclient (~> 2.7)
216
248
  multi_json (~> 1.0)
217
249
  pusher-signature (~> 0.1.8)
218
- pusher-fake (1.8.0)
250
+ pusher-fake (1.10.0)
219
251
  em-http-request (~> 1.1)
220
252
  em-websocket (~> 0.5)
221
253
  multi_json (~> 1.6)
222
254
  thin (~> 1.5)
223
255
  pusher-signature (0.1.8)
224
- rack (2.0.1)
225
- rack-test (0.6.3)
226
- rack (>= 1.0)
227
- rails (5.0.2)
228
- actioncable (= 5.0.2)
229
- actionmailer (= 5.0.2)
230
- actionpack (= 5.0.2)
231
- actionview (= 5.0.2)
232
- activejob (= 5.0.2)
233
- activemodel (= 5.0.2)
234
- activerecord (= 5.0.2)
235
- activesupport (= 5.0.2)
236
- bundler (>= 1.3.0, < 2.0)
237
- railties (= 5.0.2)
256
+ rack (2.0.5)
257
+ rack-test (1.1.0)
258
+ rack (>= 1.0, < 3)
259
+ rails (5.2.1)
260
+ actioncable (= 5.2.1)
261
+ actionmailer (= 5.2.1)
262
+ actionpack (= 5.2.1)
263
+ actionview (= 5.2.1)
264
+ activejob (= 5.2.1)
265
+ activemodel (= 5.2.1)
266
+ activerecord (= 5.2.1)
267
+ activestorage (= 5.2.1)
268
+ activesupport (= 5.2.1)
269
+ bundler (>= 1.3.0)
270
+ railties (= 5.2.1)
238
271
  sprockets-rails (>= 2.0.0)
239
- rails-dom-testing (2.0.2)
240
- activesupport (>= 4.2.0, < 6.0)
241
- nokogiri (~> 1.6)
242
- rails-html-sanitizer (1.0.3)
243
- loofah (~> 2.0)
244
- railties (5.0.2)
245
- actionpack (= 5.0.2)
246
- activesupport (= 5.0.2)
272
+ rails-dom-testing (2.0.3)
273
+ activesupport (>= 4.2.0)
274
+ nokogiri (>= 1.6)
275
+ rails-html-sanitizer (1.0.4)
276
+ loofah (~> 2.2, >= 2.2.2)
277
+ railties (5.2.1)
278
+ actionpack (= 5.2.1)
279
+ activesupport (= 5.2.1)
247
280
  method_source
248
281
  rake (>= 0.8.7)
249
- thor (>= 0.18.1, < 2.0)
250
- rainbow (2.2.1)
251
- rake (10.5.0)
252
- rb-fsevent (0.9.8)
253
- rb-inotify (0.9.8)
254
- ffi (>= 0.5.0)
255
- react-rails (1.9.0)
282
+ thor (>= 0.19.0, < 2.0)
283
+ rainbow (2.2.2)
284
+ rake
285
+ rake (12.3.1)
286
+ react-rails (2.4.7)
256
287
  babel-transpiler (>= 0.7.0)
257
- coffee-script-source (~> 1.8)
258
288
  connection_pool
259
289
  execjs
260
290
  railties (>= 3.2)
261
291
  tilt
262
- rspec (3.5.0)
263
- rspec-core (~> 3.5.0)
264
- rspec-expectations (~> 3.5.0)
265
- rspec-mocks (~> 3.5.0)
266
- rspec-core (3.5.4)
267
- rspec-support (~> 3.5.0)
268
- rspec-expectations (3.5.0)
292
+ reactrb-rails-generator (0.2.0)
293
+ rails (>= 4.0.0)
294
+ rspec (3.8.0)
295
+ rspec-core (~> 3.8.0)
296
+ rspec-expectations (~> 3.8.0)
297
+ rspec-mocks (~> 3.8.0)
298
+ rspec-collection_matchers (1.1.3)
299
+ rspec-expectations (>= 2.99.0.beta1)
300
+ rspec-core (3.8.0)
301
+ rspec-support (~> 3.8.0)
302
+ rspec-expectations (3.8.1)
269
303
  diff-lcs (>= 1.2.0, < 2.0)
270
- rspec-support (~> 3.5.0)
271
- rspec-mocks (3.5.0)
304
+ rspec-support (~> 3.8.0)
305
+ rspec-its (1.2.0)
306
+ rspec-core (>= 3.0.0)
307
+ rspec-expectations (>= 3.0.0)
308
+ rspec-mocks (3.8.0)
272
309
  diff-lcs (>= 1.2.0, < 2.0)
273
- rspec-support (~> 3.5.0)
274
- rspec-rails (3.5.2)
310
+ rspec-support (~> 3.8.0)
311
+ rspec-rails (3.8.0)
275
312
  actionpack (>= 3.0)
276
313
  activesupport (>= 3.0)
277
314
  railties (>= 3.0)
278
- rspec-core (~> 3.5.0)
279
- rspec-expectations (~> 3.5.0)
280
- rspec-mocks (~> 3.5.0)
281
- rspec-support (~> 3.5.0)
315
+ rspec-core (~> 3.8.0)
316
+ rspec-expectations (~> 3.8.0)
317
+ rspec-mocks (~> 3.8.0)
318
+ rspec-support (~> 3.8.0)
282
319
  rspec-steps (2.1.1)
283
320
  rspec (>= 3.0, < 3.99)
284
- rspec-support (3.5.0)
285
- rubocop (0.47.1)
321
+ rspec-support (3.8.0)
322
+ rspec-wait (0.0.9)
323
+ rspec (>= 3, < 4)
324
+ rubocop (0.51.0)
325
+ parallel (~> 1.10)
286
326
  parser (>= 2.3.3.1, < 3.0)
287
327
  powerpack (~> 0.1)
288
- rainbow (>= 1.99.1, < 3.0)
328
+ rainbow (>= 2.2.2, < 3.0)
289
329
  ruby-progressbar (~> 1.7)
290
330
  unicode-display_width (~> 1.0, >= 1.0.1)
291
- ruby-progressbar (1.8.1)
292
- ruby_dep (1.5.0)
293
- rubyzip (1.2.1)
294
- selenium-webdriver (2.53.4)
331
+ ruby-progressbar (1.10.0)
332
+ rubyzip (1.2.2)
333
+ selenium-webdriver (3.14.0)
295
334
  childprocess (~> 0.5)
296
- rubyzip (~> 1.0)
297
- websocket (~> 1.0)
298
- slop (3.6.0)
335
+ rubyzip (~> 1.2)
336
+ shoulda (3.6.0)
337
+ shoulda-context (~> 1.0, >= 1.0.1)
338
+ shoulda-matchers (~> 3.0)
339
+ shoulda-context (1.2.2)
340
+ shoulda-matchers (3.1.2)
341
+ activesupport (>= 4.0.0)
299
342
  sourcemap (0.1.1)
300
- sprockets (3.7.1)
343
+ spring (2.0.2)
344
+ activesupport (>= 4.2)
345
+ spring-commands-rspec (1.0.4)
346
+ spring (>= 0.9.1)
347
+ sprockets (3.7.2)
301
348
  concurrent-ruby (~> 1.0)
302
349
  rack (> 1, < 3)
303
- sprockets-rails (2.3.3)
304
- actionpack (>= 3.0)
305
- activesupport (>= 3.0)
306
- sprockets (>= 2.8, < 4.0)
350
+ sprockets-rails (3.2.1)
351
+ actionpack (>= 4.0)
352
+ activesupport (>= 4.0)
353
+ sprockets (>= 3.0.0)
307
354
  sqlite3 (1.3.13)
308
- thin (1.7.0)
355
+ thin (1.7.2)
309
356
  daemons (~> 1.0, >= 1.0.9)
310
357
  eventmachine (~> 1.0, >= 1.0.4)
311
358
  rack (>= 1, < 3)
312
- thor (0.19.4)
359
+ thor (0.20.0)
313
360
  thread_safe (0.3.6)
314
- tilt (2.0.6)
361
+ tilt (2.0.8)
315
362
  timecop (0.8.1)
316
- tzinfo (1.2.2)
363
+ tzinfo (1.2.5)
317
364
  thread_safe (~> 0.1)
318
- unicode-display_width (1.1.3)
319
- unparser (0.2.5)
365
+ uglifier (4.1.19)
366
+ execjs (>= 0.3.0, < 3)
367
+ unicode-display_width (1.4.0)
368
+ unparser (0.2.8)
320
369
  abstract_type (~> 0.0.7)
321
370
  adamantium (~> 0.2.0)
322
371
  concord (~> 0.1.5)
323
- diff-lcs (~> 1.2.5)
372
+ diff-lcs (~> 1.3)
324
373
  equalizer (~> 0.0.9)
325
- parser (~> 2.3.0)
374
+ parser (>= 2.3.1.2, < 2.6)
326
375
  procto (~> 0.0.2)
327
- websocket (1.2.4)
328
- websocket-driver (0.6.5)
376
+ webdrivers (3.4.0)
377
+ nokogiri (~> 1.6)
378
+ rubyzip (~> 1.0)
379
+ selenium-webdriver (~> 3.0)
380
+ websocket-driver (0.7.0)
329
381
  websocket-extensions (>= 0.1.0)
330
- websocket-extensions (0.1.2)
331
- xpath (2.0.0)
332
- nokogiri (~> 1.3)
382
+ websocket-extensions (0.1.3)
383
+ xpath (3.1.0)
384
+ nokogiri (~> 1.8)
333
385
 
334
386
  PLATFORMS
335
387
  ruby
336
388
 
337
389
  DEPENDENCIES
338
- bundler (~> 1.12)
390
+ bundler
391
+ capybara
392
+ chromedriver-helper (= 1.2.0)
339
393
  database_cleaner
340
- factory_girl_rails
394
+ factory_bot_rails
395
+ hyper-component!
341
396
  hyper-model!
342
- hyper-spec
343
- listen
344
- opal
345
- opal-browser
346
- opal-rails
347
- pry-byebug
397
+ hyper-operation!
398
+ hyper-spec (= 1.0.0.lap28)
399
+ hyper-store!
400
+ hyperloop-config!
401
+ mysql2
402
+ opal-activesupport (~> 0.3.1)
403
+ opal-browser (~> 0.2.0)
404
+ opal-jquery!
405
+ opal-rails (~> 0.9.4)
406
+ parser
407
+ pry
408
+ pry-rescue
348
409
  puma
349
- rails
350
- rake (~> 10.0)
351
- react-rails (< 1.10.0)
352
- rspec
353
- rspec-steps
354
- rubocop
410
+ pusher
411
+ pusher-fake
412
+ rails (>= 4.0.0)
413
+ rake
414
+ react-rails (>= 2.4.0, < 2.5.0)
415
+ reactrb-rails-generator
416
+ rspec-collection_matchers
417
+ rspec-expectations
418
+ rspec-its
419
+ rspec-mocks
420
+ rspec-rails
421
+ rspec-steps (~> 2.1.1)
422
+ rspec-wait
423
+ rubocop (~> 0.51.0)
424
+ shoulda
425
+ shoulda-matchers
426
+ spring-commands-rspec
355
427
  sqlite3
428
+ timecop (~> 0.8.1)
429
+ unparser
356
430
 
357
431
  BUNDLED WITH
358
- 1.12.5
432
+ 1.16.1