station 0.0.107 → 0.0.108
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/bin/nexmo-developer +7 -0
- data/lib/nexmo_developer/Gemfile +7 -8
- data/lib/nexmo_developer/Gemfile.lock +127 -124
- data/lib/nexmo_developer/app/controllers/static_controller.rb +0 -10
- data/lib/nexmo_developer/app/models/tutorial.rb +10 -12
- data/lib/nexmo_developer/app/models/tutorial/prerequisite.rb +3 -1
- data/lib/nexmo_developer/app/models/tutorial/task.rb +24 -11
- data/lib/nexmo_developer/app/services/translator/files_list_coordinator.rb +90 -0
- data/lib/nexmo_developer/app/views/admin/feedbacks/_steps.html.erb +1 -1
- data/lib/nexmo_developer/app/views/static/_products.html.erb +14 -11
- data/lib/nexmo_developer/app/views/static/landing.html.erb +8 -8
- data/lib/nexmo_developer/app/webpacker/javascript/volta/volta.js +1 -1
- data/lib/nexmo_developer/lib/tasks/smartling.rake +7 -0
- data/lib/nexmo_developer/version.rb +1 -1
- data/package.json +13 -13
- data/station.gemspec +5 -5
- data/yarn.lock +173 -150
- metadata +23 -28
- data/lib/nexmo_developer/app/views/slack/join.html.erb +0 -25
- data/lib/nexmo_developer/app/views/static/_community.html.erb +0 -24
- data/lib/nexmo_developer/app/views/static/_dotnet.html.erb +0 -26
- data/lib/nexmo_developer/app/views/static/_slack.html.erb +0 -2
- data/lib/nexmo_developer/app/views/static/_xwithy.html.erb +0 -33
- data/lib/nexmo_developer/app/views/static/podcast.html.erb +0 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1502ca376c40add3a4e6de7fd88e803ffb638243514146a8df886f4dfc779080
|
4
|
+
data.tar.gz: 0fe458b13d269d56b0823ca6965932d85bfc87df3b95f9b47971d2f3d534f0e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74342d5c27457510ea0f0828c1308e9e5b78906216cf45bd2eb93fab89fa5319831d6ce931b86f7e4fb14adf33904d903f1910e54ffc1e3dad2599d256ad3110
|
7
|
+
data.tar.gz: 21646a23f3ed00f4a07987044e79f93e6814e57519a783a0cbd199ede21616816b96eb485af7b73a0873bea3b395acf35b7e8ea3f05518fc3d24ae82f6ca0b2a
|
data/bin/nexmo-developer
CHANGED
@@ -6,6 +6,7 @@ rake_ci = false
|
|
6
6
|
run_migrations = false
|
7
7
|
rake_smartling_download = false
|
8
8
|
rake_smartling_upload = false
|
9
|
+
rake_check_docs_changes = false
|
9
10
|
|
10
11
|
options = {}
|
11
12
|
docs_path = OptionParser.new do |opts|
|
@@ -39,6 +40,9 @@ docs_path = OptionParser.new do |opts|
|
|
39
40
|
opts.on("--rake-smartling-upload", "Runs Smartling upload process") do
|
40
41
|
rake_smartling_upload = true
|
41
42
|
end
|
43
|
+
opts.on("--rake-check-docs-changes", "Checks docs files for changes") do
|
44
|
+
rake_check_docs_changes = true
|
45
|
+
end
|
42
46
|
end.parse!
|
43
47
|
|
44
48
|
$LOAD_PATH.unshift(File.expand_path('../lib/nexmo_developer', __dir__))
|
@@ -72,6 +76,9 @@ elsif rake_smartling_upload
|
|
72
76
|
|
73
77
|
frequency, *paths = ARGV
|
74
78
|
Rails::Command.invoke 'runner', ["Rake::Task['smartling:upload'].invoke(#{paths}, #{frequency})"]
|
79
|
+
elsif rake_check_docs_changes
|
80
|
+
days = ARGV
|
81
|
+
Rails::Command.invoke 'runner', ["Rake::Task['smartling:check_docs_changes'].invoke(#{days})"]
|
75
82
|
else
|
76
83
|
Rails::Command.invoke 'server'
|
77
84
|
end
|
data/lib/nexmo_developer/Gemfile
CHANGED
@@ -7,7 +7,7 @@ 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.
|
10
|
+
gem 'rails', '~> 6.1.1'
|
11
11
|
gem 'webpacker'
|
12
12
|
|
13
13
|
# Use postgresql as the database for Active Record
|
@@ -44,7 +44,7 @@ gem 'gmaps4rails'
|
|
44
44
|
# gem 'capistrano-rails', group: :development
|
45
45
|
|
46
46
|
# 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.
|
47
|
-
gem 'nokogiri', '~> 1.
|
47
|
+
gem 'nokogiri', '~> 1.11.1'
|
48
48
|
|
49
49
|
# Autoload dotenv in Rails.
|
50
50
|
gem 'dotenv-rails', groups: %i[development test]
|
@@ -83,7 +83,7 @@ gem 'factory_bot_rails', '6.1.0', require: false
|
|
83
83
|
gem 'slack-notifier', '2.3.2'
|
84
84
|
|
85
85
|
# The administration framework for Ruby on Rails.
|
86
|
-
gem 'activeadmin', '~> 2.
|
86
|
+
gem 'activeadmin', '~> 2.9'
|
87
87
|
|
88
88
|
# Flexible authentication solution for Rails with Warden
|
89
89
|
gem 'devise', '>= 4.6.0'
|
@@ -110,7 +110,7 @@ gem 'bootsnap', require: false
|
|
110
110
|
gem 'diffy', require: false
|
111
111
|
|
112
112
|
# Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.
|
113
|
-
gem 'rubocop', '~> 1.
|
113
|
+
gem 'rubocop', '~> 1.8.1', require: false
|
114
114
|
gem 'rubocop-rails', '~> 2.9', require: false
|
115
115
|
|
116
116
|
# Volta needs a CSS autoprefixer
|
@@ -129,10 +129,9 @@ gem 'lograge'
|
|
129
129
|
gem 'countries'
|
130
130
|
gem 'country_select', '~> 4.0'
|
131
131
|
|
132
|
-
gem 'nexmo-oas-renderer', '~> 2.
|
133
|
-
|
134
|
-
gem 'nexmo_markdown_renderer', '~> 0.7.3'
|
132
|
+
gem 'nexmo-oas-renderer', '~> 2.5.0', require: false
|
135
133
|
|
134
|
+
gem 'nexmo_markdown_renderer', '~> 0.7.5'
|
136
135
|
gem 'smartling'
|
137
136
|
|
138
137
|
gem 'newrelic_rpm'
|
@@ -166,7 +165,7 @@ end
|
|
166
165
|
|
167
166
|
group :development do
|
168
167
|
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
169
|
-
gem 'listen', '~> 3.
|
168
|
+
gem 'listen', '~> 3.4'
|
170
169
|
gem 'web-console', '>= 3.3.0'
|
171
170
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
172
171
|
gem 'guard-livereload', '~> 2.5', require: false
|
@@ -15,72 +15,74 @@ GIT
|
|
15
15
|
GEM
|
16
16
|
remote: https://rubygems.org/
|
17
17
|
specs:
|
18
|
-
actioncable (6.
|
19
|
-
actionpack (= 6.
|
18
|
+
actioncable (6.1.1)
|
19
|
+
actionpack (= 6.1.1)
|
20
|
+
activesupport (= 6.1.1)
|
20
21
|
nio4r (~> 2.0)
|
21
22
|
websocket-driver (>= 0.6.1)
|
22
|
-
actionmailbox (6.
|
23
|
-
actionpack (= 6.
|
24
|
-
activejob (= 6.
|
25
|
-
activerecord (= 6.
|
26
|
-
activestorage (= 6.
|
27
|
-
activesupport (= 6.
|
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)
|
28
29
|
mail (>= 2.7.1)
|
29
|
-
actionmailer (6.
|
30
|
-
actionpack (= 6.
|
31
|
-
actionview (= 6.
|
32
|
-
activejob (= 6.
|
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)
|
33
35
|
mail (~> 2.5, >= 2.5.4)
|
34
36
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (6.
|
36
|
-
actionview (= 6.
|
37
|
-
activesupport (= 6.
|
38
|
-
rack (~> 2.0, >= 2.0.
|
37
|
+
actionpack (6.1.1)
|
38
|
+
actionview (= 6.1.1)
|
39
|
+
activesupport (= 6.1.1)
|
40
|
+
rack (~> 2.0, >= 2.0.9)
|
39
41
|
rack-test (>= 0.6.3)
|
40
42
|
rails-dom-testing (~> 2.0)
|
41
43
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (6.
|
43
|
-
actionpack (= 6.
|
44
|
-
activerecord (= 6.
|
45
|
-
activestorage (= 6.
|
46
|
-
activesupport (= 6.
|
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)
|
47
49
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (6.
|
49
|
-
activesupport (= 6.
|
50
|
+
actionview (6.1.1)
|
51
|
+
activesupport (= 6.1.1)
|
50
52
|
builder (~> 3.1)
|
51
53
|
erubi (~> 1.4)
|
52
54
|
rails-dom-testing (~> 2.0)
|
53
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
-
activeadmin (2.
|
56
|
+
activeadmin (2.9.0)
|
55
57
|
arbre (~> 1.2, >= 1.2.1)
|
56
58
|
formtastic (>= 3.1, < 5.0)
|
57
59
|
formtastic_i18n (~> 0.4)
|
58
60
|
inherited_resources (~> 1.7)
|
59
61
|
jquery-rails (~> 4.2)
|
60
62
|
kaminari (~> 1.0, >= 1.2.1)
|
61
|
-
railties (>= 5.2, < 6.
|
63
|
+
railties (>= 5.2, < 6.2)
|
62
64
|
ransack (~> 2.1, >= 2.1.1)
|
63
|
-
|
64
|
-
|
65
|
-
activejob (6.0.3.4)
|
66
|
-
activesupport (= 6.0.3.4)
|
65
|
+
activejob (6.1.1)
|
66
|
+
activesupport (= 6.1.1)
|
67
67
|
globalid (>= 0.3.6)
|
68
|
-
activemodel (6.
|
69
|
-
activesupport (= 6.
|
70
|
-
activerecord (6.
|
71
|
-
activemodel (= 6.
|
72
|
-
activesupport (= 6.
|
73
|
-
activestorage (6.
|
74
|
-
actionpack (= 6.
|
75
|
-
activejob (= 6.
|
76
|
-
activerecord (= 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)
|
77
78
|
marcel (~> 0.3.1)
|
78
|
-
|
79
|
+
mimemagic (~> 0.3.2)
|
80
|
+
activesupport (6.1.1)
|
79
81
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
80
|
-
i18n (>=
|
81
|
-
minitest (
|
82
|
-
tzinfo (~>
|
83
|
-
zeitwerk (~> 2.
|
82
|
+
i18n (>= 1.6, < 2)
|
83
|
+
minitest (>= 5.1)
|
84
|
+
tzinfo (~> 2.0)
|
85
|
+
zeitwerk (~> 2.3)
|
84
86
|
addressable (2.7.0)
|
85
87
|
public_suffix (>= 2.0.2, < 5.0)
|
86
88
|
algoliasearch (1.27.5)
|
@@ -89,11 +91,11 @@ GEM
|
|
89
91
|
apparition (0.6.0)
|
90
92
|
capybara (~> 3.13, < 4)
|
91
93
|
websocket-driver (>= 0.6.5)
|
92
|
-
arbre (1.
|
93
|
-
activesupport (>= 3.0.0, < 6.
|
94
|
+
arbre (1.4.0)
|
95
|
+
activesupport (>= 3.0.0, < 6.2)
|
94
96
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
95
97
|
ast (2.4.1)
|
96
|
-
autoprefixer-rails (10.
|
98
|
+
autoprefixer-rails (10.2.0.0)
|
97
99
|
execjs
|
98
100
|
awesome_print (1.8.0)
|
99
101
|
banzai (0.1.3)
|
@@ -106,11 +108,11 @@ GEM
|
|
106
108
|
erubi (>= 1.0.0)
|
107
109
|
rack (>= 0.9.0)
|
108
110
|
bindex (0.8.1)
|
109
|
-
binding_of_caller (0.
|
111
|
+
binding_of_caller (1.0.0)
|
110
112
|
debug_inspector (>= 0.0.1)
|
111
113
|
bootsnap (1.5.1)
|
112
114
|
msgpack (~> 1.0)
|
113
|
-
bugsnag (6.
|
115
|
+
bugsnag (6.19.0)
|
114
116
|
concurrent-ruby (~> 1.0)
|
115
117
|
builder (3.2.4)
|
116
118
|
byebug (11.1.3)
|
@@ -141,9 +143,10 @@ GEM
|
|
141
143
|
country_select (4.0.0)
|
142
144
|
countries (~> 3.0)
|
143
145
|
sort_alphabetical (~> 1.0)
|
144
|
-
crack (0.4.
|
146
|
+
crack (0.4.5)
|
147
|
+
rexml
|
145
148
|
crass (1.0.6)
|
146
|
-
debug_inspector (0.0
|
149
|
+
debug_inspector (1.0.0)
|
147
150
|
deep_merge (1.2.1)
|
148
151
|
devise (4.7.3)
|
149
152
|
bcrypt (~> 3.0)
|
@@ -153,7 +156,7 @@ GEM
|
|
153
156
|
warden (~> 1.2.3)
|
154
157
|
diff-lcs (1.4.4)
|
155
158
|
diffy (3.4.0)
|
156
|
-
docile (1.3.
|
159
|
+
docile (1.3.4)
|
157
160
|
domain_name (0.5.20190701)
|
158
161
|
unf (>= 0.0.5, < 1.0.0)
|
159
162
|
dotenv (2.7.6)
|
@@ -173,10 +176,12 @@ GEM
|
|
173
176
|
railties (>= 5.0.0)
|
174
177
|
faker (2.15.1)
|
175
178
|
i18n (>= 1.6, < 2)
|
176
|
-
faraday (1.
|
179
|
+
faraday (1.3.0)
|
180
|
+
faraday-net_http (~> 1.0)
|
177
181
|
multipart-post (>= 1.2, < 3)
|
178
182
|
ruby2_keywords
|
179
|
-
|
183
|
+
faraday-net_http (1.0.0)
|
184
|
+
ffi (1.14.2)
|
180
185
|
formatador (0.2.5)
|
181
186
|
formtastic (3.1.5)
|
182
187
|
actionpack (>= 3.2.13)
|
@@ -228,16 +233,16 @@ GEM
|
|
228
233
|
mime-types (~> 3.0)
|
229
234
|
multi_xml (>= 0.5.2)
|
230
235
|
httpclient (2.8.3)
|
231
|
-
i18n (1.8.
|
236
|
+
i18n (1.8.7)
|
232
237
|
concurrent-ruby (~> 1.0)
|
233
238
|
i18n_data (0.10.0)
|
234
239
|
icalendar (2.7.0)
|
235
240
|
ice_cube (~> 0.16)
|
236
241
|
ice_cube (0.16.3)
|
237
|
-
inherited_resources (1.
|
238
|
-
actionpack (>= 5.
|
242
|
+
inherited_resources (1.12.0)
|
243
|
+
actionpack (>= 5.2, < 6.2)
|
239
244
|
has_scope (~> 0.6)
|
240
|
-
railties (>= 5.
|
245
|
+
railties (>= 5.2, < 6.2)
|
241
246
|
responders (>= 2, < 4)
|
242
247
|
jbuilder (2.10.1)
|
243
248
|
activesupport (>= 5.0.0)
|
@@ -245,7 +250,7 @@ GEM
|
|
245
250
|
rails-dom-testing (>= 1, < 3)
|
246
251
|
railties (>= 4.2.0)
|
247
252
|
thor (>= 0.14, < 2.0)
|
248
|
-
json (2.
|
253
|
+
json (2.5.1)
|
249
254
|
kaminari (1.2.1)
|
250
255
|
activesupport (>= 4.1.0)
|
251
256
|
kaminari-actionview (= 1.2.1)
|
@@ -258,7 +263,7 @@ GEM
|
|
258
263
|
activerecord
|
259
264
|
kaminari-core (= 1.2.1)
|
260
265
|
kaminari-core (1.2.1)
|
261
|
-
listen (3.
|
266
|
+
listen (3.4.0)
|
262
267
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
263
268
|
rb-inotify (~> 0.9, >= 0.9.10)
|
264
269
|
lograge (0.11.2)
|
@@ -280,8 +285,8 @@ GEM
|
|
280
285
|
mime-types-data (3.2020.1104)
|
281
286
|
mimemagic (0.3.5)
|
282
287
|
mini_mime (1.0.2)
|
283
|
-
mini_portile2 (2.
|
284
|
-
minitest (5.14.
|
288
|
+
mini_portile2 (2.5.0)
|
289
|
+
minitest (5.14.3)
|
285
290
|
msgpack (1.3.3)
|
286
291
|
multi_json (1.15.0)
|
287
292
|
multi_xml (0.6.0)
|
@@ -295,7 +300,7 @@ GEM
|
|
295
300
|
nenv (0.3.0)
|
296
301
|
netrc (0.11.0)
|
297
302
|
newrelic_rpm (6.14.0)
|
298
|
-
nexmo-oas-renderer (2.
|
303
|
+
nexmo-oas-renderer (2.5.0)
|
299
304
|
activemodel (~> 6.0)
|
300
305
|
activesupport (~> 6.0)
|
301
306
|
banzai (~> 0.1.2)
|
@@ -304,11 +309,11 @@ GEM
|
|
304
309
|
nexmo_markdown_renderer (~> 0.3)
|
305
310
|
oas_parser (~> 0.25.1)
|
306
311
|
octicons_helper (~> 8.2)
|
307
|
-
redcarpet (= 3.
|
312
|
+
redcarpet (= 3.5.1)
|
308
313
|
sass (~> 3.1)
|
309
314
|
shotgun (~> 0.9)
|
310
315
|
sinatra (~> 2.0)
|
311
|
-
nexmo_markdown_renderer (0.7.
|
316
|
+
nexmo_markdown_renderer (0.7.5)
|
312
317
|
activemodel (~> 6.0)
|
313
318
|
banzai (~> 0.1.2)
|
314
319
|
i18n (~> 1.7)
|
@@ -317,8 +322,9 @@ GEM
|
|
317
322
|
redcarpet (~> 3.4)
|
318
323
|
rouge (~> 2.0.7)
|
319
324
|
nio4r (2.5.4)
|
320
|
-
nokogiri (1.
|
321
|
-
mini_portile2 (~> 2.
|
325
|
+
nokogiri (1.11.1)
|
326
|
+
mini_portile2 (~> 2.5.0)
|
327
|
+
racc (~> 1.4)
|
322
328
|
notiffany (0.1.3)
|
323
329
|
nenv (~> 0.1)
|
324
330
|
shellany (~> 0.0)
|
@@ -335,23 +341,22 @@ GEM
|
|
335
341
|
octicons_helper (8.5.0)
|
336
342
|
octicons (= 8.5.0)
|
337
343
|
rails
|
338
|
-
octokit (4.
|
344
|
+
octokit (4.20.0)
|
339
345
|
faraday (>= 0.9)
|
340
346
|
sawyer (~> 0.8.0, >= 0.5.3)
|
341
|
-
oj (3.10.
|
347
|
+
oj (3.10.18)
|
342
348
|
orm_adapter (0.5.0)
|
343
349
|
parallel (1.20.1)
|
344
|
-
parser (
|
350
|
+
parser (3.0.0.0)
|
345
351
|
ast (~> 2.4.1)
|
346
352
|
pg (1.2.3)
|
347
|
-
polyamorous (2.3.2)
|
348
|
-
activerecord (>= 5.2.1)
|
349
353
|
pry (0.13.1)
|
350
354
|
coderay (~> 1.1)
|
351
355
|
method_source (~> 1.0)
|
352
356
|
public_suffix (4.0.6)
|
353
357
|
puma (5.1.1)
|
354
358
|
nio4r (~> 2.0)
|
359
|
+
racc (1.5.2)
|
355
360
|
rack (2.2.3)
|
356
361
|
rack-protection (2.1.0)
|
357
362
|
rack
|
@@ -359,45 +364,44 @@ GEM
|
|
359
364
|
rack
|
360
365
|
rack-test (1.1.0)
|
361
366
|
rack (>= 1.0, < 3)
|
362
|
-
rails (6.
|
363
|
-
actioncable (= 6.
|
364
|
-
actionmailbox (= 6.
|
365
|
-
actionmailer (= 6.
|
366
|
-
actionpack (= 6.
|
367
|
-
actiontext (= 6.
|
368
|
-
actionview (= 6.
|
369
|
-
activejob (= 6.
|
370
|
-
activemodel (= 6.
|
371
|
-
activerecord (= 6.
|
372
|
-
activestorage (= 6.
|
373
|
-
activesupport (= 6.
|
374
|
-
bundler (>= 1.
|
375
|
-
railties (= 6.
|
367
|
+
rails (6.1.1)
|
368
|
+
actioncable (= 6.1.1)
|
369
|
+
actionmailbox (= 6.1.1)
|
370
|
+
actionmailer (= 6.1.1)
|
371
|
+
actionpack (= 6.1.1)
|
372
|
+
actiontext (= 6.1.1)
|
373
|
+
actionview (= 6.1.1)
|
374
|
+
activejob (= 6.1.1)
|
375
|
+
activemodel (= 6.1.1)
|
376
|
+
activerecord (= 6.1.1)
|
377
|
+
activestorage (= 6.1.1)
|
378
|
+
activesupport (= 6.1.1)
|
379
|
+
bundler (>= 1.15.0)
|
380
|
+
railties (= 6.1.1)
|
376
381
|
sprockets-rails (>= 2.0.0)
|
377
382
|
rails-dom-testing (2.0.3)
|
378
383
|
activesupport (>= 4.2.0)
|
379
384
|
nokogiri (>= 1.6)
|
380
385
|
rails-html-sanitizer (1.3.0)
|
381
386
|
loofah (~> 2.3)
|
382
|
-
railties (6.
|
383
|
-
actionpack (= 6.
|
384
|
-
activesupport (= 6.
|
387
|
+
railties (6.1.1)
|
388
|
+
actionpack (= 6.1.1)
|
389
|
+
activesupport (= 6.1.1)
|
385
390
|
method_source
|
386
391
|
rake (>= 0.8.7)
|
387
|
-
thor (
|
392
|
+
thor (~> 1.0)
|
388
393
|
rainbow (3.0.0)
|
389
|
-
rake (13.0.
|
390
|
-
ransack (2.
|
391
|
-
activerecord (>= 5.2.
|
392
|
-
activesupport (>= 5.2.
|
394
|
+
rake (13.0.3)
|
395
|
+
ransack (2.4.1)
|
396
|
+
activerecord (>= 5.2.4)
|
397
|
+
activesupport (>= 5.2.4)
|
393
398
|
i18n
|
394
|
-
polyamorous (= 2.3.2)
|
395
399
|
rb-fsevent (0.10.4)
|
396
400
|
rb-inotify (0.10.1)
|
397
401
|
ffi (~> 1.0)
|
398
402
|
recaptcha (5.6.0)
|
399
403
|
json
|
400
|
-
redcarpet (3.
|
404
|
+
redcarpet (3.5.1)
|
401
405
|
redis (4.2.5)
|
402
406
|
regexp_parser (1.8.2)
|
403
407
|
request_store (1.5.0)
|
@@ -418,41 +422,41 @@ GEM
|
|
418
422
|
rspec-mocks (~> 3.10.0)
|
419
423
|
rspec-collection_matchers (1.2.0)
|
420
424
|
rspec-expectations (>= 2.99.0.beta1)
|
421
|
-
rspec-core (3.10.
|
425
|
+
rspec-core (3.10.1)
|
422
426
|
rspec-support (~> 3.10.0)
|
423
|
-
rspec-expectations (3.10.
|
427
|
+
rspec-expectations (3.10.1)
|
424
428
|
diff-lcs (>= 1.2.0, < 2.0)
|
425
429
|
rspec-support (~> 3.10.0)
|
426
|
-
rspec-mocks (3.10.
|
430
|
+
rspec-mocks (3.10.1)
|
427
431
|
diff-lcs (>= 1.2.0, < 2.0)
|
428
432
|
rspec-support (~> 3.10.0)
|
429
|
-
rspec-rails (4.0.
|
433
|
+
rspec-rails (4.0.2)
|
430
434
|
actionpack (>= 4.2)
|
431
435
|
activesupport (>= 4.2)
|
432
436
|
railties (>= 4.2)
|
433
|
-
rspec-core (~> 3.
|
434
|
-
rspec-expectations (~> 3.
|
435
|
-
rspec-mocks (~> 3.
|
436
|
-
rspec-support (~> 3.
|
437
|
+
rspec-core (~> 3.10)
|
438
|
+
rspec-expectations (~> 3.10)
|
439
|
+
rspec-mocks (~> 3.10)
|
440
|
+
rspec-support (~> 3.10)
|
437
441
|
rspec-snapshot (0.1.2)
|
438
442
|
rspec (> 3.0.0)
|
439
|
-
rspec-support (3.10.
|
440
|
-
rubocop (1.
|
443
|
+
rspec-support (3.10.1)
|
444
|
+
rubocop (1.8.1)
|
441
445
|
parallel (~> 1.10)
|
442
|
-
parser (>=
|
446
|
+
parser (>= 3.0.0.0)
|
443
447
|
rainbow (>= 2.2.2, < 4.0)
|
444
448
|
regexp_parser (>= 1.8, < 3.0)
|
445
449
|
rexml
|
446
450
|
rubocop-ast (>= 1.2.0, < 2.0)
|
447
451
|
ruby-progressbar (~> 1.7)
|
448
|
-
unicode-display_width (>= 1.4.0, <
|
449
|
-
rubocop-ast (1.
|
452
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
453
|
+
rubocop-ast (1.4.0)
|
450
454
|
parser (>= 2.7.1.5)
|
451
|
-
rubocop-rails (2.9.
|
455
|
+
rubocop-rails (2.9.1)
|
452
456
|
activesupport (>= 4.2.0)
|
453
457
|
rack (>= 1.1)
|
454
458
|
rubocop (>= 0.90.0, < 2.0)
|
455
|
-
ruby-progressbar (1.
|
459
|
+
ruby-progressbar (1.11.0)
|
456
460
|
ruby2_keywords (0.0.2)
|
457
461
|
sass (3.7.4)
|
458
462
|
sass-listen (~> 4.0.0)
|
@@ -470,12 +474,12 @@ GEM
|
|
470
474
|
sawyer (0.8.2)
|
471
475
|
addressable (>= 2.3.5)
|
472
476
|
faraday (> 0.8, < 2.0)
|
473
|
-
semantic_range (2.3.
|
477
|
+
semantic_range (2.3.1)
|
474
478
|
shellany (0.0.1)
|
475
479
|
shotgun (0.9.2)
|
476
480
|
rack (>= 1.0)
|
477
481
|
simple-random (1.0.3)
|
478
|
-
simplecov (0.
|
482
|
+
simplecov (0.21.2)
|
479
483
|
docile (~> 1.1)
|
480
484
|
simplecov-html (~> 0.11)
|
481
485
|
simplecov_json_formatter (~> 0.1)
|
@@ -505,18 +509,17 @@ GEM
|
|
505
509
|
actionpack (>= 4.0)
|
506
510
|
activesupport (>= 4.0)
|
507
511
|
sprockets (>= 3.0.0)
|
508
|
-
statsd-ruby (1.
|
512
|
+
statsd-ruby (1.5.0)
|
509
513
|
terminal-table (2.0.0)
|
510
514
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
511
515
|
thor (1.0.1)
|
512
|
-
thread_safe (0.3.6)
|
513
516
|
tilt (2.0.10)
|
514
517
|
titleize (1.4.1)
|
515
518
|
truncato (0.7.11)
|
516
519
|
htmlentities (~> 4.3.1)
|
517
520
|
nokogiri (>= 1.7.0, <= 2.0)
|
518
|
-
tzinfo (
|
519
|
-
|
521
|
+
tzinfo (2.0.4)
|
522
|
+
concurrent-ruby (~> 1.0)
|
520
523
|
uglifier (4.2.0)
|
521
524
|
execjs (>= 0.3.0, < 3)
|
522
525
|
unf (0.1.4)
|
@@ -531,7 +534,7 @@ GEM
|
|
531
534
|
activemodel (>= 6.0.0)
|
532
535
|
bindex (>= 0.4.0)
|
533
536
|
railties (>= 6.0.0)
|
534
|
-
webmock (3.
|
537
|
+
webmock (3.11.0)
|
535
538
|
addressable (>= 2.3.6)
|
536
539
|
crack (>= 0.3.2)
|
537
540
|
hashdiff (>= 0.4.0, < 2.0.0)
|
@@ -553,7 +556,7 @@ PLATFORMS
|
|
553
556
|
|
554
557
|
DEPENDENCIES
|
555
558
|
actionpack-page_caching!
|
556
|
-
activeadmin (~> 2.
|
559
|
+
activeadmin (~> 2.9)
|
557
560
|
algoliasearch
|
558
561
|
apparition
|
559
562
|
autoprefixer-rails
|
@@ -587,19 +590,19 @@ DEPENDENCIES
|
|
587
590
|
icalendar
|
588
591
|
jbuilder (~> 2.10.1)
|
589
592
|
jquery-rails
|
590
|
-
listen (~> 3.
|
593
|
+
listen (~> 3.4)
|
591
594
|
lograge
|
592
595
|
neatjson
|
593
596
|
newrelic_rpm
|
594
|
-
nexmo-oas-renderer (~> 2.
|
595
|
-
nexmo_markdown_renderer (~> 0.7.
|
596
|
-
nokogiri (~> 1.
|
597
|
+
nexmo-oas-renderer (~> 2.5.0)
|
598
|
+
nexmo_markdown_renderer (~> 0.7.5)
|
599
|
+
nokogiri (~> 1.11.1)
|
597
600
|
octokit
|
598
601
|
pg (~> 1.2)
|
599
602
|
pry
|
600
603
|
puma (~> 5.1)
|
601
604
|
rack (>= 2.0.6)
|
602
|
-
rails (~> 6.
|
605
|
+
rails (~> 6.1.1)
|
603
606
|
rawler!
|
604
607
|
recaptcha
|
605
608
|
redis
|
@@ -607,7 +610,7 @@ DEPENDENCIES
|
|
607
610
|
rspec-collection_matchers
|
608
611
|
rspec-rails (~> 4.0)
|
609
612
|
rspec-snapshot (~> 0.1.2)
|
610
|
-
rubocop (~> 1.
|
613
|
+
rubocop (~> 1.8.1)
|
611
614
|
rubocop-rails (~> 2.9)
|
612
615
|
ruby-progressbar
|
613
616
|
sassc-rails (~> 2.1)
|