hyper-component 0.12.3 → 0.99.0

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 (79) hide show
  1. checksums.yaml +5 -5
  2. data/.codeclimate.yml +27 -0
  3. data/.gitignore +42 -41
  4. data/.travis.yml +29 -0
  5. data/CHANGELOG.md +143 -0
  6. data/DOCS.md +1515 -0
  7. data/Gemfile +5 -2
  8. data/Gemfile.lock +244 -193
  9. data/LICENSE +5 -7
  10. data/README.md +49 -0
  11. data/Rakefile +40 -0
  12. data/hyper-component.gemspec +41 -31
  13. data/lib/hyper-component.rb +44 -9
  14. data/lib/rails-helpers/top_level_rails_component.rb +79 -0
  15. data/lib/react/api.rb +270 -0
  16. data/lib/react/callbacks.rb +42 -0
  17. data/lib/react/children.rb +38 -0
  18. data/lib/react/component.rb +189 -0
  19. data/lib/react/component/api.rb +70 -0
  20. data/lib/react/component/base.rb +13 -0
  21. data/lib/react/component/class_methods.rb +175 -0
  22. data/lib/react/component/dsl_instance_methods.rb +23 -0
  23. data/lib/react/component/params.rb +6 -0
  24. data/lib/react/component/props_wrapper.rb +90 -0
  25. data/lib/react/component/should_component_update.rb +99 -0
  26. data/lib/react/component/tags.rb +116 -0
  27. data/lib/react/config.rb +5 -0
  28. data/lib/react/element.rb +159 -0
  29. data/lib/react/event.rb +76 -0
  30. data/lib/react/ext/hash.rb +9 -0
  31. data/lib/react/ext/opal-jquery/element.rb +37 -0
  32. data/lib/react/ext/string.rb +8 -0
  33. data/lib/react/native_library.rb +87 -0
  34. data/lib/react/object.rb +15 -0
  35. data/lib/react/react-source-server.rb +3 -0
  36. data/lib/react/react-source.rb +17 -0
  37. data/lib/react/ref_callback.rb +31 -0
  38. data/lib/react/rendering_context.rb +149 -0
  39. data/lib/react/server.rb +19 -0
  40. data/lib/react/state_wrapper.rb +23 -0
  41. data/lib/react/test.rb +16 -0
  42. data/lib/react/test/dsl.rb +17 -0
  43. data/lib/react/test/matchers/render_html_matcher.rb +56 -0
  44. data/lib/react/test/rspec.rb +15 -0
  45. data/lib/react/test/session.rb +37 -0
  46. data/lib/react/test/utils.rb +71 -0
  47. data/lib/react/to_key.rb +26 -0
  48. data/lib/react/top_level.rb +110 -0
  49. data/lib/react/top_level_render.rb +28 -0
  50. data/lib/react/validator.rb +132 -0
  51. data/lib/reactive-ruby/component_loader.rb +43 -0
  52. data/lib/reactive-ruby/isomorphic_helpers.rb +233 -0
  53. data/lib/reactive-ruby/rails.rb +8 -0
  54. data/lib/reactive-ruby/rails/component_mount.rb +48 -0
  55. data/lib/reactive-ruby/rails/controller_helper.rb +14 -0
  56. data/lib/reactive-ruby/rails/railtie.rb +20 -0
  57. data/lib/reactive-ruby/serializers.rb +23 -0
  58. data/lib/reactive-ruby/server_rendering/contextual_renderer.rb +46 -0
  59. data/lib/reactive-ruby/server_rendering/hyper_asset_container.rb +46 -0
  60. data/lib/{hyperloop/component → reactive-ruby}/version.rb +1 -1
  61. data/lib/reactrb/auto-import.rb +27 -0
  62. data/misc/generators/reactive_ruby/test_app/templates/assets/javascripts/components.rb +3 -0
  63. data/misc/generators/reactive_ruby/test_app/templates/assets/javascripts/server_rendering.js +5 -0
  64. data/misc/generators/reactive_ruby/test_app/templates/assets/javascripts/test_application.rb +2 -0
  65. data/misc/generators/reactive_ruby/test_app/templates/boot.rb.erb +6 -0
  66. data/misc/generators/reactive_ruby/test_app/templates/script/rails +5 -0
  67. data/misc/generators/reactive_ruby/test_app/templates/test_application.rb.erb +13 -0
  68. data/misc/generators/reactive_ruby/test_app/templates/views/components/hello_world.rb +11 -0
  69. data/misc/generators/reactive_ruby/test_app/templates/views/components/todo.rb +14 -0
  70. data/misc/generators/reactive_ruby/test_app/templates/views/layouts/test_layout.html.erb +0 -0
  71. data/misc/generators/reactive_ruby/test_app/test_app_generator.rb +121 -0
  72. data/misc/how-component-name-lookup-works.md +145 -0
  73. data/misc/hyperloop-logo-small-pink.png +0 -0
  74. data/misc/logo1.png +0 -0
  75. data/misc/logo2.png +0 -0
  76. data/misc/logo3.png +0 -0
  77. data/path_release_steps.md +9 -0
  78. metadata +260 -37
  79. data/CODE_OF_CONDUCT.md +0 -49
