Update dependencies
This commit is contained in:
parent
b77aa164ad
commit
8b79461043
7 changed files with 154 additions and 154 deletions
12
flake.lock
generated
12
flake.lock
generated
|
@ -22,11 +22,11 @@
|
||||||
},
|
},
|
||||||
"emacs-overlay": {
|
"emacs-overlay": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1624609827,
|
"lastModified": 1624668842,
|
||||||
"narHash": "sha256-hCkpMhrXyXZ0RdH+WXeoEsD6EyFPh80m4ARWVa5Y0UA=",
|
"narHash": "sha256-nCOgKkqXnSuuwizK9tSMUn4VOaQjZgKEllc9CpkLwJY=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "emacs-overlay",
|
"repo": "emacs-overlay",
|
||||||
"rev": "43dd22cd2ba42d1dc620a849879c487142a33689",
|
"rev": "27a0a708f269be62692814dbbb5ec167666e743b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -74,11 +74,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1624593539,
|
"lastModified": 1624643480,
|
||||||
"narHash": "sha256-FUwEa2Nhd705VeMN5aZu2G9OYF5MxplR9Xef/yqvYWk=",
|
"narHash": "sha256-6D7AtvR143jIBBGwsd/eict3gKecpXZSCpT3Vw26sxk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c223fd60072771c8dea3bba2f8f866302aa4c956",
|
"rev": "538d1234599eebca3875618e14cd49d5c11fa92a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -7,7 +7,7 @@ let
|
||||||
owner = "accentor";
|
owner = "accentor";
|
||||||
repo = "web";
|
repo = "web";
|
||||||
rev = "develop";
|
rev = "develop";
|
||||||
sha256 = "1kvi6is5rqhm0wcgsx18163xgp1l54680n5ppg0dl5aarlcb2wx2";
|
sha256 = "0gm5bsyydyl56c3qr0fk1v8i60q1jdcb2vxndg3a3yibyqf6c6hf";
|
||||||
};
|
};
|
||||||
yarnNix = ./accentor/yarn.nix;
|
yarnNix = ./accentor/yarn.nix;
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
@ -24,11 +24,11 @@ let
|
||||||
owner = "accentor";
|
owner = "accentor";
|
||||||
repo = "api";
|
repo = "api";
|
||||||
rev = "develop";
|
rev = "develop";
|
||||||
sha256 = "0pv4j4v76jx7hhkd58fh55b3icmwhb7pmrkyaqcwxqrlirqmfabd";
|
sha256 = "1kvmgcdch5m8wbdg9a5ajm2a63fjz1wdd5f2k0yh0d0vx0bcy67p";
|
||||||
};
|
};
|
||||||
gems = pkgs.bundlerEnv {
|
gems = pkgs.bundlerEnv {
|
||||||
name = "accentor-api-env";
|
name = "accentor-api-env";
|
||||||
ruby = pkgs.ruby_2_7;
|
ruby = pkgs.ruby_3_0;
|
||||||
gemfile = ./accentor/Gemfile;
|
gemfile = ./accentor/Gemfile;
|
||||||
lockfile = ./accentor/Gemfile.lock;
|
lockfile = ./accentor/Gemfile.lock;
|
||||||
gemset = ./accentor/gemset.nix;
|
gemset = ./accentor/gemset.nix;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
ruby '2.7.3'
|
ruby '3.0.1'
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '~> 6.1'
|
gem 'rails', '~> 6.1'
|
||||||
|
@ -37,7 +37,7 @@ gem 'rack-cors', '~> 1.1'
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'codecov', '~> 0.5.2', require: false
|
gem 'codecov', '~> 0.5.2', require: false
|
||||||
gem 'mocha', '~> 1.12.0', require: false
|
gem 'mocha', '~> 1.13.0', require: false
|
||||||
gem 'simplecov', '~> 0.21', require: false
|
gem 'simplecov', '~> 0.21', require: false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -51,8 +51,8 @@ end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'annotate', '~> 3.1' # Remove workaround in lib/tasks/annotate.rb when https://github.com/ctran/annotate_models/issues/696 is fixed
|
gem 'annotate', '~> 3.1' # Remove workaround in lib/tasks/annotate.rb when https://github.com/ctran/annotate_models/issues/696 is fixed
|
||||||
gem 'rubocop-minitest', '~> 0.12.1'
|
gem 'rubocop-minitest', '~> 0.13.0'
|
||||||
gem 'rubocop-rails', '~> 2.10'
|
gem 'rubocop-rails', '~> 2.11'
|
||||||
|
|
||||||
gem 'listen', '>= 3.1.5', '< 3.6'
|
gem 'listen', '>= 3.1.5', '< 3.6'
|
||||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||||
|
|
|
@ -1,40 +1,40 @@
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (6.1.3.2)
|
actioncable (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
actionmailbox (6.1.3.2)
|
actionmailbox (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
activejob (= 6.1.3.2)
|
activejob (= 6.1.4)
|
||||||
activerecord (= 6.1.3.2)
|
activerecord (= 6.1.4)
|
||||||
activestorage (= 6.1.3.2)
|
activestorage (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
actionmailer (6.1.3.2)
|
actionmailer (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
actionview (= 6.1.3.2)
|
actionview (= 6.1.4)
|
||||||
activejob (= 6.1.3.2)
|
activejob (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (6.1.3.2)
|
actionpack (6.1.4)
|
||||||
actionview (= 6.1.3.2)
|
actionview (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
rack (~> 2.0, >= 2.0.9)
|
rack (~> 2.0, >= 2.0.9)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (6.1.3.2)
|
actiontext (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
activerecord (= 6.1.3.2)
|
activerecord (= 6.1.4)
|
||||||
activestorage (= 6.1.3.2)
|
activestorage (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (6.1.3.2)
|
actionview (6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
|
@ -44,22 +44,22 @@ GEM
|
||||||
activemodel (>= 4.1, < 6.2)
|
activemodel (>= 4.1, < 6.2)
|
||||||
case_transform (>= 0.2)
|
case_transform (>= 0.2)
|
||||||
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
|
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
|
||||||
activejob (6.1.3.2)
|
activejob (6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (6.1.3.2)
|
activemodel (6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
activerecord (6.1.3.2)
|
activerecord (6.1.4)
|
||||||
activemodel (= 6.1.3.2)
|
activemodel (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
activestorage (6.1.3.2)
|
activestorage (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
activejob (= 6.1.3.2)
|
activejob (= 6.1.4)
|
||||||
activerecord (= 6.1.3.2)
|
activerecord (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
marcel (~> 1.0.0)
|
marcel (~> 1.0.0)
|
||||||
mini_mime (~> 1.0.2)
|
mini_mime (>= 1.1.0)
|
||||||
activesupport (6.1.3.2)
|
activesupport (6.1.4)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
|
@ -78,7 +78,7 @@ GEM
|
||||||
activesupport
|
activesupport
|
||||||
codecov (0.5.2)
|
codecov (0.5.2)
|
||||||
simplecov (>= 0.15, < 0.22)
|
simplecov (>= 0.15, < 0.22)
|
||||||
concurrent-ruby (1.1.8)
|
concurrent-ruby (1.1.9)
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
delayed_cron_job (0.7.4)
|
delayed_cron_job (0.7.4)
|
||||||
delayed_job (>= 4.1)
|
delayed_job (>= 4.1)
|
||||||
|
@ -111,7 +111,7 @@ GEM
|
||||||
listen (3.5.1)
|
listen (3.5.1)
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
rb-inotify (~> 0.9, >= 0.9.10)
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
loofah (2.9.1)
|
loofah (2.10.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.5.9)
|
nokogiri (>= 1.5.9)
|
||||||
mail (2.7.1)
|
mail (2.7.1)
|
||||||
|
@ -119,13 +119,13 @@ GEM
|
||||||
marcel (1.0.1)
|
marcel (1.0.1)
|
||||||
method_source (1.0.0)
|
method_source (1.0.0)
|
||||||
mini_magick (4.11.0)
|
mini_magick (4.11.0)
|
||||||
mini_mime (1.0.3)
|
mini_mime (1.1.0)
|
||||||
mini_portile2 (2.5.1)
|
mini_portile2 (2.5.3)
|
||||||
minitest (5.14.4)
|
minitest (5.14.4)
|
||||||
mocha (1.12.0)
|
mocha (1.13.0)
|
||||||
msgpack (1.4.2)
|
msgpack (1.4.2)
|
||||||
nio4r (2.5.7)
|
nio4r (2.5.7)
|
||||||
nokogiri (1.11.5)
|
nokogiri (1.11.7)
|
||||||
mini_portile2 (~> 2.5.0)
|
mini_portile2 (~> 2.5.0)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
parallel (1.20.1)
|
parallel (1.20.1)
|
||||||
|
@ -142,31 +142,31 @@ GEM
|
||||||
rack (>= 2.0.0)
|
rack (>= 2.0.0)
|
||||||
rack-test (1.1.0)
|
rack-test (1.1.0)
|
||||||
rack (>= 1.0, < 3)
|
rack (>= 1.0, < 3)
|
||||||
rails (6.1.3.2)
|
rails (6.1.4)
|
||||||
actioncable (= 6.1.3.2)
|
actioncable (= 6.1.4)
|
||||||
actionmailbox (= 6.1.3.2)
|
actionmailbox (= 6.1.4)
|
||||||
actionmailer (= 6.1.3.2)
|
actionmailer (= 6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
actiontext (= 6.1.3.2)
|
actiontext (= 6.1.4)
|
||||||
actionview (= 6.1.3.2)
|
actionview (= 6.1.4)
|
||||||
activejob (= 6.1.3.2)
|
activejob (= 6.1.4)
|
||||||
activemodel (= 6.1.3.2)
|
activemodel (= 6.1.4)
|
||||||
activerecord (= 6.1.3.2)
|
activerecord (= 6.1.4)
|
||||||
activestorage (= 6.1.3.2)
|
activestorage (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 6.1.3.2)
|
railties (= 6.1.4)
|
||||||
sprockets-rails (>= 2.0.0)
|
sprockets-rails (>= 2.0.0)
|
||||||
rails-dom-testing (2.0.3)
|
rails-dom-testing (2.0.3)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.3.0)
|
rails-html-sanitizer (1.3.0)
|
||||||
loofah (~> 2.3)
|
loofah (~> 2.3)
|
||||||
railties (6.1.3.2)
|
railties (6.1.4)
|
||||||
actionpack (= 6.1.3.2)
|
actionpack (= 6.1.4)
|
||||||
activesupport (= 6.1.3.2)
|
activesupport (= 6.1.4)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.13)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
rainbow (3.0.0)
|
rainbow (3.0.0)
|
||||||
rake (13.0.3)
|
rake (13.0.3)
|
||||||
|
@ -175,20 +175,20 @@ GEM
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
regexp_parser (2.1.1)
|
regexp_parser (2.1.1)
|
||||||
rexml (3.2.5)
|
rexml (3.2.5)
|
||||||
rubocop (1.14.0)
|
rubocop (1.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.0.0.0)
|
parser (>= 3.0.0.0)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
rexml
|
rexml
|
||||||
rubocop-ast (>= 1.5.0, < 2.0)
|
rubocop-ast (>= 1.7.0, < 2.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
rubocop-ast (1.5.0)
|
rubocop-ast (1.7.0)
|
||||||
parser (>= 3.0.1.1)
|
parser (>= 3.0.1.1)
|
||||||
rubocop-minitest (0.12.1)
|
rubocop-minitest (0.13.0)
|
||||||
rubocop (>= 0.90, < 2.0)
|
rubocop (>= 0.90, < 2.0)
|
||||||
rubocop-rails (2.10.1)
|
rubocop-rails (2.11.1)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
@ -217,7 +217,7 @@ GEM
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
unicode-display_width (2.0.0)
|
unicode-display_width (2.0.0)
|
||||||
wahwah (1.1.1)
|
wahwah (1.1.1)
|
||||||
websocket-driver (0.7.3)
|
websocket-driver (0.7.5)
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
will_paginate (3.3.0)
|
will_paginate (3.3.0)
|
||||||
|
@ -240,14 +240,14 @@ DEPENDENCIES
|
||||||
has_scope (~> 0.8)
|
has_scope (~> 0.8)
|
||||||
image_processing (~> 1.12.1)
|
image_processing (~> 1.12.1)
|
||||||
listen (>= 3.1.5, < 3.6)
|
listen (>= 3.1.5, < 3.6)
|
||||||
mocha (~> 1.12.0)
|
mocha (~> 1.13.0)
|
||||||
pg (>= 1.2.3, < 2.0)
|
pg (>= 1.2.3, < 2.0)
|
||||||
puma (~> 5.3)
|
puma (~> 5.3)
|
||||||
pundit (~> 2.1)
|
pundit (~> 2.1)
|
||||||
rack-cors (~> 1.1)
|
rack-cors (~> 1.1)
|
||||||
rails (~> 6.1)
|
rails (~> 6.1)
|
||||||
rubocop-minitest (~> 0.12.1)
|
rubocop-minitest (~> 0.13.0)
|
||||||
rubocop-rails (~> 2.10)
|
rubocop-rails (~> 2.11)
|
||||||
simplecov (~> 0.21)
|
simplecov (~> 0.21)
|
||||||
spring (~> 2.1)
|
spring (~> 2.1)
|
||||||
spring-watcher-listen (~> 2.0)
|
spring-watcher-listen (~> 2.0)
|
||||||
|
@ -256,7 +256,7 @@ DEPENDENCIES
|
||||||
will_paginate (~> 3.3)
|
will_paginate (~> 3.3)
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 2.7.3p183
|
ruby 3.0.1p64
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.1.4
|
2.2.15
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "15r6ab17iwhhq92by4ah9z4wwvjbr07qn16x8pn2ypgqwvfy74h7";
|
sha256 = "1wswkgwhmfk5j76ar76plhaxna12x0cyf2di57azahlcv88rrwra";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
actionmailbox = {
|
actionmailbox = {
|
||||||
dependencies = [ "actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail" ];
|
dependencies = [ "actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail" ];
|
||||||
|
@ -16,10 +16,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1q1r3x9fbq5wlgn4xhqw48la09q7f97zna7ld5fglk3jpmh973x5";
|
sha256 = "101r0x4lhzp23hksch7z24ajvp549lskxn2cr7pbgr64jjy6v17y";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
actionmailer = {
|
actionmailer = {
|
||||||
dependencies = [ "actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing" ];
|
dependencies = [ "actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing" ];
|
||||||
|
@ -27,10 +27,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1nqdaykzgib8fsldkxdkw0w44jzz4grvb028crzg0qpwvv03g2wp";
|
sha256 = "0mxqpiwgqam5vfk8wsfyj4dpxq0xqqvfbcwx1i4p9n1ahrx7wv7f";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
actionpack = {
|
actionpack = {
|
||||||
dependencies = [ "actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer" ];
|
dependencies = [ "actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer" ];
|
||||||
|
@ -38,10 +38,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1wdgv5llgbl4nayx5j78lfvhhjssrzfmypb45mjy37mgm8z5l5m5";
|
sha256 = "1pj4xz316b3z56vpb8pnrkwj4rlf3hgas5fhddk6yh7ifrl30sc9";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
actiontext = {
|
actiontext = {
|
||||||
dependencies = [ "actionpack" "activerecord" "activestorage" "activesupport" "nokogiri" ];
|
dependencies = [ "actionpack" "activerecord" "activestorage" "activesupport" "nokogiri" ];
|
||||||
|
@ -49,10 +49,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1zfrkcnp9wy1dm4b6iqf29858dp04a62asfmldainqmv4a7931q7";
|
sha256 = "1fn488la8dllfg5zhm74k8y23xl9czrzzs55b9v624j43wjhfxcl";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
actionview = {
|
actionview = {
|
||||||
dependencies = [ "activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer" ];
|
dependencies = [ "activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer" ];
|
||||||
|
@ -60,10 +60,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1r6db2g3fsrca1hp9kbyvjx9psipsxw0g306qharkcblxl8h1ysn";
|
sha256 = "1jqybz7h11xkjpqdffb9gphwmd56lms9xqskza00wd2pswxcwkn4";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
active_model_serializers = {
|
active_model_serializers = {
|
||||||
dependencies = [ "actionpack" "activemodel" "case_transform" "jsonapi-renderer" ];
|
dependencies = [ "actionpack" "activemodel" "case_transform" "jsonapi-renderer" ];
|
||||||
|
@ -82,10 +82,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0p80rbahcxhxlkxgf4bh580hbifn9q4gr5g9fy8fd0z5g6gr9xxq";
|
sha256 = "0q00vrknnnhmg02nik06ivrmz7hnq5snpy653kdpskvp4c9ys55c";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
activemodel = {
|
activemodel = {
|
||||||
dependencies = [ "activesupport" ];
|
dependencies = [ "activesupport" ];
|
||||||
|
@ -93,10 +93,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1gpd3hh4ryyr84drj6m0b5sy6929nyf50bfgksw1hpc594542nal";
|
sha256 = "0xjy8fg7n5wwv29ngvvdf5r6815s5f0knzyswxh8w6z8f8qj5wr7";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
activerecord = {
|
activerecord = {
|
||||||
dependencies = [ "activemodel" "activesupport" ];
|
dependencies = [ "activemodel" "activesupport" ];
|
||||||
|
@ -104,10 +104,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0fg58qma2zgrz0gr61p61qcz8c3h88fd5lbdrkpkm96aq5shwh68";
|
sha256 = "18897s9h9kha8vgky1yfq4x91m3p81k6rkrb1fgjlnqnvarh9vg0";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
activestorage = {
|
activestorage = {
|
||||||
dependencies = [ "actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime" ];
|
dependencies = [ "actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime" ];
|
||||||
|
@ -115,10 +115,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0sbpkk3r8qi47bd0ilznq4gpfyfwm2bwvxqb5z0wc75h3zj1jhqg";
|
sha256 = "03gb6jbvdzm0xlr2g393jvf980ybjf9zzgspl0p4ixh3lcxxr51w";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
activesupport = {
|
activesupport = {
|
||||||
dependencies = [ "concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk" ];
|
dependencies = [ "concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk" ];
|
||||||
|
@ -126,10 +126,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1csxddyhl6k773ycxjvmyshyr4g9jb1icbs3pnm7crnavqs4h1yr";
|
sha256 = "0kqgywy4cj3h5142dh7pl0xx5nybp25jn0ykk0znziivzks68xdk";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
annotate = {
|
annotate = {
|
||||||
dependencies = [ "activerecord" "rake" ];
|
dependencies = [ "activerecord" "rake" ];
|
||||||
|
@ -231,10 +231,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3";
|
sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.1.8";
|
version = "1.1.9";
|
||||||
};
|
};
|
||||||
crass = {
|
crass = {
|
||||||
groups = [ "default" "development" "test" ];
|
groups = [ "default" "development" "test" ];
|
||||||
|
@ -413,10 +413,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1w9mbii8515p28xd4k72f3ab2g6xiyq15497ys5r8jn6m355lgi7";
|
sha256 = "19vkaazjqyq7yj5ah8rpr4vl9n4mg95scdr5im93akhd5bjvkkly";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.9.1";
|
version = "2.10.0";
|
||||||
};
|
};
|
||||||
mail = {
|
mail = {
|
||||||
dependencies = [ "mini_mime" ];
|
dependencies = [ "mini_mime" ];
|
||||||
|
@ -464,20 +464,20 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1np6srnyagghhh2w4nyv09sz47v0i6ri3q6blicj94vgxqp12c94";
|
sha256 = "0kb7jq3wjgckmkzna799y5qmvn6vg52878bkgw35qay6lflcrwih";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.0.3";
|
version = "1.1.0";
|
||||||
};
|
};
|
||||||
mini_portile2 = {
|
mini_portile2 = {
|
||||||
groups = [ "default" "development" "test" ];
|
groups = [ "default" "development" "test" ];
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0xg1x4708a4pn2wk8qs2d8kfzzdyv9kjjachg2f1phsx62ap2rx2";
|
sha256 = "1ad0mli9rc0f17zw4ibp24dbj1y39zkykijsjmnzl4gwpg5s0j6k";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.5.1";
|
version = "2.5.3";
|
||||||
};
|
};
|
||||||
minitest = {
|
minitest = {
|
||||||
groups = [ "default" "development" "test" ];
|
groups = [ "default" "development" "test" ];
|
||||||
|
@ -494,10 +494,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "05yw6rwgjppq116jgqfg4pv4bql3ci4r2fmmg0m2c3sqib1bq41a";
|
sha256 = "15s53ggsykk69kxqvs4416s8yxdhz6caggva55n8sjgy4ixzwp10";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.12.0";
|
version = "1.13.0";
|
||||||
};
|
};
|
||||||
msgpack = {
|
msgpack = {
|
||||||
groups = [ "default" ];
|
groups = [ "default" ];
|
||||||
|
@ -525,10 +525,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1i80ny61maqzqr1fq5wgpkijmh5j8abisrmhn16kv7mzmxqg5w0m";
|
sha256 = "1vrn31385ix5k9b0yalnlzv360isv6dincbcvi8psllnwz4sjxj9";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.11.5";
|
version = "1.11.7";
|
||||||
};
|
};
|
||||||
parallel = {
|
parallel = {
|
||||||
groups = [ "default" "development" ];
|
groups = [ "default" "development" ];
|
||||||
|
@ -631,10 +631,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0flnpli87b9j0zvb3c4l5addjbznbpkbmp1wzfjc1gh8qxlhcs1n";
|
sha256 = "0k3d3acac2qn9fg185z3y79nvg4ghr4lyhqiz6mbwlsd7r2nd8mh";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
rails-dom-testing = {
|
rails-dom-testing = {
|
||||||
dependencies = [ "activesupport" "nokogiri" ];
|
dependencies = [ "activesupport" "nokogiri" ];
|
||||||
|
@ -664,10 +664,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "17r1pr8d467vh3zkciw4wmrcixj9zjrvd11nxn2z091bkzf66xq2";
|
sha256 = "0hwp0qwkphp3fvbsq6ljp8s99v621si9bgqihysz5bv1d1z52mm4";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.1.3.2";
|
version = "6.1.4";
|
||||||
};
|
};
|
||||||
rainbow = {
|
rainbow = {
|
||||||
groups = [ "default" "development" ];
|
groups = [ "default" "development" ];
|
||||||
|
@ -736,10 +736,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0chjr6i0g7frbp7dhi4d83ppf7akkdaw7mcgcwbxd6a9mairafpp";
|
sha256 = "0lnh62ij3jfr20mq8wb292fmiv8y1rbkxd3qg7fl2hn0azd157p6";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.14.0";
|
version = "1.17.0";
|
||||||
};
|
};
|
||||||
rubocop-ast = {
|
rubocop-ast = {
|
||||||
dependencies = [ "parser" ];
|
dependencies = [ "parser" ];
|
||||||
|
@ -747,10 +747,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "0hx4im1a2qpiwipvsl3fma358ixjp4h0mhj56ichq15xrq709qlf";
|
sha256 = "1hnrfy928mwpa0ippqs4s8xwghwwp5h853naphgqxcd53l33chlv";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.5.0";
|
version = "1.7.0";
|
||||||
};
|
};
|
||||||
rubocop-minitest = {
|
rubocop-minitest = {
|
||||||
dependencies = [ "rubocop" ];
|
dependencies = [ "rubocop" ];
|
||||||
|
@ -758,10 +758,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1crskzfspy9fzr410kahhz7818zvxyfphx6d6spa3rlwakl296vg";
|
sha256 = "0glz9k41vd5zvb2s5bi3mv9n74mipgbmj0i1d4dcx5g8xcx5wlll";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.12.1";
|
version = "0.13.0";
|
||||||
};
|
};
|
||||||
rubocop-rails = {
|
rubocop-rails = {
|
||||||
dependencies = [ "activesupport" "rack" "rubocop" ];
|
dependencies = [ "activesupport" "rack" "rubocop" ];
|
||||||
|
@ -769,10 +769,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1h8k2i6qgl7pdvb8bnh1w43zqdxqg3kglyxy9b2vdh2w7q5rrl5y";
|
sha256 = "1nvr8gng1si4amf6jda022kasgkrvjpmlv42ish0yzng1sdvrrv3";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.10.1";
|
version = "2.11.1";
|
||||||
};
|
};
|
||||||
ruby-progressbar = {
|
ruby-progressbar = {
|
||||||
groups = [ "default" "development" ];
|
groups = [ "default" "development" ];
|
||||||
|
@ -916,10 +916,10 @@
|
||||||
platforms = [ ];
|
platforms = [ ];
|
||||||
source = {
|
source = {
|
||||||
remotes = [ "https://rubygems.org" ];
|
remotes = [ "https://rubygems.org" ];
|
||||||
sha256 = "1i3rs4kcj0jba8idxla3s6xd1xfln3k8b4cb1dik2lda3ifnp3dh";
|
sha256 = "0a3bwxd9v3ghrxzjc4vxmf4xa18c6m4xqy5wb0yk5c6b9psc7052";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.7.3";
|
version = "0.7.5";
|
||||||
};
|
};
|
||||||
websocket-extensions = {
|
websocket-extensions = {
|
||||||
groups = [ "default" ];
|
groups = [ "default" ];
|
||||||
|
|
|
@ -3530,11 +3530,11 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "eslint_plugin_vue___eslint_plugin_vue_7.11.1.tgz";
|
name = "eslint_plugin_vue___eslint_plugin_vue_7.12.1.tgz";
|
||||||
path = fetchurl {
|
path = fetchurl {
|
||||||
name = "eslint_plugin_vue___eslint_plugin_vue_7.11.1.tgz";
|
name = "eslint_plugin_vue___eslint_plugin_vue_7.12.1.tgz";
|
||||||
url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.11.1.tgz";
|
url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.12.1.tgz";
|
||||||
sha1 = "77eb4b44032d5cca79f9af21d06991d8694a314a";
|
sha1 = "ef6499ce4fe0566659c8e12c71713f5308630a76";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -7122,11 +7122,11 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "prettier___prettier_2.3.1.tgz";
|
name = "prettier___prettier_2.3.2.tgz";
|
||||||
path = fetchurl {
|
path = fetchurl {
|
||||||
name = "prettier___prettier_2.3.1.tgz";
|
name = "prettier___prettier_2.3.2.tgz";
|
||||||
url = "https://registry.yarnpkg.com/prettier/-/prettier-2.3.1.tgz";
|
url = "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz";
|
||||||
sha1 = "76903c3f8c4449bc9ac597acefa24dc5ad4cbea6";
|
sha1 = "ef280a05ec253712e486233db5c6f23441e7342d";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -9066,11 +9066,11 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "vue_i18n___vue_i18n_8.24.4.tgz";
|
name = "vue_i18n___vue_i18n_8.24.5.tgz";
|
||||||
path = fetchurl {
|
path = fetchurl {
|
||||||
name = "vue_i18n___vue_i18n_8.24.4.tgz";
|
name = "vue_i18n___vue_i18n_8.24.5.tgz";
|
||||||
url = "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.4.tgz";
|
url = "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.5.tgz";
|
||||||
sha1 = "b158614c1df7db183d9cadddbb73e1d540269492";
|
sha1 = "7127a666d5be2199be69be39e439a419a90ff931";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -9098,11 +9098,11 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "vue_router___vue_router_3.5.1.tgz";
|
name = "vue_router___vue_router_3.5.2.tgz";
|
||||||
path = fetchurl {
|
path = fetchurl {
|
||||||
name = "vue_router___vue_router_3.5.1.tgz";
|
name = "vue_router___vue_router_3.5.2.tgz";
|
||||||
url = "https://registry.yarnpkg.com/vue-router/-/vue-router-3.5.1.tgz";
|
url = "https://registry.yarnpkg.com/vue-router/-/vue-router-3.5.2.tgz";
|
||||||
sha1 = "edf3cf4907952d1e0583e079237220c5ff6eb6c9";
|
sha1 = "5f55e3f251970e36c3e8d88a7cd2d67a350ade5c";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -9154,11 +9154,11 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "vuetify___vuetify_2.5.4.tgz";
|
name = "vuetify___vuetify_2.5.5.tgz";
|
||||||
path = fetchurl {
|
path = fetchurl {
|
||||||
name = "vuetify___vuetify_2.5.4.tgz";
|
name = "vuetify___vuetify_2.5.5.tgz";
|
||||||
url = "https://registry.yarnpkg.com/vuetify/-/vuetify-2.5.4.tgz";
|
url = "https://registry.yarnpkg.com/vuetify/-/vuetify-2.5.5.tgz";
|
||||||
sha1 = "037cc8d430b61188ab15b9a8cc1ee67e620fa6e7";
|
sha1 = "66d4058209e1d70e9c742d37384f3ae63add7b04";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,7 @@ pkgs.mkShell {
|
||||||
ffmpeg
|
ffmpeg
|
||||||
imagemagick
|
imagemagick
|
||||||
postgresql
|
postgresql
|
||||||
ruby_2_7
|
ruby_3_0
|
||||||
taglib
|
taglib
|
||||||
zlib
|
zlib
|
||||||
(
|
(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue