hyper-spec 0.1.2 → 0.99.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a644db6a221bc30f343b05e079c705269a90871d
4
- data.tar.gz: f6c9c28bbb47e6e39c5f7f3b88304da9df0ac8b8
2
+ SHA256:
3
+ metadata.gz: a6b8a108a2d29e4523a2e1b462a7f51405a0307cec297325459c5b7406560624
4
+ data.tar.gz: 551ae6af958454f0ec00e3853900309b7edd96eef615beea78de4a21b4662ef1
5
5
  SHA512:
6
- metadata.gz: de46555fb469983fba0b02f24fdd2439826f4dbca419b1e2fe53281fa62ed9512a077ec579900c0638ac1d85ac7d5f4ce130e8168c1b14343cc06775ae4c0872
7
- data.tar.gz: ac2b3168d21fa3993e0af01f25fc5fe4129532a8f77cf4ff167092355d17be25d0a587286c9188bebee650a3e785c718bf1e39bc943c9227dcdb1503381956f0
6
+ metadata.gz: 9d7b862f45f3dee7d8dd806fb239e44afbfc72b0dbd5901b6b676c244f2a075bb01ffacd1aca2d4ceb05407e4de52c64eedb13f071cafa95b26df44ac99355dc
7
+ data.tar.gz: 147f8dc2a9918023b1e68a589130ff43e905cdd32b40e70b048e1d25b84a57da257ce1bfb90910872ce62b053b96d9718e2fcbd77b7636e517438cc62e18305f
data/.gitignore CHANGED
@@ -49,3 +49,6 @@ bower.json
49
49
 
50
50
  # Ignore built gem
51
51
  *.gem
52
+
53
+ # ignore Idea files
54
+ .idea
data/.travis.yml ADDED
@@ -0,0 +1,26 @@
1
+ dist: trusty
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.4.4
6
+ - 2.5.1
7
+ - ruby-head
8
+ env:
9
+ - DRIVER=google-chrome TZ=Europe/Berlin
10
+ matrix:
11
+ fast_finish: true
12
+ allow_failures:
13
+ - rvm: ruby-head
14
+ before_install:
15
+ - if [[ "$DRIVER" == "google-chrome" ]]; then wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -; fi
16
+ - if [[ "$DRIVER" == "google-chrome" ]]; then echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list; fi
17
+ - if [[ "$DRIVER" == "google-chrome" ]]; then sudo apt-get update -qq && sudo apt-get install -qq -y google-chrome-stable; fi
18
+ - gem install bundler
19
+ before_script:
20
+ - bundle install --jobs=3 --retry=3
21
+ - if [[ "$DRIVER" == "google-chrome" ]]; then bundle exec chromedriver-update; fi
22
+ - if [[ "$DRIVER" == "google-chrome" ]]; then ls -lR ~/.chromedriver-helper/; fi
23
+ - if [[ "$DRIVER" == "google-chrome" ]]; then bundle exec chromedriver --version; fi
24
+ - if [[ "$DRIVER" == "google-chrome" ]]; then google-chrome --version; fi
25
+ - if [[ "$DRIVER" == "google-chrome" ]]; then which google-chrome; fi
26
+ script: bundle exec rspec
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in hyper-spec.gemspec
2
+ gem 'hyper-component', path: '../hyper-component'
3
+ gem 'hyper-store', path: '../hyper-store'
4
+ gem 'hyperloop-config', path: '../hyperloop-config'
4
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,311 +1,340 @@
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
+
1
9
  PATH
2
10
  remote: .
3
11
  specs:
4
- hyper-spec (0.1.2)
12
+ hyper-spec (1.0.0.lap28)
5
13
  capybara
6
- opal
7
- parser
8
- poltergeist
14
+ chromedriver-helper (= 1.2.0)
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)
9
20
  pry
10
21
  rspec-rails
11
- selenium-webdriver (= 2.53.4)
12
- timecop
13
- unparser (= 0.2.5)
22
+ selenium-webdriver
23
+ timecop (~> 0.8.1)
24
+ uglifier
25
+ unparser
26
+ webdrivers
14
27
 
15
28
  GEM
16
29
  remote: https://rubygems.org/
17
30
  specs:
18
31
  abstract_type (0.0.7)