data/Gemfile CHANGED
@@ -1,4 +1,7 @@
1
1
  source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in hyper-component.gemspec
2
+ #gem "opal-jquery", git: "https://github.com/opal/opal-jquery.git", branch: "master"
3
+ gem 'hyper-spec', path: '../hyper-spec'
4
+ gem 'hyperloop-config', path: '../hyperloop-config'
5
+ gem 'hyper-store', path: '../hyper-store'
6
+ #gem 'puma', '~> 3.11.0' # As of adding, version 3.12.0 isn't working so we are locking
4
7
  gemspec
@@ -1,299 +1,350 @@
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-spec
11
+ specs:
12
+ hyper-spec (1.0.0.lap28)
13
+ capybara
14
+ chromedriver-helper
15
+ libv8 (~> 6.3.0)
16
+ method_source
17
+ mini_racer (~> 0.1.15)
18
+ opal (>= 0.11.0, < 0.12.0)
19
+ parser (>= 2.3.3.1)
20
+ pry
21
+ rspec-rails
22
+ selenium-webdriver
23
+ timecop (~> 0.8.1)
24
+ uglifier
25
+ unparser
26
+ webdrivers
27
+
28
+ PATH
29
+ remote: ../hyper-store
30
+ specs:
31
+ hyper-store (1.0.0.lap28)
32
+ hyperloop-config (= 1.0.0.lap28)
33
+ opal (>= 0.11.0, < 0.12.0)
34
+
35
+ PATH
36
+ remote: ../hyperloop-config
37
+ specs:
38
+ hyperloop-config (1.0.0.lap28)
39
+ libv8 (~> 6.3.0)
40
+ mini_racer (~> 0.1.15)
41
+ opal (>= 0.11.0, < 0.12.0)
42
+ opal-browser (~> 0.2.0)
43
+ uglifier
44
+
1
45
  PATH
2
46
  remote: .
3
47
  specs:
4
- hyper-component (0.12.3)
5
- hyper-react (>= 0.12.3)
6
- hyperloop-config (>= 0.9.2)
7
- opal-rails (~> 0.9.0)
8
- react-rails (< 1.10.0)
48
+ hyper-component (1.0.0.lap28)
49
+ hyper-store (= 1.0.0.lap28)
50
+ hyperloop-config (= 1.0.0.lap28)
51
+ libv8 (~> 6.3.0)
52
+ mini_racer (~> 0.1.15)
53
+ opal (>= 0.11.0, < 0.12.0)
54
+ opal-activesupport (~> 0.3.1)
55
+ react-rails (>= 2.4.0, < 2.5.0)
9
56
 
10
57
  GEM
11
58
  remote: https://rubygems.org/
12
59
  specs:
13
60
  abstract_type (0.0.7)
