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 +5 -5
- data/.gitignore +3 -0
- data/.travis.yml +26 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +222 -193
- data/README.md +3 -1
- data/Rakefile +6 -0
- data/hyper-spec.gemspec +45 -57
- data/lib/bin/firebug-2.0.19-fx.xpi +0 -0
- data/lib/hyper-spec.rb +57 -38
- data/lib/hyper-spec/component_test_helpers.rb +91 -37
- data/lib/hyper-spec/time_cop.rb +152 -2
- data/lib/hyper-spec/version.rb +1 -1
- data/lib/hyper-spec/wait_for_ajax.rb +23 -8
- data/lib/react/top_level_rails_component.rb +37 -47
- data/lib/selenium/web_driver/firefox/profile.rb +3 -3
- data/lib/sources/lolex.js +733 -0
- metadata +136 -87
- data/.rubocop.yml +0 -107
- data/CODE_OF_CONDUCT.md +0 -49
- data/LICENSE.txt +0 -21
- data/lib/hyper-spec/component_helpers.rb +0 -368
- data/lib/hyper-spec/lolex.rb +0 -66
- data/lib/hyper-spec/rails/engine.rb +0 -8
- data/lib/react/isomorphic_helpers.rb +0 -7
- data/vendor/assets/javascripts/lolex.js +0 -658
- data/vendor/assets/javascripts/time_cop.rb +0 -190
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a6b8a108a2d29e4523a2e1b462a7f51405a0307cec297325459c5b7406560624
|
4
|
+
data.tar.gz: 551ae6af958454f0ec00e3853900309b7edd96eef615beea78de4a21b4662ef1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d7b862f45f3dee7d8dd806fb239e44afbfc72b0dbd5901b6b676c244f2a075bb01ffacd1aca2d4ceb05407e4de52c64eedb13f071cafa95b26df44ac99355dc
|
7
|
+
data.tar.gz: 147f8dc2a9918023b1e68a589130ff43e905cdd32b40e70b048e1d25b84a57da257ce1bfb90910872ce62b053b96d9718e2fcbd77b7636e517438cc62e18305f
|
data/.gitignore
CHANGED
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
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.
|
12
|
+
hyper-spec (1.0.0.lap28)
|
5
13
|
capybara
|
6
|
-
|
7
|
-
|
8
|
-
|
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
|
12
|
-
timecop
|
13
|
-
|
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.
|
20
|
-
actionpack (= 5.
|
21
|
-
nio4r (~>
|
22
|
-
websocket-driver (
|
23
|
-
actionmailer (5.
|
24
|
-
actionpack (= 5.
|
25
|
-
actionview (= 5.
|
26
|
-
activejob (= 5.
|
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.
|
30
|
-
actionview (= 5.
|
31
|
-
activesupport (= 5.
|
42
|
+
actionpack (5.2.1)
|
43
|
+
actionview (= 5.2.1)
|
44
|
+
activesupport (= 5.2.1)
|
32
45
|
rack (~> 2.0)
|
33
|
-
rack-test (
|
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.
|
37
|
-
activesupport (= 5.
|
49
|
+
actionview (5.2.1)
|
50
|
+
activesupport (= 5.2.1)
|
38
51
|
builder (~> 3.1)
|
39
|
-
|
52
|
+
erubi (~> 1.4)
|
40
53
|
rails-dom-testing (~> 2.0)
|
41
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.
|
42
|
-
activejob (5.
|
43
|
-
activesupport (= 5.
|
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.
|
46
|
-
activesupport (= 5.
|
47
|
-
activerecord (5.
|
48
|
-
activemodel (= 5.
|
49
|
-
activesupport (= 5.
|
50
|
-
arel (
|
51
|
-
|
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 (
|
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.
|
60
|
-
public_suffix (
|
61
|
-
archive-zip (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 (
|
64
|
-
ast (2.
|
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 (
|
87
|
+
capybara (3.7.2)
|
71
88
|
addressable
|
72
|
-
|
73
|
-
nokogiri (
|
74
|
-
rack (>= 1.
|
75
|
-
rack-test (>= 0.
|
76
|
-
xpath (~>
|
77
|
-
childprocess (0.
|
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.
|
80
|
-
archive-zip (~> 0.
|
81
|
-
nokogiri (~> 1.
|
82
|
-
|
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.
|
89
|
-
connection_pool (2.2.
|
90
|
-
|
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
|
-
|
108
|
+
erubi (1.7.1)
|
93
109
|
execjs (2.7.0)
|
94
|
-
ffi (1.9.
|
95
|
-
globalid (0.
|
96
|
-
activesupport (>= 4.
|
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.
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
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.
|
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.
|
110
|
-
loofah (2.
|
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.
|
113
|
-
|
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.
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
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
|
-
|
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-
|
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.
|
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.
|
143
|
-
rails (>= 4.
|
144
|
-
sprockets-rails (
|
145
|
-
opal-sprockets (0.4.
|
146
|
-
opal (~> 0.
|
147
|
-
sprockets (~> 3.
|
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
|
-
|
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.
|
185
|
+
pry (0.11.3)
|
159
186
|
coderay (~> 1.1.0)
|
160
|
-
method_source (~> 0.
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
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.
|
180
|
-
activesupport (>= 4.2.0
|
181
|
-
nokogiri (
|
182
|
-
rails-html-sanitizer (1.0.
|
183
|
-
loofah (~> 2.
|
184
|
-
railties (5.
|
185
|
-
actionpack (= 5.
|
186
|
-
activesupport (= 5.
|
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.
|
190
|
-
rainbow (2.2.
|
191
|
-
|
192
|
-
|
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
|
-
|
227
|
+
railties (>= 3.2)
|
198
228
|
tilt
|
199
|
-
|
200
|
-
|
201
|
-
rspec-
|
202
|
-
rspec-
|
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.
|
207
|
-
rspec-support (~> 3.
|
208
|
-
rspec-expectations (3.
|
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.
|
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.
|
243
|
+
rspec-mocks (3.8.0)
|
215
244
|
diff-lcs (>= 1.2.0, < 2.0)
|
216
|
-
rspec-support (~> 3.
|
217
|
-
rspec-rails (3.
|
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.
|
222
|
-
rspec-expectations (~> 3.
|
223
|
-
rspec-mocks (~> 3.
|
224
|
-
rspec-support (~> 3.
|
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.
|
228
|
-
rubocop (0.
|
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 (>=
|
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.
|
235
|
-
rubyzip (1.2.
|
236
|
-
selenium-webdriver (
|
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.
|
239
|
-
|
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 (
|
271
|
+
shoulda-matchers (~> 3.0)
|
243
272
|
shoulda-context (1.2.2)
|
244
|
-
shoulda-matchers (
|
245
|
-
activesupport (>=
|
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.
|
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.
|
280
|
+
sprockets (3.7.2)
|
253
281
|
concurrent-ruby (~> 1.0)
|
254
282
|
rack (> 1, < 3)
|
255
|
-
sprockets-rails (2.
|
256
|
-
actionpack (>=
|
257
|
-
activesupport (>=
|
258
|
-
sprockets (>=
|
259
|
-
|
260
|
-
|
261
|
-
|
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.
|
291
|
+
tzinfo (1.2.5)
|
267
292
|
thread_safe (~> 0.1)
|
268
|
-
|
269
|
-
|
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.
|
300
|
+
diff-lcs (~> 1.3)
|
274
301
|
equalizer (~> 0.0.9)
|
275
|
-
parser (
|
302
|
+
parser (>= 2.3.1.2, < 2.6)
|
276
303
|
procto (~> 0.0.2)
|
277
|
-
|
278
|
-
|
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.
|
281
|
-
xpath (
|
282
|
-
nokogiri (~> 1.
|
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
|
289
|
-
|
290
|
-
hyper-react (>= 0.10.0)
|
318
|
+
bundler
|
319
|
+
hyper-react (= 1.0.0.lap28)
|
291
320
|
hyper-spec!
|
292
|
-
|
293
|
-
opal-
|
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 (
|
297
|
-
rake
|
298
|
-
react-rails (<
|
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.
|
340
|
+
1.16.1
|