19
- actioncable (5.0.1)
20
- actionpack (= 5.0.1)
21
- nio4r (~> 1.2)
22
- websocket-driver (~> 0.6.1)
23
- actionmailer (5.0.1)
24
- actionpack (= 5.0.1)
25
- actionview (= 5.0.1)
26
- activejob (= 5.0.1)
32
+ actioncable (5.2.1)
33
+ actionpack (= 5.2.1)
34
+ nio4r (~> 2.0)
35
+ websocket-driver (>= 0.6.1)
36
+ actionmailer (5.2.1)
37
+ actionpack (= 5.2.1)
38
+ actionview (= 5.2.1)
39
+ activejob (= 5.2.1)
27
40
  mail (~> 2.5, >= 2.5.4)
28
41
  rails-dom-testing (~> 2.0)
29
- actionpack (5.0.1)
30
- actionview (= 5.0.1)
31
- activesupport (= 5.0.1)
42
+ actionpack (5.2.1)
43
+ actionview (= 5.2.1)
44
+ activesupport (= 5.2.1)
32
45
  rack (~> 2.0)
33
- rack-test (~> 0.6.3)
46
+ rack-test (>= 0.6.3)
34
47
  rails-dom-testing (~> 2.0)
35
48
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
36
- actionview (5.0.1)
37
- activesupport (= 5.0.1)
49
+ actionview (5.2.1)
50
+ activesupport (= 5.2.1)
38
51
  builder (~> 3.1)
39
- erubis (~> 2.7.0)
52
+ erubi (~> 1.4)
40
53
  rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
42
- activejob (5.0.1)
43
- activesupport (= 5.0.1)
54
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
55
+ activejob (5.2.1)
56
+ activesupport (= 5.2.1)
44
57
  globalid (>= 0.3.6)
45
- activemodel (5.0.1)
46
- activesupport (= 5.0.1)
47
- activerecord (5.0.1)
48
- activemodel (= 5.0.1)
49
- activesupport (= 5.0.1)
50
- arel (~> 7.0)
51
- activesupport (5.0.1)
58
+ activemodel (5.2.1)
59
+ activesupport (= 5.2.1)
60
+ activerecord (5.2.1)
61
+ activemodel (= 5.2.1)
62
+ activesupport (= 5.2.1)
63
+ arel (>= 9.0)
64
+ activestorage (5.2.1)
65
+ actionpack (= 5.2.1)
66
+ activerecord (= 5.2.1)
67
+ marcel (~> 0.3.1)
68
+ activesupport (5.2.1)
52
69
  concurrent-ruby (~> 1.0, >= 1.0.2)
53
- i18n (~> 0.7)
70
+ i18n (>= 0.7, < 2)
54
71
  minitest (~> 5.1)
55
72
  tzinfo (~> 1.1)
56
73
  adamantium (0.2.0)
57
74
  ice_nine (~> 0.11.0)
58
75
  memoizable (~> 0.4.0)
59
- addressable (2.5.0)
60
- public_suffix (~> 2.0, >= 2.0.2)
61
- archive-zip (0.7.0)
76
+ addressable (2.5.2)
77
+ public_suffix (>= 2.0.2, < 4.0)
78
+ archive-zip (0.11.0)
62
79
  io-like (~> 0.3.0)
63
- arel (7.1.4)
64
- ast (2.3.0)
80
+ arel (9.0.0)
81
+ ast (2.4.0)
65
82
  babel-source (5.8.35)
66
83
  babel-transpiler (0.7.0)
67
84
  babel-source (>= 4.0, < 6)
68
85
  execjs (~> 2.0)
69
86
  builder (3.2.3)
70
- capybara (2.13.0)
87
+ capybara (3.7.2)
71
88
  addressable
72
- mime-types (>= 1.16)
73
- nokogiri (>= 1.3.3)
74
- rack (>= 1.0.0)
75
- rack-test (>= 0.5.4)
76
- xpath (~> 2.0)
77
- childprocess (0.6.2)
89
+ mini_mime (>= 0.1.3)
90
+ nokogiri (~> 1.8)
91
+ rack (>= 1.6.0)
92
+ rack-test (>= 0.6.3)
93
+ xpath (~> 3.1)
94
+ childprocess (0.9.0)
78
95
  ffi (~> 1.0, >= 1.0.11)
