station 0.0.120 → 0.0.121

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 (40) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile +1 -1
  3. data/lib/nexmo_developer/Gemfile +8 -8
  4. data/lib/nexmo_developer/Gemfile.lock +132 -123
  5. data/lib/nexmo_developer/app/assets/stylesheets/application.css +8 -1
  6. data/lib/nexmo_developer/app/controllers/static_controller.rb +1 -0
  7. data/lib/nexmo_developer/app/presenters/code_snippets_home_presenter.rb +26 -0
  8. data/lib/nexmo_developer/app/presenters/footer.rb +2 -3
  9. data/lib/nexmo_developer/app/presenters/header.rb +0 -31
  10. data/lib/nexmo_developer/app/views/contribute/code-snippets/how-to-update-code-snippets.md +1 -1
  11. data/lib/nexmo_developer/app/views/contribute/code-snippets/sample-code-snippet.md +1 -1
  12. data/lib/nexmo_developer/app/views/layouts/application.html.erb +0 -1
  13. data/lib/nexmo_developer/app/views/layouts/documentation-index.html.erb +0 -1
  14. data/lib/nexmo_developer/app/views/layouts/landing.html.erb +4 -2
  15. data/lib/nexmo_developer/app/views/layouts/page.html.erb +0 -1
  16. data/lib/nexmo_developer/app/views/layouts/partials/_code_snippets_home.html.erb +38 -0
  17. data/lib/nexmo_developer/app/views/layouts/partials/_footer.html.erb +33 -32
  18. data/lib/nexmo_developer/app/views/layouts/partials/_header.html.erb +90 -31
  19. data/lib/nexmo_developer/app/views/layouts/partials/_locale_switcher.html.erb +3 -4
  20. data/lib/nexmo_developer/app/webpacker/javascript/components/concatenation/character_counter.js +5 -3
  21. data/lib/nexmo_developer/app/webpacker/javascript/components/search/Search.vue +80 -19
  22. data/lib/nexmo_developer/app/webpacker/javascript/sidenav/index.js +0 -13
  23. data/lib/nexmo_developer/app/webpacker/javascript/topnav/index.js +33 -0
  24. data/lib/nexmo_developer/app/webpacker/javascript/volta_tabbed_examples/index.js +3 -1
  25. data/lib/nexmo_developer/app/webpacker/packs/application.js +15 -3
  26. data/lib/nexmo_developer/app/webpacker/stylesheets/application.scss +4 -0
  27. data/lib/nexmo_developer/app/webpacker/stylesheets/custom/_core.scss +0 -2
  28. data/lib/nexmo_developer/app/webpacker/stylesheets/custom/_landing.scss +470 -0
  29. data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_footer.scss +45 -23
  30. data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_header.scss +161 -138
  31. data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_search.scss +2 -5
  32. data/lib/nexmo_developer/app/webpacker/stylesheets/objects/_navigation.scss +0 -2
  33. data/lib/nexmo_developer/public/vonage_developer_logo.svg +26 -0
  34. data/lib/nexmo_developer/version.rb +1 -1
  35. data/package.json +30 -29
  36. data/station.gemspec +8 -8
  37. data/yarn.lock +1312 -1139
  38. metadata +57 -52
  39. data/lib/nexmo_developer/app/presenters/topnav.rb +0 -23
  40. data/lib/nexmo_developer/app/presenters/topnav_item.rb +0 -19
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53c4dbc48c0d4c31131468ec9d64e84326df7d542dafe1211c2683505f071352
4
- data.tar.gz: f4ad76966742f0a6985ccd992bc2a92c92b03fbbe373991cb17c7e433a1d48e0
3
+ metadata.gz: a2b88f57d6f356152df13117c918f30ae357e1b88bda64474ebde0515be51765
4
+ data.tar.gz: 9ab4179980dbbb1686f082edb6b9f8a55963a9c5c60db94bcb0ed7e143ba3a97
5
5
  SHA512:
6
- metadata.gz: 4bbb2c06ac16b6e84c7ec4de019998b1390a0fa0e8dc37a1f7c3fb52dccd541d62d14fc43bf0578f70a5a8d4974aea2fb933c34230266049997a0e6135532a35
7
- data.tar.gz: 474a576f45033e6cd6aebb0493bdebb3933c024bb48c6d795d94d684c9a23436ae93fe25ce918f5a9669468ae5ae56e0cf3a85f33a0561f7460fc1200e1f501b
6
+ metadata.gz: 41ed8d9b1a2ccee93384820e0178e8c85726bd13e2898d57594dabbba2b0603b61c1bd7fcddfbdffb03b8ed75dc98a93e9cefdf6a194eca95cc01ffdc0514b3c
7
+ data.tar.gz: 58318472c01139f7529ee7a81feff027e4395996ddea01b352125a864eb3b25a6a7579d8efe7b5fb09a04fa00fea31ea06336e2e1632d98f7f102d571ec50b15
data/Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
1
  FROM ruby:3.0.0-alpine AS build-env
2
2
  ARG RAILS_ROOT=/station
3
3
  ARG BUILD_PACKAGES="build-base curl-dev git bash"
4
- ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn"
4
+ ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn shared-mime-info"
5
5
  ARG RUBY_PACKAGES="tzdata"
6
6
  ENV RAILS_ENV=production
7
7
  ENV NODE_ENV=production
@@ -7,13 +7,13 @@ git_source(:github) do |repo_name|
7
7
  end
8
8
 
9
9
  # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10
- gem 'rails', '~> 6.1.3'
10
+ gem 'rails', '~> 6.1.4'
11
11
  gem 'webpacker'
12
12
 
13
13
  # Use postgresql as the database for Active Record
14
14
  gem 'pg', '~> 1.2'
15
15
  # Use Puma as the app server
16
- gem 'puma', '~> 5.2'
16
+ gem 'puma', '>= 5.3.1'
17
17
 
18
18
  # Use CoffeeScript for .coffee assets and views
19
19
  gem 'coffee-rails', '~> 5.0'
@@ -33,7 +33,7 @@ gem 'geocoder'
33
33
  # gem 'capistrano-rails', group: :development
34
34
 
35
35
  # Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's many features is the ability to search documents via XPath or CSS3 selectors.
36
- gem 'nokogiri', '~> 1.11.1'
36
+ gem 'nokogiri', '>= 1.11.4'
37
37
 
38
38
  # Autoload dotenv in Rails.
39
39
  gem 'dotenv-rails', groups: %i[development test]
@@ -63,13 +63,13 @@ gem 'icalendar', require: false
63
63
  gem 'neatjson'
64
64
 
65
65
  # Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc.
66
- gem 'faker', '2.16.0', require: false
66
+ gem 'faker', '2.18.0', require: false
67
67
 
68
68
  # factory_girl_rails provides integration between factory_girl and rails 3 or newer (currently just automatic factory definition loading)
69
- gem 'factory_bot_rails', '6.1.0', require: false
69
+ gem 'factory_bot_rails', '6.2.0', require: false
70
70
 
71
71
  # A slim ruby wrapper for posting to slack webhooks
72
- gem 'slack-notifier', '2.3.2'
72
+ gem 'slack-notifier', '2.4.0'
73
73
 
74
74
  # The administration framework for Ruby on Rails.
75
75
  gem 'activeadmin', '~> 2.9'
@@ -148,8 +148,8 @@ group :development, :test do
148
148
  gem 'pry', require: false
149
149
  gem 'rawler', git: 'https://github.com/oscardelben/rawler.git', require: false
150
150
  gem 'rspec-collection_matchers'
151
- gem 'rspec-rails', '~> 4.0'
152
- gem 'rspec-snapshot', '~> 0.1.2'
151
+ gem 'rspec-rails', '~> 5.0'
152
+ gem 'rspec-snapshot', '~> 2.0.0'
153
153
  gem 'simplecov', require: false
