station 0.0.113 → 0.0.114

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile +9 -7
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +2 -2
  5. data/docs/How-To-Use.md +2 -0
  6. data/lib/nexmo_developer/.nvmrc +1 -1
  7. data/lib/nexmo_developer/.ruby-version +1 -1
  8. data/lib/nexmo_developer/Gemfile +8 -9
  9. data/lib/nexmo_developer/Gemfile.lock +101 -98
  10. data/lib/nexmo_developer/Runbook.md +4 -4
  11. data/lib/nexmo_developer/app/controllers/jobs_controller.rb +7 -7
  12. data/lib/nexmo_developer/app/controllers/static_controller.rb +2 -13
  13. data/lib/nexmo_developer/app/models/feedback/feedback.rb +2 -0
  14. data/lib/nexmo_developer/app/presenters/head.rb +5 -1
  15. data/lib/nexmo_developer/app/presenters/improve_page_presenter.rb +1 -1
  16. data/lib/nexmo_developer/app/services/orbit_feedback_notifier.rb +53 -0
  17. data/lib/nexmo_developer/app/services/translator/files_list_coordinator.rb +1 -1
  18. data/lib/nexmo_developer/app/views/contribute/guides/landing-pages.md +0 -10
  19. data/lib/nexmo_developer/app/views/contribute/guides/markdown-guide.md +0 -38
  20. data/lib/nexmo_developer/app/views/contribute/guides/platform.md +0 -1
  21. data/lib/nexmo_developer/app/webpacker/packs/application.js +0 -3
  22. data/lib/nexmo_developer/config/routes.rb +0 -2
  23. data/lib/nexmo_developer/lib/tasks/cache.rake +1 -1
  24. data/lib/nexmo_developer/lib/tasks/careers.rake +1 -1
  25. data/lib/nexmo_developer/lib/tasks/ci.rake +7 -7
  26. data/lib/nexmo_developer/lib/tasks/diff.rake +5 -5
  27. data/lib/nexmo_developer/lib/tasks/documentation.rake +1 -1
  28. data/lib/nexmo_developer/lib/tasks/generate_search_terms.rake +2 -2
  29. data/lib/nexmo_developer/lib/tasks/links.rake +6 -6
  30. data/lib/nexmo_developer/lib/tasks/smartling.rake +1 -1
  31. data/lib/nexmo_developer/version.rb +1 -1
  32. data/package.json +20 -22
  33. data/station.gemspec +4 -4
  34. data/yarn.lock +983 -2784
  35. metadata +47 -52
  36. data/lib/nexmo_developer/.dockerignore +0 -1
  37. data/lib/nexmo_developer/Dockerfile +0 -28
  38. data/lib/nexmo_developer/app/screenshots/webhook-url-for-delivery-receipt.js +0 -44
  39. data/lib/nexmo_developer/app/screenshots/webhook-url-for-inbound-message.js +0 -44
  40. data/lib/nexmo_developer/app/views/static/default_landing/partials/_submit_your_idea_form.html.erb +0 -58
  41. data/lib/nexmo_developer/app/webpacker/javascript/spotlight/index.js +0 -12
  42. data/lib/nexmo_developer/docker-compose.yml +0 -43
  43. data/lib/nexmo_developer/lib/tasks/screenshots.rake +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e574d7fbbd63bd2ab6230d01648decb133d950f0a5031eb6879ee22296cde8c1
4
- data.tar.gz: 945164d92a31fbf7c035a6d4b570435ccc8e63f8b42dd7a7f0f0757d0183685a
3
+ metadata.gz: ab8f827b68a4559bcdf5ad87de8c3f930f58f81fab6204271b5b6bd85708eada
4
+ data.tar.gz: 4b99e4e0a28185a498820137bdf056a1b992a3da25221616fa7d85d777dd7318
5
5
  SHA512:
6
- metadata.gz: 5fca76a462e8bb3e2e6b1225bb7cfb1785fdfff065bd67060fbef2a0d6e7ed05a78dcb8b799d58d13b9a50dce75f8f7552fc7921fd2ac9b7ff15e84edafd2e4f
7
- data.tar.gz: 6c7f79f2463188339b257558f4f07972ab9990d1ece8d16f9c83a1b111d597f40bc269fcb04ba632be395a2f76e1ce72eeb5690f2ed362f1ca8450d131fba8df
6
+ metadata.gz: 7b81a1a3d48bb36df4093ce7d381099bdba9c295c095bd729f486bd7cc9e6ef0cc00f421b33ca18829a46a3d509d8914de1fc19697491c4d1e003e9852f93382
7
+ data.tar.gz: d76a8a5d2b400900648dcd8480a51c61c90910e9287feb6049134ca87ca8d55280a656fa050e459364c3696f840e7b939ce9746cd1be4d0ed2c10d971c316eda
data/Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
- FROM ruby:2.7.2-alpine AS build-env
1
+ FROM ruby:3.0.0-alpine AS build-env
2
2
  ARG RAILS_ROOT=/station
3
- ARG BUILD_PACKAGES="build-base curl-dev git"
3
+ ARG BUILD_PACKAGES="build-base curl-dev git bash"
4
4
  ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn"
5
5
  ARG RUBY_PACKAGES="tzdata"
6
6
  ENV RAILS_ENV=production
@@ -13,6 +13,7 @@ WORKDIR $RAILS_ROOT
13
13
  RUN apk update \
14
14
  && apk upgrade \
15
15
  && apk add --update --no-cache $BUILD_PACKAGES $DEV_PACKAGES $RUBY_PACKAGES
16
+
16
17
  COPY lib/nexmo_developer/Gemfile* package.json yarn.lock $RAILS_ROOT/
17
18
 
18
19
  # Upgrade Bundler to version 2
@@ -22,22 +23,23 @@ RUN bundle config --global frozen 1 \
22
23
 
23
24
  RUN bundle install --without development:test:assets -j4 --retry 3 --path=vendor/bundle \
24
25
  # Remove unneeded files (cached *.gem, *.o, *.c)
