station 0.0.113 → 0.0.120
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Dockerfile +9 -7
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/docs/How-To-Use.md +2 -0
- data/lib/nexmo_developer/.nvmrc +1 -1
- data/lib/nexmo_developer/.ruby-version +1 -1
- data/lib/nexmo_developer/Gemfile +11 -12
- data/lib/nexmo_developer/Gemfile.lock +178 -117
- data/lib/nexmo_developer/Runbook.md +4 -4
- data/lib/nexmo_developer/app/controllers/jobs_controller.rb +7 -7
- data/lib/nexmo_developer/app/controllers/static_controller.rb +2 -13
- data/lib/nexmo_developer/app/models/feedback/feedback.rb +2 -0
- data/lib/nexmo_developer/app/models/tutorial/file_loader.rb +11 -7
- data/lib/nexmo_developer/app/models/tutorial/task.rb +27 -1
- data/lib/nexmo_developer/app/presenters/head.rb +5 -1
- data/lib/nexmo_developer/app/presenters/improve_page_presenter.rb +1 -1
- data/lib/nexmo_developer/app/services/orbit_feedback_notifier.rb +50 -0
- data/lib/nexmo_developer/app/services/translator/files_list_coordinator.rb +1 -1
- data/lib/nexmo_developer/app/views/contribute/guides/landing-pages.md +0 -10
- data/lib/nexmo_developer/app/views/contribute/guides/markdown-guide.md +3 -41
- data/lib/nexmo_developer/app/views/contribute/guides/platform.md +0 -1
- data/lib/nexmo_developer/app/views/layouts/documentation.html.erb +6 -0
- data/lib/nexmo_developer/app/views/layouts/partials/_sidenav_subitem.html.erb +3 -0
- data/lib/nexmo_developer/app/webpacker/javascript/components/jwt_generator/JwtGenerator.vue +1 -1
- data/lib/nexmo_developer/app/webpacker/javascript/sidenav/index.js +17 -0
- data/lib/nexmo_developer/app/webpacker/packs/application.js +1 -5
- data/lib/nexmo_developer/app/webpacker/stylesheets/custom/_core.scss +9 -3
- data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_header.scss +3 -1
- data/lib/nexmo_developer/app/webpacker/stylesheets/objects/_navigation.scss +21 -2
- data/lib/nexmo_developer/config/routes.rb +0 -2
- data/lib/nexmo_developer/lib/tasks/cache.rake +1 -1
- data/lib/nexmo_developer/lib/tasks/careers.rake +1 -1
- data/lib/nexmo_developer/lib/tasks/ci.rake +30 -8
- data/lib/nexmo_developer/lib/tasks/diff.rake +5 -5
- data/lib/nexmo_developer/lib/tasks/documentation.rake +1 -1
- data/lib/nexmo_developer/lib/tasks/generate_search_terms.rake +2 -2
- data/lib/nexmo_developer/lib/tasks/links.rake +6 -6
- data/lib/nexmo_developer/lib/tasks/smartling.rake +1 -1
- data/lib/nexmo_developer/version.rb +1 -1
- data/package.json +33 -33
- data/station.gemspec +13 -13
- data/yarn.lock +1186 -2909
- metadata +68 -75
- data/lib/nexmo_developer/.dockerignore +0 -1
- data/lib/nexmo_developer/Dockerfile +0 -28
- data/lib/nexmo_developer/app/screenshots/webhook-url-for-delivery-receipt.js +0 -44
- data/lib/nexmo_developer/app/screenshots/webhook-url-for-inbound-message.js +0 -44
- data/lib/nexmo_developer/app/views/static/default_landing/partials/_submit_your_idea_form.html.erb +0 -58
- data/lib/nexmo_developer/app/webpacker/javascript/spotlight/index.js +0 -12
- data/lib/nexmo_developer/docker-compose.yml +0 -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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53c4dbc48c0d4c31131468ec9d64e84326df7d542dafe1211c2683505f071352
|
4
|
+
data.tar.gz: f4ad76966742f0a6985ccd992bc2a92c92b03fbbe373991cb17c7e433a1d48e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bbb2c06ac16b6e84c7ec4de019998b1390a0fa0e8dc37a1f7c3fb52dccd541d62d14fc43bf0578f70a5a8d4974aea2fb933c34230266049997a0e6135532a35
|
7
|
+
data.tar.gz: 474a576f45033e6cd6aebb0493bdebb3933c024bb48c6d795d94d684c9a23436ae93fe25ce918f5a9669468ae5ae56e0cf3a85f33a0561f7460fc1200e1f501b
|
data/Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
FROM ruby:
|
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/
|
26
|
-
&& find vendor/bundle/ruby/
|
27
|
-
&& find vendor/bundle/ruby/
|
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:
|
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
|
+
ruby '3.0.0'
|
data/Gemfile.lock
CHANGED
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.
|
data/lib/nexmo_developer/.nvmrc
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
14.15.4
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/lib/nexmo_developer/Gemfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
|
-
ruby '
|
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.
|
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.
|
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.
|
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.
|
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.
|
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', '
|
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.
|
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
|
@@ -112,9 +112,9 @@ gem 'lograge'
|
|
112
112
|
gem 'countries'
|
113
113
|
gem 'country_select', '~> 4.0'
|
114
114
|
|
115
|
-
gem 'nexmo-oas-renderer', '~> 2.
|
115
|
+
gem 'nexmo-oas-renderer', '~> 2.7', require: false
|
116
116
|
|
117
|
-
gem 'nexmo_markdown_renderer', '~> 0.
|
117
|
+
gem 'nexmo_markdown_renderer', '~> 0.9'
|
118
118
|
|
119
119
|
gem 'smartling'
|
120
120
|
|
@@ -139,7 +139,7 @@ gem 'sassc-rails', '~> 2.1'
|
|
139
139
|
gem 'gmaps4rails', '2.1.2'
|
140
140
|
|
141
141
|
# Create beautiful JavaScript charts with one line of Ruby
|
142
|
-
gem 'chartkick', '
|
142
|
+
gem 'chartkick', '~> 4.0'
|
143
143
|
|
144
144
|
group :development, :test do
|
145
145
|
gem 'awesome_print'
|
@@ -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
|
@@ -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.1)
|
26
|
+
actionpack (= 6.1.3.1)
|
27
|
+
activesupport (= 6.1.3.1)
|
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.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)
|
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.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)
|
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.1)
|
45
|
+
actionview (= 6.1.3.1)
|
46
|
+
activesupport (= 6.1.3.1)
|
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.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)
|
49
56
|
nokogiri (>= 1.8.5)
|
50
|
-
actionview (6.1.1)
|
51
|
-
activesupport (= 6.1.1)
|
57
|
+
actionview (6.1.3.1)
|
58
|
+
activesupport (= 6.1.3.1)
|
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.1)
|
73
|
+
activesupport (= 6.1.3.1)
|
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)
|
78
|
-
marcel (~> 0.
|
79
|
-
|
80
|
-
activesupport (6.1.1)
|
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)
|
85
|
+
marcel (~> 1.0.0)
|
86
|
+
mini_mime (~> 1.0.2)
|
87
|
+
activesupport (6.1.3.1)
|
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.
|
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,21 +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.
|
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.
|
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 (
|
131
|
+
regexp_parser (>= 1.5, < 3.0)
|
124
132
|
xpath (~> 3.2)
|
125
|
-
chartkick (
|
133
|
+
chartkick (4.0.2)
|
126
134
|
coderay (1.1.3)
|
127
135
|
coffee-rails (5.0.0)
|
128
136
|
coffee-script (>= 2.2.0)
|
@@ -132,7 +140,7 @@ GEM
|
|
132
140
|
execjs
|
133
141
|
coffee-script-source (1.12.2)
|
134
142
|
colorize (0.8.1)
|
135
|
-
concurrent-ruby (1.1.
|
143
|
+
concurrent-ruby (1.1.8)
|
136
144
|
countries (3.0.1)
|
137
145
|
i18n_data (~> 0.10.0)
|
138
146
|
sixarm_ruby_unaccent (~> 1.1)
|
@@ -153,7 +161,7 @@ GEM
|
|
153
161
|
warden (~> 1.2.3)
|
154
162
|
diff-lcs (1.4.4)
|
155
163
|
diffy (3.4.0)
|
156
|
-
docile (1.3.
|
164
|
+
docile (1.3.5)
|
157
165
|
domain_name (0.5.20190701)
|
158
166
|
unf (>= 0.0.5, < 1.0.0)
|
159
167
|
dotenv (2.7.6)
|
@@ -165,32 +173,37 @@ GEM
|
|
165
173
|
http_parser.rb (~> 0.6.0)
|
166
174
|
erubi (1.10.0)
|
167
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)
|
168
179
|
execjs (2.7.0)
|
169
180
|
factory_bot (6.1.0)
|
170
181
|
activesupport (>= 5.0.0)
|
171
182
|
factory_bot_rails (6.1.0)
|
172
183
|
factory_bot (~> 6.1.0)
|
173
184
|
railties (>= 5.0.0)
|
174
|
-
faker (2.
|
185
|
+
faker (2.16.0)
|
175
186
|
i18n (>= 1.6, < 2)
|
176
187
|
faraday (1.3.0)
|
177
188
|
faraday-net_http (~> 1.0)
|
178
189
|
multipart-post (>= 1.2, < 3)
|
179
190
|
ruby2_keywords
|
180
|
-
faraday-net_http (1.0.
|
181
|
-
ffi (1.
|
191
|
+
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)
|
182
196
|
formatador (0.2.5)
|
183
|
-
formtastic (
|
184
|
-
actionpack (>=
|
197
|
+
formtastic (4.0.0)
|
198
|
+
actionpack (>= 5.2.0)
|
185
199
|
formtastic_i18n (0.6.0)
|
186
|
-
geocoder (1.6.
|
200
|
+
geocoder (1.6.5)
|
187
201
|
globalid (0.4.2)
|
188
202
|
activesupport (>= 4.2.0)
|
189
203
|
gmaps4rails (2.1.2)
|
190
|
-
gravatar_image_tag (1.2.0)
|
191
204
|
greenhouse_io (2.5.0)
|
192
205
|
httmultiparty (~> 0.3.16)
|
193
|
-
groupdate (5.2.
|
206
|
+
groupdate (5.2.2)
|
194
207
|
activesupport (>= 5)
|
195
208
|
guard (2.16.2)
|
196
209
|
formatador (>= 0.2.4)
|
@@ -212,9 +225,9 @@ GEM
|
|
212
225
|
guard-compat (~> 1.1)
|
213
226
|
rspec (>= 2.99.0, < 4.0)
|
214
227
|
hansi (0.2.0)
|
215
|
-
has_scope (0.
|
216
|
-
actionpack (>=
|
217
|
-
activesupport (>=
|
228
|
+
has_scope (0.8.0)
|
229
|
+
actionpack (>= 5.2)
|
230
|
+
activesupport (>= 5.2)
|
218
231
|
hash-deep-merge (0.1.1)
|
219
232
|
hashdiff (1.0.1)
|
220
233
|
htmlentities (4.3.4)
|
@@ -226,11 +239,12 @@ GEM
|
|
226
239
|
http-cookie (1.0.3)
|
227
240
|
domain_name (~> 0.5)
|
228
241
|
http_parser.rb (0.6.0)
|
242
|
+
http_parser.rb (0.6.0-java)
|
229
243
|
httparty (0.18.1)
|
230
244
|
mime-types (~> 3.0)
|
231
245
|
multi_xml (>= 0.5.2)
|
232
246
|
httpclient (2.8.3)
|
233
|
-
i18n (1.8.
|
247
|
+
i18n (1.8.10)
|
234
248
|
concurrent-ruby (~> 1.0)
|
235
249
|
i18n_data (0.10.0)
|
236
250
|
icalendar (2.7.0)
|
@@ -241,13 +255,14 @@ GEM
|
|
241
255
|
has_scope (~> 0.6)
|
242
256
|
railties (>= 5.2, < 6.2)
|
243
257
|
responders (>= 2, < 4)
|
244
|
-
jbuilder (2.
|
258
|
+
jbuilder (2.11.2)
|
245
259
|
activesupport (>= 5.0.0)
|
246
260
|
jquery-rails (4.4.0)
|
247
261
|
rails-dom-testing (>= 1, < 3)
|
248
262
|
railties (>= 4.2.0)
|
249
263
|
thor (>= 0.14, < 2.0)
|
250
264
|
json (2.5.1)
|
265
|
+
json (2.5.1-java)
|
251
266
|
kaminari (1.2.1)
|
252
267
|
activesupport (>= 4.1.0)
|
253
268
|
kaminari-actionview (= 1.2.1)
|
@@ -268,23 +283,25 @@ GEM
|
|
268
283
|
activesupport (>= 4)
|
269
284
|
railties (>= 4)
|
270
285
|
request_store (~> 1.0)
|
271
|
-
loofah (2.9.
|
286
|
+
loofah (2.9.1)
|
272
287
|
crass (~> 1.0.2)
|
273
288
|
nokogiri (>= 1.5.9)
|
274
289
|
lumberjack (1.2.8)
|
275
290
|
mail (2.7.1)
|
276
291
|
mini_mime (>= 0.1.1)
|
277
|
-
marcel (0.
|
278
|
-
mimemagic (~> 0.3.2)
|
292
|
+
marcel (1.0.0)
|
279
293
|
method_source (1.0.0)
|
280
294
|
mime-types (3.3.1)
|
281
295
|
mime-types-data (~> 3.2015)
|
282
|
-
mime-types-data (3.
|
283
|
-
mimemagic (0.3
|
284
|
-
|
296
|
+
mime-types-data (3.2021.0212)
|
297
|
+
mimemagic (0.4.3)
|
298
|
+
nokogiri (~> 1)
|
299
|
+
rake
|
300
|
+
mini_mime (1.0.3)
|
285
301
|
mini_portile2 (2.5.0)
|
286
|
-
minitest (5.14.
|
287
|
-
msgpack (1.
|
302
|
+
minitest (5.14.4)
|
303
|
+
msgpack (1.4.2)
|
304
|
+
msgpack (1.4.2-java)
|
288
305
|
multi_json (1.15.0)
|
289
306
|
multi_xml (0.6.0)
|
290
307
|
multipart-post (2.1.1)
|
@@ -297,19 +314,19 @@ GEM
|
|
297
314
|
nenv (0.3.0)
|
298
315
|
netrc (0.11.0)
|
299
316
|
newrelic_rpm (6.15.0)
|
300
|
-
nexmo-oas-renderer (2.
|
317
|
+
nexmo-oas-renderer (2.7.1)
|
301
318
|
activemodel (~> 6.0)
|
302
319
|
activesupport (~> 6.0)
|
303
320
|
banzai (~> 0.1.2)
|
304
321
|
dotenv (~> 2.7)
|
305
322
|
neatjson (~> 0.8)
|
306
323
|
nexmo_markdown_renderer (~> 0.8)
|
307
|
-
oas_parser (~> 0.25.
|
324
|
+
oas_parser (~> 0.25.4)
|
308
325
|
redcarpet (= 3.5.1)
|
309
326
|
sass (~> 3.1)
|
310
327
|
shotgun (~> 0.9)
|
311
328
|
sinatra (~> 2.0)
|
312
|
-
nexmo_markdown_renderer (0.
|
329
|
+
nexmo_markdown_renderer (0.9.1)
|
313
330
|
actionview (~> 6.0)
|
314
331
|
activemodel (~> 6.0)
|
315
332
|
banzai (~> 0.1.2)
|
@@ -317,14 +334,21 @@ GEM
|
|
317
334
|
nokogiri (~> 1.10)
|
318
335
|
redcarpet (~> 3.4)
|
319
336
|
rouge (~> 2.0.7)
|
320
|
-
nio4r (2.5.
|
321
|
-
|
337
|
+
nio4r (2.5.7)
|
338
|
+
nio4r (2.5.7-java)
|
339
|
+
nokogiri (1.11.3)
|
322
340
|
mini_portile2 (~> 2.5.0)
|
323
341
|
racc (~> 1.4)
|
342
|
+
nokogiri (1.11.3-java)
|
343
|
+
racc (~> 1.4)
|
344
|
+
nokogiri (1.11.3-x64-mingw32)
|
345
|
+
racc (~> 1.4)
|
346
|
+
nokogiri (1.11.3-x86-mingw32)
|
347
|
+
racc (~> 1.4)
|
324
348
|
notiffany (0.1.3)
|
325
349
|
nenv (~> 0.1)
|
326
350
|
shellany (~> 0.0)
|
327
|
-
oas_parser (0.25.
|
351
|
+
oas_parser (0.25.4)
|
328
352
|
activesupport (>= 4.0.0)
|
329
353
|
addressable (~> 2.3)
|
330
354
|
builder (~> 3.2.3)
|
@@ -335,19 +359,26 @@ GEM
|
|
335
359
|
octokit (4.20.0)
|
336
360
|
faraday (>= 0.9)
|
337
361
|
sawyer (~> 0.8.0, >= 0.5.3)
|
338
|
-
oj (3.
|
362
|
+
oj (3.11.2)
|
339
363
|
orm_adapter (0.5.0)
|
340
364
|
parallel (1.20.1)
|
341
365
|
parser (3.0.0.0)
|
342
366
|
ast (~> 2.4.1)
|
343
367
|
pg (1.2.3)
|
344
|
-
pry (0.
|
368
|
+
pry (0.14.0)
|
369
|
+
coderay (~> 1.1)
|
370
|
+
method_source (~> 1.0)
|
371
|
+
pry (0.14.0-java)
|
345
372
|
coderay (~> 1.1)
|
346
373
|
method_source (~> 1.0)
|
374
|
+
spoon (~> 0.0)
|
347
375
|
public_suffix (4.0.6)
|
348
|
-
puma (5.
|
376
|
+
puma (5.2.1)
|
377
|
+
nio4r (~> 2.0)
|
378
|
+
puma (5.2.1-java)
|
349
379
|
nio4r (~> 2.0)
|
350
380
|
racc (1.5.2)
|
381
|
+
racc (1.5.2-java)
|
351
382
|
rack (2.2.3)
|
352
383
|
rack-protection (2.1.0)
|
353
384
|
rack
|
@@ -355,46 +386,46 @@ GEM
|
|
355
386
|
rack
|
356
387
|
rack-test (1.1.0)
|
357
388
|
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)
|
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)
|
370
401
|
bundler (>= 1.15.0)
|
371
|
-
railties (= 6.1.1)
|
402
|
+
railties (= 6.1.3.1)
|
372
403
|
sprockets-rails (>= 2.0.0)
|
373
404
|
rails-dom-testing (2.0.3)
|
374
405
|
activesupport (>= 4.2.0)
|
375
406
|
nokogiri (>= 1.6)
|
376
407
|
rails-html-sanitizer (1.3.0)
|
377
408
|
loofah (~> 2.3)
|
378
|
-
railties (6.1.1)
|
379
|
-
actionpack (= 6.1.1)
|
380
|
-
activesupport (= 6.1.1)
|
409
|
+
railties (6.1.3.1)
|
410
|
+
actionpack (= 6.1.3.1)
|
411
|
+
activesupport (= 6.1.3.1)
|
381
412
|
method_source
|
382
413
|
rake (>= 0.8.7)
|
383
414
|
thor (~> 1.0)
|
384
415
|
rainbow (3.0.0)
|
385
416
|
rake (13.0.3)
|
386
|
-
ransack (2.4.
|
417
|
+
ransack (2.4.2)
|
387
418
|
activerecord (>= 5.2.4)
|
388
419
|
activesupport (>= 5.2.4)
|
389
420
|
i18n
|
390
421
|
rb-fsevent (0.10.4)
|
391
422
|
rb-inotify (0.10.1)
|
392
423
|
ffi (~> 1.0)
|
393
|
-
recaptcha (5.
|
424
|
+
recaptcha (5.7.0)
|
394
425
|
json
|
395
426
|
redcarpet (3.5.1)
|
396
427
|
redis (4.2.5)
|
397
|
-
regexp_parser (
|
428
|
+
regexp_parser (2.0.3)
|
398
429
|
request_store (1.5.0)
|
399
430
|
rack (>= 1.4)
|
400
431
|
responders (3.0.1)
|
@@ -405,7 +436,25 @@ GEM
|
|
405
436
|
http-cookie (>= 1.0.2, < 2.0)
|
406
437
|
mime-types (>= 1.16, < 4.0)
|
407
438
|
netrc (~> 0.8)
|
408
|
-
|
439
|
+
rest-client (2.1.0-x64-mingw32)
|
440
|
+
ffi (~> 1.9)
|
441
|
+
http-accept (>= 1.7.0, < 2.0)
|
442
|
+
http-cookie (>= 1.0.2, < 2.0)
|
443
|
+
mime-types (>= 1.16, < 4.0)
|
444
|
+
netrc (~> 0.8)
|
445
|
+
rest-client (2.1.0-x86-mingw32)
|
446
|
+
ffi (~> 1.9)
|
447
|
+
http-accept (>= 1.7.0, < 2.0)
|
448
|
+
http-cookie (>= 1.0.2, < 2.0)
|
449
|
+
mime-types (>= 1.16, < 4.0)
|
450
|
+
netrc (~> 0.8)
|
451
|
+
rest-client (2.1.0-x86-mswin32)
|
452
|
+
ffi (~> 1.9)
|
453
|
+
http-accept (>= 1.7.0, < 2.0)
|
454
|
+
http-cookie (>= 1.0.2, < 2.0)
|
455
|
+
mime-types (>= 1.16, < 4.0)
|
456
|
+
netrc (~> 0.8)
|
457
|
+
rexml (3.2.5)
|
409
458
|
rouge (2.0.7)
|
410
459
|
rspec (3.10.0)
|
411
460
|
rspec-core (~> 3.10.0)
|
@@ -418,7 +467,7 @@ GEM
|
|
418
467
|
rspec-expectations (3.10.1)
|
419
468
|
diff-lcs (>= 1.2.0, < 2.0)
|
420
469
|
rspec-support (~> 3.10.0)
|
421
|
-
rspec-mocks (3.10.
|
470
|
+
rspec-mocks (3.10.2)
|
422
471
|
diff-lcs (>= 1.2.0, < 2.0)
|
423
472
|
rspec-support (~> 3.10.0)
|
424
473
|
rspec-rails (4.0.2)
|
@@ -431,8 +480,8 @@ GEM
|
|
431
480
|
rspec-support (~> 3.10)
|
432
481
|
rspec-snapshot (0.1.2)
|
433
482
|
rspec (> 3.0.0)
|
434
|
-
rspec-support (3.10.
|
435
|
-
rubocop (1.
|
483
|
+
rspec-support (3.10.2)
|
484
|
+
rubocop (1.10.0)
|
436
485
|
parallel (~> 1.10)
|
437
486
|
parser (>= 3.0.0.0)
|
438
487
|
rainbow (>= 2.2.2, < 4.0)
|
@@ -441,14 +490,14 @@ GEM
|
|
441
490
|
rubocop-ast (>= 1.2.0, < 2.0)
|
442
491
|
ruby-progressbar (~> 1.7)
|
443
492
|
unicode-display_width (>= 1.4.0, < 3.0)
|
444
|
-
rubocop-ast (1.4.
|
493
|
+
rubocop-ast (1.4.1)
|
445
494
|
parser (>= 2.7.1.5)
|
446
495
|
rubocop-rails (2.9.1)
|
447
496
|
activesupport (>= 4.2.0)
|
448
497
|
rack (>= 1.1)
|
449
498
|
rubocop (>= 0.90.0, < 2.0)
|
450
499
|
ruby-progressbar (1.11.0)
|
451
|
-
ruby2_keywords (0.0.
|
500
|
+
ruby2_keywords (0.0.4)
|
452
501
|
sass (3.7.4)
|
453
502
|
sass-listen (~> 4.0.0)
|
454
503
|
sass-listen (4.0.0)
|
@@ -456,6 +505,8 @@ GEM
|
|
456
505
|
rb-inotify (~> 0.9, >= 0.9.7)
|
457
506
|
sassc (2.4.0)
|
458
507
|
ffi (~> 1.9)
|
508
|
+
sassc (2.4.0-x64-mingw32)
|
509
|
+
ffi (~> 1.9)
|
459
510
|
sassc-rails (2.1.2)
|
460
511
|
railties (>= 4.0.0)
|
461
512
|
sassc (>= 2.0)
|
@@ -493,6 +544,8 @@ GEM
|
|
493
544
|
redis (>= 2.1)
|
494
545
|
simple-random (>= 0.9.3)
|
495
546
|
sinatra (>= 1.2.6)
|
547
|
+
spoon (0.0.6)
|
548
|
+
ffi
|
496
549
|
sprockets (4.0.2)
|
497
550
|
concurrent-ruby (~> 1.0)
|
498
551
|
rack (> 1, < 3)
|
@@ -501,9 +554,9 @@ GEM
|
|
501
554
|
activesupport (>= 4.0)
|
502
555
|
sprockets (>= 3.0.0)
|
503
556
|
statsd-ruby (1.5.0)
|
504
|
-
terminal-table (
|
557
|
+
terminal-table (3.0.0)
|
505
558
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
506
|
-
thor (1.0
|
559
|
+
thor (1.1.0)
|
507
560
|
tilt (2.0.10)
|
508
561
|
titleize (1.4.1)
|
509
562
|
truncato (0.7.11)
|
@@ -511,8 +564,11 @@ GEM
|
|
511
564
|
nokogiri (>= 1.7.0, <= 2.0)
|
512
565
|
tzinfo (2.0.4)
|
513
566
|
concurrent-ruby (~> 1.0)
|
567
|
+
tzinfo-data (1.2021.1)
|
568
|
+
tzinfo (>= 1.0.0)
|
514
569
|
unf (0.1.4)
|
515
570
|
unf_ext
|
571
|
+
unf (0.1.4-java)
|
516
572
|
unf_ext (0.0.7.7)
|
517
573
|
unicode-display_width (1.7.0)
|
518
574
|
unicode_utils (1.4.0)
|
@@ -523,7 +579,7 @@ GEM
|
|
523
579
|
activemodel (>= 6.0.0)
|
524
580
|
bindex (>= 0.4.0)
|
525
581
|
railties (>= 6.0.0)
|
526
|
-
webmock (3.11.
|
582
|
+
webmock (3.11.3)
|
527
583
|
addressable (>= 2.3.6)
|
528
584
|
crack (>= 0.3.2)
|
529
585
|
hashdiff (>= 0.4.0, < 2.0.0)
|
@@ -534,6 +590,8 @@ GEM
|
|
534
590
|
semantic_range (>= 2.3.0)
|
535
591
|
websocket-driver (0.7.3)
|
536
592
|
websocket-extensions (>= 0.1.0)
|
593
|
+
websocket-driver (0.7.3-java)
|
594
|
+
websocket-extensions (>= 0.1.0)
|
537
595
|
websocket-extensions (0.1.5)
|
538
596
|
woothee (1.11.1)
|
539
597
|
xpath (3.2.0)
|
@@ -541,7 +599,11 @@ GEM
|
|
541
599
|
zeitwerk (2.4.2)
|
542
600
|
|
543
601
|
PLATFORMS
|
602
|
+
java
|
544
603
|
ruby
|
604
|
+
x64-mingw32
|
605
|
+
x86-mingw32
|
606
|
+
x86-mswin32
|
545
607
|
|
546
608
|
DEPENDENCIES
|
547
609
|
actionpack-page_caching!
|
@@ -556,7 +618,7 @@ DEPENDENCIES
|
|
556
618
|
bugsnag
|
557
619
|
byebug
|
558
620
|
capybara
|
559
|
-
chartkick (
|
621
|
+
chartkick (~> 4.0)
|
560
622
|
coffee-rails (~> 5.0)
|
561
623
|
colorize
|
562
624
|
countries
|
@@ -565,30 +627,29 @@ DEPENDENCIES
|
|
565
627
|
diffy
|
566
628
|
dotenv-rails
|
567
629
|
factory_bot_rails (= 6.1.0)
|
568
|
-
faker (= 2.
|
630
|
+
faker (= 2.16.0)
|
569
631
|
ffi (>= 1.9.24)
|
570
632
|
geocoder
|
571
633
|
gmaps4rails (= 2.1.2)
|
572
|
-
gravatar_image_tag
|
634
|
+
gravatar_image_tag!
|
573
635
|
greenhouse_io
|
574
|
-
groupdate (= 5.2.
|
636
|
+
groupdate (= 5.2.2)
|
575
637
|
guard-livereload (~> 2.5)
|
576
638
|
guard-rspec
|
577
639
|
icalendar
|
578
|
-
jbuilder (~> 2.
|
579
|
-
listen (~> 3.4)
|
640
|
+
jbuilder (~> 2.11.2)
|
580
641
|
lograge
|
581
642
|
neatjson
|
582
643
|
newrelic_rpm
|
583
|
-
nexmo-oas-renderer (~> 2.
|
584
|
-
nexmo_markdown_renderer (~> 0.
|
644
|
+
nexmo-oas-renderer (~> 2.7)
|
645
|
+
nexmo_markdown_renderer (~> 0.9)
|
585
646
|
nokogiri (~> 1.11.1)
|
586
647
|
octokit
|
587
648
|
pg (~> 1.2)
|
588
649
|
pry
|
589
|
-
puma (~> 5.
|
650
|
+
puma (~> 5.2)
|
590
651
|
rack (>= 2.0.6)
|
591
|
-
rails (~> 6.1.
|
652
|
+
rails (~> 6.1.3)
|
592
653
|
rawler!
|
593
654
|
recaptcha
|
594
655
|
redis
|
@@ -596,7 +657,7 @@ DEPENDENCIES
|
|
596
657
|
rspec-collection_matchers
|
597
658
|
rspec-rails (~> 4.0)
|
598
659
|
rspec-snapshot (~> 0.1.2)
|
599
|
-
rubocop (~> 1.
|
660
|
+
rubocop (~> 1.10.0)
|
600
661
|
rubocop-rails (~> 2.9)
|
601
662
|
ruby-progressbar
|
602
663
|
sassc-rails (~> 2.1)
|
@@ -614,7 +675,7 @@ DEPENDENCIES
|
|
614
675
|
woothee
|
615
676
|
|
616
677
|
RUBY VERSION
|
617
|
-
ruby
|
678
|
+
ruby 3.0.0p0
|
618
679
|
|
619
680
|
BUNDLED WITH
|
620
|
-
2.
|
681
|
+
2.2.3
|