qa_server 1.1.0 → 1.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ac54427130510f4f5dc59e1359ecc154dbc2b94
4
- data.tar.gz: 07b349e08fa02aab38e5b6090e16dd0df16871e5
3
+ metadata.gz: fe8ceab0dbba82771e42b7fe8e2d35d734e18669
4
+ data.tar.gz: f831a1787460b77639340182fde037ff48e5e221
5
5
  SHA512:
6
- metadata.gz: b804da6a0a5234a44ec0405685b6b0a948f1e9027043a0d864b935cb46cdfeb02400611d6f4d8ca391a4f6e69ab98a146f3f01a8491c6f046a1fd1b2858ad074
7
- data.tar.gz: ed2f9fd29a267b4a435ac11e4e3ca4a4c41c04b3c37bdb846243dafc71d14229a7b426ca37b7cd420eb2304b9226bb32443ef4328bab1dd4046231b2b9a4a628
6
+ metadata.gz: 39082736888d2f850dd1694658bde25ccd6f6c59858792c4deabac96f307522060eac6089b2476f399740bac3f97a8a3e8c60278872dc8bf545f07eed47c88bb
7
+ data.tar.gz: '029e344383e0991d08f1ef48fe22e70691317dc5138771893292f3a9029ef9ca59fdc0a530fc7954eeb7caa0f51353662c369cd3afc821f57619082c748feced'
@@ -7,5 +7,5 @@ about: To make requests for indexing improvements for datasets currently availab
7
7
  For tracking purposes, please create a separate issue for each indexing improvement request.
8
8
 
9
9
  - [ ] Please describe the expected performance and accuracy of a particular vocabulary.
10
- - [ ] If applicable, please update and provide links related to existing tests, e.g. https://github.com/LD4P/qa_server/blob/master/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml#L74-L78
10
+ - [ ] If applicable, please update and provide links related to existing tests, e.g. https://github.com/LD4P/qa_server/tree/master/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios
11
11
  - [ ] If applicable, please update the relevant tab in https://docs.google.com/spreadsheets/d/1rPvEoP9iYNkxJ0eWC8gXe3ci7e6mhW0da59xkGhadi0/edit?usp=sharing for the particular dataset in question
data/.gitignore CHANGED
@@ -70,4 +70,8 @@ test/dummy/tmp/
70
70
 
71
71
  .internal_test_app
72
72
 
73
- *.gem
73
+ # do not keep the built gem
74
+ *.gem
75
+
76
+ # do not keep Gemfile.lock for engines
77
+ Gemfile.lock
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ### 1.2.0 (2018-11-20)
2
+
3
+ * update QA which includes...
4
+ * extended QA API (e.g. list, reload, fetch)
5
+ * fetch/show terms optionally returned as json-ld (default = json for backward compatibility)
6
+ * update dependencies for security vulnerabilities
7
+ * fix accuracy tests
8
+ * default term tests to use fetch instead of show when term identifier is a URI
9
+ * get list of authority names from QA AuthorityService
10
+
1
11
  ### 1.1.0 (2018-10-31)
2
12
 
3
13
  * allow historical data to be displayed as graph or datatable (configuration)
@@ -23,13 +23,28 @@ module QaServer
23
23
  # Generate an example URL that can be called in a browser or through curl
24
24
  # @return [String] the example URL
25
25
  def url
26
- subauth = "/#{subauthority_name}" if subauthority_name.present?
27
- prefix = "#{QaServer::Engine.qa_engine_mount}/show/linked_data/#{authority_name.downcase}#{subauth}"
28
- "#{prefix}/#{url_identifier}"
26
+ authority.auth_config.term.term_id_expects_uri? ? fetch_url : show_url
29
27
  end
30
28
 
31
29
  private
32
30
 
31
+ # Generate an example URL that can be called in a browser or through curl
32
+ # @return [String] the example URL
33
+ def show_url
34
+ "#{prefix_for_url('show')}/#{url_identifier}"
35
+ end
36
+
37
+ # Generate an example URL that can be called in a browser or through curl
38
+ # @return [String] the example URL
39
+ def fetch_url
40
+ "#{prefix_for_url('fetch')}?uri=#{url_identifier}"
41
+ end
42
+
43
+ def prefix_for_url(action)
44
+ subauth = "/#{subauthority_name}" if subauthority_name.present?
45
+ prefix = "#{QaServer::Engine.qa_engine_mount}/#{action}/linked_data/#{authority_name.downcase}#{subauth}"
46
+ end
47
+
33
48
  # Convert identifier into URL safe version with encoding if needed.