79
- chromedriver-helper (1.0.0)
80
- archive-zip (~> 0.7.0)
81
- nokogiri (~> 1.6)
82
- cliver (0.3.2)
83
- coderay (1.1.1)
84
- coffee-script-source (1.12.2)
96
+ chromedriver-helper (1.2.0)
97
+ archive-zip (~> 0.10)
98
+ nokogiri (~> 1.8)
99
+ coderay (1.1.2)
85
100
  concord (0.1.5)
86
101
  adamantium (~> 0.2.0)
87
102
  equalizer (~> 0.0.9)
88
- concurrent-ruby (1.0.4)
89
- connection_pool (2.2.1)
90
- diff-lcs (1.2.5)
103
+ concurrent-ruby (1.0.5)
104
+ connection_pool (2.2.2)
105
+ crass (1.0.4)
106
+ diff-lcs (1.3)
91
107
  equalizer (0.0.11)
92
- erubis (2.7.0)
108
+ erubi (1.7.1)
93
109
  execjs (2.7.0)
94
- ffi (1.9.18)
95
- globalid (0.3.7)
96
- activesupport (>= 4.1.0)
110
+ ffi (1.9.25)
111
+ globalid (0.4.1)
112
+ activesupport (>= 4.2.0)
97
113
  hike (1.2.3)
98
- hyper-react (0.11.0)
99
- opal (>= 0.8.0)
100
- opal-activesupport (>= 0.2.0)
101
- react-rails
102
- i18n (0.8.0)
114
+ hyper-react (1.0.0.lap28)
115
+ hyper-store (= 1.0.0.lap28)
116
+ hyperloop-config (= 1.0.0.lap28)
117
+ mini_racer (~> 0.1.15)
118
+ opal (>= 0.11.0, < 0.12.0)
119
+ opal-activesupport (~> 0.3.1)
120
+ react-rails (>= 2.4.0, < 2.5.0)
121
+ hyper-store (1.0.0.lap28)
122
+ hyperloop-config (= 1.0.0.lap28)
123
+ opal (>= 0.11.0, < 0.12.0)
124
+ hyperloop-config (1.0.0.lap28)
125
+ opal (>= 0.11.0, < 0.12.0)
126
+ opal-browser (~> 0.2.0)
127
+ uglifier
128
+ i18n (1.1.0)
129
+ concurrent-ruby (~> 1.0)
103
130
  ice_nine (0.11.2)
131
+ interception (0.5)
104
132
  io-like (0.3.0)
105
- jquery-rails (4.2.2)
133
+ jquery-rails (4.3.3)
106
134
  rails-dom-testing (>= 1, < 3)
107
135
  railties (>= 4.2.0)
108
136
  thor (>= 0.14, < 2.0)
109
- libv8 (3.16.14.17)
110
- loofah (2.0.3)
137
+ libv8 (6.3.292.48.1)
138
+ loofah (2.2.2)
139
+ crass (~> 1.0.2)
111
140
  nokogiri (>= 1.5.9)
112
- mail (2.6.4)
113
- mime-types (>= 1.16, < 4)
141
+ mail (2.7.0)
142
+ mini_mime (>= 0.1.1)
143
+ marcel (0.3.2)
144
+ mimemagic (~> 0.3.2)
114
145
  memoizable (0.4.2)
115
146
  thread_safe (~> 0.3, >= 0.3.1)
116
- method_source (0.8.2)
117
- mime-types (3.1)
118
- mime-types-data (~> 3.2015)
119
- mime-types-data (3.2016.0521)
120
- mini_portile2 (2.1.0)
121
- minitest (5.10.1)
122
- nio4r (1.2.1)
123
- nokogiri (1.7.0.1)
124
- mini_portile2 (~> 2.1.0)
125
- opal (0.10.3)
147
+ method_source (0.9.0)
148
+ mimemagic (0.3.2)
149
+ mini_mime (1.0.1)
150
+ mini_portile2 (2.3.0)
151
+ mini_racer (0.1.15)
152
+ libv8 (~> 6.3)
153
+ minitest (5.11.3)
154
+ nio4r (2.3.1)
155
+ nokogiri (1.8.4)
156
+ mini_portile2 (~> 2.3.0)
157
+ opal (0.11.3)
158
+ ast (>= 2.3.0)
126
159
  hike (~> 1.2)