154
154
  gem 'webmock'
155
155
  end
@@ -14,48 +14,48 @@ GIT
14
14
 
15
15
  GIT
16
16
  remote: https://github.com/rails/actionpack-page_caching.git
17
- revision: 0369da809329e18b7ce83797792895ba4bebcf1e
17
+ revision: d929689748f09c5d7c73cefbd9326701dcf52a30
18
18
  specs:
19
- actionpack-page_caching (1.2.3)
20
- actionpack (>= 5.0.0)
19
+ actionpack-page_caching (1.2.4)
20
+ actionpack (>= 4.0.0)
21
21
 
22
22
  GEM
23
23
  remote: https://rubygems.org/
24
24
  specs:
25
- actioncable (6.1.3.1)
26
- actionpack (= 6.1.3.1)
27
- activesupport (= 6.1.3.1)
25
+ actioncable (6.1.4)
26
+ actionpack (= 6.1.4)
27
+ activesupport (= 6.1.4)
28
28
  nio4r (~> 2.0)
29
29
  websocket-driver (>= 0.6.1)
30
- actionmailbox (6.1.3.1)
31
- actionpack (= 6.1.3.1)
32
- activejob (= 6.1.3.1)
33
- activerecord (= 6.1.3.1)
34
- activestorage (= 6.1.3.1)
35
- activesupport (= 6.1.3.1)
30
+ actionmailbox (6.1.4)
31
+ actionpack (= 6.1.4)
32
+ activejob (= 6.1.4)
33
+ activerecord (= 6.1.4)
34
+ activestorage (= 6.1.4)
35
+ activesupport (= 6.1.4)
36
36
  mail (>= 2.7.1)
37
- actionmailer (6.1.3.1)
38
- actionpack (= 6.1.3.1)
39
- actionview (= 6.1.3.1)
40
- activejob (= 6.1.3.1)
41
- activesupport (= 6.1.3.1)
37
+ actionmailer (6.1.4)
38
+ actionpack (= 6.1.4)
39
+ actionview (= 6.1.4)
40
+ activejob (= 6.1.4)
41
+ activesupport (= 6.1.4)
42
42
  mail (~> 2.5, >= 2.5.4)
43
43
  rails-dom-testing (~> 2.0)
44
- actionpack (6.1.3.1)
45
- actionview (= 6.1.3.1)
46
- activesupport (= 6.1.3.1)
44
+ actionpack (6.1.4)
45
+ actionview (= 6.1.4)
46
+ activesupport (= 6.1.4)
47
47
  rack (~> 2.0, >= 2.0.9)
48
48
  rack-test (>= 0.6.3)
49
49
  rails-dom-testing (~> 2.0)
50
50
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
51
- actiontext (6.1.3.1)
52
- actionpack (= 6.1.3.1)
53
- activerecord (= 6.1.3.1)
54
- activestorage (= 6.1.3.1)
55
- activesupport (= 6.1.3.1)
51
+ actiontext (6.1.4)
52
+ actionpack (= 6.1.4)
53
+ activerecord (= 6.1.4)
54
+ activestorage (= 6.1.4)
55
+ activesupport (= 6.1.4)
56
56
  nokogiri (>= 1.8.5)
57
- actionview (6.1.3.1)
58
- activesupport (= 6.1.3.1)
57
+ actionview (6.1.4)
58
+ activesupport (= 6.1.4)
59
59
  builder (~> 3.1)
60
60
  erubi (~> 1.4)
61
61
  rails-dom-testing (~> 2.0)
@@ -69,22 +69,22 @@ GEM
69
69
  kaminari (~> 1.0, >= 1.2.1)
70
70
  railties (>= 5.2, < 6.2)
71
71
  ransack (~> 2.1, >= 2.1.1)
