station 0.0.114 → 0.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Dockerfile +1 -1
- data/lib/nexmo_developer/Gemfile +11 -11
- data/lib/nexmo_developer/Gemfile.lock +195 -128
- 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/services/orbit_feedback_notifier.rb +0 -3
- 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/views/layouts/partials/_sidenav_subitem.html.erb +3 -0
- 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 +470 -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 +39 -36
- data/station.gemspec +13 -13
- data/yarn.lock +1411 -1160
- metadata +76 -73
- 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: a2b88f57d6f356152df13117c918f30ae357e1b88bda64474ebde0515be51765
|
|
4
|
+
data.tar.gz: 9ab4179980dbbb1686f082edb6b9f8a55963a9c5c60db94bcb0ed7e143ba3a97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41ed8d9b1a2ccee93384820e0178e8c85726bd13e2898d57594dabbba2b0603b61c1bd7fcddfbdffb03b8ed75dc98a93e9cefdf6a194eca95cc01ffdc0514b3c
|
|
7
|
+
data.tar.gz: 58318472c01139f7529ee7a81feff027e4395996ddea01b352125a864eb3b25a6a7579d8efe7b5fb09a04fa00fea31ea06336e2e1632d98f7f102d571ec50b15
|
data/Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
FROM ruby:3.0.0-alpine AS build-env
|
|
2
2
|
ARG RAILS_ROOT=/station
|
|
3
3
|
ARG BUILD_PACKAGES="build-base curl-dev git bash"
|
|
4
|
-
ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn"
|
|
4
|
+
ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn shared-mime-info"
|
|
5
5
|
ARG RUBY_PACKAGES="tzdata"
|
|
6
6
|
ENV RAILS_ENV=production
|
|
7
7
|
ENV NODE_ENV=production
|
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'
|
|
@@ -87,7 +87,7 @@ gem 'woothee'
|
|
|
87
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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -7,48 +14,48 @@ GIT
|
|
|
7
14
|
|
|
8
15
|
GIT
|
|
9
16
|
remote: https://github.com/rails/actionpack-page_caching.git
|
|
10
|
-
revision:
|
|
17
|
+
revision: d929689748f09c5d7c73cefbd9326701dcf52a30
|
|
11
18
|
specs:
|
|
12
|
-
actionpack-page_caching (1.2.
|
|
13
|
-
actionpack (>=
|
|
19
|
+
actionpack-page_caching (1.2.4)
|
|
20
|
+
actionpack (>= 4.0.0)
|
|
14
21
|
|
|
15
22
|
GEM
|
|
16
23
|
remote: https://rubygems.org/
|
|
17
24
|
specs:
|
|
18
|
-
actioncable (6.1.
|
|
19
|
-
actionpack (= 6.1.
|
|
20
|
-
activesupport (= 6.1.
|
|
25
|
+
actioncable (6.1.4)
|
|
26
|
+
actionpack (= 6.1.4)
|
|
27
|
+
activesupport (= 6.1.4)
|
|
21
28
|
nio4r (~> 2.0)
|
|
22
29
|
websocket-driver (>= 0.6.1)
|
|
23
|
-
actionmailbox (6.1.
|
|
24
|
-
actionpack (= 6.1.
|
|
25
|
-
activejob (= 6.1.
|
|
26
|
-
activerecord (= 6.1.
|
|
27
|
-
activestorage (= 6.1.
|
|
28
|
-
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)
|
|
29
36
|
mail (>= 2.7.1)
|
|
30
|
-
actionmailer (6.1.
|
|
31
|
-
actionpack (= 6.1.
|
|
32
|
-
actionview (= 6.1.
|
|
33
|
-
activejob (= 6.1.
|
|
34
|
-
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)
|
|
35
42
|
mail (~> 2.5, >= 2.5.4)
|
|
36
43
|
rails-dom-testing (~> 2.0)
|
|
37
|
-
actionpack (6.1.
|
|
38
|
-
actionview (= 6.1.
|
|
39
|
-
activesupport (= 6.1.
|
|
44
|
+
actionpack (6.1.4)
|
|
45
|
+
actionview (= 6.1.4)
|
|
46
|
+
activesupport (= 6.1.4)
|
|
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.
|
|
45
|
-
actionpack (= 6.1.
|
|
46
|
-
activerecord (= 6.1.
|
|
47
|
-
activestorage (= 6.1.
|
|
48
|
-
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)
|
|
49
56
|
nokogiri (>= 1.8.5)
|
|
50
|
-
actionview (6.1.
|
|
51
|
-
activesupport (= 6.1.
|
|
57
|
+
actionview (6.1.4)
|
|
58
|
+
activesupport (= 6.1.4)
|
|
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.
|
|
66
|
-
activesupport (= 6.1.
|
|
72
|
+
activejob (6.1.4)
|
|
73
|
+
activesupport (= 6.1.4)
|
|
67
74
|
globalid (>= 0.3.6)
|
|
68
|
-
activemodel (6.1.
|
|
69
|
-
activesupport (= 6.1.
|
|
70
|
-
activerecord (6.1.
|
|
71
|
-
activemodel (= 6.1.
|
|
72
|
-
activesupport (= 6.1.
|
|
73
|
-
activestorage (6.1.
|
|
74
|
-
actionpack (= 6.1.
|
|
75
|
-
activejob (= 6.1.
|
|
76
|
-
activerecord (= 6.1.
|
|
77
|
-
activesupport (= 6.1.
|
|
78
|
-
marcel (~> 0.
|
|
79
|
-
|
|
80
|
-
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)
|
|
81
88
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
82
89
|
i18n (>= 1.6, < 2)
|
|
83
90
|
minitest (>= 5.1)
|
|
@@ -95,12 +102,13 @@ GEM
|
|
|
95
102
|
activesupport (>= 3.0.0, < 6.2)
|
|
96
103
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
|
97
104
|
ast (2.4.2)
|
|
98
|
-
awesome_print (1.
|
|
105
|
+
awesome_print (1.9.2)
|
|
99
106
|
banzai (0.1.3)
|
|
100
|
-
barnes (0.0.
|
|
107
|
+
barnes (0.0.9)
|
|
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,9 +116,9 @@ 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.7.
|
|
119
|
+
bootsnap (1.7.5)
|
|
112
120
|
msgpack (~> 1.0)
|
|
113
|
-
bugsnag (6.
|
|
121
|
+
bugsnag (6.21.0)
|
|
114
122
|
concurrent-ruby (~> 1.0)
|
|
115
123
|
builder (3.2.4)
|
|
116
124
|
byebug (11.1.3)
|
|
@@ -122,7 +130,7 @@ GEM
|
|
|
122
130
|
rack-test (>= 0.6.3)
|
|
123
131
|
regexp_parser (>= 1.5, < 3.0)
|
|
124
132
|
xpath (~> 3.2)
|
|
125
|
-
chartkick (
|
|
133
|
+
chartkick (4.0.4)
|
|
126
134
|
coderay (1.1.3)
|
|
127
135
|
coffee-rails (5.0.0)
|
|
128
136
|
coffee-script (>= 2.2.0)
|
|
@@ -132,9 +140,9 @@ GEM
|
|
|
132
140
|
execjs
|
|
133
141
|
coffee-script-source (1.12.2)
|
|
134
142
|
colorize (0.8.1)
|
|
135
|
-
concurrent-ruby (1.1.
|
|
136
|
-
countries (3.0
|
|
137
|
-
i18n_data (~> 0.
|
|
143
|
+
concurrent-ruby (1.1.9)
|
|
144
|
+
countries (3.1.0)
|
|
145
|
+
i18n_data (~> 0.11.0)
|
|
138
146
|
sixarm_ruby_unaccent (~> 1.1)
|
|
139
147
|
unicode_utils (~> 1.4)
|
|
140
148
|
country_select (4.0.0)
|
|
@@ -145,7 +153,7 @@ GEM
|
|
|
145
153
|
crass (1.0.6)
|
|
146
154
|
debug_inspector (1.0.0)
|
|
147
155
|
deep_merge (1.2.1)
|
|
148
|
-
devise (4.
|
|
156
|
+
devise (4.8.0)
|
|
149
157
|
bcrypt (~> 3.0)
|
|
150
158
|
orm_adapter (~> 0.1)
|
|
151
159
|
railties (>= 4.1.0)
|
|
@@ -165,29 +173,42 @@ 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
|
-
factory_bot (6.
|
|
180
|
+
factory_bot (6.2.0)
|
|
170
181
|
activesupport (>= 5.0.0)
|
|
171
|
-
factory_bot_rails (6.
|
|
172
|
-
factory_bot (~> 6.
|
|
182
|
+
factory_bot_rails (6.2.0)
|
|
183
|
+
factory_bot (~> 6.2.0)
|
|
173
184
|
railties (>= 5.0.0)
|
|
174
|
-
faker (2.
|
|
185
|
+
faker (2.18.0)
|
|
175
186
|
i18n (>= 1.6, < 2)
|
|
176
|
-
faraday (1.
|
|
187
|
+
faraday (1.4.2)
|
|
188
|
+
faraday-em_http (~> 1.0)
|
|
189
|
+
faraday-em_synchrony (~> 1.0)
|
|
190
|
+
faraday-excon (~> 1.1)
|
|
177
191
|
faraday-net_http (~> 1.0)
|
|
192
|
+
faraday-net_http_persistent (~> 1.1)
|
|
178
193
|
multipart-post (>= 1.2, < 3)
|
|
179
|
-
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)
|
|
180
198
|
faraday-net_http (1.0.1)
|
|
181
|
-
|
|
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)
|
|
182
204
|
formatador (0.2.5)
|
|
183
205
|
formtastic (4.0.0)
|
|
184
206
|
actionpack (>= 5.2.0)
|
|
185
207
|
formtastic_i18n (0.6.0)
|
|
186
|
-
geocoder (1.6.
|
|
208
|
+
geocoder (1.6.7)
|
|
187
209
|
globalid (0.4.2)
|
|
188
210
|
activesupport (>= 4.2.0)
|
|
189
211
|
gmaps4rails (2.1.2)
|
|
190
|
-
gravatar_image_tag (1.2.0)
|
|
191
212
|
greenhouse_io (2.5.0)
|
|
192
213
|
httmultiparty (~> 0.3.16)
|
|
193
214
|
groupdate (5.2.2)
|
|
@@ -226,14 +247,15 @@ GEM
|
|
|
226
247
|
http-cookie (1.0.3)
|
|
227
248
|
domain_name (~> 0.5)
|
|
228
249
|
http_parser.rb (0.6.0)
|
|
250
|
+
http_parser.rb (0.6.0-java)
|
|
229
251
|
httparty (0.18.1)
|
|
230
252
|
mime-types (~> 3.0)
|
|
231
253
|
multi_xml (>= 0.5.2)
|
|
232
254
|
httpclient (2.8.3)
|
|
233
|
-
i18n (1.8.
|
|
255
|
+
i18n (1.8.10)
|
|
234
256
|
concurrent-ruby (~> 1.0)
|
|
235
|
-
i18n_data (0.
|
|
236
|
-
icalendar (2.7.
|
|
257
|
+
i18n_data (0.11.0)
|
|
258
|
+
icalendar (2.7.1)
|
|
237
259
|
ice_cube (~> 0.16)
|
|
238
260
|
ice_cube (0.16.3)
|
|
239
261
|
inherited_resources (1.12.0)
|
|
@@ -248,6 +270,7 @@ GEM
|
|
|
248
270
|
railties (>= 4.2.0)
|
|
249
271
|
thor (>= 0.14, < 2.0)
|
|
250
272
|
json (2.5.1)
|
|
273
|
+
json (2.5.1-java)
|
|
251
274
|
kaminari (1.2.1)
|
|
252
275
|
activesupport (>= 4.1.0)
|
|
253
276
|
kaminari-actionview (= 1.2.1)
|
|
@@ -268,23 +291,25 @@ GEM
|
|
|
268
291
|
activesupport (>= 4)
|
|
269
292
|
railties (>= 4)
|
|
270
293
|
request_store (~> 1.0)
|
|
271
|
-
loofah (2.
|
|
294
|
+
loofah (2.10.0)
|
|
272
295
|
crass (~> 1.0.2)
|
|
273
296
|
nokogiri (>= 1.5.9)
|
|
274
297
|
lumberjack (1.2.8)
|
|
275
298
|
mail (2.7.1)
|
|
276
299
|
mini_mime (>= 0.1.1)
|
|
277
|
-
marcel (0.
|
|
278
|
-
mimemagic (~> 0.3.2)
|
|
300
|
+
marcel (1.0.1)
|
|
279
301
|
method_source (1.0.0)
|
|
280
302
|
mime-types (3.3.1)
|
|
281
303
|
mime-types-data (~> 3.2015)
|
|
282
304
|
mime-types-data (3.2021.0212)
|
|
283
|
-
mimemagic (0.3
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
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)
|
|
287
311
|
msgpack (1.4.2)
|
|
312
|
+
msgpack (1.4.2-java)
|
|
288
313
|
multi_json (1.15.0)
|
|
289
314
|
multi_xml (0.6.0)
|
|
290
315
|
multipart-post (2.1.1)
|
|
@@ -296,20 +321,20 @@ GEM
|
|
|
296
321
|
neatjson (0.9)
|
|
297
322
|
nenv (0.3.0)
|
|
298
323
|
netrc (0.11.0)
|
|
299
|
-
newrelic_rpm (
|
|
300
|
-
nexmo-oas-renderer (2.
|
|
301
|
-
activemodel (~> 6.
|
|
302
|
-
activesupport (~> 6.
|
|
324
|
+
newrelic_rpm (7.1.0)
|
|
325
|
+
nexmo-oas-renderer (2.7.2)
|
|
326
|
+
activemodel (~> 6.1)
|
|
327
|
+
activesupport (~> 6.1)
|
|
303
328
|
banzai (~> 0.1.2)
|
|
304
329
|
dotenv (~> 2.7)
|
|
305
330
|
neatjson (~> 0.8)
|
|
306
331
|
nexmo_markdown_renderer (~> 0.8)
|
|
307
|
-
oas_parser (~> 0.25.
|
|
332
|
+
oas_parser (~> 0.25.4)
|
|
308
333
|
redcarpet (= 3.5.1)
|
|
309
334
|
sass (~> 3.1)
|
|
310
335
|
shotgun (~> 0.9)
|
|
311
336
|
sinatra (~> 2.0)
|
|
312
|
-
nexmo_markdown_renderer (0.9.
|
|
337
|
+
nexmo_markdown_renderer (0.9.1)
|
|
313
338
|
actionview (~> 6.0)
|
|
314
339
|
activemodel (~> 6.0)
|
|
315
340
|
banzai (~> 0.1.2)
|
|
@@ -317,14 +342,21 @@ GEM
|
|
|
317
342
|
nokogiri (~> 1.10)
|
|
318
343
|
redcarpet (~> 3.4)
|
|
319
344
|
rouge (~> 2.0.7)
|
|
320
|
-
nio4r (2.5.
|
|
321
|
-
|
|
345
|
+
nio4r (2.5.7)
|
|
346
|
+
nio4r (2.5.7-java)
|
|
347
|
+
nokogiri (1.11.7)
|
|
322
348
|
mini_portile2 (~> 2.5.0)
|
|
323
349
|
racc (~> 1.4)
|
|
350
|
+
nokogiri (1.11.7-java)
|
|
351
|
+
racc (~> 1.4)
|
|
352
|
+
nokogiri (1.11.7-x64-mingw32)
|
|
353
|
+
racc (~> 1.4)
|
|
354
|
+
nokogiri (1.11.7-x86-mingw32)
|
|
355
|
+
racc (~> 1.4)
|
|
324
356
|
notiffany (0.1.3)
|
|
325
357
|
nenv (~> 0.1)
|
|
326
358
|
shellany (~> 0.0)
|
|
327
|
-
oas_parser (0.25.
|
|
359
|
+
oas_parser (0.25.4)
|
|
328
360
|
activesupport (>= 4.0.0)
|
|
329
361
|
addressable (~> 2.3)
|
|
330
362
|
builder (~> 3.2.3)
|
|
@@ -332,7 +364,7 @@ GEM
|
|
|
332
364
|
hash-deep-merge
|
|
333
365
|
mustermann-contrib (~> 1.1.1)
|
|
334
366
|
nokogiri
|
|
335
|
-
octokit (4.
|
|
367
|
+
octokit (4.21.0)
|
|
336
368
|
faraday (>= 0.9)
|
|
337
369
|
sawyer (~> 0.8.0, >= 0.5.3)
|
|
338
370
|
oj (3.11.2)
|
|
@@ -341,45 +373,52 @@ GEM
|
|
|
341
373
|
parser (3.0.0.0)
|
|
342
374
|
ast (~> 2.4.1)
|
|
343
375
|
pg (1.2.3)
|
|
344
|
-
pry (0.14.
|
|
376
|
+
pry (0.14.1)
|
|
377
|
+
coderay (~> 1.1)
|
|
378
|
+
method_source (~> 1.0)
|
|
379
|
+
pry (0.14.1-java)
|
|
345
380
|
coderay (~> 1.1)
|
|
346
381
|
method_source (~> 1.0)
|
|
382
|
+
spoon (~> 0.0)
|
|
347
383
|
public_suffix (4.0.6)
|
|
348
|
-
puma (5.2
|
|
384
|
+
puma (5.3.2)
|
|
385
|
+
nio4r (~> 2.0)
|
|
386
|
+
puma (5.3.2-java)
|
|
349
387
|
nio4r (~> 2.0)
|
|
350
388
|
racc (1.5.2)
|
|
389
|
+
racc (1.5.2-java)
|
|
351
390
|
rack (2.2.3)
|
|
352
391
|
rack-protection (2.1.0)
|
|
353
392
|
rack
|
|
354
|
-
rack-proxy (0.
|
|
393
|
+
rack-proxy (0.7.0)
|
|
355
394
|
rack
|
|
356
395
|
rack-test (1.1.0)
|
|
357
396
|
rack (>= 1.0, < 3)
|
|
358
|
-
rails (6.1.
|
|
359
|
-
actioncable (= 6.1.
|
|
360
|
-
actionmailbox (= 6.1.
|
|
361
|
-
actionmailer (= 6.1.
|
|
362
|
-
actionpack (= 6.1.
|
|
363
|
-
actiontext (= 6.1.
|
|
364
|
-
actionview (= 6.1.
|
|
365
|
-
activejob (= 6.1.
|
|
366
|
-
activemodel (= 6.1.
|
|
367
|
-
activerecord (= 6.1.
|
|
368
|
-
activestorage (= 6.1.
|
|
369
|
-
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)
|
|
370
409
|
bundler (>= 1.15.0)
|
|
371
|
-
railties (= 6.1.
|
|
410
|
+
railties (= 6.1.4)
|
|
372
411
|
sprockets-rails (>= 2.0.0)
|
|
373
412
|
rails-dom-testing (2.0.3)
|
|
374
413
|
activesupport (>= 4.2.0)
|
|
375
414
|
nokogiri (>= 1.6)
|
|
376
415
|
rails-html-sanitizer (1.3.0)
|
|
377
416
|
loofah (~> 2.3)
|
|
378
|
-
railties (6.1.
|
|
379
|
-
actionpack (= 6.1.
|
|
380
|
-
activesupport (= 6.1.
|
|
417
|
+
railties (6.1.4)
|
|
418
|
+
actionpack (= 6.1.4)
|
|
419
|
+
activesupport (= 6.1.4)
|
|
381
420
|
method_source
|
|
382
|
-
rake (>= 0.
|
|
421
|
+
rake (>= 0.13)
|
|
383
422
|
thor (~> 1.0)
|
|
384
423
|
rainbow (3.0.0)
|
|
385
424
|
rake (13.0.3)
|
|
@@ -387,13 +426,13 @@ GEM
|
|
|
387
426
|
activerecord (>= 5.2.4)
|
|
388
427
|
activesupport (>= 5.2.4)
|
|
389
428
|
i18n
|
|
390
|
-
rb-fsevent (0.
|
|
429
|
+
rb-fsevent (0.11.0)
|
|
391
430
|
rb-inotify (0.10.1)
|
|
392
431
|
ffi (~> 1.0)
|
|
393
|
-
recaptcha (5.
|
|
432
|
+
recaptcha (5.8.0)
|
|
394
433
|
json
|
|
395
434
|
redcarpet (3.5.1)
|
|
396
|
-
redis (4.
|
|
435
|
+
redis (4.3.1)
|
|
397
436
|
regexp_parser (2.0.3)
|
|
398
437
|
request_store (1.5.0)
|
|
399
438
|
rack (>= 1.4)
|
|
@@ -405,7 +444,25 @@ GEM
|
|
|
405
444
|
http-cookie (>= 1.0.2, < 2.0)
|
|
406
445
|
mime-types (>= 1.16, < 4.0)
|
|
407
446
|
netrc (~> 0.8)
|
|
408
|
-
|
|
447
|
+
rest-client (2.1.0-x64-mingw32)
|
|
448
|
+
ffi (~> 1.9)
|
|
449
|
+
http-accept (>= 1.7.0, < 2.0)
|
|
450
|
+
http-cookie (>= 1.0.2, < 2.0)
|
|
451
|
+
mime-types (>= 1.16, < 4.0)
|
|
452
|
+
netrc (~> 0.8)
|
|
453
|
+
rest-client (2.1.0-x86-mingw32)
|
|
454
|
+
ffi (~> 1.9)
|
|
455
|
+
http-accept (>= 1.7.0, < 2.0)
|
|
456
|
+
http-cookie (>= 1.0.2, < 2.0)
|
|
457
|
+
mime-types (>= 1.16, < 4.0)
|
|
458
|
+
netrc (~> 0.8)
|
|
459
|
+
rest-client (2.1.0-x86-mswin32)
|
|
460
|
+
ffi (~> 1.9)
|
|
461
|
+
http-accept (>= 1.7.0, < 2.0)
|
|
462
|
+
http-cookie (>= 1.0.2, < 2.0)
|
|
463
|
+
mime-types (>= 1.16, < 4.0)
|
|
464
|
+
netrc (~> 0.8)
|
|
465
|
+
rexml (3.2.5)
|
|
409
466
|
rouge (2.0.7)
|
|
410
467
|
rspec (3.10.0)
|
|
411
468
|
rspec-core (~> 3.10.0)
|
|
@@ -421,15 +478,16 @@ GEM
|
|
|
421
478
|
rspec-mocks (3.10.2)
|
|
422
479
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
423
480
|
rspec-support (~> 3.10.0)
|
|
424
|
-
rspec-rails (
|
|
425
|
-
actionpack (>=
|
|
426
|
-
activesupport (>=
|
|
427
|
-
railties (>=
|
|
481
|
+
rspec-rails (5.0.1)
|
|
482
|
+
actionpack (>= 5.2)
|
|
483
|
+
activesupport (>= 5.2)
|
|
484
|
+
railties (>= 5.2)
|
|
428
485
|
rspec-core (~> 3.10)
|
|
429
486
|
rspec-expectations (~> 3.10)
|
|
430
487
|
rspec-mocks (~> 3.10)
|
|
431
488
|
rspec-support (~> 3.10)
|
|
432
|
-
rspec-snapshot (0.
|
|
489
|
+
rspec-snapshot (2.0.0)
|
|
490
|
+
awesome_print (> 1.0.0)
|
|
433
491
|
rspec (> 3.0.0)
|
|
434
492
|
rspec-support (3.10.2)
|
|
435
493
|
rubocop (1.10.0)
|
|
@@ -456,6 +514,8 @@ GEM
|
|
|
456
514
|
rb-inotify (~> 0.9, >= 0.9.7)
|
|
457
515
|
sassc (2.4.0)
|
|
458
516
|
ffi (~> 1.9)
|
|
517
|
+
sassc (2.4.0-x64-mingw32)
|
|
518
|
+
ffi (~> 1.9)
|
|
459
519
|
sassc-rails (2.1.2)
|
|
460
520
|
railties (>= 4.0.0)
|
|
461
521
|
sassc (>= 2.0)
|
|
@@ -465,7 +525,7 @@ GEM
|
|
|
465
525
|
sawyer (0.8.2)
|
|
466
526
|
addressable (>= 2.3.5)
|
|
467
527
|
faraday (> 0.8, < 2.0)
|
|
468
|
-
semantic_range (
|
|
528
|
+
semantic_range (3.0.0)
|
|
469
529
|
shellany (0.0.1)
|
|
470
530
|
shotgun (0.9.2)
|
|
471
531
|
rack (>= 1.0)
|
|
@@ -482,7 +542,7 @@ GEM
|
|
|
482
542
|
rack-protection (= 2.1.0)
|
|
483
543
|
tilt (~> 2.0)
|
|
484
544
|
sixarm_ruby_unaccent (1.2.0)
|
|
485
|
-
slack-notifier (2.
|
|
545
|
+
slack-notifier (2.4.0)
|
|
486
546
|
smartling (2.0.3)
|
|
487
547
|
multi_json (~> 1.0)
|
|
488
548
|
oj (~> 3.0)
|
|
@@ -493,6 +553,8 @@ GEM
|
|
|
493
553
|
redis (>= 2.1)
|
|
494
554
|
simple-random (>= 0.9.3)
|
|
495
555
|
sinatra (>= 1.2.6)
|
|
556
|
+
spoon (0.0.6)
|
|
557
|
+
ffi
|
|
496
558
|
sprockets (4.0.2)
|
|
497
559
|
concurrent-ruby (~> 1.0)
|
|
498
560
|
rack (> 1, < 3)
|
|
@@ -501,8 +563,8 @@ GEM
|
|
|
501
563
|
activesupport (>= 4.0)
|
|
502
564
|
sprockets (>= 3.0.0)
|
|
503
565
|
statsd-ruby (1.5.0)
|
|
504
|
-
terminal-table (3.0.
|
|
505
|
-
unicode-display_width (
|
|
566
|
+
terminal-table (3.0.1)
|
|
567
|
+
unicode-display_width (>= 1.1.1, < 3)
|
|
506
568
|
thor (1.1.0)
|
|
507
569
|
tilt (2.0.10)
|
|
508
570
|
titleize (1.4.1)
|
|
@@ -511,10 +573,13 @@ GEM
|
|
|
511
573
|
nokogiri (>= 1.7.0, <= 2.0)
|
|
512
574
|
tzinfo (2.0.4)
|
|
513
575
|
concurrent-ruby (~> 1.0)
|
|
576
|
+
tzinfo-data (1.2021.1)
|
|
577
|
+
tzinfo (>= 1.0.0)
|
|
514
578
|
unf (0.1.4)
|
|
515
579
|
unf_ext
|
|
580
|
+
unf (0.1.4-java)
|
|
516
581
|
unf_ext (0.0.7.7)
|
|
517
|
-
unicode-display_width (
|
|
582
|
+
unicode-display_width (2.0.0)
|
|
518
583
|
unicode_utils (1.4.0)
|
|
519
584
|
warden (1.2.9)
|
|
520
585
|
rack (>= 2.0.9)
|
|
@@ -523,16 +588,18 @@ GEM
|
|
|
523
588
|
activemodel (>= 6.0.0)
|
|
524
589
|
bindex (>= 0.4.0)
|
|
525
590
|
railties (>= 6.0.0)
|
|
526
|
-
webmock (3.
|
|
591
|
+
webmock (3.13.0)
|
|
527
592
|
addressable (>= 2.3.6)
|
|
528
593
|
crack (>= 0.3.2)
|
|
529
594
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
530
|
-
webpacker (5.
|
|
595
|
+
webpacker (5.4.0)
|
|
531
596
|
activesupport (>= 5.2)
|
|
532
597
|
rack-proxy (>= 0.6.1)
|
|
533
598
|
railties (>= 5.2)
|
|
534
599
|
semantic_range (>= 2.3.0)
|
|
535
|
-
websocket-driver (0.7.
|
|
600
|
+
websocket-driver (0.7.5)
|
|
601
|
+
websocket-extensions (>= 0.1.0)
|
|
602
|
+
websocket-driver (0.7.5-java)
|
|
536
603
|
websocket-extensions (>= 0.1.0)
|
|
537
604
|
websocket-extensions (0.1.5)
|
|
538
605
|
woothee (1.11.1)
|
|
@@ -560,7 +627,7 @@ DEPENDENCIES
|
|
|
560
627
|
bugsnag
|
|
561
628
|
byebug
|
|
562
629
|
capybara
|
|
563
|
-
chartkick (
|
|
630
|
+
chartkick (~> 4.0)
|
|
564
631
|
coffee-rails (~> 5.0)
|
|
565
632
|
colorize
|
|
566
633
|
countries
|
|
@@ -568,12 +635,12 @@ DEPENDENCIES
|
|
|
568
635
|
devise (>= 4.6.0)
|
|
569
636
|
diffy
|
|
570
637
|
dotenv-rails
|
|
571
|
-
factory_bot_rails (= 6.
|
|
572
|
-
faker (= 2.
|
|
638
|
+
factory_bot_rails (= 6.2.0)
|
|
639
|
+
faker (= 2.18.0)
|
|
573
640
|
ffi (>= 1.9.24)
|
|
574
641
|
geocoder
|
|
575
642
|
gmaps4rails (= 2.1.2)
|
|
576
|
-
gravatar_image_tag
|
|
643
|
+
gravatar_image_tag!
|
|
577
644
|
greenhouse_io
|
|
578
645
|
groupdate (= 5.2.2)
|
|
579
646
|
guard-livereload (~> 2.5)
|
|
@@ -583,28 +650,28 @@ DEPENDENCIES
|
|
|
583
650
|
lograge
|
|
584
651
|
neatjson
|
|
585
652
|
newrelic_rpm
|
|
586
|
-
nexmo-oas-renderer (~> 2.
|
|
653
|
+
nexmo-oas-renderer (~> 2.7)
|
|
587
654
|
nexmo_markdown_renderer (~> 0.9)
|
|
588
|
-
nokogiri (
|
|
655
|
+
nokogiri (>= 1.11.4)
|
|
589
656
|
octokit
|
|
590
657
|
pg (~> 1.2)
|
|
591
658
|
pry
|
|
592
|
-
puma (
|
|
659
|
+
puma (>= 5.3.1)
|
|
593
660
|
rack (>= 2.0.6)
|
|
594
|
-
rails (~> 6.1.
|
|
661
|
+
rails (~> 6.1.4)
|
|
595
662
|
rawler!
|
|
596
663
|
recaptcha
|
|
597
664
|
redis
|
|
598
665
|
rest-client
|
|
599
666
|
rspec-collection_matchers
|
|
600
|
-
rspec-rails (~>
|
|
601
|
-
rspec-snapshot (~> 0.
|
|
667
|
+
rspec-rails (~> 5.0)
|
|
668
|
+
rspec-snapshot (~> 2.0.0)
|
|
602
669
|
rubocop (~> 1.10.0)
|
|
603
670
|
rubocop-rails (~> 2.9)
|
|
604
671
|
ruby-progressbar
|
|
605
672
|
sassc-rails (~> 2.1)
|
|
606
673
|
simplecov
|
|
607
|
-
slack-notifier (= 2.
|
|
674
|
+
slack-notifier (= 2.4.0)
|
|
608
675
|
smartling
|
|
609
676
|
split (~> 3.4.1)
|
|
610
677
|
terminal-table
|