station 0.0.110 → 0.0.115

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) 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 +14 -10
  9. data/lib/nexmo_developer/Gemfile.lock +165 -101
  10. data/lib/nexmo_developer/Runbook.md +4 -4
  11. data/lib/nexmo_developer/app/controllers/dashboard_controller.rb +0 -5
  12. data/lib/nexmo_developer/app/controllers/jobs_controller.rb +7 -7
  13. data/lib/nexmo_developer/app/controllers/static_controller.rb +2 -13
  14. data/lib/nexmo_developer/app/models/feedback/feedback.rb +2 -0
  15. data/lib/nexmo_developer/app/presenters/head.rb +5 -1
  16. data/lib/nexmo_developer/app/presenters/improve_page_presenter.rb +10 -7
  17. data/lib/nexmo_developer/app/services/orbit_feedback_notifier.rb +50 -0
  18. data/lib/nexmo_developer/app/services/translator/files_list_coordinator.rb +1 -1
  19. data/lib/nexmo_developer/app/views/contribute/guides/landing-pages.md +0 -10
  20. data/lib/nexmo_developer/app/views/contribute/guides/markdown-guide.md +36 -40
  21. data/lib/nexmo_developer/app/views/contribute/guides/platform.md +0 -1
  22. data/lib/nexmo_developer/app/views/dashboard/stats.html.erb +2 -2
  23. data/lib/nexmo_developer/app/views/layouts/partials/_head.html.erb +1 -5
  24. data/lib/nexmo_developer/app/webpacker/javascript/volta/volta.js +5 -1
  25. data/lib/nexmo_developer/app/webpacker/packs/application.js +0 -3
  26. data/lib/nexmo_developer/config/routes.rb +0 -2
  27. data/lib/nexmo_developer/lib/tasks/cache.rake +1 -1
  28. data/lib/nexmo_developer/lib/tasks/careers.rake +1 -1
  29. data/lib/nexmo_developer/lib/tasks/ci.rake +7 -7
  30. data/lib/nexmo_developer/lib/tasks/diff.rake +5 -5
  31. data/lib/nexmo_developer/lib/tasks/documentation.rake +1 -1
  32. data/lib/nexmo_developer/lib/tasks/generate_search_terms.rake +2 -2
  33. data/lib/nexmo_developer/lib/tasks/links.rake +6 -6
  34. data/lib/nexmo_developer/lib/tasks/smartling.rake +1 -1
  35. data/lib/nexmo_developer/nexmo_developer.rb +2 -0
  36. data/lib/nexmo_developer/version.rb +1 -1
  37. data/package.json +22 -24
  38. data/station.gemspec +9 -6
  39. data/yarn.lock +994 -2815
  40. metadata +93 -56
  41. data/lib/nexmo_developer/.dockerignore +0 -1
  42. data/lib/nexmo_developer/Dockerfile +0 -28
  43. data/lib/nexmo_developer/app/screenshots/webhook-url-for-delivery-receipt.js +0 -44
  44. data/lib/nexmo_developer/app/screenshots/webhook-url-for-inbound-message.js +0 -44
  45. data/lib/nexmo_developer/app/views/static/default_landing/partials/_submit_your_idea_form.html.erb +0 -58
  46. data/lib/nexmo_developer/app/webpacker/javascript/spotlight/index.js +0 -12
  47. data/lib/nexmo_developer/docker-compose.yml +0 -43
  48. 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: 4cd0e55f1ad89f0a2b8fed2cf95d5b0232bde17b65c73e249a57dca2e298edc8
4
- data.tar.gz: 22de935fe1816a0bb56450627c0a559ab73b6cc098720678a7ad66c27c403094
3
+ metadata.gz: 47447b9405dbbde8ea9c983dae355c58ab5a33133cec9020bd6b5b553e1dd656
4
+ data.tar.gz: 8df3841db4d8cffedce7baad083f10fbe91ff2ed6bd674427331fe58066cfe79
5
5
  SHA512:
6
- metadata.gz: c707764ed74165c6b9655af2411edc5844f4e648947784ee2eba608acad092c3bc51304607bfb851fa8d528d623b8c878f1d62c10c1e85e002a2fa18fc6b0592
7
- data.tar.gz: ba09241ef252309fbd22874d0309389e66579bf02f5216076b9ec47b34357c9bce4830770dda9dc9986b42d308159192fe92ce9c5318e3435781cc20f653c0ce
6
+ metadata.gz: b6310542ca14c5ec1075d6ce54b2ca5a9b328a4cbf9553e0c8f7bcb20bd37406392dc7a92d369b3f8e4d2d2132d53c42fbd1f952eba46dba90b8b554ac2a3549
7
+ data.tar.gz: 3dea3d7048f2da5f04aba94d6547b053c095de5f0839c21bde1045c00808dc2ba61c917aacc54f76d7d549051b30c80d38ea3ebd305aa6fc9f69017abf69a0a6
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,10 +84,10 @@ 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
- gem 'gravatar_image_tag', '1.2.0'
90
+ gem 'gravatar_image_tag', github: 'Envek/gravatar_image_tag', branch: 'fix/deprecation-warnings'
91
91
 
92
92
  # Boot large ruby/rails apps faster
93
93
  gem 'bootsnap', require: false
@@ -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
 
@@ -136,6 +136,11 @@ gem 'actionpack-page_caching', github: 'rails/actionpack-page_caching'
136
136
 
137
137
  gem 'sassc-rails', '~> 2.1'
138
138
 
139
+ gem 'gmaps4rails', '2.1.2'
140
+
141
+ # Create beautiful JavaScript charts with one line of Ruby
142
+ gem 'chartkick', '3.4.2'
143
+
139
144
  group :development, :test do
140
145
  gem 'awesome_print'
141
146
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
@@ -151,7 +156,6 @@ end
151
156
 
152
157
  group :development do
153
158
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
154
- gem 'listen', '~> 3.4'
155
159
  gem 'web-console', '>= 3.3.0'
156
160
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
157
161
  gem 'guard-livereload', '~> 2.5', require: false
@@ -1,3 +1,10 @@
1
+ GIT
2
+ remote: https://github.com/Envek/gravatar_image_tag.git
3
+ revision: 5af4d8e302587aa9ac2fe4105c92e428a11d8ec7
4
+ branch: fix/deprecation-warnings
5
+ specs:
6
+ gravatar_image_tag (1.2.0)
7
+
1
8
  GIT
2
9
  remote: https://github.com/oscardelben/rawler.git
3
10
  revision: f2909b135fce7d35167f98026ac481926c94423e
@@ -15,40 +22,40 @@ GIT
15
22
  GEM
16
23
  remote: https://rubygems.org/
17
24
  specs:
18
- actioncable (6.1.1)
19
- actionpack (= 6.1.1)
20
- activesupport (= 6.1.1)
25
+ actioncable (6.1.3)
26
+ actionpack (= 6.1.3)
27
+ activesupport (= 6.1.3)
21
28
  nio4r (~> 2.0)
22
29
  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)
30
+ actionmailbox (6.1.3)
31
+ actionpack (= 6.1.3)
32
+ activejob (= 6.1.3)
33
+ activerecord (= 6.1.3)
34
+ activestorage (= 6.1.3)
35
+ activesupport (= 6.1.3)
29
36
  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)
37
+ actionmailer (6.1.3)
38
+ actionpack (= 6.1.3)
39
+ actionview (= 6.1.3)
40
+ activejob (= 6.1.3)
41
+ activesupport (= 6.1.3)
35
42
  mail (~> 2.5, >= 2.5.4)
36
43
  rails-dom-testing (~> 2.0)
37
- actionpack (6.1.1)
38
- actionview (= 6.1.1)
39
- activesupport (= 6.1.1)
44
+ actionpack (6.1.3)
45
+ actionview (= 6.1.3)
46
+ activesupport (= 6.1.3)
40
47
  rack (~> 2.0, >= 2.0.9)
41
48
  rack-test (>= 0.6.3)
42
49
  rails-dom-testing (~> 2.0)
43
50
  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)
51
+ actiontext (6.1.3)
52
+ actionpack (= 6.1.3)
53
+ activerecord (= 6.1.3)
54
+ activestorage (= 6.1.3)
55
+ activesupport (= 6.1.3)
49
56
  nokogiri (>= 1.8.5)
50
- actionview (6.1.1)
51
- activesupport (= 6.1.1)
57
+ actionview (6.1.3)
58
+ activesupport (= 6.1.3)
52
59
  builder (~> 3.1)
53
60
  erubi (~> 1.4)
54
61
  rails-dom-testing (~> 2.0)
@@ -62,22 +69,22 @@ GEM
62
69
  kaminari (~> 1.0, >= 1.2.1)
63
70
  railties (>= 5.2, < 6.2)
64
71
  ransack (~> 2.1, >= 2.1.1)
65
- activejob (6.1.1)
66
- activesupport (= 6.1.1)
72
+ activejob (6.1.3)
73
+ activesupport (= 6.1.3)
67
74
  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)
75
+ activemodel (6.1.3)
76
+ activesupport (= 6.1.3)
77
+ activerecord (6.1.3)
78
+ activemodel (= 6.1.3)
79
+ activesupport (= 6.1.3)
80
+ activestorage (6.1.3)
81
+ actionpack (= 6.1.3)
82
+ activejob (= 6.1.3)
83
+ activerecord (= 6.1.3)
84
+ activesupport (= 6.1.3)
78
85
  marcel (~> 0.3.1)
79
86
  mimemagic (~> 0.3.2)
80
- activesupport (6.1.1)
87
+ activesupport (6.1.3)
81
88
  concurrent-ruby (~> 1.0, >= 1.0.2)
82
89
  i18n (>= 1.6, < 2)
83
90
  minitest (>= 5.1)
@@ -94,13 +101,14 @@ GEM
94
101
  arbre (1.4.0)
95
102
  activesupport (>= 3.0.0, < 6.2)
96
103
  ruby2_keywords (>= 0.0.2, < 1.0)
97
- ast (2.4.1)
104
+ ast (2.4.2)
98
105
  awesome_print (1.8.0)
99
106
  banzai (0.1.3)
100
107
  barnes (0.0.8)
101
108
  multi_json (~> 1)
102
109
  statsd-ruby (~> 1.1)
103
110
  bcrypt (3.1.16)
111
+ bcrypt (3.1.16-java)
104
112
  better_errors (2.9.1)
105
113
  coderay (>= 1.0.0)
106
114
  erubi (>= 1.0.0)
@@ -108,20 +116,21 @@ GEM
108
116
  bindex (0.8.1)
109
117
  binding_of_caller (1.0.0)
110
118
  debug_inspector (>= 0.0.1)
111
- bootsnap (1.5.1)
119
+ bootsnap (1.7.2)
112
120
  msgpack (~> 1.0)
113
121
  bugsnag (6.19.0)
114
122
  concurrent-ruby (~> 1.0)
115
123
  builder (3.2.4)
116
124
  byebug (11.1.3)
117
- capybara (3.34.0)
125
+ capybara (3.35.3)
118
126
  addressable
119
127
  mini_mime (>= 0.1.3)
120
128
  nokogiri (~> 1.8)
121
129
  rack (>= 1.6.0)
122
130
  rack-test (>= 0.6.3)
123
- regexp_parser (~> 1.5)
131
+ regexp_parser (>= 1.5, < 3.0)
124
132
  xpath (~> 3.2)
133
+ chartkick (3.4.2)
125
134
  coderay (1.1.3)
126
135
  coffee-rails (5.0.0)
127
136
  coffee-script (>= 2.2.0)
@@ -131,7 +140,7 @@ GEM
131
140
  execjs
132
141
  coffee-script-source (1.12.2)
133
142
  colorize (0.8.1)
134
- concurrent-ruby (1.1.7)
143
+ concurrent-ruby (1.1.8)
135
144
  countries (3.0.1)
