station 0.0.118 → 0.0.123
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Dockerfile +1 -1
- data/lib/nexmo_developer/Gemfile +10 -10
- data/lib/nexmo_developer/Gemfile.lock +146 -136
- data/lib/nexmo_developer/app/assets/stylesheets/application.css +8 -1
- data/lib/nexmo_developer/app/controllers/static_controller.rb +1 -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/code_snippets_home_presenter.rb +26 -0
- data/lib/nexmo_developer/app/presenters/footer.rb +2 -3
- data/lib/nexmo_developer/app/presenters/header.rb +0 -31
- data/lib/nexmo_developer/app/views/contribute/code-snippets/how-to-update-code-snippets.md +1 -1
- data/lib/nexmo_developer/app/views/contribute/code-snippets/sample-code-snippet.md +1 -1
- data/lib/nexmo_developer/app/views/contribute/guides/markdown-guide.md +3 -3
- data/lib/nexmo_developer/app/views/layouts/application.html.erb +0 -1
- data/lib/nexmo_developer/app/views/layouts/documentation-index.html.erb +0 -1
- data/lib/nexmo_developer/app/views/layouts/documentation.html.erb +6 -0
- data/lib/nexmo_developer/app/views/layouts/landing.html.erb +4 -2
- data/lib/nexmo_developer/app/views/layouts/page.html.erb +0 -1
- data/lib/nexmo_developer/app/views/layouts/partials/_code_snippets_home.html.erb +38 -0
- data/lib/nexmo_developer/app/views/layouts/partials/_footer.html.erb +33 -32
- data/lib/nexmo_developer/app/views/layouts/partials/_header.html.erb +90 -31
- data/lib/nexmo_developer/app/views/layouts/partials/_locale_switcher.html.erb +3 -4
- data/lib/nexmo_developer/app/webpacker/javascript/components/concatenation/character_counter.js +5 -3
- data/lib/nexmo_developer/app/webpacker/javascript/components/jwt_generator/JwtGenerator.vue +1 -1
- data/lib/nexmo_developer/app/webpacker/javascript/components/search/Search.vue +80 -19
- data/lib/nexmo_developer/app/webpacker/javascript/sidenav/index.js +14 -10
- data/lib/nexmo_developer/app/webpacker/javascript/topnav/index.js +33 -0
- data/lib/nexmo_developer/app/webpacker/javascript/volta_tabbed_examples/index.js +3 -1
- data/lib/nexmo_developer/app/webpacker/packs/application.js +16 -5
- data/lib/nexmo_developer/app/webpacker/stylesheets/application.scss +4 -0
- data/lib/nexmo_developer/app/webpacker/stylesheets/custom/_core.scss +8 -4
- data/lib/nexmo_developer/app/webpacker/stylesheets/custom/_landing.scss +500 -0
- data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_footer.scss +45 -23
- data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_header.scss +163 -138
- data/lib/nexmo_developer/app/webpacker/stylesheets/layout/_search.scss +2 -5
- data/lib/nexmo_developer/app/webpacker/stylesheets/objects/_navigation.scss +19 -2
- data/lib/nexmo_developer/lib/tasks/ci.rake +23 -1
- data/lib/nexmo_developer/public/vonage_developer_logo.svg +26 -0
- data/lib/nexmo_developer/version.rb +1 -1
- data/package.json +34 -33
- data/station.gemspec +12 -12
- data/yarn.lock +1359 -1123
- metadata +74 -71
- data/lib/nexmo_developer/app/presenters/topnav.rb +0 -23
- 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a562ffad7fd282eb375976fc22917259800e03b65d985ee3eb539cb2456fd8f
|
4
|
+
data.tar.gz: 74e849f0d2f02a85300f27140176e4bb009b0e0076f85ba78aae93ff3e8747a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8dac5fb7decf70e3bd733fdc79dc122e65c8a87a53e01c799afb6ecb0d48c8c835ade63e6f02deaf6ffcb395b4b270c481887e87d32d7441555d7d73c81553a
|
7
|
+
data.tar.gz: 1d8249019d0caf51fa97a5a46a58623fd3560a702e1de9db09c1f73b0764b50063fc9a436527855dfca02c1131ab8933dfcf6fa58baf00deac092677675bd858
|
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
|
data/lib/nexmo_developer/Gemfile
CHANGED
@@ -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.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', '
|
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', '
|
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.
|
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.
|
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.
|
72
|
+
gem 'slack-notifier', '2.4.0'
|
73
73
|
|
74
74
|
# The administration framework for Ruby on Rails.
|
75
75
|
gem 'activeadmin', '~> 2.9'
|
@@ -112,7 +112,7 @@ 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
117
|
gem 'nexmo_markdown_renderer', '~> 0.9'
|
118
118
|
|
@@ -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'
|
@@ -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', '~>
|
152
|
-
gem 'rspec-snapshot', '~> 0.
|
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:
|
17
|
+
revision: d929689748f09c5d7c73cefbd9326701dcf52a30
|
18
18
|
specs:
|
19
|
-
actionpack-page_caching (1.2.
|
20
|
-
actionpack (>=
|
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.
|
26
|
-
actionpack (= 6.1.
|
27
|
-
activesupport (= 6.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.
|
31
|
-
actionpack (= 6.1.
|
32
|
-
activejob (= 6.1.
|
33
|
-
activerecord (= 6.1.
|
34
|
-
activestorage (= 6.1.
|
35
|
-
activesupport (= 6.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.
|
38
|
-
actionpack (= 6.1.
|
39
|
-
actionview (= 6.1.
|
40
|
-
activejob (= 6.1.
|
41
|
-
activesupport (= 6.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.
|
45
|
-
actionview (= 6.1.
|
46
|
-
activesupport (= 6.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.
|
52
|
-
actionpack (= 6.1.
|
53
|
-
activerecord (= 6.1.
|
54
|
-
activestorage (= 6.1.
|
55
|
-
activesupport (= 6.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.
|
58
|
-
activesupport (= 6.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.
|
73
|
-
activesupport (= 6.1.
|
72
|
+
activejob (6.1.4)
|
73
|
+
activesupport (= 6.1.4)
|
74
74
|
globalid (>= 0.3.6)
|
75
|
-
activemodel (6.1.
|
76
|
-
activesupport (= 6.1.
|
77
|
-
activerecord (6.1.
|
78
|
-
activemodel (= 6.1.
|
79
|
-
activesupport (= 6.1.
|
80
|
-
activestorage (6.1.
|
81
|
-
actionpack (= 6.1.
|
82
|
-
activejob (= 6.1.
|
83
|
-
activerecord (= 6.1.
|
84
|
-
activesupport (= 6.1.
|
85
|
-
marcel (~> 0.
|
86
|
-
|
87
|
-
activesupport (6.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
|
+
marcel (~> 1.0.0)
|
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.
|
105
|
+
awesome_print (1.9.2)
|
106
106
|
banzai (0.1.3)
|
107
|
-
barnes (0.0.
|
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.
|
119
|
+
bootsnap (1.7.5)
|
120
120
|
msgpack (~> 1.0)
|
121
|
-
bugsnag (6.
|
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 (
|
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.
|
144
|
-
countries (3.0
|
145
|
-
i18n_data (~> 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.
|
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.
|
180
|
+
factory_bot (6.2.0)
|
181
181
|
activesupport (>= 5.0.0)
|
182
|
-
factory_bot_rails (6.
|
183
|
-
factory_bot (~> 6.
|
182
|
+
factory_bot_rails (6.2.0)
|
183
|
+
factory_bot (~> 6.2.0)
|
184
184
|
railties (>= 5.0.0)
|
185
|
-
faker (2.
|
185
|
+
faker (2.18.0)
|
186
186
|
i18n (>= 1.6, < 2)
|
187
|
-
faraday (1.
|
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
|
-
|
193
|
-
ffi (1.
|
194
|
-
ffi (1.
|
195
|
-
ffi (1.
|
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.
|
208
|
+
geocoder (1.6.7)
|
201
209
|
globalid (0.4.2)
|
202
210
|
activesupport (>= 4.2.0)
|
203
211
|
gmaps4rails (2.1.2)
|
@@ -244,10 +252,10 @@ GEM
|
|
244
252
|
mime-types (~> 3.0)
|
245
253
|
multi_xml (>= 0.5.2)
|
246
254
|
httpclient (2.8.3)
|
247
|
-
i18n (1.8.
|
255
|
+
i18n (1.8.10)
|
248
256
|
concurrent-ruby (~> 1.0)
|
249
|
-
i18n_data (0.
|
250
|
-
icalendar (2.7.
|
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,22 +291,23 @@ GEM
|
|
283
291
|
activesupport (>= 4)
|
284
292
|
railties (>= 4)
|
285
293
|
request_store (~> 1.0)
|
286
|
-
loofah (2.
|
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 (0.
|
293
|
-
mimemagic (~> 0.3.2)
|
300
|
+
marcel (1.0.1)
|
294
301
|
method_source (1.0.0)
|
295
302
|
mime-types (3.3.1)
|
296
303
|
mime-types-data (~> 3.2015)
|
297
304
|
mime-types-data (3.2021.0212)
|
298
|
-
mimemagic (0.3
|
299
|
-
|
300
|
-
|
301
|
-
|
305
|
+
mimemagic (0.4.3)
|
306
|
+
nokogiri (~> 1)
|
307
|
+
rake
|
308
|
+
mini_mime (1.1.0)
|
309
|
+
mini_portile2 (2.5.3)
|
310
|
+
minitest (5.14.4)
|
302
311
|
msgpack (1.4.2)
|
303
312
|
msgpack (1.4.2-java)
|
304
313
|
multi_json (1.15.0)
|
@@ -312,20 +321,20 @@ GEM
|
|
312
321
|
neatjson (0.9)
|
313
322
|
nenv (0.3.0)
|
314
323
|
netrc (0.11.0)
|
315
|
-
newrelic_rpm (
|
316
|
-
nexmo-oas-renderer (2.
|
317
|
-
activemodel (~> 6.
|
318
|
-
activesupport (~> 6.
|
324
|
+
newrelic_rpm (7.1.0)
|
325
|
+
nexmo-oas-renderer (2.7.2)
|
326
|
+
activemodel (~> 6.1)
|
327
|
+
activesupport (~> 6.1)
|
319
328
|
banzai (~> 0.1.2)
|
320
329
|
dotenv (~> 2.7)
|
321
330
|
neatjson (~> 0.8)
|
322
331
|
nexmo_markdown_renderer (~> 0.8)
|
323
|
-
oas_parser (~> 0.25.
|
332
|
+
oas_parser (~> 0.25.4)
|
324
333
|
redcarpet (= 3.5.1)
|
325
334
|
sass (~> 3.1)
|
326
335
|
shotgun (~> 0.9)
|
327
336
|
sinatra (~> 2.0)
|
328
|
-
nexmo_markdown_renderer (0.9.
|
337
|
+
nexmo_markdown_renderer (0.9.1)
|
329
338
|
actionview (~> 6.0)
|
330
339
|
activemodel (~> 6.0)
|
331
340
|
banzai (~> 0.1.2)
|
@@ -333,21 +342,21 @@ GEM
|
|
333
342
|
nokogiri (~> 1.10)
|
334
343
|
redcarpet (~> 3.4)
|
335
344
|
rouge (~> 2.0.7)
|
336
|
-
nio4r (2.5.
|
337
|
-
nio4r (2.5.
|
338
|
-
nokogiri (1.11.
|
345
|
+
nio4r (2.5.7)
|
346
|
+
nio4r (2.5.7-java)
|
347
|
+
nokogiri (1.11.7)
|
339
348
|
mini_portile2 (~> 2.5.0)
|
340
349
|
racc (~> 1.4)
|
341
|
-
nokogiri (1.11.
|
350
|
+
nokogiri (1.11.7-java)
|
342
351
|
racc (~> 1.4)
|
343
|
-
nokogiri (1.11.
|
352
|
+
nokogiri (1.11.7-x64-mingw32)
|
344
353
|
racc (~> 1.4)
|
345
|
-
nokogiri (1.11.
|
354
|
+
nokogiri (1.11.7-x86-mingw32)
|
346
355
|
racc (~> 1.4)
|
347
356
|
notiffany (0.1.3)
|
348
357
|
nenv (~> 0.1)
|
349
358
|
shellany (~> 0.0)
|
350
|
-
oas_parser (0.25.
|
359
|
+
oas_parser (0.25.4)
|
351
360
|
activesupport (>= 4.0.0)
|
352
361
|
addressable (~> 2.3)
|
353
362
|
builder (~> 3.2.3)
|
@@ -355,7 +364,7 @@ GEM
|
|
355
364
|
hash-deep-merge
|
356
365
|
mustermann-contrib (~> 1.1.1)
|
357
366
|
nokogiri
|
358
|
-
octokit (4.
|
367
|
+
octokit (4.21.0)
|
359
368
|
faraday (>= 0.9)
|
360
369
|
sawyer (~> 0.8.0, >= 0.5.3)
|
361
370
|
oj (3.11.2)
|
@@ -364,52 +373,52 @@ GEM
|
|
364
373
|
parser (3.0.0.0)
|
365
374
|
ast (~> 2.4.1)
|
366
375
|
pg (1.2.3)
|
367
|
-
pry (0.14.
|
376
|
+
pry (0.14.1)
|
368
377
|
coderay (~> 1.1)
|
369
378
|
method_source (~> 1.0)
|
370
|
-
pry (0.14.
|
379
|
+
pry (0.14.1-java)
|
371
380
|
coderay (~> 1.1)
|
372
381
|
method_source (~> 1.0)
|
373
382
|
spoon (~> 0.0)
|
374
383
|
public_suffix (4.0.6)
|
375
|
-
puma (5.2
|
384
|
+
puma (5.3.2)
|
376
385
|
nio4r (~> 2.0)
|
377
|
-
puma (5.2
|
386
|
+
puma (5.3.2-java)
|
378
387
|
nio4r (~> 2.0)
|
379
388
|
racc (1.5.2)
|
380
389
|
racc (1.5.2-java)
|
381
390
|
rack (2.2.3)
|
382
391
|
rack-protection (2.1.0)
|
383
392
|
rack
|
384
|
-
rack-proxy (0.
|
393
|
+
rack-proxy (0.7.0)
|
385
394
|
rack
|
386
395
|
rack-test (1.1.0)
|
387
396
|
rack (>= 1.0, < 3)
|
388
|
-
rails (6.1.
|
389
|
-
actioncable (= 6.1.
|
390
|
-
actionmailbox (= 6.1.
|
391
|
-
actionmailer (= 6.1.
|
392
|
-
actionpack (= 6.1.
|
393
|
-
actiontext (= 6.1.
|
394
|
-
actionview (= 6.1.
|
395
|
-
activejob (= 6.1.
|
396
|
-
activemodel (= 6.1.
|
397
|
-
activerecord (= 6.1.
|
398
|
-
activestorage (= 6.1.
|
399
|
-
activesupport (= 6.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)
|
400
409
|
bundler (>= 1.15.0)
|
401
|
-
railties (= 6.1.
|
410
|
+
railties (= 6.1.4)
|
402
411
|
sprockets-rails (>= 2.0.0)
|
403
412
|
rails-dom-testing (2.0.3)
|
404
413
|
activesupport (>= 4.2.0)
|
405
414
|
nokogiri (>= 1.6)
|
406
415
|
rails-html-sanitizer (1.3.0)
|
407
416
|
loofah (~> 2.3)
|
408
|
-
railties (6.1.
|
409
|
-
actionpack (= 6.1.
|
410
|
-
activesupport (= 6.1.
|
417
|
+
railties (6.1.4)
|
418
|
+
actionpack (= 6.1.4)
|
419
|
+
activesupport (= 6.1.4)
|
411
420
|
method_source
|
412
|
-
rake (>= 0.
|
421
|
+
rake (>= 0.13)
|
413
422
|
thor (~> 1.0)
|
414
423
|
rainbow (3.0.0)
|
415
424
|
rake (13.0.3)
|
@@ -417,13 +426,13 @@ GEM
|
|
417
426
|
activerecord (>= 5.2.4)
|
418
427
|
activesupport (>= 5.2.4)
|
419
428
|
i18n
|
420
|
-
rb-fsevent (0.
|
429
|
+
rb-fsevent (0.11.0)
|
421
430
|
rb-inotify (0.10.1)
|
422
431
|
ffi (~> 1.0)
|
423
|
-
recaptcha (5.
|
432
|
+
recaptcha (5.8.0)
|
424
433
|
json
|
425
434
|
redcarpet (3.5.1)
|
426
|
-
redis (4.
|
435
|
+
redis (4.3.1)
|
427
436
|
regexp_parser (2.0.3)
|
428
437
|
request_store (1.5.0)
|
429
438
|
rack (>= 1.4)
|
@@ -453,7 +462,7 @@ GEM
|
|
453
462
|
http-cookie (>= 1.0.2, < 2.0)
|
454
463
|
mime-types (>= 1.16, < 4.0)
|
455
464
|
netrc (~> 0.8)
|
456
|
-
rexml (3.2.
|
465
|
+
rexml (3.2.5)
|
457
466
|
rouge (2.0.7)
|
458
467
|
rspec (3.10.0)
|
459
468
|
rspec-core (~> 3.10.0)
|
@@ -469,15 +478,16 @@ GEM
|
|
469
478
|
rspec-mocks (3.10.2)
|
470
479
|
diff-lcs (>= 1.2.0, < 2.0)
|
471
480
|
rspec-support (~> 3.10.0)
|
472
|
-
rspec-rails (
|
473
|
-
actionpack (>=
|
474
|
-
activesupport (>=
|
475
|
-
railties (>=
|
481
|
+
rspec-rails (5.0.1)
|
482
|
+
actionpack (>= 5.2)
|
483
|
+
activesupport (>= 5.2)
|
484
|
+
railties (>= 5.2)
|
476
485
|
rspec-core (~> 3.10)
|
477
486
|
rspec-expectations (~> 3.10)
|
478
487
|
rspec-mocks (~> 3.10)
|
479
488
|
rspec-support (~> 3.10)
|
480
|
-
rspec-snapshot (0.
|
489
|
+
rspec-snapshot (2.0.0)
|
490
|
+
awesome_print (> 1.0.0)
|
481
491
|
rspec (> 3.0.0)
|
482
492
|
rspec-support (3.10.2)
|
483
493
|
rubocop (1.10.0)
|
@@ -515,7 +525,7 @@ GEM
|
|
515
525
|
sawyer (0.8.2)
|
516
526
|
addressable (>= 2.3.5)
|
517
527
|
faraday (> 0.8, < 2.0)
|
518
|
-
semantic_range (
|
528
|
+
semantic_range (3.0.0)
|
519
529
|
shellany (0.0.1)
|
520
530
|
shotgun (0.9.2)
|
521
531
|
rack (>= 1.0)
|
@@ -532,7 +542,7 @@ GEM
|
|
532
542
|
rack-protection (= 2.1.0)
|
533
543
|
tilt (~> 2.0)
|
534
544
|
sixarm_ruby_unaccent (1.2.0)
|
535
|
-
slack-notifier (2.
|
545
|
+
slack-notifier (2.4.0)
|
536
546
|
smartling (2.0.3)
|
537
547
|
multi_json (~> 1.0)
|
538
548
|
oj (~> 3.0)
|
@@ -553,8 +563,8 @@ GEM
|
|
553
563
|
activesupport (>= 4.0)
|
554
564
|
sprockets (>= 3.0.0)
|
555
565
|
statsd-ruby (1.5.0)
|
556
|
-
terminal-table (3.0.
|
557
|
-
unicode-display_width (
|
566
|
+
terminal-table (3.0.1)
|
567
|
+
unicode-display_width (>= 1.1.1, < 3)
|
558
568
|
thor (1.1.0)
|
559
569
|
tilt (2.0.10)
|
560
570
|
titleize (1.4.1)
|
@@ -569,7 +579,7 @@ GEM
|
|
569
579
|
unf_ext
|
570
580
|
unf (0.1.4-java)
|
571
581
|
unf_ext (0.0.7.7)
|
572
|
-
unicode-display_width (
|
582
|
+
unicode-display_width (2.0.0)
|
573
583
|
unicode_utils (1.4.0)
|
574
584
|
warden (1.2.9)
|
575
585
|
rack (>= 2.0.9)
|
@@ -578,18 +588,18 @@ GEM
|
|
578
588
|
activemodel (>= 6.0.0)
|
579
589
|
bindex (>= 0.4.0)
|
580
590
|
railties (>= 6.0.0)
|
581
|
-
webmock (3.
|
591
|
+
webmock (3.13.0)
|
582
592
|
addressable (>= 2.3.6)
|
583
593
|
crack (>= 0.3.2)
|
584
594
|
hashdiff (>= 0.4.0, < 2.0.0)
|
585
|
-
webpacker (5.
|
595
|
+
webpacker (5.4.0)
|
586
596
|
activesupport (>= 5.2)
|
587
597
|
rack-proxy (>= 0.6.1)
|
588
598
|
railties (>= 5.2)
|
589
599
|
semantic_range (>= 2.3.0)
|
590
|
-
websocket-driver (0.7.
|
600
|
+
websocket-driver (0.7.5)
|
591
601
|
websocket-extensions (>= 0.1.0)
|
592
|
-
websocket-driver (0.7.
|
602
|
+
websocket-driver (0.7.5-java)
|
593
603
|
websocket-extensions (>= 0.1.0)
|
594
604
|
websocket-extensions (0.1.5)
|
595
605
|
woothee (1.11.1)
|
@@ -617,7 +627,7 @@ DEPENDENCIES
|
|
617
627
|
bugsnag
|
618
628
|
byebug
|
619
629
|
capybara
|
620
|
-
chartkick (
|
630
|
+
chartkick (~> 4.0)
|
621
631
|
coffee-rails (~> 5.0)
|
622
632
|
colorize
|
623
633
|
countries
|
@@ -625,8 +635,8 @@ DEPENDENCIES
|
|
625
635
|
devise (>= 4.6.0)
|
626
636
|
diffy
|
627
637
|
dotenv-rails
|
628
|
-
factory_bot_rails (= 6.
|
629
|
-
faker (= 2.
|
638
|
+
factory_bot_rails (= 6.2.0)
|
639
|
+
faker (= 2.18.0)
|
630
640
|
ffi (>= 1.9.24)
|
631
641
|
geocoder
|
632
642
|
gmaps4rails (= 2.1.2)
|
@@ -640,28 +650,28 @@ DEPENDENCIES
|
|
640
650
|
lograge
|
641
651
|
neatjson
|
642
652
|
newrelic_rpm
|
643
|
-
nexmo-oas-renderer (~> 2.
|
653
|
+
nexmo-oas-renderer (~> 2.7)
|
644
654
|
nexmo_markdown_renderer (~> 0.9)
|
645
|
-
nokogiri (
|
655
|
+
nokogiri (>= 1.11.4)
|
646
656
|
octokit
|
647
657
|
pg (~> 1.2)
|
648
658
|
pry
|
649
|
-
puma (
|
659
|
+
puma (>= 5.3.1)
|
650
660
|
rack (>= 2.0.6)
|
651
|
-
rails (~> 6.1.
|
661
|
+
rails (~> 6.1.4)
|
652
662
|
rawler!
|
653
663
|
recaptcha
|
654
664
|
redis
|
655
665
|
rest-client
|
656
666
|
rspec-collection_matchers
|
657
|
-
rspec-rails (~>
|
658
|
-
rspec-snapshot (~> 0.
|
667
|
+
rspec-rails (~> 5.0)
|
668
|
+
rspec-snapshot (~> 2.0.0)
|
659
669
|
rubocop (~> 1.10.0)
|
660
670
|
rubocop-rails (~> 2.9)
|
661
671
|
ruby-progressbar
|
662
672
|
sassc-rails (~> 2.1)
|
663
673
|
simplecov
|
664
|
-
slack-notifier (= 2.
|
674
|
+
slack-notifier (= 2.4.0)
|
665
675
|
smartling
|
666
676
|
split (~> 3.4.1)
|
667
677
|
terminal-table
|