34
49
  def url_identifier
35
50
  return uri_encode(identifier) if encode?
@@ -5,7 +5,7 @@ module QaServer
5
5
  # Return a list of supported authorities
6
6
  # @return [Array<String>] list of authorities
7
7
  def self.authorities_list
8
- LINKED_DATA_AUTHORITIES_CONFIG.keys.sort
8
+ Qa::Authorities::LinkedData::AuthorityService.authority_names
9
9
  end
10
10
 
11
11
  # Fill in status_log with data about each scenario for an authority
@@ -71,7 +71,7 @@ module QaServer
71
71
  actual_position += 1
72
72
  if actual_position <= expected_by_position
73
73
  log(status: PASS, expected: expected_by_position, actual: actual_position, target: subject_uri,
74
- normalization_run_time: run_time) # TODO: need to get run times from results
74
+ normalization_run_time: total_run_time) # TODO: need to get run times from results
75
75
  else
76
76
  log(status: UNKNOWN, errmsg: 'Subject URI not found by the expected position.',
77
77
  expected: expected_by_position, actual: actual_position, target: subject_uri,
@@ -22,7 +22,7 @@ module QaServer
22
22
 
23
23
  def add_to_gemfile
24
24
  say_status('info', ' -- adding qa_server required gems', :blue)
25
- gem 'qa', github: 'samvera/questioning_authority', branch: 'min_context'
25
+ gem 'qa', github: 'samvera/questioning_authority', tag: '496aaa34c4aba6d97d11737b229ea66ea4c64639'
26
26
  gem 'linkeddata'
27
27
 
28
28
  Bundler.with_clean_env do
@@ -17,7 +17,7 @@
17
17
  "qa_replacement_patterns": {
18
18
  "term_id": "term_uri"
19
19
  },
20
- "term_id": "ID",
20
+ "term_id": "URI",
21
21
  "results": {
22
22
  "id_predicate": "http://www.w3.org/2004/02/skos/core#notation",
23
23
  "label_predicate": "http://www.w3.org/2004/02/skos/core#prefLabel",
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module QaServer
3
- VERSION = '1.1.0'
3
+ VERSION = '1.2.0'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qa_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - E. Lynette Rayle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-31 00:00:00.000000000 Z
11
+ date: 2018-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -179,7 +179,6 @@ files:
179
179
  - ".rubocop_fixme.yml"
180
180
  - CHANGELOG.md
181
181
  - Gemfile
182
- - Gemfile.lock
183
182
  - LICENSE
184
183
  - README.md
185
184
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,417 +0,0 @@
1
- GIT
2
- remote: https://github.com/samvera/questioning_authority.git
3
- revision: f44e597474cd55f64fb31a77bdb39ece81b97fa8
4
- branch: min_context
5
- specs:
6
- qa (2.1.1)
7
- activerecord-import
8
- deprecation
9
- faraday
10
- nokogiri (~> 1.6)
11
- rails (~> 5.0)
12
- rdf
13
-
14
- PATH
15
- remote: /Users/elr37/Documents/__DEVELOPMENT__/LD4L/_LD4L3/sprint/LD4P/qa_server
16
- specs:
17
- qa_server (1.0.0)
18
- gruff
19
- rails (~> 5.0)
20
-
21
- GEM
22
- remote: https://rubygems.org/
23
- specs:
24
- actioncable (5.1.6)
25
- actionpack (= 5.1.6)
26
- nio4r (~> 2.0)
27
- websocket-driver (~> 0.6.1)
28
- actionmailer (5.1.6)
29
- actionpack (= 5.1.6)
30
- actionview (= 5.1.6)
31
- activejob (= 5.1.6)
32
- mail (~> 2.5, >= 2.5.4)
33
- rails-dom-testing (~> 2.0)
34
- actionpack (5.1.6)
35
- actionview (= 5.1.6)
36
- activesupport (= 5.1.6)
37
- rack (~> 2.0)
38
- rack-test (>= 0.6.3)
39
- rails-dom-testing (~> 2.0)
40
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
41
- actionview (5.1.6)
42
- activesupport (= 5.1.6)
43
- builder (~> 3.1)
44
- erubi (~> 1.4)
45
- rails-dom-testing (~> 2.0)
46
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
47
- activejob (5.1.6)
48
- activesupport (= 5.1.6)
49
- globalid (>= 0.3.6)
50
- activemodel (5.1.6)
51
- activesupport (= 5.1.6)
52
- activerecord (5.1.6)
53
- activemodel (= 5.1.6)
54
- activesupport (= 5.1.6)
55
- arel (~> 8.0)
56
- activerecord-import (0.27.0)
57
- activerecord (>= 3.2)
58
- activesupport (5.1.6)
59
- concurrent-ruby (~> 1.0, >= 1.0.2)
60
- i18n (>= 0.7, < 2)
61
- minitest (~> 5.1)
62
- tzinfo (~> 1.1)
63
- addressable (2.5.2)
64
- public_suffix (>= 2.0.2, < 4.0)
65
- arel (8.0.0)
66
- ast (2.4.0)
67
- bcp47 (0.3.3)
68
- i18n
69
- better_errors (2.5.0)
70
- coderay (>= 1.0.0)
71
- erubi (>= 1.0.0)
72
- rack (>= 0.9.0)
73
- bindex (0.5.0)
74
- binding_of_caller (0.8.0)
75
- debug_inspector (>= 0.0.1)
76
- bixby (1.0.0)
77
- rubocop (~> 0.50, <= 0.52.1)
78
- rubocop-rspec (~> 1.22, <= 1.22.2)
79
- builder (3.2.3)
80
- byebug (10.0.2)
81
- capybara (2.18.0)
82
- addressable
83
- mini_mime (>= 0.1.3)
84
- nokogiri (>= 1.3.3)
85
- rack (>= 1.0.0)
86
- rack-test (>= 0.5.4)
87
- xpath (>= 2.0, < 4.0)
88
- childprocess (0.9.0)
89
- ffi (~> 1.0, >= 1.0.11)
90
- coderay (1.1.2)
91
- coffee-rails (4.2.2)
92
- coffee-script (>= 2.2.0)
93
- railties (>= 4.0.0)
94
- coffee-script (2.4.1)
95
- coffee-script-source
96
- execjs
97
- coffee-script-source (1.12.2)
98
- concurrent-ruby (1.0.5)
99
- connection_pool (2.2.2)
100
- crass (1.0.4)
101
- debug_inspector (0.0.3)
102
- deprecation (1.0.0)
103
- activesupport
104
- diff-lcs (1.3)
105
- ebnf (1.1.2)
106
- rdf (>= 2.2, < 4.0)
107
- sxp (~> 1.0)
108
- engine_cart (2.0.1)
109
- bundler (~> 1.5)
110
- rails
111
- equivalent-xml (0.6.0)
112
- nokogiri (>= 1.4.3)
113
- erubi (1.7.1)
114
- execjs (2.7.0)
115
- faraday (0.15.3)
116
- multipart-post (>= 1.2, < 3)
117
- ffi (1.9.25)
118
- globalid (0.4.1)
119
- activesupport (>= 4.2.0)
120
- gruff (0.7.0)
121
- rmagick (~> 2.13, >= 2.13.4)
122
- haml (5.0.4)
123
- temple (>= 0.8.0)
124
- tilt
125
- hamster (3.0.0)
126
- concurrent-ruby (~> 1.0)
127
- htmlentities (4.3.4)
128
- i18n (1.1.0)
129
- concurrent-ruby (~> 1.0)
130
- jbuilder (2.7.0)
131
- activesupport (>= 4.2.0)
132
- multi_json (>= 1.2)
133
- json-ld (3.0.0)
134
- multi_json (~> 1.12)
135
- rdf (>= 2.2.8, < 4.0)
136
- json-ld-preloaded (3.0.0)
137
- json-ld (>= 2.2, < 4.0)
138
- multi_json (~> 1.12)
139
- rdf (~> 3.0)
140
- ld-patch (0.3.3)
141
- ebnf (~> 1.1)
142
- rdf (>= 2.2, < 4.0)
143
- rdf-xsd (>= 2.2, < 4.0)
144
- sparql (>= 2.2, < 4.0)
145
- sxp (~> 1.0)
146
- link_header (0.0.8)
147
- linkeddata (3.0.1)
148
- equivalent-xml (~> 0.6)
149
- json-ld (>= 2.2.1, < 4.0)
150
- ld-patch (~> 0.3, >= 0.3.3)
151
- nokogiri (~> 1.8)
152
- nokogumbo (~> 1.5)
153
- rdf (~> 3.0)
154
- rdf-aggregate-repo (>= 2.2.1, < 4.0)
155
- rdf-isomorphic (~> 3.0)
156
- rdf-json (>= 2.2, < 4.0)
157
- rdf-microdata (>= 2.2.3, < 4.0)
158
- rdf-n3 (~> 3.0)
159
- rdf-normalize (~> 0.3, >= 0.3.3)
160
- rdf-rdfa (~> 3.0)
161
- rdf-rdfxml (>= 2.2.1, < 4.0)
162
- rdf-reasoner (~> 0.5.0)
163
- rdf-tabular (>= 2.2.1, < 4.0)
164
- rdf-trig (>= 2.2, < 4.0)
165
- rdf-trix (>= 2.2.1, < 4.0)
166
- rdf-turtle (~> 3.0, >= 3.0.1)
167
- rdf-vocab (~> 3.0)
168
- rdf-xsd (~> 3.0)
169
- shex (~> 0.5, >= 0.5.2)
170
- sparql (~> 3.0)
171
- sparql-client (~> 3.0)
172
- listen (3.1.5)
173
- rb-fsevent (~> 0.9, >= 0.9.4)
174
- rb-inotify (~> 0.9, >= 0.9.7)
175
- ruby_dep (~> 1.2)
176
- loofah (2.2.2)
177
- crass (~> 1.0.2)
178
- nokogiri (>= 1.5.9)
179
- mail (2.7.0)
180
- mini_mime (>= 0.1.1)
181
- method_source (0.9.0)
182
- mini_mime (1.0.1)
183
- mini_portile2 (2.3.0)
184
- minitest (5.11.3)
185
- multi_json (1.13.1)
186
- multipart-post (2.0.0)
187
- net-http-persistent (3.0.0)
188
- connection_pool (~> 2.2)
189
- nio4r (2.3.1)
190
- nokogiri (1.8.4)
191
- mini_portile2 (~> 2.3.0)
192
- nokogumbo (1.5.0)
193
- nokogiri
194
- parallel (1.12.1)
195
- parser (2.5.1.2)
196
- ast (~> 2.4.0)
197
- powerpack (0.1.2)
198
- public_suffix (3.0.3)
199
- puma (3.12.0)
200
- rack (2.0.5)
201
- rack-test (1.1.0)
202
- rack (>= 1.0, < 3)
203
- rails (5.1.6)
204
- actioncable (= 5.1.6)
205
- actionmailer (= 5.1.6)
206
- actionpack (= 5.1.6)
207
- actionview (= 5.1.6)
208
- activejob (= 5.1.6)
209
- activemodel (= 5.1.6)
210
- activerecord (= 5.1.6)
211
- activesupport (= 5.1.6)
212
- bundler (>= 1.3.0)
213
- railties (= 5.1.6)
214
- sprockets-rails (>= 2.0.0)
215
- rails-dom-testing (2.0.3)
216
- activesupport (>= 4.2.0)
217
- nokogiri (>= 1.6)
218
- rails-html-sanitizer (1.0.4)
219
- loofah (~> 2.2, >= 2.2.2)
220
- railties (5.1.6)
221
- actionpack (= 5.1.6)
222
- activesupport (= 5.1.6)
223
- method_source
224
- rake (>= 0.8.7)
225
- thor (>= 0.18.1, < 2.0)
226
- rainbow (3.0.0)
227
- rake (12.3.1)
228
- rb-fsevent (0.10.3)
229
- rb-inotify (0.9.10)
230
- ffi (>= 0.5.0, < 2)
231
- rdf (3.0.2)
232
- hamster (~> 3.0)
233
- link_header (~> 0.0, >= 0.0.8)
234
- rdf-aggregate-repo (2.2.1)
235
- rdf (>= 2.2, < 4.0)
236
- rdf-isomorphic (3.0.0)
237
- rdf (~> 3.0)
238
- rdf-json (2.2.0)
239
- rdf (>= 2.2, < 4.0)
240
- rdf-microdata (2.2.3)
241
- htmlentities (~> 4.3)
242
- nokogiri (~> 1.8)
243
- rdf (>= 2.2.8, < 4.0)
244
- rdf-xsd (>= 2.2, < 4.0)
245
- rdf-n3 (3.0.0)
246
- rdf (~> 3.0)
247
- rdf-normalize (0.3.3)
248
- rdf (>= 2.2, < 4.0)
249
- rdf-rdfa (3.0.1)
250
- haml (~> 5.0)
251
- htmlentities (~> 4.3)
252
- rdf (~> 3.0)
253
- rdf-aggregate-repo (>= 2.2, < 4.0)
254
- rdf-xsd (~> 3.0)
255
- rdf-rdfxml (2.2.1)
256
- htmlentities (~> 4.3)
257
- rdf (>= 2.2, < 4.0)
258
- rdf-rdfa (>= 2.2, < 4.0)
259
- rdf-xsd (>= 2.2, < 4.0)
260
- rdf-reasoner (0.5.1)
261
- rdf (~> 3.0)
262
- rdf-vocab (~> 3.0)
263
- rdf-xsd (~> 3.0)
264
- rdf-tabular (2.2.1)
265
- addressable (~> 2.3)
266
- bcp47 (~> 0.3, >= 0.3.3)
267
- json-ld (>= 2.1, < 4.0)
268
- rdf (>= 2.2, < 4.0)
269
- rdf-vocab (>= 2.2, < 4.0)
270
- rdf-xsd (>= 2.2, < 4.0)
271
- rdf-trig (2.2.0)
272
- ebnf (~> 1.0, >= 1.0.1)
273
- rdf (>= 2.2, < 4.0)
274
- rdf-turtle (>= 2.2, < 4.0)
275
- rdf-trix (2.2.1)
276
- rdf (>= 2.2, < 4.0)
277
- rdf-turtle (3.0.1)
278
- ebnf (~> 1.1)
279
- rdf (~> 3.0)
280
- rdf-vocab (3.0.3)
281
- rdf (~> 3.0)
282
- rdf-xsd (3.0.0)
283
- rdf (~> 3.0)
284
- rmagick (2.16.0)
285
- rspec-activemodel-mocks (1.0.3)
286
- activemodel (>= 3.0)
287
- activesupport (>= 3.0)
288
- rspec-mocks (>= 2.99, < 4.0)
289
- rspec-core (3.8.0)
290
- rspec-support (~> 3.8.0)
291
- rspec-expectations (3.8.1)
292
- diff-lcs (>= 1.2.0, < 2.0)
293
- rspec-support (~> 3.8.0)
294
- rspec-its (1.2.0)
295
- rspec-core (>= 3.0.0)
296
- rspec-expectations (>= 3.0.0)
297
- rspec-mocks (3.8.0)
298
- diff-lcs (>= 1.2.0, < 2.0)
299
- rspec-support (~> 3.8.0)
300
- rspec-rails (3.8.0)
301
- actionpack (>= 3.0)
302
- activesupport (>= 3.0)
303
- railties (>= 3.0)
304
- rspec-core (~> 3.8.0)
305
- rspec-expectations (~> 3.8.0)
306
- rspec-mocks (~> 3.8.0)
307
- rspec-support (~> 3.8.0)
308
- rspec-support (3.8.0)
309
- rubocop (0.52.1)
310
- parallel (~> 1.10)
311
- parser (>= 2.4.0.2, < 3.0)
312
- powerpack (~> 0.1)
313
- rainbow (>= 2.2.2, < 4.0)
314
- ruby-progressbar (~> 1.7)
315
- unicode-display_width (~> 1.0, >= 1.0.1)
316
- rubocop-rspec (1.22.2)
317
- rubocop (>= 0.52.1)
318
- ruby-progressbar (1.10.0)
319
- ruby_dep (1.5.0)
320
- rubyzip (1.2.2)
321
- sass (3.6.0)
322
- sass-listen (~> 4.0.0)
323
- sass-listen (4.0.0)
324
- rb-fsevent (~> 0.9, >= 0.9.4)
325
- rb-inotify (~> 0.9, >= 0.9.7)
326
- sass-rails (5.0.7)
327
- railties (>= 4.0.0, < 6)
328
- sass (~> 3.1)
329
- sprockets (>= 2.8, < 4.0)
330
- sprockets-rails (>= 2.0, < 4.0)
331
- tilt (>= 1.1, < 3)
332
- selenium-webdriver (3.14.1)
333
- childprocess (~> 0.5)
334
- rubyzip (~> 1.2, >= 1.2.2)
335
- shex (0.5.2)
336
- ebnf (~> 1.1)
337
- json-ld (>= 2.2, < 4.0)
338
- json-ld-preloaded (>= 2.2, < 4.0)
339
- rdf (>= 2.2, < 4.0)
340
- rdf-xsd (>= 2.2, < 4.0)
341
- sparql (>= 2.2, < 4.0)
342
- sxp (~> 1.0)
343
- sparql (3.0.2)
344
- builder (~> 3.2)
345
- ebnf (~> 1.1)
346
- rdf (~> 3.0)
347
- rdf-aggregate-repo (>= 2.2, < 4.0)
348
- rdf-xsd (~> 3.0)
349
- sparql-client (~> 3.0)
350
- sxp (~> 1.0)
351
- sparql-client (3.0.0)
352
- net-http-persistent (>= 2.9, < 4)
353
- rdf (~> 3.0)
354
- sprockets (3.7.2)
355
- concurrent-ruby (~> 1.0)
356
- rack (> 1, < 3)
357
- sprockets-rails (3.2.1)
358
- actionpack (>= 4.0)
359
- activesupport (>= 4.0)
360
- sprockets (>= 3.0.0)
361
- sqlite3 (1.3.13)
362
- sxp (1.0.1)
363
- rdf (>= 2.2, < 4.0)
364
- temple (0.8.0)
365
- thor (0.20.0)
366
- thread_safe (0.3.6)
367
- tilt (2.0.8)
368
- turbolinks (5.2.0)
369
- turbolinks-source (~> 5.2)
370
- turbolinks-source (5.2.0)
371
- tzinfo (1.2.5)
372
- thread_safe (~> 0.1)
373
- uglifier (4.1.19)
374
- execjs (>= 0.3.0, < 3)
375
- unicode-display_width (1.4.0)
376
- web-console (3.7.0)
377
- actionview (>= 5.0)
378
- activemodel (>= 5.0)
379
- bindex (>= 0.4.0)
380
- railties (>= 5.0)
381
- websocket-driver (0.6.5)
382
- websocket-extensions (>= 0.1.0)
383
- websocket-extensions (0.1.3)
384
- xpath (3.2.0)
385
- nokogiri (~> 1.8)
386
-
387
- PLATFORMS
388
- ruby
389
-
390
- DEPENDENCIES
391
- better_errors
392
- binding_of_caller
393
- bixby (~> 1.0.0)
394
- byebug
395
- capybara (~> 2.13)
396
- coffee-rails (~> 4.2)
397
- engine_cart (~> 2.0)
398
- jbuilder (~> 2.5)
399
- linkeddata
400
- listen (>= 3.0.5, < 3.2)
401
- puma (~> 3.7)
402
- qa!
403
- qa_server!
404
- rails (~> 5.1.6)
405
- rspec-activemodel-mocks (~> 1.0)
406
- rspec-its (~> 1.1)
407
- rspec-rails (~> 3.1)
408
- sass-rails (~> 5.0)
409
- selenium-webdriver
410
- sqlite3
411
- turbolinks (~> 5)
412
- tzinfo-data
413
- uglifier (>= 1.3.0)
414
- web-console (>= 3.3.0)
415
-
416
- BUNDLED WITH
417
- 1.16.5