136
145
  i18n_data (~> 0.10.0)
137
146
  sixarm_ruby_unaccent (~> 1.1)
@@ -152,7 +161,7 @@ GEM
152
161
  warden (~> 1.2.3)
153
162
  diff-lcs (1.4.4)
154
163
  diffy (3.4.0)
155
- docile (1.3.4)
164
+ docile (1.3.5)
156
165
  domain_name (0.5.20190701)
157
166
  unf (>= 0.0.5, < 1.0.0)
158
167
  dotenv (2.7.6)
@@ -164,31 +173,37 @@ GEM
164
173
  http_parser.rb (~> 0.6.0)
165
174
  erubi (1.10.0)
166
175
  eventmachine (1.2.7)
176
+ eventmachine (1.2.7-java)
177
+ eventmachine (1.2.7-x64-mingw32)
178
+ eventmachine (1.2.7-x86-mingw32)
167
179
  execjs (2.7.0)
168
180
  factory_bot (6.1.0)
169
181
  activesupport (>= 5.0.0)
170
182
  factory_bot_rails (6.1.0)
171
183
  factory_bot (~> 6.1.0)
172
184
  railties (>= 5.0.0)
173
- faker (2.15.1)
185
+ faker (2.16.0)
174
186
  i18n (>= 1.6, < 2)
175
187
  faraday (1.3.0)
176
188
  faraday-net_http (~> 1.0)
177
189
  multipart-post (>= 1.2, < 3)
178
190
  ruby2_keywords
179
- faraday-net_http (1.0.0)
191
+ faraday-net_http (1.0.1)
180
192
  ffi (1.14.2)
193
+ ffi (1.14.2-java)
194
+ ffi (1.14.2-x64-mingw32)
195
+ ffi (1.14.2-x86-mingw32)
181
196
  formatador (0.2.5)
182
- formtastic (3.1.5)
183
- actionpack (>= 3.2.13)
197
+ formtastic (4.0.0)
198
+ actionpack (>= 5.2.0)
184
199
  formtastic_i18n (0.6.0)
185
- geocoder (1.6.4)
200
+ geocoder (1.6.5)
186
201
  globalid (0.4.2)
187
202
  activesupport (>= 4.2.0)
188
- gravatar_image_tag (1.2.0)
203
+ gmaps4rails (2.1.2)
189
204
  greenhouse_io (2.5.0)
190
205
  httmultiparty (~> 0.3.16)
191
- groupdate (5.2.1)
206
+ groupdate (5.2.2)
192
207
  activesupport (>= 5)
193
208
  guard (2.16.2)
194
209
  formatador (>= 0.2.4)
@@ -210,9 +225,9 @@ GEM
210
225
  guard-compat (~> 1.1)
211
226
  rspec (>= 2.99.0, < 4.0)
212
227
  hansi (0.2.0)
213
- has_scope (0.7.2)
214
- actionpack (>= 4.1)
215
- activesupport (>= 4.1)
228
+ has_scope (0.8.0)
229
+ actionpack (>= 5.2)
230
+ activesupport (>= 5.2)
216
231
  hash-deep-merge (0.1.1)
217
232
  hashdiff (1.0.1)
218
233
  htmlentities (4.3.4)
@@ -224,11 +239,12 @@ GEM
224
239
  http-cookie (1.0.3)
225
240
  domain_name (~> 0.5)
226
241
  http_parser.rb (0.6.0)
242
+ http_parser.rb (0.6.0-java)
227
243
  httparty (0.18.1)
228
244
  mime-types (~> 3.0)
229
245
  multi_xml (>= 0.5.2)
230
246
  httpclient (2.8.3)
231
- i18n (1.8.7)
247
+ i18n (1.8.9)
232
248
  concurrent-ruby (~> 1.0)
233
249
  i18n_data (0.10.0)
234
250
  icalendar (2.7.0)
@@ -239,13 +255,14 @@ GEM
239
255
  has_scope (~> 0.6)
240
256
  railties (>= 5.2, < 6.2)
241
257
  responders (>= 2, < 4)
242
- jbuilder (2.10.1)
258
+ jbuilder (2.11.2)
243
259
  activesupport (>= 5.0.0)
244
260
  jquery-rails (4.4.0)
245
261
  rails-dom-testing (>= 1, < 3)
246
262
  railties (>= 4.2.0)
247
263
  thor (>= 0.14, < 2.0)
248
264
  json (2.5.1)
265
+ json (2.5.1-java)
249
266
  kaminari (1.2.1)
250
267
  activesupport (>= 4.1.0)
251
268
  kaminari-actionview (= 1.2.1)
@@ -277,12 +294,13 @@ GEM
277
294
  method_source (1.0.0)
278
295
  mime-types (3.3.1)
279
296
  mime-types-data (~> 3.2015)
280
- mime-types-data (3.2020.1104)
297
+ mime-types-data (3.2021.0212)
281
298
  mimemagic (0.3.5)
282
299
  mini_mime (1.0.2)
283
300
  mini_portile2 (2.5.0)
284
301
  minitest (5.14.3)
285
- msgpack (1.3.3)
302
+ msgpack (1.4.2)
303
+ msgpack (1.4.2-java)
286
304
  multi_json (1.15.0)
287
305
  multi_xml (0.6.0)
288
306
  multipart-post (2.1.1)
@@ -294,7 +312,7 @@ GEM
294
312
  neatjson (0.9)
295
313
  nenv (0.3.0)
296
314
  netrc (0.11.0)
297
- newrelic_rpm (6.14.0)
315
+ newrelic_rpm (6.15.0)
298
316
  nexmo-oas-renderer (2.6.0)
299
317
  activemodel (~> 6.0)
300
318
  activesupport (~> 6.0)
@@ -307,7 +325,7 @@ GEM
307
325
  sass (~> 3.1)
308
326
  shotgun (~> 0.9)
309
327
  sinatra (~> 2.0)
310
- nexmo_markdown_renderer (0.8.0)
328
+ nexmo_markdown_renderer (0.9.0)
311
329
  actionview (~> 6.0)
312
330
  activemodel (~> 6.0)
313
331
  banzai (~> 0.1.2)
@@ -315,10 +333,17 @@ GEM
315
333
  nokogiri (~> 1.10)
316
334
  redcarpet (~> 3.4)
317
335
  rouge (~> 2.0.7)
318
- nio4r (2.5.4)
336
+ nio4r (2.5.5)
337
+ nio4r (2.5.5-java)
319
338
  nokogiri (1.11.1)
320
339
  mini_portile2 (~> 2.5.0)
321
340
  racc (~> 1.4)
341
+ nokogiri (1.11.1-java)
342
+ racc (~> 1.4)
343
+ nokogiri (1.11.1-x64-mingw32)
344
+ racc (~> 1.4)
345
+ nokogiri (1.11.1-x86-mingw32)
346
+ racc (~> 1.4)
322
347
  notiffany (0.1.3)
323
348
  nenv (~> 0.1)
324
349
  shellany (~> 0.0)
@@ -333,19 +358,26 @@ GEM
333
358
  octokit (4.20.0)
334
359
  faraday (>= 0.9)
335
360
  sawyer (~> 0.8.0, >= 0.5.3)
336
- oj (3.10.18)
361
+ oj (3.11.2)
337
362
  orm_adapter (0.5.0)
338
363
  parallel (1.20.1)
339
364
  parser (3.0.0.0)
340
365
  ast (~> 2.4.1)
341
366
  pg (1.2.3)
342
- pry (0.13.1)
367
+ pry (0.14.0)
368
+ coderay (~> 1.1)
369
+ method_source (~> 1.0)
370
+ pry (0.14.0-java)
343
371
  coderay (~> 1.1)
344
372
  method_source (~> 1.0)
373
+ spoon (~> 0.0)
345
374
  public_suffix (4.0.6)
346
- puma (5.1.1)
375
+ puma (5.2.1)
376
+ nio4r (~> 2.0)
377
+ puma (5.2.1-java)
347
378
  nio4r (~> 2.0)
348
379
  racc (1.5.2)
380
+ racc (1.5.2-java)
349
381
  rack (2.2.3)
350
382
  rack-protection (2.1.0)
351
383
  rack
@@ -353,46 +385,46 @@ GEM
353
385
  rack
354
386
  rack-test (1.1.0)
355
387
  rack (>= 1.0, < 3)
356
- rails (6.1.1)
357
- actioncable (= 6.1.1)
358
- actionmailbox (= 6.1.1)
359
- actionmailer (= 6.1.1)
360
- actionpack (= 6.1.1)
361
- actiontext (= 6.1.1)
362
- actionview (= 6.1.1)
363
- activejob (= 6.1.1)
364
- activemodel (= 6.1.1)
365
- activerecord (= 6.1.1)
366
- activestorage (= 6.1.1)
367
- activesupport (= 6.1.1)
388
+ rails (6.1.3)
389
+ actioncable (= 6.1.3)
390
+ actionmailbox (= 6.1.3)
391
+ actionmailer (= 6.1.3)
392
+ actionpack (= 6.1.3)
393
+ actiontext (= 6.1.3)
394
+ actionview (= 6.1.3)
395
+ activejob (= 6.1.3)
396
+ activemodel (= 6.1.3)
397
+ activerecord (= 6.1.3)
398
+ activestorage (= 6.1.3)
399
+ activesupport (= 6.1.3)
368
400
  bundler (>= 1.15.0)
369
- railties (= 6.1.1)
401
+ railties (= 6.1.3)
370
402
  sprockets-rails (>= 2.0.0)
371
403
  rails-dom-testing (2.0.3)
372
404
  activesupport (>= 4.2.0)
373
405
  nokogiri (>= 1.6)
374
406
  rails-html-sanitizer (1.3.0)
375
407
  loofah (~> 2.3)
376
- railties (6.1.1)
377
- actionpack (= 6.1.1)
378
- activesupport (= 6.1.1)
408
+ railties (6.1.3)
409
+ actionpack (= 6.1.3)
410
+ activesupport (= 6.1.3)
379
411
  method_source
380
412
  rake (>= 0.8.7)
381
413
  thor (~> 1.0)
382
414
  rainbow (3.0.0)
383
415
  rake (13.0.3)
384
- ransack (2.4.1)
416
+ ransack (2.4.2)
385
417
  activerecord (>= 5.2.4)
386
418
  activesupport (>= 5.2.4)
387
419
  i18n
388
420
  rb-fsevent (0.10.4)
389
421
  rb-inotify (0.10.1)
390
422
  ffi (~> 1.0)
391
- recaptcha (5.6.0)
423
+ recaptcha (5.7.0)
392
424
  json
393
425
  redcarpet (3.5.1)
394
426
  redis (4.2.5)
395
- regexp_parser (1.8.2)
427
+ regexp_parser (2.0.3)
396
428
  request_store (1.5.0)
397
429
  rack (>= 1.4)
398
430
  responders (3.0.1)
@@ -403,6 +435,24 @@ GEM
403
435
  http-cookie (>= 1.0.2, < 2.0)
404
436
  mime-types (>= 1.16, < 4.0)
405
437
  netrc (~> 0.8)
438
+ rest-client (2.1.0-x64-mingw32)
439
+ ffi (~> 1.9)
440
+ http-accept (>= 1.7.0, < 2.0)
441
+ http-cookie (>= 1.0.2, < 2.0)
442
+ mime-types (>= 1.16, < 4.0)
443
+ netrc (~> 0.8)
444
+ rest-client (2.1.0-x86-mingw32)
445
+ ffi (~> 1.9)
446
+ http-accept (>= 1.7.0, < 2.0)
447
+ http-cookie (>= 1.0.2, < 2.0)
448
+ mime-types (>= 1.16, < 4.0)
449
+ netrc (~> 0.8)
450
+ rest-client (2.1.0-x86-mswin32)
451
+ ffi (~> 1.9)
452
+ http-accept (>= 1.7.0, < 2.0)
453
+ http-cookie (>= 1.0.2, < 2.0)
454
+ mime-types (>= 1.16, < 4.0)
455
+ netrc (~> 0.8)
406
456
  rexml (3.2.4)
407
457
  rouge (2.0.7)
408
458
  rspec (3.10.0)
@@ -416,7 +466,7 @@ GEM
416
466
  rspec-expectations (3.10.1)
417
467
  diff-lcs (>= 1.2.0, < 2.0)
418
468
  rspec-support (~> 3.10.0)
419
- rspec-mocks (3.10.1)
469
+ rspec-mocks (3.10.2)
420
470
  diff-lcs (>= 1.2.0, < 2.0)
421
471
  rspec-support (~> 3.10.0)
422
472
  rspec-rails (4.0.2)
@@ -429,8 +479,8 @@ GEM
429
479
  rspec-support (~> 3.10)
430
480
  rspec-snapshot (0.1.2)
431
481
  rspec (> 3.0.0)
432
- rspec-support (3.10.1)
433
- rubocop (1.8.1)
482
+ rspec-support (3.10.2)
483
+ rubocop (1.10.0)
434
484
  parallel (~> 1.10)
435
485
  parser (>= 3.0.0.0)
436
486
  rainbow (>= 2.2.2, < 4.0)
@@ -439,14 +489,14 @@ GEM
439
489
  rubocop-ast (>= 1.2.0, < 2.0)
440
490
  ruby-progressbar (~> 1.7)
441
491
  unicode-display_width (>= 1.4.0, < 3.0)
442
- rubocop-ast (1.4.0)
492
+ rubocop-ast (1.4.1)
443
493
  parser (>= 2.7.1.5)
444
494
  rubocop-rails (2.9.1)
445
495
  activesupport (>= 4.2.0)
446
496
  rack (>= 1.1)
447
497
  rubocop (>= 0.90.0, < 2.0)
448
498
  ruby-progressbar (1.11.0)
449
- ruby2_keywords (0.0.2)
499
+ ruby2_keywords (0.0.4)
450
500
  sass (3.7.4)
451
501
  sass-listen (~> 4.0.0)
452
502
  sass-listen (4.0.0)
@@ -454,6 +504,8 @@ GEM
454
504
  rb-inotify (~> 0.9, >= 0.9.7)
455
505
  sassc (2.4.0)
456
506
  ffi (~> 1.9)
507
+ sassc (2.4.0-x64-mingw32)
508
+ ffi (~> 1.9)
457
509
  sassc-rails (2.1.2)
458
510
  railties (>= 4.0.0)
459
511
  sassc (>= 2.0)
@@ -491,6 +543,8 @@ GEM
491
543
  redis (>= 2.1)
492
544
  simple-random (>= 0.9.3)
493
545
  sinatra (>= 1.2.6)
546
+ spoon (0.0.6)
547
+ ffi
494
548
  sprockets (4.0.2)
495
549
  concurrent-ruby (~> 1.0)
496
550
  rack (> 1, < 3)
@@ -499,9 +553,9 @@ GEM
499
553
  activesupport (>= 4.0)
500
554
  sprockets (>= 3.0.0)
501
555
  statsd-ruby (1.5.0)
502
- terminal-table (2.0.0)
556
+ terminal-table (3.0.0)
503
557
  unicode-display_width (~> 1.1, >= 1.1.1)
504
- thor (1.0.1)
558
+ thor (1.1.0)
505
559
  tilt (2.0.10)
506
560
  titleize (1.4.1)
507
561
  truncato (0.7.11)
@@ -509,8 +563,11 @@ GEM
509
563
  nokogiri (>= 1.7.0, <= 2.0)
510
564
  tzinfo (2.0.4)
511
565
  concurrent-ruby (~> 1.0)
566
+ tzinfo-data (1.2021.1)
567
+ tzinfo (>= 1.0.0)
512
568
  unf (0.1.4)