14
- actioncable (5.0.2)
15
- actionpack (= 5.0.2)
16
- nio4r (>= 1.2, < 3.0)
17
- websocket-driver (~> 0.6.1)
18
- actionmailer (5.0.2)
19
- actionpack (= 5.0.2)
20
- actionview (= 5.0.2)
21
- activejob (= 5.0.2)
61
+ actioncable (5.2.1)
62
+ actionpack (= 5.2.1)
63
+ nio4r (~> 2.0)
64
+ websocket-driver (>= 0.6.1)
65
+ actionmailer (5.2.1)
66
+ actionpack (= 5.2.1)
67
+ actionview (= 5.2.1)
68
+ activejob (= 5.2.1)
22
69
  mail (~> 2.5, >= 2.5.4)
23
70
  rails-dom-testing (~> 2.0)
24
- actionpack (5.0.2)
25
- actionview (= 5.0.2)
26
- activesupport (= 5.0.2)
71
+ actionpack (5.2.1)
72
+ actionview (= 5.2.1)
73
+ activesupport (= 5.2.1)
27
74
  rack (~> 2.0)
28
- rack-test (~> 0.6.3)
75
+ rack-test (>= 0.6.3)
29
76
  rails-dom-testing (~> 2.0)
30
77
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
- actionview (5.0.2)
32
- activesupport (= 5.0.2)
78
+ actionview (5.2.1)
79
+ activesupport (= 5.2.1)
33
80
  builder (~> 3.1)
34
- erubis (~> 2.7.0)
81
+ erubi (~> 1.4)
35
82
  rails-dom-testing (~> 2.0)
36
83
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
- activejob (5.0.2)
38
- activesupport (= 5.0.2)
84
+ activejob (5.2.1)
85
+ activesupport (= 5.2.1)
39
86
  globalid (>= 0.3.6)
40
- activemodel (5.0.2)
41
- activesupport (= 5.0.2)
42
- activerecord (5.0.2)
43
- activemodel (= 5.0.2)
44
- activesupport (= 5.0.2)
45
- arel (~> 7.0)
46
- activesupport (5.0.2)
87
+ activemodel (5.2.1)
88
+ activesupport (= 5.2.1)
89
+ activerecord (5.2.1)
90
+ activemodel (= 5.2.1)
91
+ activesupport (= 5.2.1)
92
+ arel (>= 9.0)
93
+ activestorage (5.2.1)
94
+ actionpack (= 5.2.1)
95
+ activerecord (= 5.2.1)
96
+ marcel (~> 0.3.1)
97
+ activesupport (5.2.1)
47
98
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (~> 0.7)
99
+ i18n (>= 0.7, < 2)
49
100
  minitest (~> 5.1)
50
101
  tzinfo (~> 1.1)
51
102
  adamantium (0.2.0)
52
103
  ice_nine (~> 0.11.0)
53
104
  memoizable (~> 0.4.0)
54
- addressable (2.5.0)
55
- public_suffix (~> 2.0, >= 2.0.2)
56
- arel (7.1.4)
57
- ast (2.3.0)
105
+ addressable (2.5.2)
106
+ public_suffix (>= 2.0.2, < 4.0)
107
+ archive-zip (0.11.0)
108
+ io-like (~> 0.3.0)
109
+ arel (9.0.0)
110
+ ast (2.4.0)
58
111
  babel-source (5.8.35)
59
112
  babel-transpiler (0.7.0)
60
113
  babel-source (>= 4.0, < 6)
61
114
  execjs (~> 2.0)
62
115
  builder (3.2.3)
63
- byebug (9.0.6)
64
- capybara (2.12.1)
116
+ capybara (3.7.2)
65
117
  addressable
66
- mime-types (>= 1.16)
67
- nokogiri (>= 1.3.3)
68
- rack (>= 1.0.0)
69
- rack-test (>= 0.5.4)
70
- xpath (~> 2.0)
71
- childprocess (0.6.2)
118
+ mini_mime (>= 0.1.3)
119
+ nokogiri (~> 1.8)
120
+ rack (>= 1.6.0)
121
+ rack-test (>= 0.6.3)
122
+ xpath (~> 3.1)
123
+ childprocess (0.9.0)
72
124
  ffi (~> 1.0, >= 1.0.11)
73
- cliver (0.3.2)
74
- coderay (1.1.1)
75
- coffee-script-source (1.12.2)
125
+ chromedriver-helper (1.2.0)
126
+ archive-zip (~> 0.10)
127
+ nokogiri (~> 1.8)
128
+ coderay (1.1.2)
76
129
  concord (0.1.5)
77
130
  adamantium (~> 0.2.0)
78
131
  equalizer (~> 0.0.9)
79
132
  concurrent-ruby (1.0.5)
80
- connection_pool (2.2.1)
81
- diff-lcs (1.2.5)
133
+ connection_pool (2.2.2)
134
+ crass (1.0.4)
135
+ diff-lcs (1.3)
82
136
  equalizer (0.0.11)
83
- erubis (2.7.0)
137
+ erubi (1.7.1)
84
138
  execjs (2.7.0)
85
- ffi (1.9.18)
86
- globalid (0.3.7)
87
- activesupport (>= 4.1.0)
139
+ ffi (1.9.25)
140
+ globalid (0.4.1)
141
+ activesupport (>= 4.2.0)
88
142
  hike (1.2.3)
89
- hyper-react (0.12.3)
90
- hyper-store (>= 0.2.1)
91
- hyperloop-config (>= 0.9.2)
92
- opal (>= 0.8.0)
93
- opal-activesupport (>= 0.2.0)
94
- hyper-spec (0.1.0)
95
- capybara
96
- opal
97
- parser
98
- poltergeist
99
- pry
100
- rspec-rails
101
- selenium-webdriver (= 2.53.4)
102
- timecop
103
- unparser (= 0.2.5)
104
- hyper-store (0.2.1)
105
- hyperloop-config (>= 0.9.2)
106
- hyperloop-config (0.9.2)
107
- opal
108
- i18n (0.8.1)
143
+ i18n (1.1.0)
144
+ concurrent-ruby (~> 1.0)
109
145
  ice_nine (0.11.2)
110
- jquery-rails (4.3.1)
146
+ io-like (0.3.0)
147
+ jquery-rails (4.3.3)
111
148
  rails-dom-testing (>= 1, < 3)
112
149
  railties (>= 4.2.0)
113
150
  thor (>= 0.14, < 2.0)
151
+ libv8 (6.3.292.48.1)
114
152
  listen (3.1.5)
115
153
  rb-fsevent (~> 0.9, >= 0.9.4)
116
154
  rb-inotify (~> 0.9, >= 0.9.7)
117
155
  ruby_dep (~> 1.2)
118
- loofah (2.0.3)
156
+ loofah (2.2.2)
157
+ crass (~> 1.0.2)
119
158
  nokogiri (>= 1.5.9)
120
- mail (2.6.4)
121
- mime-types (>= 1.16, < 4)
159
+ mail (2.7.0)
160
+ mini_mime (>= 0.1.1)
161
+ marcel (0.3.2)
162
+ mimemagic (~> 0.3.2)
122
163
  memoizable (0.4.2)
123
164
  thread_safe (~> 0.3, >= 0.3.1)
124
- method_source (0.8.2)
125
- mime-types (3.1)
165
+ method_source (0.9.0)
166
+ mime-types (3.2.2)
126
167
  mime-types-data (~> 3.2015)
127
- mime-types-data (3.2016.0521)
128
- mini_portile2 (2.1.0)
129
- minitest (5.10.1)
130
- nio4r (2.0.0)
131
- nokogiri (1.7.0.1)
132
- mini_portile2 (~> 2.1.0)
133
- opal (0.10.3)
168
+ mime-types-data (3.2018.0812)
169
+ mimemagic (0.3.2)
170
+ mini_mime (1.0.1)
171
+ mini_portile2 (2.3.0)
172
+ mini_racer (0.1.15)
173
+ libv8 (~> 6.3)
174
+ minitest (5.11.3)
175
+ nio4r (2.3.1)
176
+ nokogiri (1.8.4)
177
+ mini_portile2 (~> 2.3.0)
178
+ opal (0.11.3)
179
+ ast (>= 2.3.0)
134
180
  hike (~> 1.2)
181
+ parser (= 2.3.3.1)
135
182
  sourcemap (~> 0.1.0)
136
- sprockets (~> 3.1)
137
- tilt (>= 1.4)
138
- opal-activesupport (0.3.0)
183
+ opal-activesupport (0.3.1)
139
184
  opal (>= 0.5.0, < 1.0.0)
140
185
  opal-browser (0.2.0)
141
186
  opal
142
187
  paggio
143
- opal-jquery (0.4.2)
144
- opal (>= 0.7.0, < 0.11.0)
145
- opal-rails (0.9.1)
188
+ opal-rails (0.9.5)
146
189
  jquery-rails
147
- opal (>= 0.8.0, < 0.11)
190
+ opal (>= 0.11.0, < 0.12)
148
191
  opal-activesupport (>= 0.0.5)
149
192
  opal-jquery (~> 0.4.0)
150
- opal-sprockets (~> 0.4.0)
151
- rails (>= 4.0, < 6.0)
152
- sprockets-rails (< 3.0)
153
- opal-sprockets (0.4.0.0.10.0.3.0.0)
154
- opal (~> 0.10.0)
155
- sprockets (~> 3.0)
193
+ opal-sprockets (~> 0.4.2)
194
+ rails (>= 4.1, < 6.0)
195
+ sprockets-rails (>= 2.3.3, < 4.0)
196
+ opal-rspec (0.6.1)
197
+ opal (>= 0.10.0, < 0.12)
198
+ opal-sprockets (0.4.2.0.11.0.3.1)
199
+ opal (~> 0.11.0)
200
+ sprockets (~> 3.1)
156
201
  tilt (>= 1.4)
157
202
  paggio (0.2.6)
203
+ parallel (1.12.1)
158
204
  parser (2.3.3.1)
159
205
  ast (~> 2.2)
160
- poltergeist (1.13.0)
161
- capybara (~> 2.1)
162
- cliver (~> 0.3.1)
163
- websocket-driver (>= 0.2.0)
164
- powerpack (0.1.1)
206
+ powerpack (0.1.2)
165
207
  procto (0.0.3)
166
- pry (0.10.4)
208
+ pry (0.11.3)
167
209
  coderay (~> 1.1.0)
168
- method_source (~> 0.8.1)
169
- slop (~> 3.4)
170
- pry-byebug (3.4.2)
171
- byebug (~> 9.0)
172
- pry (~> 0.10)
173
- public_suffix (2.0.5)
174
- rack (2.0.1)
175
- rack-test (0.6.3)
176
- rack (>= 1.0)
177
- rails (5.0.2)
178
- actioncable (= 5.0.2)
179
- actionmailer (= 5.0.2)
180
- actionpack (= 5.0.2)
181
- actionview (= 5.0.2)
182
- activejob (= 5.0.2)
183
- activemodel (= 5.0.2)
184
- activerecord (= 5.0.2)
185
- activesupport (= 5.0.2)
186
- bundler (>= 1.3.0, < 2.0)
187
- railties (= 5.0.2)
210
+ method_source (~> 0.9.0)
211
+ public_suffix (3.0.3)
212
+ puma (3.12.0)
213
+ rack (2.0.5)
214
+ rack-test (1.1.0)
215
+ rack (>= 1.0, < 3)
216
+ rails (5.2.1)
217
+ actioncable (= 5.2.1)
218
+ actionmailer (= 5.2.1)
219
+ actionpack (= 5.2.1)
220
+ actionview (= 5.2.1)
221
+ activejob (= 5.2.1)
222
+ activemodel (= 5.2.1)
223
+ activerecord (= 5.2.1)
224
+ activestorage (= 5.2.1)
225
+ activesupport (= 5.2.1)
226
+ bundler (>= 1.3.0)
227
+ railties (= 5.2.1)
188
228
  sprockets-rails (>= 2.0.0)
