hyper-model 0.6.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 (91) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +42 -0
  3. data/CODE_OF_CONDUCT.md +49 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +358 -0
  6. data/LICENSE +21 -0
  7. data/README.md +2 -0
  8. data/Rakefile +2 -0
  9. data/examples/chat-app/.gitignore +21 -0
  10. data/examples/chat-app/Gemfile +62 -0
  11. data/examples/chat-app/Gemfile.lock +309 -0
  12. data/examples/chat-app/README.md +3 -0
  13. data/examples/chat-app/Rakefile +6 -0
  14. data/examples/chat-app/app/assets/config/manifest.js +3 -0
  15. data/examples/chat-app/app/assets/images/.keep +0 -0
  16. data/examples/chat-app/app/assets/javascripts/application.js +3 -0
  17. data/examples/chat-app/app/assets/stylesheets/application.scss +33 -0
  18. data/examples/chat-app/app/controllers/application_controller.rb +3 -0
  19. data/examples/chat-app/app/controllers/home_controller.rb +5 -0
  20. data/examples/chat-app/app/hyperloop/components/app.rb +12 -0
  21. data/examples/chat-app/app/hyperloop/components/formatted_div.rb +15 -0
  22. data/examples/chat-app/app/hyperloop/components/input_box.rb +26 -0
  23. data/examples/chat-app/app/hyperloop/components/message.rb +29 -0
  24. data/examples/chat-app/app/hyperloop/components/messages.rb +8 -0
  25. data/examples/chat-app/app/hyperloop/components/nav.rb +30 -0
  26. data/examples/chat-app/app/hyperloop/models/application_record.rb +3 -0
  27. data/examples/chat-app/app/hyperloop/models/message.rb +6 -0
  28. data/examples/chat-app/app/hyperloop/operations/operations.rb +13 -0
  29. data/examples/chat-app/app/hyperloop/stores/message_store.rb +17 -0
  30. data/examples/chat-app/app/policies/application_policy.rb +9 -0
  31. data/examples/chat-app/app/views/layouts/application.html.erb +12 -0
  32. data/examples/chat-app/bin/bundle +3 -0
  33. data/examples/chat-app/bin/rails +9 -0
  34. data/examples/chat-app/bin/rake +9 -0
  35. data/examples/chat-app/bin/setup +34 -0
  36. data/examples/chat-app/bin/spring +17 -0
  37. data/examples/chat-app/bin/update +29 -0
  38. data/examples/chat-app/config.ru +5 -0
  39. data/examples/chat-app/config/application.rb +12 -0
  40. data/examples/chat-app/config/boot.rb +3 -0
  41. data/examples/chat-app/config/cable.yml +9 -0
  42. data/examples/chat-app/config/database.yml +25 -0
  43. data/examples/chat-app/config/environment.rb +5 -0
  44. data/examples/chat-app/config/environments/development.rb +56 -0
  45. data/examples/chat-app/config/environments/production.rb +86 -0
  46. data/examples/chat-app/config/environments/test.rb +42 -0
  47. data/examples/chat-app/config/initializers/application_controller_renderer.rb +6 -0
  48. data/examples/chat-app/config/initializers/assets.rb +11 -0
  49. data/examples/chat-app/config/initializers/backtrace_silencers.rb +7 -0
  50. data/examples/chat-app/config/initializers/cookies_serializer.rb +5 -0
  51. data/examples/chat-app/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/examples/chat-app/config/initializers/hyperloop.rb +6 -0
  53. data/examples/chat-app/config/initializers/inflections.rb +16 -0
  54. data/examples/chat-app/config/initializers/mime_types.rb +4 -0
  55. data/examples/chat-app/config/initializers/new_framework_defaults.rb +24 -0
  56. data/examples/chat-app/config/initializers/session_store.rb +3 -0
  57. data/examples/chat-app/config/initializers/wrap_parameters.rb +14 -0
  58. data/examples/chat-app/config/locales/en.yml +23 -0
  59. data/examples/chat-app/config/puma.rb +47 -0
  60. data/examples/chat-app/config/routes.rb +5 -0
  61. data/examples/chat-app/config/secrets.yml +22 -0
  62. data/examples/chat-app/config/spring.rb +6 -0
  63. data/examples/chat-app/db/migrate/20170319194429_create_message.rb +9 -0
  64. data/examples/chat-app/db/schema.rb +48 -0
  65. data/examples/chat-app/db/seeds.rb +7 -0
  66. data/examples/chat-app/lib/assets/.keep +0 -0
  67. data/examples/chat-app/lib/tasks/.keep +0 -0
  68. data/examples/chat-app/log/.keep +0 -0
  69. data/examples/chat-app/public/404.html +67 -0
  70. data/examples/chat-app/public/422.html +67 -0
  71. data/examples/chat-app/public/500.html +66 -0
  72. data/examples/chat-app/public/apple-touch-icon-precomposed.png +0 -0
  73. data/examples/chat-app/public/apple-touch-icon.png +0 -0
  74. data/examples/chat-app/public/favicon.ico +0 -0
  75. data/examples/chat-app/public/robots.txt +5 -0
  76. data/examples/chat-app/test/controllers/.keep +0 -0
  77. data/examples/chat-app/test/fixtures/.keep +0 -0
  78. data/examples/chat-app/test/fixtures/files/.keep +0 -0
  79. data/examples/chat-app/test/helpers/.keep +0 -0
  80. data/examples/chat-app/test/integration/.keep +0 -0
  81. data/examples/chat-app/test/mailers/.keep +0 -0
  82. data/examples/chat-app/test/models/.keep +0 -0
  83. data/examples/chat-app/test/test_helper.rb +10 -0
  84. data/examples/chat-app/tmp/.keep +0 -0
  85. data/examples/chat-app/vendor/assets/javascripts/.keep +0 -0
  86. data/examples/chat-app/vendor/assets/stylesheets/.keep +0 -0
  87. data/hyper-model.gemspec +43 -0
  88. data/lib/hyper-model.rb +14 -0
  89. data/lib/hyperloop/model/load.rb +7 -0
  90. data/lib/hyperloop/model/version.rb +5 -0
  91. metadata +385 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1cd0a81127216e378636768fc0de1342ba85285a
4
+ data.tar.gz: 6801d649c3f128ebe34ad3564af868a04341896c
5
+ SHA512:
6
+ metadata.gz: 60f4dc1d0d6585a027f6e621b5df2d3c2b5f01a1b389e9a80d9d160194b9e8ed8bfc50d528e40b6db17a854f12c453cc935cd85485ebe1ff23358b76ed13d156
7
+ data.tar.gz: ff589d922108151ac9e602aff2eeea735f95a9baf8bcbb1e1782b0c06cfdf0ce76f945f454821448ae207720b9ef881c645b1a8f645eb75f18e2680684f21a61
@@ -0,0 +1,42 @@
1
+ *.rbc
2
+ capybara-*.html
3
+ .rspec
4
+ /log
5
+ /tmp
6
+ /db/*.sqlite3
7
+ /db/*.sqlite3-journal
8
+ /public/system
9
+ /coverage/
10
+ /spec/tmp
11
+ **.orig
12
+ rerun.txt
13
+ pickle-email-*.html
14
+
15
+ # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
16
+ config/initializers/secret_token.rb
17
+ config/secrets.yml
18
+
19
+ # dotenv
20
+ # TODO Comment out this rule if environment variables can be committed
21
+ .env
22
+
23
+ ## Environment normalization:
24
+ /.bundle
25
+ /vendor/bundle
26
+
27
+ # these should all be checked in to normalize the environment:
28
+ # Gemfile.lock, .ruby-version, .ruby-gemset
29
+
30
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
31
+ .rvmrc
32
+
33
+ # if using bower-rails ignore default bower_components path bower.json files
34
+ /vendor/assets/bower_components
35
+ *.bowerrc
36
+ bower.json
37
+
38
+ # Ignore pow environment settings
39
+ .powenv
40
+
41
+ # Ignore Byebug command history file.
42
+ .byebug_history
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at mitch@catprint.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,358 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hyper-model (0.6.0)
5
+ hyper-mesh
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ 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)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.2)
22
+ actionview (= 5.0.2)
23
+ activesupport (= 5.0.2)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.2)
29
+ activesupport (= 5.0.2)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.0.2)
35
+ activesupport (= 5.0.2)
36
+ 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)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ adamantium (0.2.0)
49
+ ice_nine (~> 0.11.0)
50
+ 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)
55
+ babel-source (5.8.35)
56
+ babel-transpiler (0.7.0)
57
+ babel-source (>= 4.0, < 6)
58
+ execjs (~> 2.0)
59
+ builder (3.2.3)
60
+ byebug (9.0.6)
61
+ capybara (2.12.1)
62
+ 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)
69
+ ffi (~> 1.0, >= 1.0.11)
70
+ cliver (0.3.2)
71
+ coderay (1.1.1)
72
+ coffee-script-source (1.12.2)
73
+ concord (0.1.5)
74
+ adamantium (~> 0.2.0)
75
+ equalizer (~> 0.0.9)
76
+ concurrent-ruby (1.0.5)
77
+ connection_pool (2.2.1)
78
+ cookiejar (0.3.3)
79
+ daemons (1.2.4)
80
+ database_cleaner (1.5.3)
81
+ diff-lcs (1.2.5)
82
+ em-http-request (1.1.5)
83
+ addressable (>= 2.3.4)
84
+ cookiejar (!= 0.3.1)
85
+ em-socksify (>= 0.3)
86
+ eventmachine (>= 1.0.3)
87
+ http_parser.rb (>= 0.6.0)
88
+ em-socksify (0.3.1)
89
+ eventmachine (>= 1.0.0.beta.4)
90
+ em-websocket (0.5.1)
91
+ eventmachine (>= 0.12.9)
92
+ http_parser.rb (~> 0.6.0)
93
+ equalizer (0.0.11)
94
+ erubis (2.7.0)
95
+ eventmachine (1.2.3)
96
+ execjs (2.7.0)
97
+ factory_girl (4.8.0)
98
+ activesupport (>= 3.0.0)
99
+ factory_girl_rails (4.8.0)
100
+ factory_girl (~> 4.8.0)
101
+ railties (>= 3.0.0)
102
+ ffi (1.9.18)
103
+ globalid (0.3.7)
104
+ activesupport (>= 4.1.0)
105
+ hike (1.2.3)
106
+ http_parser.rb (0.6.0)
107
+ 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)
131
+ capybara
132
+ opal
133
+ parser
134
+ poltergeist
135
+ pry
136
+ 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)
145
+ ice_nine (0.11.2)
146
+ jquery-rails (4.2.2)
147
+ rails-dom-testing (>= 1, < 3)
148
+ railties (>= 4.2.0)
149
+ 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)
155
+ nokogiri (>= 1.5.9)
156
+ mail (2.6.4)
157
+ mime-types (>= 1.16, < 4)
158
+ memoizable (0.4.2)
159
+ 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)
168
+ activesupport
169
+ nio4r (2.0.0)
170
+ nokogiri (1.7.0.1)
171
+ mini_portile2 (~> 2.1.0)
172
+ opal (0.10.3)
173
+ hike (~> 1.2)
174
+ sourcemap (~> 0.1.0)
175
+ sprockets (~> 3.1)
176
+ tilt (>= 1.4)
177
+ opal-activesupport (0.3.0)
178
+ opal (>= 0.5.0, < 1.0.0)
179
+ opal-browser (0.2.0)
180
+ opal
181
+ paggio
182
+ opal-jquery (0.4.2)
183
+ opal (>= 0.7.0, < 0.11.0)
184
+ opal-rails (0.9.1)
185
+ jquery-rails
186
+ opal (>= 0.8.0, < 0.11)
187
+ opal-activesupport (>= 0.0.5)
188
+ 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)
195
+ tilt (>= 1.4)
196
+ paggio (0.2.6)
197
+ parser (2.3.3.1)
198
+ 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)
204
+ procto (0.0.3)
205
+ pry (0.10.4)
206
+ 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)
214
+ pusher (1.3.1)
215
+ httpclient (~> 2.7)
216
+ multi_json (~> 1.0)
217
+ pusher-signature (~> 0.1.8)
218
+ pusher-fake (1.8.0)
219
+ em-http-request (~> 1.1)
220
+ em-websocket (~> 0.5)
221
+ multi_json (~> 1.6)
222
+ thin (~> 1.5)
223
+ 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)
238
+ 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)
247
+ method_source
248
+ 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)
256
+ babel-transpiler (>= 0.7.0)
257
+ coffee-script-source (~> 1.8)
258
+ connection_pool
259
+ execjs
260
+ railties (>= 3.2)
261
+ 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)
269
+ diff-lcs (>= 1.2.0, < 2.0)
270
+ rspec-support (~> 3.5.0)
271
+ rspec-mocks (3.5.0)
272
+ diff-lcs (>= 1.2.0, < 2.0)
273
+ rspec-support (~> 3.5.0)
274
+ rspec-rails (3.5.2)
275
+ actionpack (>= 3.0)
276
+ activesupport (>= 3.0)
277
+ 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)
282
+ rspec-steps (2.1.1)
283
+ rspec (>= 3.0, < 3.99)
284
+ rspec-support (3.5.0)
285
+ rubocop (0.47.1)
286
+ parser (>= 2.3.3.1, < 3.0)
287
+ powerpack (~> 0.1)
288
+ rainbow (>= 1.99.1, < 3.0)
289
+ ruby-progressbar (~> 1.7)
290
+ 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)
295
+ childprocess (~> 0.5)
296
+ rubyzip (~> 1.0)
297
+ websocket (~> 1.0)
298
+ slop (3.6.0)
299
+ sourcemap (0.1.1)
300
+ sprockets (3.7.1)
301
+ concurrent-ruby (~> 1.0)
302
+ rack (> 1, < 3)
303
+ sprockets-rails (2.3.3)
304
+ actionpack (>= 3.0)
305
+ activesupport (>= 3.0)
306
+ sprockets (>= 2.8, < 4.0)
307
+ sqlite3 (1.3.13)
308
+ thin (1.7.0)
309
+ daemons (~> 1.0, >= 1.0.9)
310
+ eventmachine (~> 1.0, >= 1.0.4)
311
+ rack (>= 1, < 3)
312
+ thor (0.19.4)
313
+ thread_safe (0.3.6)
314
+ tilt (2.0.6)
315
+ timecop (0.8.1)
316
+ tzinfo (1.2.2)
317
+ thread_safe (~> 0.1)
318
+ unicode-display_width (1.1.3)
319
+ unparser (0.2.5)
320
+ abstract_type (~> 0.0.7)
321
+ adamantium (~> 0.2.0)
322
+ concord (~> 0.1.5)
323
+ diff-lcs (~> 1.2.5)
324
+ equalizer (~> 0.0.9)
325
+ parser (~> 2.3.0)
326
+ procto (~> 0.0.2)
327
+ websocket (1.2.4)
328
+ websocket-driver (0.6.5)
329
+ websocket-extensions (>= 0.1.0)
330
+ websocket-extensions (0.1.2)
331
+ xpath (2.0.0)
332
+ nokogiri (~> 1.3)
333
+
334
+ PLATFORMS
335
+ ruby
336
+
337
+ DEPENDENCIES
338
+ bundler (~> 1.12)
339
+ database_cleaner
340
+ factory_girl_rails
341
+ hyper-model!
342
+ hyper-spec
343
+ listen
344
+ opal
345
+ opal-browser
346
+ opal-rails
347
+ pry-byebug
348
+ puma
349
+ rails
350
+ rake (~> 10.0)
351
+ react-rails (< 1.10.0)
352
+ rspec
353
+ rspec-steps
354
+ rubocop
355
+ sqlite3
356
+
357
+ BUNDLED WITH
358
+ 1.12.5