72
- activejob (6.1.3.1)
73
- activesupport (= 6.1.3.1)
72
+ activejob (6.1.4)
73
+ activesupport (= 6.1.4)
74
74
  globalid (>= 0.3.6)
75
- activemodel (6.1.3.1)
76
- activesupport (= 6.1.3.1)
77
- activerecord (6.1.3.1)
78
- activemodel (= 6.1.3.1)
79
- activesupport (= 6.1.3.1)
80
- activestorage (6.1.3.1)
81
- actionpack (= 6.1.3.1)
82
- activejob (= 6.1.3.1)
83
- activerecord (= 6.1.3.1)
84
- activesupport (= 6.1.3.1)
75
+ activemodel (6.1.4)
76
+ activesupport (= 6.1.4)
77
+ activerecord (6.1.4)
78
+ activemodel (= 6.1.4)
79
+ activesupport (= 6.1.4)
80
+ activestorage (6.1.4)
81
+ actionpack (= 6.1.4)
82
+ activejob (= 6.1.4)
83
+ activerecord (= 6.1.4)
84
+ activesupport (= 6.1.4)
85
85
  marcel (~> 1.0.0)
86
- mini_mime (~> 1.0.2)
87
- activesupport (6.1.3.1)
86
+ mini_mime (>= 1.1.0)
87
+ activesupport (6.1.4)
88
88
  concurrent-ruby (~> 1.0, >= 1.0.2)
89
89
  i18n (>= 1.6, < 2)
90
90
  minitest (>= 5.1)
@@ -102,9 +102,9 @@ GEM
102
102
  activesupport (>= 3.0.0, < 6.2)
103
103
  ruby2_keywords (>= 0.0.2, < 1.0)
104
104
  ast (2.4.2)
105
- awesome_print (1.8.0)
105
+ awesome_print (1.9.2)
106
106
  banzai (0.1.3)
107
- barnes (0.0.8)
107
+ barnes (0.0.9)
108
108
  multi_json (~> 1)
109
109
  statsd-ruby (~> 1.1)
110
110
  bcrypt (3.1.16)
@@ -116,9 +116,9 @@ GEM
116
116
  bindex (0.8.1)
117
117
  binding_of_caller (1.0.0)
118
118
  debug_inspector (>= 0.0.1)
119
- bootsnap (1.7.2)
119
+ bootsnap (1.7.5)
120
120
  msgpack (~> 1.0)
121
- bugsnag (6.19.0)
121
+ bugsnag (6.21.0)
122
122
  concurrent-ruby (~> 1.0)
123
123
  builder (3.2.4)
124
124
  byebug (11.1.3)
@@ -130,7 +130,7 @@ GEM
130
130
  rack-test (>= 0.6.3)
131
131
  regexp_parser (>= 1.5, < 3.0)
132
132
  xpath (~> 3.2)
133
- chartkick (4.0.2)
133
+ chartkick (4.0.4)
134
134
  coderay (1.1.3)
135
135
  coffee-rails (5.0.0)
136
136
  coffee-script (>= 2.2.0)
@@ -140,9 +140,9 @@ GEM
140
140
  execjs
141
141
  coffee-script-source (1.12.2)
142
142
  colorize (0.8.1)
143
- concurrent-ruby (1.1.8)
144
- countries (3.0.1)
145
- i18n_data (~> 0.10.0)
143
+ concurrent-ruby (1.1.9)
144
+ countries (3.1.0)
145
+ i18n_data (~> 0.11.0)
146
146
  sixarm_ruby_unaccent (~> 1.1)
147
147
  unicode_utils (~> 1.4)
148
148
  country_select (4.0.0)
@@ -153,7 +153,7 @@ GEM
153
153
  crass (1.0.6)
154
154
  debug_inspector (1.0.0)
155
155
  deep_merge (1.2.1)
156
- devise (4.7.3)
156
+ devise (4.8.0)
157
157
  bcrypt (~> 3.0)