189
- rails-dom-testing (2.0.2)
190
- activesupport (>= 4.2.0, < 6.0)
191
- nokogiri (~> 1.6)
192
- rails-html-sanitizer (1.0.3)
193
- loofah (~> 2.0)
194
- railties (5.0.2)
195
- actionpack (= 5.0.2)
196
- activesupport (= 5.0.2)
229
+ rails-controller-testing (1.0.2)
230
+ actionpack (~> 5.x, >= 5.0.1)
231
+ actionview (~> 5.x, >= 5.0.1)
232
+ activesupport (~> 5.x)
233
+ rails-dom-testing (2.0.3)
234
+ activesupport (>= 4.2.0)
235
+ nokogiri (>= 1.6)
236
+ rails-html-sanitizer (1.0.4)
237
+ loofah (~> 2.2, >= 2.2.2)
238
+ railties (5.2.1)
239
+ actionpack (= 5.2.1)
240
+ activesupport (= 5.2.1)
197
241
  method_source
198
242
  rake (>= 0.8.7)
199
- thor (>= 0.18.1, < 2.0)
200
- rainbow (2.2.1)
201
- rake (10.5.0)
202
- rb-fsevent (0.9.8)
203
- rb-inotify (0.9.8)
204
- ffi (>= 0.5.0)
205
- react-rails (1.9.0)
243
+ thor (>= 0.19.0, < 2.0)
244
+ rainbow (2.2.2)
245
+ rake
246
+ rake (12.3.1)
247
+ rb-fsevent (0.10.3)
248
+ rb-inotify (0.9.10)
249
+ ffi (>= 0.5.0, < 2)
250
+ react-rails (2.4.7)
206
251
  babel-transpiler (>= 0.7.0)
207
- coffee-script-source (~> 1.8)
208
252
  connection_pool
209
253
  execjs
210
254
  railties (>= 3.2)
211
255
  tilt
212
- rspec (3.5.0)
213
- rspec-core (~> 3.5.0)
214
- rspec-expectations (~> 3.5.0)
215
- rspec-mocks (~> 3.5.0)
216
- rspec-core (3.5.4)
217
- rspec-support (~> 3.5.0)
218
- rspec-expectations (3.5.0)
256
+ rspec-core (3.8.0)
257
+ rspec-support (~> 3.8.0)
258
+ rspec-expectations (3.8.1)
219
259
  diff-lcs (>= 1.2.0, < 2.0)
220
- rspec-support (~> 3.5.0)
221
- rspec-mocks (3.5.0)
260
+ rspec-support (~> 3.8.0)
261
+ rspec-mocks (3.8.0)
222
262
  diff-lcs (>= 1.2.0, < 2.0)
223
- rspec-support (~> 3.5.0)
224
- rspec-rails (3.5.2)
263
+ rspec-support (~> 3.8.0)
264
+ rspec-rails (3.8.0)
225
265
  actionpack (>= 3.0)
226
266
  activesupport (>= 3.0)
227
267
  railties (>= 3.0)
228
- rspec-core (~> 3.5.0)
229
- rspec-expectations (~> 3.5.0)
230
- rspec-mocks (~> 3.5.0)
231
- rspec-support (~> 3.5.0)
232
- rspec-steps (2.1.1)
233
- rspec (>= 3.0, < 3.99)
234
- rspec-support (3.5.0)
235
- rubocop (0.47.1)
268
+ rspec-core (~> 3.8.0)
269
+ rspec-expectations (~> 3.8.0)
270
+ rspec-mocks (~> 3.8.0)
271
+ rspec-support (~> 3.8.0)
272
+ rspec-support (3.8.0)
273
+ rubocop (0.51.0)
274
+ parallel (~> 1.10)
236
275
  parser (>= 2.3.3.1, < 3.0)
237
276
  powerpack (~> 0.1)
238
- rainbow (>= 1.99.1, < 3.0)
277
+ rainbow (>= 2.2.2, < 3.0)
239
278
  ruby-progressbar (~> 1.7)