160
+ parser (= 2.3.3.1)
127
161
  sourcemap (~> 0.1.0)
128
- sprockets (~> 3.1)
129
- tilt (>= 1.4)
130
- opal-activesupport (0.3.0)
162
+ opal-activesupport (0.3.1)
131
163
  opal (>= 0.5.0, < 1.0.0)
132
164
  opal-browser (0.2.0)
133
165
  opal
134
166
  paggio
135
- opal-jquery (0.4.2)
136
- opal (>= 0.7.0, < 0.11.0)
137
- opal-rails (0.9.1)
167
+ opal-rails (0.9.5)
138
168
  jquery-rails
139
- opal (>= 0.8.0, < 0.11)
169
+ opal (>= 0.11.0, < 0.12)
140
170
  opal-activesupport (>= 0.0.5)
141
171
  opal-jquery (~> 0.4.0)
142
- opal-sprockets (~> 0.4.0)
143
- rails (>= 4.0, < 6.0)
144
- sprockets-rails (< 3.0)
145
- opal-sprockets (0.4.0.0.10.0.3.0.0)
146
- opal (~> 0.10.0)
147
- sprockets (~> 3.0)
172
+ opal-sprockets (~> 0.4.2)
173
+ rails (>= 4.1, < 6.0)
174
+ sprockets-rails (>= 2.3.3, < 4.0)
175
+ opal-sprockets (0.4.2.0.11.0.3.1)
176
+ opal (~> 0.11.0)
177
+ sprockets (~> 3.1)
148
178
  tilt (>= 1.4)
149
179
  paggio (0.2.6)
180
+ parallel (1.12.1)
150
181
  parser (2.3.3.1)
151
182
  ast (~> 2.2)
152
- poltergeist (1.14.0)
153
- capybara (~> 2.1)
154
- cliver (~> 0.3.1)
155
- websocket-driver (>= 0.2.0)
156
- powerpack (0.1.1)
183
+ powerpack (0.1.2)
157
184
  procto (0.0.3)
158
- pry (0.10.4)
185
+ pry (0.11.3)
159
186
  coderay (~> 1.1.0)
160
- method_source (~> 0.8.1)
161
- slop (~> 3.4)
162
- public_suffix (2.0.5)
163
- puma (3.7.0)
164
- rack (2.0.1)
165
- rack-test (0.6.3)
166
- rack (>= 1.0)
167
- rails (5.0.1)
168
- actioncable (= 5.0.1)
169
- actionmailer (= 5.0.1)
170
- actionpack (= 5.0.1)
171
- actionview (= 5.0.1)
172
- activejob (= 5.0.1)
173
- activemodel (= 5.0.1)
174
- activerecord (= 5.0.1)
175
- activesupport (= 5.0.1)
176
- bundler (>= 1.3.0, < 2.0)
177
- railties (= 5.0.1)
187
+ method_source (~> 0.9.0)
188
+ pry-rescue (1.4.5)
189
+ interception (>= 0.5)
190
+ pry
191
+ public_suffix (3.0.3)
192
+ puma (3.12.0)
193
+ rack (2.0.5)
194
+ rack-test (1.1.0)
195
+ rack (>= 1.0, < 3)
196
+ rails (5.2.1)
197
+ actioncable (= 5.2.1)
198
+ actionmailer (= 5.2.1)
199
+ actionpack (= 5.2.1)
200
+ actionview (= 5.2.1)
201
+ activejob (= 5.2.1)
202
+ activemodel (= 5.2.1)
203
+ activerecord (= 5.2.1)
204
+ activestorage (= 5.2.1)
205
+ activesupport (= 5.2.1)
206
+ bundler (>= 1.3.0)
207
+ railties (= 5.2.1)
178
208
  sprockets-rails (>= 2.0.0)
179
- rails-dom-testing (2.0.2)
180
- activesupport (>= 4.2.0, < 6.0)
181
- nokogiri (~> 1.6)
182
- rails-html-sanitizer (1.0.3)
183
- loofah (~> 2.0)
184
- railties (5.0.1)
185
- actionpack (= 5.0.1)
186
- activesupport (= 5.0.1)
209
+ rails-dom-testing (2.0.3)
210
+ activesupport (>= 4.2.0)
211
+ nokogiri (>= 1.6)
212
+ rails-html-sanitizer (1.0.4)
213
+ loofah (~> 2.2, >= 2.2.2)
214
+ railties (5.2.1)
215
+ actionpack (= 5.2.1)
216
+ activesupport (= 5.2.1)
187
217
  method_source