158
158
  orm_adapter (~> 0.1)
159
159
  railties (>= 4.1.0)
@@ -177,27 +177,35 @@ GEM
177
177
  eventmachine (1.2.7-x64-mingw32)
178
178
  eventmachine (1.2.7-x86-mingw32)
179
179
  execjs (2.7.0)
180
- factory_bot (6.1.0)
180
+ factory_bot (6.2.0)
181
181
  activesupport (>= 5.0.0)
182
- factory_bot_rails (6.1.0)
183
- factory_bot (~> 6.1.0)
182
+ factory_bot_rails (6.2.0)
183
+ factory_bot (~> 6.2.0)
184
184
  railties (>= 5.0.0)
185
- faker (2.16.0)
185
+ faker (2.18.0)
186
186
  i18n (>= 1.6, < 2)
187
- faraday (1.3.0)
187
+ faraday (1.4.2)
188
+ faraday-em_http (~> 1.0)
189
+ faraday-em_synchrony (~> 1.0)
190
+ faraday-excon (~> 1.1)
188
191
  faraday-net_http (~> 1.0)
192
+ faraday-net_http_persistent (~> 1.1)
189
193
  multipart-post (>= 1.2, < 3)
190
- ruby2_keywords
194
+ ruby2_keywords (>= 0.0.4)
195
+ faraday-em_http (1.0.0)
196
+ faraday-em_synchrony (1.0.0)
197
+ faraday-excon (1.1.0)
191
198
  faraday-net_http (1.0.1)
192
- ffi (1.15.0)
193
- ffi (1.15.0-java)
194
- ffi (1.15.0-x64-mingw32)
195
- ffi (1.15.0-x86-mingw32)
199
+ faraday-net_http_persistent (1.1.0)
200
+ ffi (1.15.3)
201
+ ffi (1.15.3-java)
202
+ ffi (1.15.3-x64-mingw32)
203
+ ffi (1.15.3-x86-mingw32)
196
204
  formatador (0.2.5)
197
205
  formtastic (4.0.0)
198
206
  actionpack (>= 5.2.0)
199
207
  formtastic_i18n (0.6.0)
200
- geocoder (1.6.5)
208
+ geocoder (1.6.7)
201
209
  globalid (0.4.2)
202
210
  activesupport (>= 4.2.0)
203
211
  gmaps4rails (2.1.2)
@@ -246,8 +254,8 @@ GEM
246
254
  httpclient (2.8.3)
247
255
  i18n (1.8.10)
248
256
  concurrent-ruby (~> 1.0)
249
- i18n_data (0.10.0)
250
- icalendar (2.7.0)
257
+ i18n_data (0.11.0)
258
+ icalendar (2.7.1)
251
259
  ice_cube (~> 0.16)
252
260
  ice_cube (0.16.3)
253
261
  inherited_resources (1.12.0)
@@ -283,13 +291,13 @@ GEM
283
291
  activesupport (>= 4)
284
292
  railties (>= 4)
285
293
  request_store (~> 1.0)
286
- loofah (2.9.1)
294
+ loofah (2.10.0)
287
295
  crass (~> 1.0.2)
288
296
  nokogiri (>= 1.5.9)
289
297
  lumberjack (1.2.8)
290
298
  mail (2.7.1)
291
299
  mini_mime (>= 0.1.1)
292
- marcel (1.0.0)
300
+ marcel (1.0.1)
293
301
  method_source (1.0.0)
294
302
  mime-types (3.3.1)
295
303
  mime-types-data (~> 3.2015)
@@ -297,8 +305,8 @@ GEM
297
305
  mimemagic (0.4.3)
298
306
  nokogiri (~> 1)
299
307
  rake
300
- mini_mime (1.0.3)
301
- mini_portile2 (2.5.0)
308
+ mini_mime (1.1.0)
309
+ mini_portile2 (2.5.3)
302
310
  minitest (5.14.4)
303
311
  msgpack (1.4.2)
304
312
  msgpack (1.4.2-java)
@@ -313,10 +321,10 @@ GEM
313
321
  neatjson (0.9)
314
322
  nenv (0.3.0)
315
323
  netrc (0.11.0)
316
- newrelic_rpm (6.15.0)
317
- nexmo-oas-renderer (2.7.1)
318
- activemodel (~> 6.0)
319
- activesupport (~> 6.0)
324
+ newrelic_rpm (7.1.0)
325
+ nexmo-oas-renderer (2.7.2)
326
+ activemodel (~> 6.1)
327
+ activesupport (~> 6.1)
320
328
  banzai (~> 0.1.2)
321
329
  dotenv (~> 2.7)
322
330
  neatjson (~> 0.8)
@@ -336,14 +344,14 @@ GEM
336
344
  rouge (~> 2.0.7)
337
345
  nio4r (2.5.7)
338
346
  nio4r (2.5.7-java)
339
- nokogiri (1.11.3)
347
+ nokogiri (1.11.7)
340
348
  mini_portile2 (~> 2.5.0)
341
349
  racc (~> 1.4)
342
- nokogiri (1.11.3-java)
350
+ nokogiri (1.11.7-java)
343
351
  racc (~> 1.4)
344
- nokogiri (1.11.3-x64-mingw32)
352
+ nokogiri (1.11.7-x64-mingw32)
345
353
  racc (~> 1.4)
346
- nokogiri (1.11.3-x86-mingw32)
354
+ nokogiri (1.11.7-x86-mingw32)
347
355
  racc (~> 1.4)
348
356
  notiffany (0.1.3)
349
357
  nenv (~> 0.1)
@@ -356,7 +364,7 @@ GEM
356
364
  hash-deep-merge
357
365
  mustermann-contrib (~> 1.1.1)
358
366
  nokogiri
359
- octokit (4.20.0)
367
+ octokit (4.21.0)
360
368
  faraday (>= 0.9)
361
369
  sawyer (~> 0.8.0, >= 0.5.3)
362
370
  oj (3.11.2)
@@ -365,52 +373,52 @@ GEM
365
373
  parser (3.0.0.0)
366
374
  ast (~> 2.4.1)
367
375
  pg (1.2.3)
368
- pry (0.14.0)
376
+ pry (0.14.1)
369
377
  coderay (~> 1.1)
370
378
  method_source (~> 1.0)
371
- pry (0.14.0-java)
379
+ pry (0.14.1-java)
372
380
  coderay (~> 1.1)
373
381
  method_source (~> 1.0)
374
382
  spoon (~> 0.0)
375
383
  public_suffix (4.0.6)
376
- puma (5.2.1)
384
+ puma (5.3.2)
377
385
  nio4r (~> 2.0)
378
- puma (5.2.1-java)
386
+ puma (5.3.2-java)
379
387
  nio4r (~> 2.0)
380
388
  racc (1.5.2)
381
389
  racc (1.5.2-java)
382
390
  rack (2.2.3)
383
391
  rack-protection (2.1.0)
384
392
  rack
385
- rack-proxy (0.6.5)
393
+ rack-proxy (0.7.0)
386
394
  rack
387
395
  rack-test (1.1.0)
388
396
  rack (>= 1.0, < 3)
389
- rails (6.1.3.1)
390
- actioncable (= 6.1.3.1)
391
- actionmailbox (= 6.1.3.1)
392
- actionmailer (= 6.1.3.1)
393
- actionpack (= 6.1.3.1)
394
- actiontext (= 6.1.3.1)
395
- actionview (= 6.1.3.1)
396
- activejob (= 6.1.3.1)
397
- activemodel (= 6.1.3.1)
398
- activerecord (= 6.1.3.1)
399
- activestorage (= 6.1.3.1)
400
- activesupport (= 6.1.3.1)
397
+ rails (6.1.4)
398
+ actioncable (= 6.1.4)
399
+ actionmailbox (= 6.1.4)
400
+ actionmailer (= 6.1.4)
401
+ actionpack (= 6.1.4)
402
+ actiontext (= 6.1.4)
403
+ actionview (= 6.1.4)
404
+ activejob (= 6.1.4)
405
+ activemodel (= 6.1.4)
406
+ activerecord (= 6.1.4)
407
+ activestorage (= 6.1.4)
408
+ activesupport (= 6.1.4)
401
409
  bundler (>= 1.15.0)
402
- railties (= 6.1.3.1)
410
+ railties (= 6.1.4)
403
411
  sprockets-rails (>= 2.0.0)
404
412
  rails-dom-testing (2.0.3)
405
413
  activesupport (>= 4.2.0)
406
414
  nokogiri (>= 1.6)
407
415
  rails-html-sanitizer (1.3.0)
408
416
  loofah (~> 2.3)
409
- railties (6.1.3.1)
410
- actionpack (= 6.1.3.1)
411
- activesupport (= 6.1.3.1)
417
+ railties (6.1.4)
418
+ actionpack (= 6.1.4)
419
+ activesupport (= 6.1.4)
412
420
  method_source
413
- rake (>= 0.8.7)
421
+ rake (>= 0.13)
414
422
  thor (~> 1.0)
415
423
  rainbow (3.0.0)
416
424
  rake (13.0.3)
@@ -418,13 +426,13 @@ GEM
418
426
  activerecord (>= 5.2.4)
419
427
  activesupport (>= 5.2.4)
420
428
  i18n
421
- rb-fsevent (0.10.4)
429
+ rb-fsevent (0.11.0)
422
430
  rb-inotify (0.10.1)
423
431
  ffi (~> 1.0)
424
- recaptcha (5.7.0)
432
+ recaptcha (5.8.0)
425
433
  json
426
434
  redcarpet (3.5.1)
427
- redis (4.2.5)
435
+ redis (4.3.1)
428
436
  regexp_parser (2.0.3)
429
437
  request_store (1.5.0)
430
438
  rack (>= 1.4)
@@ -470,15 +478,16 @@ GEM
470
478
  rspec-mocks (3.10.2)
471
479
  diff-lcs (>= 1.2.0, < 2.0)
472
480
  rspec-support (~> 3.10.0)
473
- rspec-rails (4.0.2)
474
- actionpack (>= 4.2)
475
- activesupport (>= 4.2)
476
- railties (>= 4.2)
481
+ rspec-rails (5.0.1)
482
+ actionpack (>= 5.2)
483
+ activesupport (>= 5.2)
484
+ railties (>= 5.2)
477
485
  rspec-core (~> 3.10)
478
486
  rspec-expectations (~> 3.10)
479
487
  rspec-mocks (~> 3.10)
480
488
  rspec-support (~> 3.10)
481
- rspec-snapshot (0.1.2)
489
+ rspec-snapshot (2.0.0)
490
+ awesome_print (> 1.0.0)
482
491
  rspec (> 3.0.0)
483
492
  rspec-support (3.10.2)
484
493
  rubocop (1.10.0)
@@ -516,7 +525,7 @@ GEM
516
525
  sawyer (0.8.2)
517
526
  addressable (>= 2.3.5)
518
527
  faraday (> 0.8, < 2.0)
519
- semantic_range (2.3.1)
528
+ semantic_range (3.0.0)
520
529
  shellany (0.0.1)
521
530
  shotgun (0.9.2)
522
531
  rack (>= 1.0)
@@ -533,7 +542,7 @@ GEM
533
542
  rack-protection (= 2.1.0)
534
543
  tilt (~> 2.0)
535
544
  sixarm_ruby_unaccent (1.2.0)
536
- slack-notifier (2.3.2)
545
+ slack-notifier (2.4.0)
537
546
  smartling (2.0.3)
538
547
  multi_json (~> 1.0)