240
279
  unicode-display_width (~> 1.0, >= 1.0.1)
241
- ruby-progressbar (1.8.1)
280
+ ruby-progressbar (1.10.0)
242
281
  ruby_dep (1.5.0)
243
- rubyzip (1.2.1)
244
- selenium-webdriver (2.53.4)
282
+ rubyzip (1.2.2)
283
+ selenium-webdriver (3.14.0)
245
284
  childprocess (~> 0.5)
246
- rubyzip (~> 1.0)
247
- websocket (~> 1.0)
248
- slop (3.6.0)
285
+ rubyzip (~> 1.2)
249
286
  sourcemap (0.1.1)
250
- sprockets (3.7.1)
287
+ sprockets (3.7.2)
251
288
  concurrent-ruby (~> 1.0)
252
289
  rack (> 1, < 3)
253
- sprockets-rails (2.3.3)
254
- actionpack (>= 3.0)
255
- activesupport (>= 3.0)
256
- sprockets (>= 2.8, < 4.0)
290
+ sprockets-rails (3.2.1)
291
+ actionpack (>= 4.0)
292
+ activesupport (>= 4.0)
293
+ sprockets (>= 3.0.0)
257
294
  sqlite3 (1.3.13)
258
- thor (0.19.4)
295
+ thor (0.20.0)
259
296
  thread_safe (0.3.6)
260
- tilt (2.0.6)
297
+ tilt (2.0.8)
261
298
  timecop (0.8.1)
262
- tzinfo (1.2.2)
299
+ tzinfo (1.2.5)
263
300
  thread_safe (~> 0.1)
264
- unicode-display_width (1.1.3)
265
- unparser (0.2.5)
301
+ uglifier (4.1.19)
302
+ execjs (>= 0.3.0, < 3)
303
+ unicode-display_width (1.4.0)
304
+ unparser (0.2.8)
266
305
  abstract_type (~> 0.0.7)
267
306
  adamantium (~> 0.2.0)
268
307
  concord (~> 0.1.5)
269
- diff-lcs (~> 1.2.5)
308
+ diff-lcs (~> 1.3)
270
309
  equalizer (~> 0.0.9)
271
- parser (~> 2.3.0)
310
+ parser (>= 2.3.1.2, < 2.6)
272
311
  procto (~> 0.0.2)
273
- websocket (1.2.4)
274
- websocket-driver (0.6.5)
312
+ webdrivers (3.4.0)
313
+ nokogiri (~> 1.6)
314
+ rubyzip (~> 1.0)
315
+ selenium-webdriver (~> 3.0)
316
+ websocket-driver (0.7.0)
275
317
  websocket-extensions (>= 0.1.0)
276
- websocket-extensions (0.1.2)
277
- xpath (2.0.0)
278
- nokogiri (~> 1.3)
318
+ websocket-extensions (0.1.3)
319
+ xpath (3.1.0)
320
+ nokogiri (~> 1.8)
279
321
 
280
322
  PLATFORMS
281
323
  ruby
282
324
 
283
325
  DEPENDENCIES
284
- bundler (~> 1.12)
326
+ bundler (~> 1.16.0)
327
+ chromedriver-helper
285
328
  hyper-component!
286
- hyper-spec
329
+ hyper-spec!
330
+ hyper-store!
331
+ hyperloop-config!
332
+ jquery-rails
287
333
  listen
288
- opal
289
- opal-browser
290
- pry-byebug
291
- rails
292
- rake (~> 10.0)
293
- rspec
294
- rspec-steps
295
- rubocop
334
+ mime-types
335
+ nokogiri
336
+ opal-jquery!
337
+ opal-rails (~> 0.9.4)
338
+ opal-rspec
339
+ pry
340
+ puma
341
+ rails (>= 4.0.0)
342
+ rails-controller-testing
343
+ rake
344
+ rspec-rails
345
+ rubocop (~> 0.51.0)
296
346
  sqlite3
347
+ timecop (~> 0.8.1)
297
348
 
298
349
  BUNDLED WITH
299
- 1.12.5
350
+ 1.16.1