188
218
  rake (>= 0.8.7)
189
- thor (>= 0.18.1, < 2.0)
190
- rainbow (2.2.1)
191
- rake (10.5.0)
192
- react-rails (1.4.2)
219
+ thor (>= 0.19.0, < 2.0)
220
+ rainbow (2.2.2)
221
+ rake
222
+ rake (12.3.1)
223
+ react-rails (2.4.7)
193
224
  babel-transpiler (>= 0.7.0)
194
- coffee-script-source (~> 1.8)
195
225
  connection_pool
196
226
  execjs
197
- rails (>= 3.2)
227
+ railties (>= 3.2)
198
228
  tilt
199
- ref (2.0.0)
200
- rspec (3.5.0)
201
- rspec-core (~> 3.5.0)
202
- rspec-expectations (~> 3.5.0)
203
- rspec-mocks (~> 3.5.0)
229
+ rspec (3.8.0)
230
+ rspec-core (~> 3.8.0)
231
+ rspec-expectations (~> 3.8.0)
232
+ rspec-mocks (~> 3.8.0)
204
233
  rspec-collection_matchers (1.1.3)
205
234
  rspec-expectations (>= 2.99.0.beta1)
206
- rspec-core (3.5.4)
207
- rspec-support (~> 3.5.0)
208
- rspec-expectations (3.5.0)
235
+ rspec-core (3.8.0)
236
+ rspec-support (~> 3.8.0)
237
+ rspec-expectations (3.8.1)
209
238
  diff-lcs (>= 1.2.0, < 2.0)
210
- rspec-support (~> 3.5.0)
239
+ rspec-support (~> 3.8.0)
211
240
  rspec-its (1.2.0)
212
241
  rspec-core (>= 3.0.0)
213
242
  rspec-expectations (>= 3.0.0)
214
- rspec-mocks (3.5.0)
243
+ rspec-mocks (3.8.0)
215
244
  diff-lcs (>= 1.2.0, < 2.0)
216
- rspec-support (~> 3.5.0)
217
- rspec-rails (3.5.2)
245
+ rspec-support (~> 3.8.0)
246
+ rspec-rails (3.8.0)
218
247
  actionpack (>= 3.0)
219
248
  activesupport (>= 3.0)
220
249
  railties (>= 3.0)
221
- rspec-core (~> 3.5.0)
222
- rspec-expectations (~> 3.5.0)
223
- rspec-mocks (~> 3.5.0)
224
- rspec-support (~> 3.5.0)
250
+ rspec-core (~> 3.8.0)
251
+ rspec-expectations (~> 3.8.0)
252
+ rspec-mocks (~> 3.8.0)
253
+ rspec-support (~> 3.8.0)
225
254
  rspec-steps (2.1.1)
226
255
  rspec (>= 3.0, < 3.99)
227
- rspec-support (3.5.0)
228
- rubocop (0.47.1)
256
+ rspec-support (3.8.0)
257
+ rubocop (0.51.0)
258
+ parallel (~> 1.10)
229
259
  parser (>= 2.3.3.1, < 3.0)
230
260
  powerpack (~> 0.1)
231
- rainbow (>= 1.99.1, < 3.0)
261
+ rainbow (>= 2.2.2, < 3.0)
232
262
  ruby-progressbar (~> 1.7)
233
263
  unicode-display_width (~> 1.0, >= 1.0.1)
234
- ruby-progressbar (1.8.1)
235
- rubyzip (1.2.1)
236
- selenium-webdriver (2.53.4)
264
+ ruby-progressbar (1.10.0)
265
+ rubyzip (1.2.2)
266
+ selenium-webdriver (3.14.0)
237
267
  childprocess (~> 0.5)
238
- rubyzip (~> 1.0)
239
- websocket (~> 1.0)
240
- shoulda (3.5.0)
268
+ rubyzip (~> 1.2)
269
+ shoulda (3.6.0)
241
270
  shoulda-context (~> 1.0, >= 1.0.1)
242
- shoulda-matchers (>= 1.4.1, < 3.0)
271
+ shoulda-matchers (~> 3.0)
243
272
  shoulda-context (1.2.2)
