iqvoc 4.12.0 → 4.12.1

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 (49) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +5 -0
  3. data/Gemfile +13 -5
  4. data/Gemfile.lock +94 -77
  5. data/README.md +11 -2
  6. data/app/controllers/dashboard_controller.rb +5 -1
  7. data/app/controllers/user_sessions_controller.rb +1 -1
  8. data/app/helpers/dashboard_helper.rb +3 -3
  9. data/app/views/concepts/new.html.erb +2 -1
  10. data/app/views/concepts/sidebars/_singular.html.erb +11 -7
  11. data/app/views/dashboard/_table.html.erb +1 -1
  12. data/app/views/dashboard/glance.html.erb +1 -1
  13. data/app/views/search_results/_sidebar.html.erb +7 -2
  14. data/config/database.template.yml +3 -3
  15. data/config/database.yml +13 -18
  16. data/config/database.yml.mysql +7 -7
  17. data/config/database.yml.postgresql +6 -5
  18. data/config/initializers/mysql_column_limit.rb +14 -0
  19. data/config/locales/activerecord.de.yml +3 -0
  20. data/config/locales/activerecord.en.yml +3 -0
  21. data/db/migrate/20170626074649_add_note_annotations_index.rb +5 -1
  22. data/db/migrate/20180430163647_utf8mb4_conversion.rb +122 -0
  23. data/db/migrate/20180525135715_fix_note_annotations_index.rb +6 -0
  24. data/db/migrate/20190403133600_change_collation.rb +39 -0
  25. data/db/schema.rb +63 -64
  26. data/db/seeds.rb +4 -4
  27. data/iqvoc.gemspec +5 -5
  28. data/lib/iqvoc/version.rb +1 -1
  29. data/public/export/192518761412858257538294365837284445543.nt +28 -0
  30. data/public/export/222655544999381011796369687711131211507.nt +28 -0
  31. data/public/export/28094.nt +28 -0
  32. data/public/export/317743731342877661346578631544287380698.nt +28 -0
  33. data/public/export/59040722386799844495905115730928244680.nt +28 -0
  34. data/public/export/65316.nt +28 -0
  35. data/public/uploads/import/0090c45f8a575ba948e9e1f9346e8bd8.nt +259 -0
  36. data/public/uploads/import/10b55d476cc7905edd5bf2ea3339266f.nt +259 -0
  37. data/public/uploads/import/29f4bdb935b9ba14344c38808e2fc172.nt +259 -0
  38. data/public/uploads/import/5686fe12a4157c537fe4f83de393e436.nt +259 -0
  39. data/public/uploads/import/a46e5777d14959f0a264fc27170a9aca.nt +259 -0
  40. data/public/uploads/import/f47c4c34a7652d03188ef8815667a546.nt +259 -0
  41. data/public/uploads/tmp/1565090696-8977-0904/hobbies.nt +259 -0
  42. data/public/uploads/tmp/1565092660-26284-7315/hobbies.nt +259 -0
  43. data/public/uploads/tmp/1565092837-26720-3638/hobbies.nt +259 -0
  44. data/public/uploads/tmp/1565093111-27724-9556/hobbies.nt +259 -0
  45. data/public/uploads/tmp/1565093198-28993-6950/hobbies.nt +259 -0
  46. data/public/uploads/tmp/1565093353-29520-6028/hobbies.nt +259 -0
  47. data/test/integration/dashboard_test.rb +2 -2
  48. data/test/integration/user_management_test.rb +2 -2
  49. metadata +37 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 475a85d79c23b3527944638834d48d6971939040
4
- data.tar.gz: ad71b64c9728c4c2b8108f1878cfb0f5276748af
2
+ SHA256:
3
+ metadata.gz: e70944f6946b1e7809189ac5a0b2758ef49866d6b752afb1b0e97861a29f9ea0
4
+ data.tar.gz: 4968b9bb718060530d89eae0d9eef942847b446708d5e66a4c2a9089e383f778
5
5
  SHA512:
6
- metadata.gz: 8b31342ca2ad8073667d2073c244b64439ee124766d25eebf9720cdab1416237202ff64a42b803dba316f9cf76413b9da4fc473fd326b55fe90377a9494e4ae3
7
- data.tar.gz: a397db3534c09408ed571fb2e5e4647cb78b88c7748fa1b14324d34088aacdd1d0bbc144e56ef5f42ff6c56c14903aeca33aaf9b6056dfeafb7090744b865c82
6
+ metadata.gz: 94496b3bdbb3d17852f06c7a03e0d7ed31f2a00266ea2b698ec40213fe73f92613a076322da5b2c3ed8e802a6efcd253982f74d2406a6ee7fd2d64c5492d4104
7
+ data.tar.gz: 266429efb4880d14a77ab6ecffe0dfec8862dc8254f7cd36962ef6dcf8c830363d7dbe6dc78dc86fdc6a1be013f49a942412e3d071a4a37dc6eb51e01b1abaf1
@@ -1,3 +1,8 @@
1
+ ## [4.12.1]
2
+
3
+ * drop Ruby 2.2 support (official support ended on 2018-03-31)
4
+ * updated to latest Rails patch release (v4.2.11.1)
5
+
1
6
  ## [4.12.0]
2
7
 
3
8
  * Added: search for concepts by change notes date ranges (#369)
data/Gemfile CHANGED
@@ -19,10 +19,10 @@ source 'https://rubygems.org'
19
19
  # TODO: The following dependencies could be included by the "gemspec" command.
20
20
  # There is only one problem: gemspec puts the dependencies automatically to a
21
21
  # group (:development by default). This is not what we need.
22
- gem 'rails', '~> 4.2.8'
22
+ gem 'rails', '~> 4.2.11'
23
23
  gem 'kaminari', '~> 0.16.3'
24
24
  gem 'kaminari-bootstrap', '~> 3.0.1'
25
- gem 'authlogic', '~> 3.4.2'
25
+ gem 'authlogic', '~> 3.8.0'
26
26
  gem 'cancancan', '~> 1.10.0'
27
27
  gem 'iq_rdf', '>= 0.1.16'
28
28
  gem 'iq_triplestorage'
@@ -30,7 +30,7 @@ gem 'json'
30
30
  gem 'rails_autolink'
31
31
  gem 'faraday', '0.9.0'
32
32
  gem 'faraday_middleware'
33
- gem 'nokogiri', '~> 1.7.2'
33
+ gem 'nokogiri', '~> 1.8.1'
34
34
  gem 'linkeddata', '~> 1.1.2'
35
35
  gem 'uglifier'
36
36
  gem 'sass-rails', '~> 5.0.0'
@@ -42,10 +42,11 @@ gem 'database_cleaner'
42
42
  gem 'delayed_job_active_record', '~> 4.1.1'
43
43
  gem 'carrierwave'
44
44
  gem 'autoprefixer-rails', '~> 6.5.1.1'
45
+ gem 'daemons'
45
46
 
46
47
  # database adapters
47
48
  # comment out those you do don't need or use a different Gemfile
48
- gem 'mysql2', '~> 0.3.13'
49
+ gem 'mysql2', '~> 0.4.0'
49
50
  gem 'sqlite3'
50
51
  gem 'pg'
51
52
 
@@ -58,7 +59,7 @@ end
58
59
 
59
60
  group :development, :test do
60
61
  gem 'awesome_print'
61
- gem 'pry-rails'
62
+ gem 'pry-rails', require: 'pry'
62
63
  gem 'pry-remote'
63
64
  gem 'pry-byebug', '~> 1.1.2', platforms: :ruby_20
64
65
  gem 'quiet_assets'
@@ -83,6 +84,13 @@ group :test do
83
84
  end
84
85
 
85
86
  group :production do
87
+ gem 'activerecord-nulldb-adapter'
88
+ #version updates must be done in the Dockerfile as well
89
+ gem 'passenger', '= 5.3.7'
90
+ end
91
+
92
+ platforms :ruby do
93
+ gem 'therubyracer'
86
94
  end
87
95
 
88
96
  group :heroku do
@@ -1,34 +1,34 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actionmailer (4.2.8)
5
- actionpack (= 4.2.8)
6
- actionview (= 4.2.8)
7
- activejob (= 4.2.8)
4
+ actionmailer (4.2.11.1)
5
+ actionpack (= 4.2.11.1)
6
+ actionview (= 4.2.11.1)
7
+ activejob (= 4.2.11.1)
8
8
  mail (~> 2.5, >= 2.5.4)
9
9
  rails-dom-testing (~> 1.0, >= 1.0.5)
10
- actionpack (4.2.8)
11
- actionview (= 4.2.8)
12
- activesupport (= 4.2.8)
10
+ actionpack (4.2.11.1)
11
+ actionview (= 4.2.11.1)
12
+ activesupport (= 4.2.11.1)
13
13
  rack (~> 1.6)
14
14
  rack-test (~> 0.6.2)
15
15
  rails-dom-testing (~> 1.0, >= 1.0.5)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- actionview (4.2.8)
18
- activesupport (= 4.2.8)
17
+ actionview (4.2.11.1)
18
+ activesupport (= 4.2.11.1)
19
19
  builder (~> 3.1)
20
20
  erubis (~> 2.7.0)
21
21
  rails-dom-testing (~> 1.0, >= 1.0.5)
22
22
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
23
- activejob (4.2.8)
24
- activesupport (= 4.2.8)
23
+ activejob (4.2.11.1)
24
+ activesupport (= 4.2.11.1)
25
25
  globalid (>= 0.3.0)
26
- activemodel (4.2.8)
27
- activesupport (= 4.2.8)
26
+ activemodel (4.2.11.1)
27
+ activesupport (= 4.2.11.1)
28
28
  builder (~> 3.1)
29
- activerecord (4.2.8)
30
- activemodel (= 4.2.8)
31
- activesupport (= 4.2.8)
29
+ activerecord (4.2.11.1)
30
+ activemodel (= 4.2.11.1)
31
+ activesupport (= 4.2.11.1)
32
32
  arel (~> 6.0)
33
33
  activerecord-jdbc-adapter (1.3.14)
34
34
  activerecord (>= 2.2)
@@ -41,7 +41,9 @@ GEM
41
41
  activerecord-jdbcsqlite3-adapter (1.3.14)
42
42
  activerecord-jdbc-adapter (~> 1.3.14)
43
43
  jdbc-sqlite3 (>= 3.7.2, < 3.9)
44
- activesupport (4.2.8)
44
+ activerecord-nulldb-adapter (0.3.9)
45
+ activerecord (>= 2.0.0)
46
+ activesupport (4.2.11.1)
45
47
  i18n (~> 0.7)
46
48
  minitest (~> 5.1)
47
49
  thread_safe (~> 0.3, >= 0.3.4)
@@ -51,11 +53,11 @@ GEM
51
53
  apipie-rails (0.3.5)
52
54
  json
53
55
  arel (6.0.4)
54
- authlogic (3.4.5)
55
- activerecord (>= 3.2)
56
- activesupport (>= 3.2)
56
+ authlogic (3.8.0)
57
+ activerecord (>= 3.2, < 5.3)
58
+ activesupport (>= 3.2, < 5.3)
57
59
  request_store (~> 1.0)
58
- scrypt (~> 1.2)
60
+ scrypt (>= 1.2, < 4.0)
59
61
  autoprefixer-rails (6.5.1.1)
60
62
  execjs
61
63
  awesome_print (1.6.1)
@@ -88,15 +90,16 @@ GEM
88
90
  cliver (0.3.2)
89
91
  coderay (1.1.0)
90
92
  columnize (0.3.6)
91
- concurrent-ruby (1.0.5)
92
- concurrent-ruby (1.0.5-java)
93
+ concurrent-ruby (1.1.5)
93
94
  crack (0.4.3)
94
95
  safe_yaml (~> 1.0.0)
96
+ crass (1.0.4)
97
+ daemons (1.2.6)
95
98
  database_cleaner (1.4.0)
96
- debug_inspector (0.0.2)
99
+ debug_inspector (0.0.3)
97
100
  debugger-linecache (1.2.0)
98
- delayed_job (4.1.2)
99
- activesupport (>= 3.0, < 5.1)
101
+ delayed_job (4.1.5)
102
+ activesupport (>= 3.0, < 5.3)
100
103
  delayed_job_active_record (4.1.1)
101
104
  activerecord (>= 3.0, < 5.1)
102
105
  delayed_job (>= 3.0, < 5)
@@ -113,15 +116,15 @@ GEM
113
116
  multipart-post (>= 1.2, < 3)
114
117
  faraday_middleware (0.9.1)
115
118
  faraday (>= 0.7.4, < 0.10)
116
- ffi (1.9.6)
117
- ffi (1.9.6-java)
118
- ffi-compiler (0.1.3)
119
+ ffi (1.11.1)
120
+ ffi (1.11.1-java)
121
+ ffi-compiler (1.0.1)
119
122
  ffi (>= 1.0.0)
120
123
  rake
121
124
  font-awesome-rails (4.3.0.0)
122
125
  railties (>= 3.2, < 5.0)
123
- globalid (0.3.7)
124
- activesupport (>= 4.1.0)
126
+ globalid (0.4.2)
127
+ activesupport (>= 4.2.0)
125
128
  haml (4.0.6)
126
129
  tilt
127
130
  hashdiff (0.3.4)
@@ -130,7 +133,8 @@ GEM
130
133
  hirb (~> 0.5)
131
134
  unicode-display_width (~> 0.1.1)
132
135
  htmlentities (4.3.3)
133
- i18n (0.8.1)
136
+ i18n (0.9.5)
137
+ concurrent-ruby (~> 1.0)
134
138
  iq_rdf (0.1.16)
135
139
  activesupport
136
140
  builder
@@ -149,6 +153,7 @@ GEM
149
153
  kaminari-bootstrap (3.0.1)
150
154
  kaminari (>= 0.13.0)
151
155
  rails
156
+ libv8 (3.16.14.19)
152
157
  link_header (0.0.8)
153
158
  linkeddata (1.1.2)
154
159
  equivalent-xml (~> 0.4)
@@ -168,25 +173,30 @@ GEM
168
173
  rdf-turtle (~> 1.1, >= 1.1.5)
169
174
  sparql (~> 1.1, >= 1.1.4)
170
175
  sparql-client (~> 1.1, >= 1.1.3)
171
- loofah (2.0.3)
176
+ loofah (2.2.3)
177
+ crass (~> 1.0.2)
172
178
  nokogiri (>= 1.5.9)
173
- mail (2.6.4)
174
- mime-types (>= 1.16, < 4)
179
+ mail (2.7.1)
180
+ mini_mime (>= 0.1.1)
175
181
  maruku (0.7.2)
176
182
  method_source (0.8.2)
177
183
  mime-types (3.1)
178
184
  mime-types-data (~> 3.2015)
179
185
  mime-types-data (3.2016.0521)
180
- mini_portile2 (2.1.0)
181
- minitest (5.10.1)
186
+ mini_mime (1.0.2)
187
+ mini_portile2 (2.3.0)
188
+ minitest (5.11.3)
182
189
  multi_json (1.11.2)
183
190
  multipart-post (2.0.0)
184
- mysql2 (0.3.18)
191
+ mysql2 (0.4.10)
185
192
  net-http-persistent (2.9.4)
186
- nokogiri (1.7.2)
187
- mini_portile2 (~> 2.1.0)
188
- nokogiri (1.7.2-java)
193
+ nokogiri (1.8.5)
194
+ mini_portile2 (~> 2.3.0)
195
+ nokogiri (1.8.5-java)
189
196
  parallel (1.4.1)
197
+ passenger (5.3.7)
198
+ rack
199
+ rake (>= 0.8.1)
190
200
  pg (0.19.0)
191
201
  poltergeist (1.6.0)
192
202
  capybara (~> 2.1)
@@ -213,28 +223,28 @@ GEM
213
223
  public_suffix (2.0.5)
214
224
  quiet_assets (1.1.0)
215
225
  railties (>= 3.1, < 5.0)
216
- rack (1.6.8)
226
+ rack (1.6.11)
217
227
  rack-test (0.6.3)
218
228
  rack (>= 1.0)
219
- rails (4.2.8)
220
- actionmailer (= 4.2.8)
221
- actionpack (= 4.2.8)
222
- actionview (= 4.2.8)
223
- activejob (= 4.2.8)
224
- activemodel (= 4.2.8)
225
- activerecord (= 4.2.8)
226
- activesupport (= 4.2.8)
229
+ rails (4.2.11.1)
230
+ actionmailer (= 4.2.11.1)
231
+ actionpack (= 4.2.11.1)
232
+ actionview (= 4.2.11.1)
233
+ activejob (= 4.2.11.1)
234
+ activemodel (= 4.2.11.1)
235
+ activerecord (= 4.2.11.1)
236
+ activesupport (= 4.2.11.1)
227
237
  bundler (>= 1.3.0, < 2.0)
228
- railties (= 4.2.8)
238
+ railties (= 4.2.11.1)
229
239
  sprockets-rails
230
240
  rails-deprecated_sanitizer (1.0.3)
231
241
  activesupport (>= 4.2.0.alpha)
232
- rails-dom-testing (1.0.8)
233
- activesupport (>= 4.2.0.beta, < 5.0)
242
+ rails-dom-testing (1.0.9)
243
+ activesupport (>= 4.2.0, < 5.0)
234
244
  nokogiri (~> 1.6)
235
245
  rails-deprecated_sanitizer (>= 1.0.1)
236
- rails-html-sanitizer (1.0.3)
237
- loofah (~> 2.0)
246
+ rails-html-sanitizer (1.1.0)
247
+ loofah (~> 2.2, >= 2.2.2)
238
248
  rails_12factor (0.0.3)
239
249
  rails_serve_static_assets
240
250
  rails_stdout_logging
@@ -242,12 +252,12 @@ GEM
242
252
  rails (> 3.1)
243
253
  rails_serve_static_assets (0.0.4)
244
254
  rails_stdout_logging (0.0.3)
245
- railties (4.2.8)
246
- actionpack (= 4.2.8)
247
- activesupport (= 4.2.8)
255
+ railties (4.2.11.1)
256
+ actionpack (= 4.2.11.1)
257
+ activesupport (= 4.2.11.1)
248
258
  rake (>= 0.8.7)
249
259
  thor (>= 0.18.1, < 2.0)
250
- rake (12.0.0)
260
+ rake (12.3.3)
251
261
  rdf (1.1.9)
252
262
  link_header (~> 0.0, >= 0.0.8)
253
263
  rdf-aggregate-repo (1.1.0)
@@ -289,7 +299,9 @@ GEM
289
299
  rdf (~> 1.1, >= 1.1.4)
290
300
  rdf-xsd (1.1.3)
291
301
  rdf (~> 1.1, >= 1.1.9)
292
- request_store (1.1.0)
302
+ ref (2.0.0)
303
+ request_store (1.4.1)
304
+ rack (>= 1.4)
293
305
  safe_yaml (1.0.4)
294
306
  sass (3.4.23)
295
307
  sass-rails (5.0.6)
@@ -298,9 +310,8 @@ GEM
298
310
  sprockets (>= 2.8, < 4.0)
299
311
  sprockets-rails (>= 2.0, < 4.0)
300
312
  tilt (>= 1.1, < 3)
301
- scrypt (1.2.1)
302
- ffi-compiler (>= 0.0.2)
303
- rake
313
+ scrypt (3.0.6)
314
+ ffi-compiler (>= 1.0, < 2.0)
304
315
  simplecov (0.9.2)
305
316
  docile (~> 1.1.0)
306
317
  multi_json (~> 1.0)
@@ -320,20 +331,23 @@ GEM
320
331
  rdf (~> 1.1)
321
332
  spoon (0.0.4)
322
333
  ffi
323
- sprockets (3.7.1)
334
+ sprockets (3.7.2)
324
335
  concurrent-ruby (~> 1.0)
325
336
  rack (> 1, < 3)
326
- sprockets-rails (3.2.0)
337
+ sprockets-rails (3.2.1)
327
338
  actionpack (>= 4.0)
328
339
  activesupport (>= 4.0)
329
340
  sprockets (>= 3.0.0)
330
341
  sqlite3 (1.3.10)
331
342
  sxp (0.1.5)
332
- thor (0.19.4)
343
+ therubyracer (0.12.3)
344
+ libv8 (~> 3.16.14.15)
345
+ ref
346
+ thor (0.20.3)
333
347
  thread_safe (0.3.6)
334
348
  thread_safe (0.3.6-java)
335
349
  tilt (2.0.7)
336
- tzinfo (1.2.3)
350
+ tzinfo (1.2.5)
337
351
  thread_safe (~> 0.1)
338
352
  uglifier (2.7.1)
339
353
  execjs (>= 0.3.0)
@@ -341,11 +355,10 @@ GEM
341
355
  unicode-display_width (0.1.1)
342
356
  view_marker (1.0.0)
343
357
  rails
344
- web-console (2.1.0)
345
- activemodel (>= 4.0)
346
- binding_of_caller (>= 0.7.2)
347
- railties (>= 4.0)
348
- sprockets-rails (>= 2.0, < 4.0)
358
+ web-console (3.3.0)
359
+ activemodel (>= 4.2)
360
+ debug_inspector
361
+ railties (>= 4.2)
349
362
  webmock (3.0.1)
350
363
  addressable (>= 2.3.6)
351
364
  crack (>= 0.3.2)
@@ -366,8 +379,9 @@ DEPENDENCIES
366
379
  activerecord-jdbcmysql-adapter
367
380
  activerecord-jdbcpostgresql-adapter (~> 1.3.13)
368
381
  activerecord-jdbcsqlite3-adapter
382
+ activerecord-nulldb-adapter
369
383
  apipie-rails (~> 0.3.5)
370
- authlogic (~> 3.4.2)
384
+ authlogic (~> 3.8.0)
371
385
  autoprefixer-rails (~> 6.5.1.1)
372
386
  awesome_print
373
387
  better_errors
@@ -377,6 +391,7 @@ DEPENDENCIES
377
391
  cane
378
392
  capybara (~> 2.14.2)
379
393
  carrierwave
394
+ daemons
380
395
  database_cleaner
381
396
  delayed_job_active_record (~> 4.1.1)
382
397
  faraday (= 0.9.0)
@@ -390,24 +405,26 @@ DEPENDENCIES
390
405
  kaminari-bootstrap (~> 3.0.1)
391
406
  linkeddata (~> 1.1.2)
392
407
  maruku
393
- mysql2 (~> 0.3.13)
394
- nokogiri (~> 1.7.2)
408
+ mysql2 (~> 0.4.0)
409
+ nokogiri (~> 1.8.1)
410
+ passenger (= 5.3.7)
395
411
  pg
396
412
  poltergeist (~> 1.6.0)
397
413
  pry-byebug (~> 1.1.2)
398
414
  pry-rails
399
415
  pry-remote
400
416
  quiet_assets
401
- rails (~> 4.2.8)
417
+ rails (~> 4.2.11)
402
418
  rails_12factor
403
419
  rails_autolink
404
420
  sass-rails (~> 5.0.0)
405
421
  simplecov
406
422
  sqlite3
423
+ therubyracer
407
424
  uglifier
408
425
  view_marker
409
426
  web-console
410
427
  webmock (~> 3.0.1)
411
428
 
412
429
  BUNDLED WITH
413
- 1.15.1
430
+ 1.17.3
data/README.md CHANGED
@@ -52,6 +52,16 @@ $ heroku restart
52
52
 
53
53
  Remember to visit the Users section and change the default passwords!
54
54
 
55
+ ### Docker
56
+
57
+ If you want to try iQvoc using Docker just clone this repository and run:
58
+
59
+ ```
60
+ $ docker-compose up
61
+ ```
62
+
63
+ This Setup uses Postgres as a database. Please make sure that your Docker daemon is running and that you have docker-compose installed. User credentials can be found in https://github.com/innoq/iqvoc/blob/master/db/seeds.rb.
64
+
55
65
  ### Custom
56
66
 
57
67
  We recommend running [iQvoc as a Rails engine](https://github.com/innoq/iqvoc/wiki/iQvoc-as-a-Rails-Engine).
@@ -88,8 +98,7 @@ $ rake jobs:workoff
88
98
 
89
99
  ## Compatibility
90
100
 
91
- iQvoc is fully compatible with Ruby 1.9, 2.0, 2.1 and JRuby 1.7
92
- (in Ruby 1.9-mode).
101
+ iQvoc is fully compatible with Ruby 2.2, 2.3 and 2.4.
93
102
 
94
103
  ## Customization
95
104