25
- && rm -rf vendor/bundle/ruby/2.7.0/cache/*.gem \
26
- && find vendor/bundle/ruby/2.7.0/gems/ -name "*.c" -delete \
27
- && find vendor/bundle/ruby/2.7.0/gems/ -name "*.o" -delete
26
+ && rm -rf vendor/bundle/ruby/3.0.0/cache/*.gem \
27
+ && find vendor/bundle/ruby/3.0.0/gems/ -name "*.c" -delete \
28
+ && find vendor/bundle/ruby/3.0.0/gems/ -name "*.o" -delete
28
29
 
29
30
  # Install node dependencies
30
31
  RUN yarn install --frozen-lockfile
31
32
 
32
33
  # Copy the app in to /station and compile assets
33
34
  COPY lib/nexmo_developer/ $RAILS_ROOT/
35
+
34
36
  RUN bundle exec rake assets:precompile
35
37
 
36
38
  ## Remove folders not needed in resulting image
37
39
  RUN rm -rf node_modules tmp/cache vendor/assets spec
38
40
 
39
41
  ################ Build step done ###############
40
- FROM ruby:2.7.2-alpine
42
+ FROM ruby:3.0.0-alpine
41
43
  ARG RAILS_ROOT=/station
42
44
 
43
45
  ENV RACK_ENV production
@@ -54,7 +56,7 @@ WORKDIR $RAILS_ROOT
54
56
  # Install packges needed at runtime
55
57
  RUN apk update \
56
58
  && apk upgrade \
57
- && apk add --update --no-cache tzdata postgresql-client nodejs
59
+ && apk add --update --no-cache tzdata postgresql-client nodejs bash
58
60
 
59
61
  # Upgrade Bundler to version 2
60
62
  RUN bundle config --global frozen 1 \
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
1
  source 'https://rubygems.org'
2
- ruby '2.7.2'
2
+ ruby '3.0.0'
data/Gemfile.lock CHANGED
@@ -8,7 +8,7 @@ PLATFORMS
8
8
  DEPENDENCIES
9
9
 
10
10
  RUBY VERSION
11
- ruby 2.7.2p137
11
+ ruby 3.0.0p0
12
12
 
13
13
  BUNDLED WITH
14
- 2.1.4
14
+ 2.2.3
data/docs/How-To-Use.md CHANGED
@@ -269,4 +269,6 @@ Any step can capture the user's email address so that you can get back to them a
269
269
 
270
270
  The feedback captured by the wizard is stored in the database at `[YOUR_SITE_URL]/admin/feedbacks`. The questions the user was asked and the responses they entered are also stored, so that the users' answers can be seen in the context of the questions you asked. So, if you change the wizard's configuration, the users' responses still make sense.
271
271
 
272
+ ### Integration with Orbit
272
273
 
274
+ Feedback can be sent to your organization's [Orbit](https://www.orbit.love) workspace by configuring two environment variables: `ORBIT_API_KEY` and `ORBIT_WORKSPACE_ID`. The feedback sentiment (e.g. negative, positive), documentation resource URI and visitor email address is sent to the Orbit workspace for any feedback left by a visitor that provides an email address.
@@ -1 +1 @@
1
- 12.7.0
1
+ 14.15.4
@@ -1 +1 @@
1
- 2.7.2
1
+ 3.0.0
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
- ruby '2.7.2'
2
+ ruby '3.0.0'
3
3
 
4
4
  git_source(:github) do |repo_name|
5
5
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
@@ -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.1'
10
+ gem 'rails', '~> 6.1.3'
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.1'
16
+ gem 'puma', '~> 5.2'
17
17
 
18
18
  # Use CoffeeScript for .coffee assets and views
19
19
  gem 'coffee-rails', '~> 5.0'
@@ -21,7 +21,7 @@ gem 'coffee-rails', '~> 5.0'
21
21
  # gem 'therubyracer', platforms: :ruby
22
22
 
23
23
  # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24
- gem 'jbuilder', '~> 2.10.1'
24
+ gem 'jbuilder', '~> 2.11.2'
25
25
  # Use Redis adapter to run Action Cable in production
26
26
  # gem 'redis', '~> 3.0'
27
27
  # Use ActiveModel has_secure_password
@@ -63,7 +63,7 @@ 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.15.1', require: false
66
+ gem 'faker', '2.16.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
69
  gem 'factory_bot_rails', '6.1.0', require: false
@@ -84,7 +84,7 @@ gem 'octokit', require: false
84
84
  gem 'woothee'
85
85
 
86
86
  # The simplest way to group temporal data
87
- gem 'groupdate', '5.2.1'
87
+ gem 'groupdate', '5.2.2'
88
88
 
89
89
  # A configurable and documented Rails view helper for adding gravatars into your Rails application.
90
90
  gem 'gravatar_image_tag', '1.2.0'
@@ -96,7 +96,7 @@ gem 'bootsnap', require: false
96
96
  gem 'diffy', require: false
97
97
 
98
98
  # Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.
99
- gem 'rubocop', '~> 1.8.1', require: false
99
+ gem 'rubocop', '~> 1.10.0', require: false
100
100
  gem 'rubocop-rails', '~> 2.9', require: false
101
101
 
102
102
  # Titleize modifies the existing Titleize Rails functionality to better suit our needs
@@ -114,7 +114,7 @@ gem 'country_select', '~> 4.0'
114
114
 
115
115
  gem 'nexmo-oas-renderer', '~> 2.6', require: false
116
116
 
117
- gem 'nexmo_markdown_renderer', '~> 0.8'
117
+ gem 'nexmo_markdown_renderer', '~> 0.9'
118
118
 
119
119
  gem 'smartling'
120
120
 
@@ -156,7 +156,6 @@ end
156
156
 
157
157
  group :development do
158
158
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
159
- gem 'listen', '~> 3.4'
160
159
  gem 'web-console', '>= 3.3.0'
161
160
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
162
161
  gem 'guard-livereload', '~> 2.5', require: false
@@ -15,40 +15,40 @@ GIT
15
15
  GEM
16
16
  remote: https://rubygems.org/
17
17
  specs:
18
- actioncable (6.1.1)
19
- actionpack (= 6.1.1)
20
- activesupport (= 6.1.1)
18
+ actioncable (6.1.3)
19
+ actionpack (= 6.1.3)
20
+ activesupport (= 6.1.3)
21
21
  nio4r (~> 2.0)
22
22
  websocket-driver (>= 0.6.1)
23
- actionmailbox (6.1.1)
24
- actionpack (= 6.1.1)
25
- activejob (= 6.1.1)
26
- activerecord (= 6.1.1)
27
- activestorage (= 6.1.1)
28
- activesupport (= 6.1.1)
23
+ actionmailbox (6.1.3)
24
+ actionpack (= 6.1.3)
25
+ activejob (= 6.1.3)
26
+ activerecord (= 6.1.3)
27
+ activestorage (= 6.1.3)
28
+ activesupport (= 6.1.3)
29
29
  mail (>= 2.7.1)
30
- actionmailer (6.1.1)
31
- actionpack (= 6.1.1)
32
- actionview (= 6.1.1)
33
- activejob (= 6.1.1)
34
- activesupport (= 6.1.1)
30
+ actionmailer (6.1.3)
31
+ actionpack (= 6.1.3)
32
+ actionview (= 6.1.3)
33
+ activejob (= 6.1.3)
34
+ activesupport (= 6.1.3)
35
35
  mail (~> 2.5, >= 2.5.4)
36
36
  rails-dom-testing (~> 2.0)
37
- actionpack (6.1.1)
38
- actionview (= 6.1.1)
39
- activesupport (= 6.1.1)
37
+ actionpack (6.1.3)
38
+ actionview (= 6.1.3)
39
+ activesupport (= 6.1.3)
40
40
  rack (~> 2.0, >= 2.0.9)
41
41
  rack-test (>= 0.6.3)
42
42
  rails-dom-testing (~> 2.0)
43
43
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
44
- actiontext (6.1.1)
45
- actionpack (= 6.1.1)
46
- activerecord (= 6.1.1)
47
- activestorage (= 6.1.1)
48
- activesupport (= 6.1.1)
44
+ actiontext (6.1.3)
45
+ actionpack (= 6.1.3)
46
+ activerecord (= 6.1.3)
47
+ activestorage (= 6.1.3)
48
+ activesupport (= 6.1.3)
49
49
  nokogiri (>= 1.8.5)
50
- actionview (6.1.1)
51
- activesupport (= 6.1.1)
50
+ actionview (6.1.3)
51
+ activesupport (= 6.1.3)
52
52
  builder (~> 3.1)
53
53
  erubi (~> 1.4)
54
54
  rails-dom-testing (~> 2.0)
@@ -62,22 +62,22 @@ GEM
62
62
  kaminari (~> 1.0, >= 1.2.1)
63
63
  railties (>= 5.2, < 6.2)
64
64
  ransack (~> 2.1, >= 2.1.1)
65
- activejob (6.1.1)
66
- activesupport (= 6.1.1)
65
+ activejob (6.1.3)
66
+ activesupport (= 6.1.3)
67
67
  globalid (>= 0.3.6)
68
- activemodel (6.1.1)
69
- activesupport (= 6.1.1)
70
- activerecord (6.1.1)
71
- activemodel (= 6.1.1)
72
- activesupport (= 6.1.1)
73
- activestorage (6.1.1)
74
- actionpack (= 6.1.1)
75
- activejob (= 6.1.1)
76
- activerecord (= 6.1.1)
77
- activesupport (= 6.1.1)
68
+ activemodel (6.1.3)
69
+ activesupport (= 6.1.3)
70
+ activerecord (6.1.3)
71
+ activemodel (= 6.1.3)
72
+ activesupport (= 6.1.3)
73
+ activestorage (6.1.3)
74
+ actionpack (= 6.1.3)
75
+ activejob (= 6.1.3)
76
+ activerecord (= 6.1.3)
77
+ activesupport (= 6.1.3)
78
78
  marcel (~> 0.3.1)
79
79
  mimemagic (~> 0.3.2)
80
- activesupport (6.1.1)
80
+ activesupport (6.1.3)
81
81
  concurrent-ruby (~> 1.0, >= 1.0.2)
82
82
  i18n (>= 1.6, < 2)
83
83
  minitest (>= 5.1)
@@ -94,7 +94,7 @@ GEM
94
94
  arbre (1.4.0)
95
95
  activesupport (>= 3.0.0, < 6.2)
96
96
  ruby2_keywords (>= 0.0.2, < 1.0)
97
- ast (2.4.1)
97
+ ast (2.4.2)
98
98
  awesome_print (1.8.0)
99
99
  banzai (0.1.3)
100
100
  barnes (0.0.8)
@@ -108,19 +108,19 @@ GEM
108
108
  bindex (0.8.1)
109
109
  binding_of_caller (1.0.0)
110
110
  debug_inspector (>= 0.0.1)
111
- bootsnap (1.5.1)
111
+ bootsnap (1.7.2)
112
112
  msgpack (~> 1.0)
113
113
  bugsnag (6.19.0)
114
114
  concurrent-ruby (~> 1.0)
115
115
  builder (3.2.4)
116
116
  byebug (11.1.3)
117
- capybara (3.34.0)
117
+ capybara (3.35.3)
118
118
  addressable
119
119
  mini_mime (>= 0.1.3)
120
120
  nokogiri (~> 1.8)
121
121
  rack (>= 1.6.0)
122
122
  rack-test (>= 0.6.3)
123
- regexp_parser (~> 1.5)
123
+ regexp_parser (>= 1.5, < 3.0)
124
124
  xpath (~> 3.2)
125
125
  chartkick (3.4.2)
126
126
  coderay (1.1.3)
@@ -132,7 +132,7 @@ GEM
132
132
  execjs
133
133
  coffee-script-source (1.12.2)
134
134
  colorize (0.8.1)
135
- concurrent-ruby (1.1.7)
135
+ concurrent-ruby (1.1.8)
136
136
  countries (3.0.1)
137
137
  i18n_data (~> 0.10.0)
138
138
  sixarm_ruby_unaccent (~> 1.1)
@@ -153,7 +153,7 @@ GEM
153
153
  warden (~> 1.2.3)
154
154
  diff-lcs (1.4.4)
155
155
  diffy (3.4.0)
156
- docile (1.3.4)
156
+ docile (1.3.5)
157
157
  domain_name (0.5.20190701)
158
158
  unf (>= 0.0.5, < 1.0.0)
159
159
  dotenv (2.7.6)
@@ -171,26 +171,26 @@ GEM
171
171
  factory_bot_rails (6.1.0)
172
172
  factory_bot (~> 6.1.0)
173
173
  railties (>= 5.0.0)
174
- faker (2.15.1)
174
+ faker (2.16.0)
175
175
  i18n (>= 1.6, < 2)
176
176
  faraday (1.3.0)
177
177
  faraday-net_http (~> 1.0)
178
178
  multipart-post (>= 1.2, < 3)
179
179
  ruby2_keywords
180
- faraday-net_http (1.0.0)
180
+ faraday-net_http (1.0.1)
181
181
  ffi (1.14.2)
182
182
  formatador (0.2.5)
183
- formtastic (3.1.5)
184
- actionpack (>= 3.2.13)
183
+ formtastic (4.0.0)
184
+ actionpack (>= 5.2.0)
185
185
  formtastic_i18n (0.6.0)
186
- geocoder (1.6.4)
186
+ geocoder (1.6.5)
187
187
  globalid (0.4.2)
188
188
  activesupport (>= 4.2.0)
189
189
  gmaps4rails (2.1.2)
190
190
  gravatar_image_tag (1.2.0)
191
191
  greenhouse_io (2.5.0)
192
192
  httmultiparty (~> 0.3.16)
193
- groupdate (5.2.1)
193
+ groupdate (5.2.2)
194
194
  activesupport (>= 5)
195
195
  guard (2.16.2)
196
196
  formatador (>= 0.2.4)
@@ -212,9 +212,9 @@ GEM
212
212
  guard-compat (~> 1.1)
213
213
  rspec (>= 2.99.0, < 4.0)
214
214
  hansi (0.2.0)
215
- has_scope (0.7.2)
216
- actionpack (>= 4.1)
217
- activesupport (>= 4.1)
215
+ has_scope (0.8.0)
216
+ actionpack (>= 5.2)
217
+ activesupport (>= 5.2)
218
218
  hash-deep-merge (0.1.1)
219
219
  hashdiff (1.0.1)
220
220
  htmlentities (4.3.4)
@@ -230,7 +230,7 @@ GEM
230
230
  mime-types (~> 3.0)
231
231
  multi_xml (>= 0.5.2)
232
232
  httpclient (2.8.3)
233
- i18n (1.8.7)
233
+ i18n (1.8.9)
234
234
  concurrent-ruby (~> 1.0)
235
235
  i18n_data (0.10.0)
236
236
  icalendar (2.7.0)
@@ -241,7 +241,7 @@ GEM
241
241
  has_scope (~> 0.6)
242
242
  railties (>= 5.2, < 6.2)
243
243
  responders (>= 2, < 4)
244
- jbuilder (2.10.1)
244
+ jbuilder (2.11.2)
245
245
  activesupport (>= 5.0.0)
246
246
  jquery-rails (4.4.0)
247
247
  rails-dom-testing (>= 1, < 3)
@@ -279,12 +279,12 @@ GEM
279
279
  method_source (1.0.0)
280
280
  mime-types (3.3.1)
281
281
  mime-types-data (~> 3.2015)
282
- mime-types-data (3.2020.1104)
282
+ mime-types-data (3.2021.0212)
283
283
  mimemagic (0.3.5)
284
284
  mini_mime (1.0.2)
285
285
  mini_portile2 (2.5.0)
286
286
  minitest (5.14.3)
287
- msgpack (1.3.3)
287
+ msgpack (1.4.2)
288
288
  multi_json (1.15.0)
289
289
  multi_xml (0.6.0)
290
290
  multipart-post (2.1.1)
@@ -309,7 +309,7 @@ GEM
309
309
  sass (~> 3.1)
310
310
  shotgun (~> 0.9)
311
311
  sinatra (~> 2.0)
312
- nexmo_markdown_renderer (0.8.0)
312
+ nexmo_markdown_renderer (0.9.0)
313
313
  actionview (~> 6.0)
314
314
  activemodel (~> 6.0)
315
315
  banzai (~> 0.1.2)
@@ -317,7 +317,7 @@ GEM
317
317
  nokogiri (~> 1.10)
318
318
  redcarpet (~> 3.4)
319
319
  rouge (~> 2.0.7)
320
- nio4r (2.5.4)
320
+ nio4r (2.5.5)
321
321
  nokogiri (1.11.1)
322
322
  mini_portile2 (~> 2.5.0)
323
323
  racc (~> 1.4)
@@ -335,17 +335,17 @@ GEM
335
335
  octokit (4.20.0)
336
336
  faraday (>= 0.9)
337
337
  sawyer (~> 0.8.0, >= 0.5.3)
338
- oj (3.10.18)
338
+ oj (3.11.2)
339
339
  orm_adapter (0.5.0)
340
340
  parallel (1.20.1)
341
341
  parser (3.0.0.0)
342
342
  ast (~> 2.4.1)
343
343
  pg (1.2.3)
344
- pry (0.13.1)
344
+ pry (0.14.0)
345
345
  coderay (~> 1.1)
346
346
  method_source (~> 1.0)
347
347
  public_suffix (4.0.6)
348
- puma (5.1.1)
348
+ puma (5.2.1)
349
349
  nio4r (~> 2.0)
350
350
  racc (1.5.2)
351
351
  rack (2.2.3)
@@ -355,46 +355,46 @@ GEM
355
355
  rack
356
356
  rack-test (1.1.0)
357
357
  rack (>= 1.0, < 3)
358
- rails (6.1.1)
359
- actioncable (= 6.1.1)
360
- actionmailbox (= 6.1.1)
361
- actionmailer (= 6.1.1)
362
- actionpack (= 6.1.1)
363
- actiontext (= 6.1.1)
364
- actionview (= 6.1.1)
365
- activejob (= 6.1.1)
366
- activemodel (= 6.1.1)
367
- activerecord (= 6.1.1)
368
- activestorage (= 6.1.1)
369
- activesupport (= 6.1.1)
358
+ rails (6.1.3)
359
+ actioncable (= 6.1.3)
360
+ actionmailbox (= 6.1.3)
361
+ actionmailer (= 6.1.3)
362
+ actionpack (= 6.1.3)
363
+ actiontext (= 6.1.3)
364
+ actionview (= 6.1.3)
365
+ activejob (= 6.1.3)
366
+ activemodel (= 6.1.3)
367
+ activerecord (= 6.1.3)
368
+ activestorage (= 6.1.3)
369
+ activesupport (= 6.1.3)
370
370
  bundler (>= 1.15.0)
371
- railties (= 6.1.1)
371
+ railties (= 6.1.3)
372
372
  sprockets-rails (>= 2.0.0)
373
373
  rails-dom-testing (2.0.3)
374
374
  activesupport (>= 4.2.0)
375
375
  nokogiri (>= 1.6)
376
376
  rails-html-sanitizer (1.3.0)
377
377
  loofah (~> 2.3)
378
- railties (6.1.1)
379
- actionpack (= 6.1.1)
380
- activesupport (= 6.1.1)
378
+ railties (6.1.3)
379
+ actionpack (= 6.1.3)
380
+ activesupport (= 6.1.3)
381
381
  method_source
382
382
  rake (>= 0.8.7)
383
383
  thor (~> 1.0)
384
384
  rainbow (3.0.0)
385
385
  rake (13.0.3)
386
- ransack (2.4.1)
386
+ ransack (2.4.2)
387
387
  activerecord (>= 5.2.4)
388
388
  activesupport (>= 5.2.4)
389
389
  i18n
390
390
  rb-fsevent (0.10.4)
391
391
  rb-inotify (0.10.1)
392
392
  ffi (~> 1.0)
393
- recaptcha (5.6.0)
393
+ recaptcha (5.7.0)
394
394
  json
395
395
  redcarpet (3.5.1)
396
396
  redis (4.2.5)
397
- regexp_parser (1.8.2)
397
+ regexp_parser (2.0.3)
398
398
  request_store (1.5.0)
399
399
  rack (>= 1.4)
400
400
  responders (3.0.1)
@@ -418,7 +418,7 @@ GEM
418
418
  rspec-expectations (3.10.1)
419
419
  diff-lcs (>= 1.2.0, < 2.0)
420
420
  rspec-support (~> 3.10.0)
421
- rspec-mocks (3.10.1)
421
+ rspec-mocks (3.10.2)
422
422
  diff-lcs (>= 1.2.0, < 2.0)
423
423
  rspec-support (~> 3.10.0)
424
424
  rspec-rails (4.0.2)
@@ -431,8 +431,8 @@ GEM
431
431
  rspec-support (~> 3.10)
432
432
  rspec-snapshot (0.1.2)
433
433
  rspec (> 3.0.0)
434
- rspec-support (3.10.1)
435
- rubocop (1.8.1)
434
+ rspec-support (3.10.2)
435
+ rubocop (1.10.0)
436
436
  parallel (~> 1.10)
437
437
  parser (>= 3.0.0.0)
438
438
  rainbow (>= 2.2.2, < 4.0)
@@ -441,14 +441,14 @@ GEM
441
441
  rubocop-ast (>= 1.2.0, < 2.0)
442
442
  ruby-progressbar (~> 1.7)
443
443
  unicode-display_width (>= 1.4.0, < 3.0)
444
- rubocop-ast (1.4.0)
444
+ rubocop-ast (1.4.1)
445
445
  parser (>= 2.7.1.5)
446
446
  rubocop-rails (2.9.1)
447
447
  activesupport (>= 4.2.0)
448
448
  rack (>= 1.1)
449
449
  rubocop (>= 0.90.0, < 2.0)
450
450
  ruby-progressbar (1.11.0)
451
- ruby2_keywords (0.0.2)
451
+ ruby2_keywords (0.0.4)
452
452
  sass (3.7.4)
453
453
  sass-listen (~> 4.0.0)
454
454
  sass-listen (4.0.0)
@@ -501,9 +501,9 @@ GEM
501
501
  activesupport (>= 4.0)
502
502
  sprockets (>= 3.0.0)
503
503
  statsd-ruby (1.5.0)
504
- terminal-table (2.0.0)
504
+ terminal-table (3.0.0)
505
505
  unicode-display_width (~> 1.1, >= 1.1.1)
506
- thor (1.0.1)
506
+ thor (1.1.0)
507
507
  tilt (2.0.10)
508
508
  titleize (1.4.1)
509
509
  truncato (0.7.11)
@@ -523,7 +523,7 @@ GEM
523
523
  activemodel (>= 6.0.0)
524
524
  bindex (>= 0.4.0)
525
525
  railties (>= 6.0.0)
526
- webmock (3.11.1)
526
+ webmock (3.11.3)
527
527
  addressable (>= 2.3.6)
528
528
  crack (>= 0.3.2)
529
529
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -541,7 +541,11 @@ GEM
541
541
  zeitwerk (2.4.2)
542
542
 
543
543
  PLATFORMS
544
+ java
544
545
  ruby
546
+ x64-mingw32
547
+ x86-mingw32
548
+ x86-mswin32
545
549
 
546
550
  DEPENDENCIES
547
551
  actionpack-page_caching!
@@ -565,30 +569,29 @@ DEPENDENCIES
565
569
  diffy
566
570
  dotenv-rails
567
571
  factory_bot_rails (= 6.1.0)
568
- faker (= 2.15.1)
572
+ faker (= 2.16.0)
569
573
  ffi (>= 1.9.24)
570
574
  geocoder
571
575
  gmaps4rails (= 2.1.2)
572
576
  gravatar_image_tag (= 1.2.0)
573
577
  greenhouse_io
574
- groupdate (= 5.2.1)
578
+ groupdate (= 5.2.2)
575
579
  guard-livereload (~> 2.5)
576
580
  guard-rspec
577
581
  icalendar
578
- jbuilder (~> 2.10.1)
579
- listen (~> 3.4)
582
+ jbuilder (~> 2.11.2)
580
583
  lograge
581
584
  neatjson
582
585
  newrelic_rpm
583
586
  nexmo-oas-renderer (~> 2.6)
584
- nexmo_markdown_renderer (~> 0.8)
587
+ nexmo_markdown_renderer (~> 0.9)
585
588
  nokogiri (~> 1.11.1)
586
589
  octokit
587
590
  pg (~> 1.2)
588
591
  pry
589
- puma (~> 5.1)
592
+ puma (~> 5.2)
590
593
  rack (>= 2.0.6)
591
- rails (~> 6.1.1)
594
+ rails (~> 6.1.3)
592
595
  rawler!
593
596
  recaptcha
594
597
  redis
@@ -596,7 +599,7 @@ DEPENDENCIES
596
599
  rspec-collection_matchers
597
600
  rspec-rails (~> 4.0)
598
601
  rspec-snapshot (~> 0.1.2)
599
- rubocop (~> 1.8.1)
602
+ rubocop (~> 1.10.0)
600
603
  rubocop-rails (~> 2.9)
601
604
  ruby-progressbar
602
605
  sassc-rails (~> 2.1)
@@ -614,7 +617,7 @@ DEPENDENCIES
614
617
  woothee
615
618
 
616
619
  RUBY VERSION
617
- ruby 2.7.2p137
620
+ ruby 3.0.0p0
618
621
 
619
622
  BUNDLED WITH
620
- 2.1.4
623
+ 2.2.3