513
569
  unf_ext
570
+ unf (0.1.4-java)
514
571
  unf_ext (0.0.7.7)
515
572
  unicode-display_width (1.7.0)
516
573
  unicode_utils (1.4.0)
@@ -521,7 +578,7 @@ GEM
521
578
  activemodel (>= 6.0.0)
522
579
  bindex (>= 0.4.0)
523
580
  railties (>= 6.0.0)
524
- webmock (3.11.1)
581
+ webmock (3.11.3)
525
582
  addressable (>= 2.3.6)
526
583
  crack (>= 0.3.2)
527
584
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -532,6 +589,8 @@ GEM
532
589
  semantic_range (>= 2.3.0)
533
590
  websocket-driver (0.7.3)
534
591
  websocket-extensions (>= 0.1.0)
592
+ websocket-driver (0.7.3-java)
593
+ websocket-extensions (>= 0.1.0)
535
594
  websocket-extensions (0.1.5)
536
595
  woothee (1.11.1)
537
596
  xpath (3.2.0)
@@ -539,7 +598,11 @@ GEM
539
598
  zeitwerk (2.4.2)
540
599
 
541
600
  PLATFORMS
601
+ java
542
602
  ruby
603
+ x64-mingw32
604
+ x86-mingw32
605
+ x86-mswin32
543
606
 
544
607
  DEPENDENCIES
545
608
  actionpack-page_caching!
@@ -554,6 +617,7 @@ DEPENDENCIES
554
617
  bugsnag
555
618
  byebug
556
619
  capybara
620
+ chartkick (= 3.4.2)
557
621
  coffee-rails (~> 5.0)
558
622
  colorize
559
623
  countries
@@ -562,29 +626,29 @@ DEPENDENCIES
562
626
  diffy
563
627
  dotenv-rails
564
628
  factory_bot_rails (= 6.1.0)
565
- faker (= 2.15.1)
629
+ faker (= 2.16.0)
566
630
  ffi (>= 1.9.24)
567
631
  geocoder
568
- gravatar_image_tag (= 1.2.0)
632
+ gmaps4rails (= 2.1.2)
633
+ gravatar_image_tag!
569
634
  greenhouse_io
570
- groupdate (= 5.2.1)
635
+ groupdate (= 5.2.2)
571
636
  guard-livereload (~> 2.5)
572
637
  guard-rspec
573
638
  icalendar
574
- jbuilder (~> 2.10.1)
575
- listen (~> 3.4)
639
+ jbuilder (~> 2.11.2)
576
640
  lograge
577
641
  neatjson
578
642
  newrelic_rpm
579
643
  nexmo-oas-renderer (~> 2.6)
580
- nexmo_markdown_renderer (~> 0.8)
644
+ nexmo_markdown_renderer (~> 0.9)
581
645
  nokogiri (~> 1.11.1)
582
646
  octokit
583
647
  pg (~> 1.2)
584
648
  pry
585
- puma (~> 5.1)
649
+ puma (~> 5.2)
586
650
  rack (>= 2.0.6)
587
- rails (~> 6.1.1)
651
+ rails (~> 6.1.3)
588
652
  rawler!
589
653
  recaptcha
590
654
  redis
@@ -592,7 +656,7 @@ DEPENDENCIES
592
656
  rspec-collection_matchers
593
657
  rspec-rails (~> 4.0)
594
658
  rspec-snapshot (~> 0.1.2)
595
- rubocop (~> 1.8.1)
659
+ rubocop (~> 1.10.0)
596
660
  rubocop-rails (~> 2.9)
597
661
  ruby-progressbar
598
662
  sassc-rails (~> 2.1)
@@ -610,7 +674,7 @@ DEPENDENCIES
610
674
  woothee
611
675
 
612
676
  RUBY VERSION
613
- ruby 2.7.2p137
677
+ ruby 3.0.0p0
614
678
 
615
679
  BUNDLED WITH
616
- 2.1.4
680
+ 2.2.3