539
548
  oj (~> 3.0)
@@ -554,8 +563,8 @@ GEM
554
563
  activesupport (>= 4.0)
555
564
  sprockets (>= 3.0.0)
556
565
  statsd-ruby (1.5.0)
557
- terminal-table (3.0.0)
558
- unicode-display_width (~> 1.1, >= 1.1.1)
566
+ terminal-table (3.0.1)
567
+ unicode-display_width (>= 1.1.1, < 3)
559
568
  thor (1.1.0)
560
569
  tilt (2.0.10)
561
570
  titleize (1.4.1)
@@ -570,7 +579,7 @@ GEM
570
579
  unf_ext
571
580
  unf (0.1.4-java)
572
581
  unf_ext (0.0.7.7)
573
- unicode-display_width (1.7.0)
582
+ unicode-display_width (2.0.0)
574
583
  unicode_utils (1.4.0)
575
584
  warden (1.2.9)
576
585
  rack (>= 2.0.9)
@@ -579,18 +588,18 @@ GEM
579
588
  activemodel (>= 6.0.0)
580
589
  bindex (>= 0.4.0)
581
590
  railties (>= 6.0.0)
582
- webmock (3.11.3)
591
+ webmock (3.13.0)
583
592
  addressable (>= 2.3.6)
584
593
  crack (>= 0.3.2)
585
594
  hashdiff (>= 0.4.0, < 2.0.0)
586
- webpacker (5.2.1)
595
+ webpacker (5.4.0)
587
596
  activesupport (>= 5.2)
588
597
  rack-proxy (>= 0.6.1)
589
598
  railties (>= 5.2)
590
599
  semantic_range (>= 2.3.0)
591
- websocket-driver (0.7.3)
600
+ websocket-driver (0.7.5)
592
601
  websocket-extensions (>= 0.1.0)
593
- websocket-driver (0.7.3-java)
602
+ websocket-driver (0.7.5-java)
594
603
  websocket-extensions (>= 0.1.0)
595
604
  websocket-extensions (0.1.5)
596
605
  woothee (1.11.1)
@@ -626,8 +635,8 @@ DEPENDENCIES
626
635
  devise (>= 4.6.0)
627
636
  diffy
628
637
  dotenv-rails
629
- factory_bot_rails (= 6.1.0)
630
- faker (= 2.16.0)
638
+ factory_bot_rails (= 6.2.0)
639
+ faker (= 2.18.0)
631
640
  ffi (>= 1.9.24)
632
641
  geocoder
633
642
  gmaps4rails (= 2.1.2)
@@ -643,26 +652,26 @@ DEPENDENCIES
643
652
  newrelic_rpm
644
653
  nexmo-oas-renderer (~> 2.7)
645
654
  nexmo_markdown_renderer (~> 0.9)
646
- nokogiri (~> 1.11.1)
655
+ nokogiri (>= 1.11.4)
647
656
  octokit
648
657
  pg (~> 1.2)
649
658
  pry
650
- puma (~> 5.2)
659
+ puma (>= 5.3.1)
651
660
  rack (>= 2.0.6)
652
- rails (~> 6.1.3)
661
+ rails (~> 6.1.4)
653
662
  rawler!
654
663
  recaptcha
655
664
  redis
656
665
  rest-client
657
666
  rspec-collection_matchers
658
- rspec-rails (~> 4.0)
659
- rspec-snapshot (~> 0.1.2)
667
+ rspec-rails (~> 5.0)
668
+ rspec-snapshot (~> 2.0.0)
660
669
  rubocop (~> 1.10.0)
661
670
  rubocop-rails (~> 2.9)
662
671
  ruby-progressbar
663
672
  sassc-rails (~> 2.1)
664
673
  simplecov
665
- slack-notifier (= 2.3.2)
674
+ slack-notifier (= 2.4.0)
666
675
  smartling
667
676
  split (~> 3.4.1)
668
677
  terminal-table