244
- shoulda-matchers (2.8.0)
245
- activesupport (>= 3.0.0)
246
- slop (3.6.0)
273
+ shoulda-matchers (3.1.2)
274
+ activesupport (>= 4.0.0)
247
275
  sourcemap (0.1.1)
248
- spring (2.0.1)
276
+ spring (2.0.2)
249
277
  activesupport (>= 4.2)
250
278
  spring-commands-rspec (1.0.4)
251
279
  spring (>= 0.9.1)
252
- sprockets (3.7.1)
280
+ sprockets (3.7.2)
253
281
  concurrent-ruby (~> 1.0)
254
282
  rack (> 1, < 3)
255
- sprockets-rails (2.3.3)
256
- actionpack (>= 3.0)
257
- activesupport (>= 3.0)
258
- sprockets (>= 2.8, < 4.0)
259
- therubyracer (0.12.2)
260
- libv8 (~> 3.16.14.0)
261
- ref
262
- thor (0.19.4)
263
- thread_safe (0.3.5)
264
- tilt (2.0.6)
283
+ sprockets-rails (3.2.1)
284
+ actionpack (>= 4.0)
285
+ activesupport (>= 4.0)
286
+ sprockets (>= 3.0.0)
287
+ thor (0.20.0)
288
+ thread_safe (0.3.6)
289
+ tilt (2.0.8)
265
290
  timecop (0.8.1)
266
- tzinfo (1.2.2)
291
+ tzinfo (1.2.5)
267
292
  thread_safe (~> 0.1)
268
- unicode-display_width (1.1.3)
269
- unparser (0.2.5)
293
+ uglifier (4.1.19)
294
+ execjs (>= 0.3.0, < 3)
295
+ unicode-display_width (1.4.0)
296
+ unparser (0.2.8)
270
297
  abstract_type (~> 0.0.7)
271
298
  adamantium (~> 0.2.0)
272
299
  concord (~> 0.1.5)
273
- diff-lcs (~> 1.2.5)
300
+ diff-lcs (~> 1.3)
274
301
  equalizer (~> 0.0.9)
275
- parser (~> 2.3.0)
302
+ parser (>= 2.3.1.2, < 2.6)
276
303
  procto (~> 0.0.2)
277
- websocket (1.2.4)
278
- websocket-driver (0.6.5)
304
+ webdrivers (3.4.0)
305
+ nokogiri (~> 1.6)
306
+ rubyzip (~> 1.0)
307
+ selenium-webdriver (~> 3.0)
308
+ websocket-driver (0.7.0)
279
309
  websocket-extensions (>= 0.1.0)
280
- websocket-extensions (0.1.2)
281
- xpath (2.0.0)
282
- nokogiri (~> 1.3)
310
+ websocket-extensions (0.1.3)
311
+ xpath (3.1.0)
312
+ nokogiri (~> 1.8)
283
313
 
284
314
  PLATFORMS
285
315
  ruby
286
316
 
287
317
  DEPENDENCIES
288
- bundler (~> 1.12)
289
- chromedriver-helper
290
- hyper-react (>= 0.10.0)
318
+ bundler
319
+ hyper-react (= 1.0.0.lap28)
291
320
  hyper-spec!
292
- method_source
293
- opal-browser
294
- opal-rails
321
+ opal-browser (~> 0.2.0)
322
+ opal-jquery!
323
+ opal-rails (~> 0.9.4)
324
+ pry-rescue
295
325
  puma
296
- rails (~> 5.0.0)
297
- rake (~> 10.0)
298
- react-rails (< 1.10.0)
326
+ rails (>= 4.0.0)
327
+ rake
328
+ react-rails (>= 2.3.0, < 2.5.0)
299
329
  rspec-collection_matchers
300
330
  rspec-expectations
301
331
  rspec-its
302
332
  rspec-mocks
303
- rspec-steps
304
- rubocop
333
+ rspec-steps (~> 2.1.1)
334
+ rubocop (~> 0.51.0)
305
335
  shoulda
306
336
  shoulda-matchers
307
337
  spring-commands-rspec
308
- therubyracer (= 0.12.2)
309
338
 
310
339
  BUNDLED WITH
311
- 1.12.5
340
+ 1.16.1