mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
discourse: 3.1.0 <- 3.2.0.beta1
The beta doesn't build, revert to a release. Fix #286332
This commit is contained in:
parent
73de017ef2
commit
859a581948
@ -13,7 +13,6 @@
|
|||||||
, gzip
|
, gzip
|
||||||
, gnutar
|
, gnutar
|
||||||
, git
|
, git
|
||||||
, esbuild
|
|
||||||
, cacert
|
, cacert
|
||||||
, util-linux
|
, util-linux
|
||||||
, gawk
|
, gawk
|
||||||
@ -47,13 +46,13 @@
|
|||||||
}@args:
|
}@args:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "3.2.0.beta1";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse";
|
repo = "discourse";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-HVjt5rsLSuyOaQxkbiTrsYsSXj3oSWjke98QVp+tEqk=";
|
sha256 = "sha256-Iv7VSnK8nZDpmIwIRPedSWlftABKuMOQ4MXDGpjuWrY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
ruby = ruby_3_2;
|
ruby = ruby_3_2;
|
||||||
@ -66,7 +65,6 @@ let
|
|||||||
gnutar
|
gnutar
|
||||||
git
|
git
|
||||||
brotli
|
brotli
|
||||||
esbuild
|
|
||||||
|
|
||||||
# Misc required system utils
|
# Misc required system utils
|
||||||
which
|
which
|
||||||
@ -204,7 +202,7 @@ let
|
|||||||
|
|
||||||
yarnOfflineCache = fetchYarnDeps {
|
yarnOfflineCache = fetchYarnDeps {
|
||||||
yarnLock = src + "/app/assets/javascripts/yarn.lock";
|
yarnLock = src + "/app/assets/javascripts/yarn.lock";
|
||||||
sha256 = "070h66zp8kmsigbrkh5d3jzbzvllzhbx0fa2yzx5lbpgnjhih3p2";
|
sha256 = "0sclrv3303dgg3r08dwhd1yvi3pvlnvnikn300vjsh6c71fnzhnj";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = runtimeDeps ++ [
|
nativeBuildInputs = runtimeDeps ++ [
|
||||||
@ -217,7 +215,6 @@ let
|
|||||||
nodejs_18
|
nodejs_18
|
||||||
jq
|
jq
|
||||||
moreutils
|
moreutils
|
||||||
esbuild
|
|
||||||
];
|
];
|
||||||
|
|
||||||
outputs = [ "out" "javascripts" ];
|
outputs = [ "out" "javascripts" ];
|
||||||
@ -241,12 +238,6 @@ let
|
|||||||
# hasn't been `patchShebangs`-ed yet. So instead we just use
|
# hasn't been `patchShebangs`-ed yet. So instead we just use
|
||||||
# `patch-package` from `nativeBuildInputs`.
|
# `patch-package` from `nativeBuildInputs`.
|
||||||
./asserts_patch-package_from_path.patch
|
./asserts_patch-package_from_path.patch
|
||||||
|
|
||||||
# `lib/discourse_js_processor.rb`
|
|
||||||
# tries to call `../node_modules/.bin/esbuild`, which
|
|
||||||
# hasn't been `patchShebangs`-ed yet. So instead we just use
|
|
||||||
# `esbuild` from `nativeBuildInputs`.
|
|
||||||
./assets_esbuild_from_path.patch
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# We have to set up an environment that is close enough to
|
# We have to set up an environment that is close enough to
|
||||||
@ -279,7 +270,6 @@ let
|
|||||||
popd &>/dev/null
|
popd &>/dev/null
|
||||||
|
|
||||||
redis-server >/dev/null &
|
redis-server >/dev/null &
|
||||||
REDIS_PID=$!
|
|
||||||
|
|
||||||
initdb -A trust $NIX_BUILD_TOP/postgres >/dev/null
|
initdb -A trust $NIX_BUILD_TOP/postgres >/dev/null
|
||||||
postgres -D $NIX_BUILD_TOP/postgres -k $NIX_BUILD_TOP >/dev/null &
|
postgres -D $NIX_BUILD_TOP/postgres -k $NIX_BUILD_TOP >/dev/null &
|
||||||
@ -305,8 +295,6 @@ let
|
|||||||
|
|
||||||
bundle exec rake db:migrate >/dev/null
|
bundle exec rake db:migrate >/dev/null
|
||||||
chmod -R +w tmp
|
chmod -R +w tmp
|
||||||
|
|
||||||
kill $REDIS_PID
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
@ -363,12 +351,6 @@ let
|
|||||||
|
|
||||||
# Make sure the notification email setting applies
|
# Make sure the notification email setting applies
|
||||||
./notification_email.patch
|
./notification_email.patch
|
||||||
|
|
||||||
# `lib/discourse_js_processor.rb`
|
|
||||||
# tries to call `../node_modules/.bin/esbuild`, which
|
|
||||||
# hasn't been `patchShebangs`-ed yet. So instead we just use
|
|
||||||
# `esbuild` from `nativeBuildInputs`.
|
|
||||||
./assets_esbuild_from_path.patch
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-assign";
|
repo = "discourse-assign";
|
||||||
rev = "e9c7cb5c3f90109bc47223b0aa4054d681e9cc04";
|
rev = "0cbf10b8055370445bd36536e51986bf48bdc57e";
|
||||||
sha256 = "sha256-w1h1dCSyOml+AT7lPKENYfawm6BU2De5CyBHrDnDcrM=";
|
sha256 = "sha256-7rJ2zQo1nCHwtVuLJUmdj66Ky2bi4Cpo+22H3DbO1uo=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-docs";
|
homepage = "https://github.com/discourse/discourse-docs";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-bbcode-color";
|
repo = "discourse-bbcode-color";
|
||||||
rev = "79ed22b3a3352adbd20f7e2222b9dbdb9fbaf7fe";
|
rev = "35aab2e9b92f8b01633d374ea999e7fd59d020d7";
|
||||||
sha256 = "sha256-AHgny9BW/ssmv0U2lwzVWgYKPsvWHD6kgU3mBMFX4Aw=";
|
sha256 = "sha256-DHckx921EeQysm1UPloCrt43BJetTnZKnTbJGk15NMs=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-bbcode-color";
|
homepage = "https://github.com/discourse/discourse-bbcode-color";
|
||||||
|
@ -22,4 +22,4 @@ DEPENDENCIES
|
|||||||
rrule (= 0.4.4)
|
rrule (= 0.4.4)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.4.17
|
2.4.13
|
||||||
|
@ -6,8 +6,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-calendar";
|
repo = "discourse-calendar";
|
||||||
rev = "4d4fe40d09f7232b1348e1ff910b37b2cec0835d";
|
rev = "afc2ee684de41601d6cecc46713d139760f176a6";
|
||||||
sha256 = "sha256-w1sqE3KxwrE8SWqZUtPVhjITOPFXwlj4iPyPZeSfvtI=";
|
sha256 = "sha256-rTQWO+E/Jg4zjZDYDvBrDQsox5q4dHkdQjwnJxgv3dI=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-calendar";
|
homepage = "https://github.com/discourse/discourse-calendar";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-chat-integration";
|
repo = "discourse-chat-integration";
|
||||||
rev = "4f9ccb58cae8600dcb6db84f38f235283911e6e8";
|
rev = "70fea6b66b68868aa4c00b45a169436deaa142a8";
|
||||||
sha256 = "sha256-Em9aAwAfUoqsOHLrqNhxUQXsO4Owydf9nhCHbBaqqpg=";
|
sha256 = "sha256-K9MmP1F0B6Na2dTqgnsjMbTQFkF+nNKkI8aF3zPAodc=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-chat-integration";
|
homepage = "https://github.com/discourse/discourse-chat-integration";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-data-explorer";
|
repo = "discourse-data-explorer";
|
||||||
rev = "06193f27ef15828479eea61ae4a80bf59806a535";
|
rev = "e4f8d3924a18b303c2bb7da9472cf0c060060e4e";
|
||||||
sha256 = "sha256-afjqgi2gzRpbZt5K9yXPy4BJ5qRv7A4ZkXHX85+Cv7s=";
|
sha256 = "sha256-K+GPszO3je6NmnhIRSqSEhylUK5oEByaS0bLfAGjvB4=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-data-explorer";
|
homepage = "https://github.com/discourse/discourse-data-explorer";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-docs";
|
repo = "discourse-docs";
|
||||||
rev = "89c7274b1a730edefd1b56c13b8c04305d4ef331";
|
rev = "a4b203274b88c5277d0b5b936de0bc0e0016726c";
|
||||||
sha256 = "sha256-j3zrGmoAvbSHFnbiUfetyfiQJebrtW3Iw5GvsRRq1kk=";
|
sha256 = "sha256-R+VP/gsb2Oa6lPVMhRoGZzOBx5C7kRSxqwYpWE10GHw=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-docs";
|
homepage = "https://github.com/discourse/discourse-docs";
|
||||||
|
@ -3,9 +3,7 @@ GEM
|
|||||||
specs:
|
specs:
|
||||||
addressable (2.8.5)
|
addressable (2.8.5)
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
base64 (0.1.1)
|
faraday (2.7.10)
|
||||||
faraday (2.7.11)
|
|
||||||
base64
|
|
||||||
faraday-net_http (>= 2.0, < 3.1)
|
faraday-net_http (>= 2.0, < 3.1)
|
||||||
ruby2_keywords (>= 0.0.4)
|
ruby2_keywords (>= 0.0.4)
|
||||||
faraday-net_http (3.0.2)
|
faraday-net_http (3.0.2)
|
||||||
@ -26,4 +24,4 @@ DEPENDENCIES
|
|||||||
sawyer (= 0.9.2)
|
sawyer (= 0.9.2)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.4.17
|
2.4.13
|
||||||
|
@ -6,8 +6,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-github";
|
repo = "discourse-github";
|
||||||
rev = "21fa5c97ca23b4c39aef5ab9c4f8ebb22f19a19b";
|
rev = "8aa068d56ef010cecaabd50657e7753f4bbecc1f";
|
||||||
sha256 = "sha256-0Teu6nMJWAT9TCjZ0RWZKtfsUKAS1cga5DvALIvrUyY=";
|
sha256 = "sha256-WzljuGvv6pki3ROkvhXZWQaq5D9JkCbWjdlkdRI8lHE=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-github";
|
homepage = "https://github.com/discourse/discourse-github";
|
||||||
|
@ -10,26 +10,16 @@
|
|||||||
};
|
};
|
||||||
version = "2.8.5";
|
version = "2.8.5";
|
||||||
};
|
};
|
||||||
base64 = {
|
|
||||||
groups = ["default"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "0cydk9p2cv25qysm0sn2pb97fcpz1isa7n3c8xm1gd99li8x6x8c";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.1.1";
|
|
||||||
};
|
|
||||||
faraday = {
|
faraday = {
|
||||||
dependencies = ["base64" "faraday-net_http" "ruby2_keywords"];
|
dependencies = ["faraday-net_http" "ruby2_keywords"];
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0vn7jwss2v6jhnxvjsiwbs3irjwhbx9zxn4l6fhd4rkcfyxzdnw5";
|
sha256 = "187clqhp9mv5mnqmjlfdp57svhsg1bggz84ak8v333j9skrnrgh9";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.7.11";
|
version = "2.7.10";
|
||||||
};
|
};
|
||||||
faraday-net_http = {
|
faraday-net_http = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-math";
|
repo = "discourse-math";
|
||||||
rev = "66d522cd8e4cf98547f083c4decdc64c688767de";
|
rev = "529ad1fe6da924da378a60bec48c35657bb01a68";
|
||||||
sha256 = "sha256-Zil6LWl6ACyP/ZkxNli1u9/3dlHFRETtmIov1BmQ3u4=";
|
sha256 = "sha256-zhtAy0tTVMzQfPilTwfyyzxgCJD4xazOITBuliFR5Gg=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-math";
|
homepage = "https://github.com/discourse/discourse-math";
|
||||||
|
@ -6,8 +6,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-openid-connect";
|
repo = "discourse-openid-connect";
|
||||||
rev = "322bf50700840b327d9a52091fedbacc0bb1edfe";
|
rev = "b1df541ad29f6f6098a1008b83393b2d400986ed";
|
||||||
sha256 = "sha256-8WMhlKHYVm2wHbkP7b8dhOosvwDNjHqTrEziQT1Bu/4=";
|
sha256 = "sha256-afRd/9M0nQGkS14Q8BJhcJwMCkOku3Fr0uHxcRl44vQ=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-openid-connect";
|
homepage = "https://github.com/discourse/discourse-openid-connect";
|
||||||
|
@ -13,4 +13,4 @@ DEPENDENCIES
|
|||||||
webrick (= 1.7.0)
|
webrick (= 1.7.0)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.4.17
|
2.4.13
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-prometheus";
|
repo = "discourse-prometheus";
|
||||||
rev = "305610c90079556cdfa2aa09b567a6ca10d11de5";
|
rev = "8a7a46a80cc65aa0839bc5e3c3b6f8ef6544089f";
|
||||||
sha256 = "sha256-dz+/2pbbhs8sxYMxe/wAjvdxoU4ihjN95A4ngP0KzQg=";
|
sha256 = "sha256-TL+pbP26LvRMKdy8CAuBEK+LZfAs8HfggMeUDaBu9hc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-reactions";
|
repo = "discourse-reactions";
|
||||||
rev = "f04f077e9f0392ca2373ca001044069d650ae6e5";
|
rev = "643f807a3a2195f08211064301f0350d9f51604f";
|
||||||
sha256 = "sha256-HuFXgfd5HO7qfVlf1RHxenlNL10YRF5OYya4Yt6eS14=";
|
sha256 = "sha256-4FdiYUNysSuOJ664G3YvlUHx/J7MLUS3kVBdXT47oEw=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-reactions";
|
homepage = "https://github.com/discourse/discourse-reactions";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-saved-searches";
|
repo = "discourse-saved-searches";
|
||||||
rev = "1b90d26cc35bd049d0ab7ea3922f7db6ac7ec017";
|
rev = "7c9bdcd68951e7cef16cafe3c4bfb583bb994d2a";
|
||||||
sha256 = "sha256-d+zbm8UAZ/ow8o1Y5mWAyjg5JCvQ761jcGcO72tHEIs=";
|
sha256 = "sha256-6RIN12ACDCeRcxmsC3FgeIPdvovI4arn7w/Dqil1yCI=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-saved-searches";
|
homepage = "https://github.com/discourse/discourse-saved-searches";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-solved";
|
repo = "discourse-solved";
|
||||||
rev = "3b9ecc69c6a25b7671c42842b8a6f3872873f537";
|
rev = "b5d487d6a5bfe2571d936eec5911d02a5f3fcc32";
|
||||||
sha256 = "sha256-gtG+v25jJ0DiYlU2vatreGj13yrb5WWRTvxlcDdAibw=";
|
sha256 = "sha256-Tt7B9PcsV8E7B+m8GnJw+MBz9rGYtojKt6NjBFMQvOM=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-solved";
|
homepage = "https://github.com/discourse/discourse-solved";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-spoiler-alert";
|
repo = "discourse-spoiler-alert";
|
||||||
rev = "b57e79343acc15cb2c0a032a2deb29ad4b9d53cc";
|
rev = "65989714af08eda44196cca3a0afe85c9e9443f9";
|
||||||
sha256 = "sha256-Ypt6PYCZzArCv9KkCtw5rfT6++dDoUx5q9m/eMvP0Sc=";
|
sha256 = "sha256-R/vqNEDst50+Y7anckIvhy4viBOqBemIZMh4sPt7kRM=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-spoiler-alert";
|
homepage = "https://github.com/discourse/discourse-spoiler-alert";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-voting";
|
repo = "discourse-voting";
|
||||||
rev = "83ab47f3186694039c6850ac3e230443e05d37c5";
|
rev = "6449fc15658d972e20086a3f1fae3dbac9cd9eeb";
|
||||||
sha256 = "sha256-2sSBLSSPddxXqvEukDn8tzLVOOWoPBA+C8N5jVccCjA=";
|
sha256 = "sha256-f04LpVeodCVEB/t5Ic2dketp542Nrc0rZWbQ6hrC22g=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-voting";
|
homepage = "https://github.com/discourse/discourse-voting";
|
||||||
|
@ -5,8 +5,8 @@ mkDiscoursePlugin {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "discourse";
|
owner = "discourse";
|
||||||
repo = "discourse-yearly-review";
|
repo = "discourse-yearly-review";
|
||||||
rev = "47014a8ecb96da8d45d0fe141a069010161b3087";
|
rev = "3246c6b378f9e69e664c575efc63c2ad83bcac2f";
|
||||||
sha256 = "sha256-9OIgxRdQoYH19vb7GcTt8MxVM5N4JPzmMIsg7FQOjJs=";
|
sha256 = "sha256-usHHyfYP4YAQ94f7gvNSH7VBRRkdZMmsSi9QQM8tPfY=";
|
||||||
};
|
};
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/discourse/discourse-yearly-review";
|
homepage = "https://github.com/discourse/discourse-yearly-review";
|
||||||
|
@ -18,7 +18,7 @@ else
|
|||||||
# this allows us to include the bits of rails we use without pieces we do not.
|
# this allows us to include the bits of rails we use without pieces we do not.
|
||||||
#
|
#
|
||||||
# To issue a rails update bump the version number here
|
# To issue a rails update bump the version number here
|
||||||
rails_version = "7.0.7"
|
rails_version = "7.0.5.1"
|
||||||
gem "actionmailer", rails_version
|
gem "actionmailer", rails_version
|
||||||
gem "actionpack", rails_version
|
gem "actionpack", rails_version
|
||||||
gem "actionview", rails_version
|
gem "actionview", rails_version
|
||||||
@ -141,10 +141,10 @@ group :test do
|
|||||||
gem "fakeweb", require: false
|
gem "fakeweb", require: false
|
||||||
gem "minitest", require: false
|
gem "minitest", require: false
|
||||||
gem "simplecov", require: false
|
gem "simplecov", require: false
|
||||||
gem "selenium-webdriver", "~> 4.11", require: false
|
gem "selenium-webdriver", require: false
|
||||||
gem "test-prof"
|
gem "test-prof"
|
||||||
|
gem "webdrivers", require: false
|
||||||
gem "rails-dom-testing", require: false
|
gem "rails-dom-testing", require: false
|
||||||
gem "minio_runner", require: false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test, :development do
|
group :test, :development do
|
||||||
@ -259,11 +259,6 @@ if ENV["IMPORT"] == "1"
|
|||||||
gem "parallel", require: false
|
gem "parallel", require: false
|
||||||
end
|
end
|
||||||
|
|
||||||
if ENV["GENERIC_IMPORT"] == "1"
|
|
||||||
gem "sqlite3"
|
|
||||||
gem "redcarpet"
|
|
||||||
end
|
|
||||||
|
|
||||||
gem "web-push"
|
gem "web-push"
|
||||||
gem "colored2", require: false
|
gem "colored2", require: false
|
||||||
gem "maxminddb"
|
gem "maxminddb"
|
||||||
|
@ -9,7 +9,7 @@ GIT
|
|||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/thoughtbot/shoulda-matchers.git
|
remote: https://github.com/thoughtbot/shoulda-matchers.git
|
||||||
revision: 68f76ce13e9892339f90c4928339dfd769cfa613
|
revision: 783a90554053002017510285bc736099b2749c22
|
||||||
specs:
|
specs:
|
||||||
shoulda-matchers (5.3.0)
|
shoulda-matchers (5.3.0)
|
||||||
activesupport (>= 5.2.0)
|
activesupport (>= 5.2.0)
|
||||||
@ -17,47 +17,47 @@ GIT
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actionmailer (7.0.7)
|
actionmailer (7.0.5.1)
|
||||||
actionpack (= 7.0.7)
|
actionpack (= 7.0.5.1)
|
||||||
actionview (= 7.0.7)
|
actionview (= 7.0.5.1)
|
||||||
activejob (= 7.0.7)
|
activejob (= 7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (7.0.7)
|
actionpack (7.0.5.1)
|
||||||
actionview (= 7.0.7)
|
actionview (= 7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
rack (~> 2.0, >= 2.2.4)
|
rack (~> 2.0, >= 2.2.4)
|
||||||
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)
|
||||||
actionview (7.0.7)
|
actionview (7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.4)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.0)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
actionview_precompiler (0.3.0)
|
actionview_precompiler (0.2.3)
|
||||||
actionview (>= 6.0.a)
|
actionview (>= 6.0.a)
|
||||||
active_model_serializers (0.8.4)
|
active_model_serializers (0.8.4)
|
||||||
activemodel (>= 3.0)
|
activemodel (>= 3.0)
|
||||||
activejob (7.0.7)
|
activejob (7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.0.7)
|
activemodel (7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
activerecord (7.0.7)
|
activerecord (7.0.5.1)
|
||||||
activemodel (= 7.0.7)
|
activemodel (= 7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
activesupport (7.0.7)
|
activesupport (7.0.5.1)
|
||||||
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)
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
addressable (2.8.5)
|
addressable (2.8.4)
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
annotate (3.2.0)
|
annotate (3.2.0)
|
||||||
activerecord (>= 3.2, < 8.0)
|
activerecord (>= 3.2, < 8.0)
|
||||||
@ -82,7 +82,6 @@ GEM
|
|||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sigv4 (1.5.0)
|
aws-sigv4 (1.5.0)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
base64 (0.1.1)
|
|
||||||
better_errors (2.10.1)
|
better_errors (2.10.1)
|
||||||
erubi (>= 1.0.0)
|
erubi (>= 1.0.0)
|
||||||
rack (>= 0.9.0)
|
rack (>= 0.9.0)
|
||||||
@ -110,7 +109,7 @@ GEM
|
|||||||
cgi (0.3.6)
|
cgi (0.3.6)
|
||||||
chunky_png (1.4.0)
|
chunky_png (1.4.0)
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
colored2 (4.0.0)
|
colored2 (3.1.2)
|
||||||
concurrent-ruby (1.2.2)
|
concurrent-ruby (1.2.2)
|
||||||
connection_pool (2.4.1)
|
connection_pool (2.4.1)
|
||||||
cose (1.3.0)
|
cose (1.3.0)
|
||||||
@ -120,7 +119,7 @@ GEM
|
|||||||
crack (0.4.5)
|
crack (0.4.5)
|
||||||
rexml
|
rexml
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
css_parser (1.16.0)
|
css_parser (1.14.0)
|
||||||
addressable
|
addressable
|
||||||
dartsass-ruby (3.0.1)
|
dartsass-ruby (3.0.1)
|
||||||
sass-embedded (~> 1.54)
|
sass-embedded (~> 1.54)
|
||||||
@ -145,8 +144,8 @@ GEM
|
|||||||
docile (1.4.0)
|
docile (1.4.0)
|
||||||
email_reply_trimmer (0.1.13)
|
email_reply_trimmer (0.1.13)
|
||||||
erubi (1.12.0)
|
erubi (1.12.0)
|
||||||
excon (0.102.0)
|
excon (0.100.0)
|
||||||
execjs (2.9.0)
|
execjs (2.8.1)
|
||||||
exifr (1.4.0)
|
exifr (1.4.0)
|
||||||
fabrication (2.30.0)
|
fabrication (2.30.0)
|
||||||
faker (2.23.0)
|
faker (2.23.0)
|
||||||
@ -164,9 +163,9 @@ GEM
|
|||||||
ffi (1.15.5)
|
ffi (1.15.5)
|
||||||
fspath (3.1.2)
|
fspath (3.1.2)
|
||||||
gc_tracer (1.5.1)
|
gc_tracer (1.5.1)
|
||||||
globalid (1.2.1)
|
globalid (1.1.0)
|
||||||
activesupport (>= 6.1)
|
activesupport (>= 5.0)
|
||||||
google-protobuf (3.24.3)
|
google-protobuf (3.23.4)
|
||||||
guess_html_encoding (0.0.11)
|
guess_html_encoding (0.0.11)
|
||||||
hana (1.3.7)
|
hana (1.3.7)
|
||||||
hashdiff (1.0.1)
|
hashdiff (1.0.1)
|
||||||
@ -189,7 +188,7 @@ GEM
|
|||||||
json (2.6.3)
|
json (2.6.3)
|
||||||
json-schema (3.0.0)
|
json-schema (3.0.0)
|
||||||
addressable (>= 2.8)
|
addressable (>= 2.8)
|
||||||
json_schemer (2.0.0)
|
json_schemer (1.0.3)
|
||||||
hana (~> 1.3)
|
hana (~> 1.3)
|
||||||
regexp_parser (~> 2.0)
|
regexp_parser (~> 2.0)
|
||||||
simpleidn (~> 0.2)
|
simpleidn (~> 0.2)
|
||||||
@ -223,20 +222,19 @@ GEM
|
|||||||
matrix (0.4.2)
|
matrix (0.4.2)
|
||||||
maxminddb (0.1.22)
|
maxminddb (0.1.22)
|
||||||
memory_profiler (1.0.1)
|
memory_profiler (1.0.1)
|
||||||
message_bus (4.3.8)
|
message_bus (4.3.7)
|
||||||
rack (>= 1.1.3)
|
rack (>= 1.1.3)
|
||||||
method_source (1.0.0)
|
method_source (1.0.0)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.2)
|
||||||
mini_portile2 (2.8.4)
|
mini_portile2 (2.8.4)
|
||||||
mini_racer (0.8.0)
|
mini_racer (0.8.0)
|
||||||
libv8-node (~> 18.16.0.0)
|
libv8-node (~> 18.16.0.0)
|
||||||
mini_scheduler (0.16.0)
|
mini_scheduler (0.16.0)
|
||||||
sidekiq (>= 4.2.3, < 7.0)
|
sidekiq (>= 4.2.3, < 7.0)
|
||||||
mini_sql (1.5.0)
|
mini_sql (1.4.0)
|
||||||
mini_suffix (0.3.3)
|
mini_suffix (0.3.3)
|
||||||
ffi (~> 1.9)
|
ffi (~> 1.9)
|
||||||
minio_runner (0.1.1)
|
minitest (5.19.0)
|
||||||
minitest (5.20.0)
|
|
||||||
mocha (2.1.0)
|
mocha (2.1.0)
|
||||||
ruby2_keywords (>= 0.0.5)
|
ruby2_keywords (>= 0.0.5)
|
||||||
msgpack (1.7.2)
|
msgpack (1.7.2)
|
||||||
@ -255,7 +253,7 @@ GEM
|
|||||||
net-smtp (0.3.3)
|
net-smtp (0.3.3)
|
||||||
net-protocol
|
net-protocol
|
||||||
nio4r (2.5.9)
|
nio4r (2.5.9)
|
||||||
nokogiri (1.15.4)
|
nokogiri (1.15.3)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
oauth (1.1.0)
|
oauth (1.1.0)
|
||||||
@ -270,7 +268,7 @@ GEM
|
|||||||
multi_json (~> 1.3)
|
multi_json (~> 1.3)
|
||||||
multi_xml (~> 0.5)
|
multi_xml (~> 0.5)
|
||||||
rack (>= 1.2, < 4)
|
rack (>= 1.2, < 4)
|
||||||
oj (3.16.1)
|
oj (3.15.1)
|
||||||
omniauth (1.9.2)
|
omniauth (1.9.2)
|
||||||
hashie (>= 3.4.6)
|
hashie (>= 3.4.6)
|
||||||
rack (>= 1.6.2, < 3)
|
rack (>= 1.6.2, < 3)
|
||||||
@ -298,7 +296,7 @@ GEM
|
|||||||
openssl (> 2.0)
|
openssl (> 2.0)
|
||||||
optimist (3.1.0)
|
optimist (3.1.0)
|
||||||
parallel (1.23.0)
|
parallel (1.23.0)
|
||||||
parallel_tests (4.2.2)
|
parallel_tests (4.2.1)
|
||||||
parallel
|
parallel
|
||||||
parser (3.2.2.3)
|
parser (3.2.2.3)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
@ -315,17 +313,17 @@ GEM
|
|||||||
pry-rails (0.3.9)
|
pry-rails (0.3.9)
|
||||||
pry (>= 0.10.4)
|
pry (>= 0.10.4)
|
||||||
public_suffix (5.0.3)
|
public_suffix (5.0.3)
|
||||||
puma (6.3.1)
|
puma (6.3.0)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
racc (1.7.1)
|
racc (1.7.1)
|
||||||
rack (2.2.8)
|
rack (2.2.8)
|
||||||
rack-mini-profiler (3.1.1)
|
rack-mini-profiler (3.1.0)
|
||||||
rack (>= 1.2.0)
|
rack (>= 1.2.0)
|
||||||
rack-protection (3.1.0)
|
rack-protection (3.0.6)
|
||||||
rack (~> 2.2, >= 2.2.4)
|
rack
|
||||||
rack-test (2.1.0)
|
rack-test (2.1.0)
|
||||||
rack (>= 1.3)
|
rack (>= 1.3)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.1.1)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
@ -339,9 +337,9 @@ GEM
|
|||||||
rails_multisite (5.0.0)
|
rails_multisite (5.0.0)
|
||||||
activerecord (>= 6.0)
|
activerecord (>= 6.0)
|
||||||
railties (>= 6.0)
|
railties (>= 6.0)
|
||||||
railties (7.0.7)
|
railties (7.0.5.1)
|
||||||
actionpack (= 7.0.7)
|
actionpack (= 7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
method_source
|
method_source
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
@ -365,7 +363,7 @@ GEM
|
|||||||
rack (>= 1.4)
|
rack (>= 1.4)
|
||||||
rexml (3.2.6)
|
rexml (3.2.6)
|
||||||
rinku (2.0.6)
|
rinku (2.0.6)
|
||||||
rotp (6.3.0)
|
rotp (6.2.2)
|
||||||
rouge (4.1.3)
|
rouge (4.1.3)
|
||||||
rqrcode (2.2.0)
|
rqrcode (2.2.0)
|
||||||
chunky_png (~> 1.0)
|
chunky_png (~> 1.0)
|
||||||
@ -395,7 +393,7 @@ GEM
|
|||||||
rspec-mocks (~> 3.12)
|
rspec-mocks (~> 3.12)
|
||||||
rspec-support (~> 3.12)
|
rspec-support (~> 3.12)
|
||||||
rspec-support (3.12.1)
|
rspec-support (3.12.1)
|
||||||
rss (0.3.0)
|
rss (0.2.9)
|
||||||
rexml
|
rexml
|
||||||
rswag-specs (2.10.1)
|
rswag-specs (2.10.1)
|
||||||
activesupport (>= 3.1, < 7.1)
|
activesupport (>= 3.1, < 7.1)
|
||||||
@ -404,8 +402,7 @@ GEM
|
|||||||
rspec-core (>= 2.14)
|
rspec-core (>= 2.14)
|
||||||
rtlcss (0.2.1)
|
rtlcss (0.2.1)
|
||||||
mini_racer (>= 0.6.3)
|
mini_racer (>= 0.6.3)
|
||||||
rubocop (1.56.3)
|
rubocop (1.55.1)
|
||||||
base64 (~> 0.1.1)
|
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (>= 3.17.0)
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
@ -425,7 +422,7 @@ GEM
|
|||||||
rubocop-rspec (>= 2.0.0)
|
rubocop-rspec (>= 2.0.0)
|
||||||
rubocop-factory_bot (2.23.1)
|
rubocop-factory_bot (2.23.1)
|
||||||
rubocop (~> 1.33)
|
rubocop (~> 1.33)
|
||||||
rubocop-rspec (2.23.2)
|
rubocop-rspec (2.23.0)
|
||||||
rubocop (~> 1.33)
|
rubocop (~> 1.33)
|
||||||
rubocop-capybara (~> 2.17)
|
rubocop-capybara (~> 2.17)
|
||||||
rubocop-factory_bot (~> 2.22)
|
rubocop-factory_bot (~> 2.22)
|
||||||
@ -439,10 +436,10 @@ GEM
|
|||||||
sanitize (6.0.2)
|
sanitize (6.0.2)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.12.0)
|
nokogiri (>= 1.12.0)
|
||||||
sass-embedded (1.66.1)
|
sass-embedded (1.64.1)
|
||||||
google-protobuf (~> 3.23)
|
google-protobuf (~> 3.23)
|
||||||
rake (>= 13.0.0)
|
rake (>= 13.0.0)
|
||||||
selenium-webdriver (4.12.0)
|
selenium-webdriver (4.10.0)
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
rubyzip (>= 1.2.2, < 3.0)
|
rubyzip (>= 1.2.2, < 3.0)
|
||||||
websocket (~> 1.0)
|
websocket (~> 1.0)
|
||||||
@ -465,7 +462,7 @@ GEM
|
|||||||
actionpack (>= 5.2)
|
actionpack (>= 5.2)
|
||||||
activesupport (>= 5.2)
|
activesupport (>= 5.2)
|
||||||
sprockets (>= 3.0.0)
|
sprockets (>= 3.0.0)
|
||||||
sshkey (3.0.0)
|
sshkey (2.0.0)
|
||||||
stackprof (0.2.25)
|
stackprof (0.2.25)
|
||||||
syntax_tree (6.1.1)
|
syntax_tree (6.1.1)
|
||||||
prettier_print (>= 1.2.0)
|
prettier_print (>= 1.2.0)
|
||||||
@ -494,7 +491,11 @@ GEM
|
|||||||
hkdf (~> 1.0)
|
hkdf (~> 1.0)
|
||||||
jwt (~> 2.0)
|
jwt (~> 2.0)
|
||||||
openssl (~> 3.0)
|
openssl (~> 3.0)
|
||||||
webmock (3.19.1)
|
webdrivers (5.3.1)
|
||||||
|
nokogiri (~> 1.6)
|
||||||
|
rubyzip (>= 1.3.0)
|
||||||
|
selenium-webdriver (~> 4.0, < 4.11)
|
||||||
|
webmock (3.18.1)
|
||||||
addressable (>= 2.8.0)
|
addressable (>= 2.8.0)
|
||||||
crack (>= 0.3.2)
|
crack (>= 0.3.2)
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
@ -503,20 +504,20 @@ GEM
|
|||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
yaml-lint (0.1.2)
|
yaml-lint (0.1.2)
|
||||||
yard (0.9.34)
|
yard (0.9.34)
|
||||||
zeitwerk (2.6.11)
|
zeitwerk (2.6.10)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
actionmailer (= 7.0.7)
|
actionmailer (= 7.0.5.1)
|
||||||
actionpack (= 7.0.7)
|
actionpack (= 7.0.5.1)
|
||||||
actionview (= 7.0.7)
|
actionview (= 7.0.5.1)
|
||||||
actionview_precompiler
|
actionview_precompiler
|
||||||
active_model_serializers (~> 0.8.3)
|
active_model_serializers (~> 0.8.3)
|
||||||
activemodel (= 7.0.7)
|
activemodel (= 7.0.5.1)
|
||||||
activerecord (= 7.0.7)
|
activerecord (= 7.0.5.1)
|
||||||
activesupport (= 7.0.7)
|
activesupport (= 7.0.5.1)
|
||||||
addressable
|
addressable
|
||||||
annotate
|
annotate
|
||||||
aws-sdk-s3
|
aws-sdk-s3
|
||||||
@ -576,7 +577,6 @@ DEPENDENCIES
|
|||||||
mini_scheduler
|
mini_scheduler
|
||||||
mini_sql
|
mini_sql
|
||||||
mini_suffix
|
mini_suffix
|
||||||
minio_runner
|
|
||||||
minitest
|
minitest
|
||||||
mocha
|
mocha
|
||||||
multi_json
|
multi_json
|
||||||
@ -604,7 +604,7 @@ DEPENDENCIES
|
|||||||
rails-dom-testing
|
rails-dom-testing
|
||||||
rails_failover
|
rails_failover
|
||||||
rails_multisite
|
rails_multisite
|
||||||
railties (= 7.0.7)
|
railties (= 7.0.5.1)
|
||||||
rake
|
rake
|
||||||
rb-fsevent
|
rb-fsevent
|
||||||
rbtrace
|
rbtrace
|
||||||
@ -625,7 +625,7 @@ DEPENDENCIES
|
|||||||
ruby-readability
|
ruby-readability
|
||||||
rubyzip
|
rubyzip
|
||||||
sanitize
|
sanitize
|
||||||
selenium-webdriver (~> 4.11)
|
selenium-webdriver
|
||||||
shoulda-matchers!
|
shoulda-matchers!
|
||||||
sidekiq
|
sidekiq
|
||||||
simplecov
|
simplecov
|
||||||
@ -642,9 +642,10 @@ DEPENDENCIES
|
|||||||
unf
|
unf
|
||||||
unicorn
|
unicorn
|
||||||
web-push
|
web-push
|
||||||
|
webdrivers
|
||||||
webmock
|
webmock
|
||||||
yaml-lint
|
yaml-lint
|
||||||
yard
|
yard
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.4.17
|
2.4.13
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "15ni57icsw1ilz5srlasff4h31h2ckgmxbdd8jnbniscvz4x2sd0";
|
sha256 = "1pz26qpdx1xncpy5h8k4afw0npnh6wn580yvwv2cf857zrzvr1pm";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
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"];
|
||||||
@ -16,10 +16,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "150sjsk12vzj9aswjy3cz124l8n8sn52bhd0wwly73rwc1a750sg";
|
sha256 = "003y7cdxwzdqx8hgw02kf1b5mp8qr8syx07f35sk3ghhqxp39ksy";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
actionview = {
|
actionview = {
|
||||||
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
|
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
|
||||||
@ -27,10 +27,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1nn21k5psxdv2fkwxs679lr0b8n1nzli2ks343cx4azn6snp8b8a";
|
sha256 = "11ihpqcvz3f38ka85zdjkdcvgdbcan81dbr0y9bi784jn1v5ggwa";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
actionview_precompiler = {
|
actionview_precompiler = {
|
||||||
dependencies = ["actionview"];
|
dependencies = ["actionview"];
|
||||||
@ -38,10 +38,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "07jyr2h87ha6k2y965rs4ywq142ddkfkhbmp0r44xg4wnffr8jbl";
|
sha256 = "07dx8vkwig8han4zccs0chahcf9ibd4abzx9n56qah8zak5cyrhd";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.3.0";
|
version = "0.2.3";
|
||||||
};
|
};
|
||||||
active_model_serializers = {
|
active_model_serializers = {
|
||||||
dependencies = ["activemodel"];
|
dependencies = ["activemodel"];
|
||||||
@ -60,10 +60,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0s5r5z9jm57jjabh8w2823rpjd1agn8z2rlqgyyn4s9pbbhgalzy";
|
sha256 = "11wkxf16zdb9gsnc94x4hyj89wjks06gnk4fbl7gp5vkbl744n83";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
activemodel = {
|
activemodel = {
|
||||||
dependencies = ["activesupport"];
|
dependencies = ["activesupport"];
|
||||||
@ -71,10 +71,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1rspbw4yxx9fh2wyl2wvgwadwapfyx7j9zlirpd4pmk31wkhl4hf";
|
sha256 = "12f89hxs4s26ggsg4bnz9qxlcsclcgx9gdsl8dni5jc0gk47h14y";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
activerecord = {
|
activerecord = {
|
||||||
dependencies = ["activemodel" "activesupport"];
|
dependencies = ["activemodel" "activesupport"];
|
||||||
@ -82,10 +82,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1ygg145wxlgm12b1x5r0rsk2aa6i2wjz7bgb21j8vmyqyfl272cy";
|
sha256 = "1sfdq2slmsc0ygncl36dq1lmjww1y3b42izrnn62cyisiag28796";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
activesupport = {
|
activesupport = {
|
||||||
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
|
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
|
||||||
@ -93,10 +93,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1wzbnv3hns0yiwbgh1m3q5j0d7b0k52nlpwirhxyv3l0ycmljfr9";
|
sha256 = "0m1sa6djlm9cz6mz3lcbqqahvm6qj75dmq3phpn2ysyxnlz2hr0c";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
addressable = {
|
addressable = {
|
||||||
dependencies = ["public_suffix"];
|
dependencies = ["public_suffix"];
|
||||||
@ -104,10 +104,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "05r1fwy487klqkya7vzia8hnklcxy4vr92m9dmni3prfwk6zpw33";
|
sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.8.5";
|
version = "2.8.4";
|
||||||
};
|
};
|
||||||
annotate = {
|
annotate = {
|
||||||
dependencies = ["activerecord" "rake"];
|
dependencies = ["activerecord" "rake"];
|
||||||
@ -205,16 +205,6 @@
|
|||||||
};
|
};
|
||||||
version = "1.5.0";
|
version = "1.5.0";
|
||||||
};
|
};
|
||||||
base64 = {
|
|
||||||
groups = ["default" "development" "test"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "0cydk9p2cv25qysm0sn2pb97fcpz1isa7n3c8xm1gd99li8x6x8c";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.1.1";
|
|
||||||
};
|
|
||||||
better_errors = {
|
better_errors = {
|
||||||
dependencies = ["erubi" "rack" "rouge"];
|
dependencies = ["erubi" "rack" "rouge"];
|
||||||
groups = ["development"];
|
groups = ["development"];
|
||||||
@ -361,10 +351,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1zj06gjqwykgzxmbkp2hmg3wv5kv8zz5d77acxipzcgicdjgvfan";
|
sha256 = "0jlbqa9q4mvrm73aw9mxh23ygzbjiqwisl32d8szfb5fxvbjng5i";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "4.0.0";
|
version = "3.1.2";
|
||||||
};
|
};
|
||||||
concurrent-ruby = {
|
concurrent-ruby = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
@ -434,10 +424,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "18mii41bbl106rn940ah8v3xclj4yrxxa0bwlwp546244n9b83zp";
|
sha256 = "04q1vin8slr3k8mp76qz0wqgap6f9kdsbryvgfq9fljhrm463kpj";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.16.0";
|
version = "1.14.0";
|
||||||
};
|
};
|
||||||
dartsass-ruby = {
|
dartsass-ruby = {
|
||||||
dependencies = ["sass-embedded"];
|
dependencies = ["sass-embedded"];
|
||||||
@ -582,20 +572,20 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0mbkyyadz9vw7mzixi9dks6i6iw033yn2hzwfvnfdvgqq6ywqs4g";
|
sha256 = "08r6qgbpkxxsihjmlspk3l1sr69q5hx35p1l4wp7rmkbzys89867";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.102.0";
|
version = "0.100.0";
|
||||||
};
|
};
|
||||||
execjs = {
|
execjs = {
|
||||||
groups = ["assets" "default"];
|
groups = ["assets" "default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1a4dhqclx0n4dc5riiff1nkwfinaf5an1dxjywmlwa9wm57r9q9p";
|
sha256 = "121h6af4i6wr3wxvv84y53jcyw2sk71j5wsncm6wq6yqrwcrk4vd";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.9.0";
|
version = "2.8.1";
|
||||||
};
|
};
|
||||||
exifr = {
|
exifr = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
@ -756,20 +746,20 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1sbw6b66r7cwdx3jhs46s4lr991969hvigkjpbdl7y3i31qpdgvh";
|
sha256 = "0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.2.1";
|
version = "1.1.0";
|
||||||
};
|
};
|
||||||
google-protobuf = {
|
google-protobuf = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0pcl4x4cw3snl5xzs99lm82m9xkfs8vm1a8dfrc34pwb77mwrwv3";
|
sha256 = "1dq5lgkxhagqr8zjrwr10zi8rldbg2vhis2m5q86v5q9415ylfgj";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.24.3";
|
version = "3.23.4";
|
||||||
};
|
};
|
||||||
guess_html_encoding = {
|
guess_html_encoding = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
@ -930,10 +920,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0spgxaxvsl3qvyj9qb95gd5hvy2pnp98hbgp8nfw6s69yyw0xmgj";
|
sha256 = "1mbf7v8bzmxyk413y16drnww68bgyzknlqmaqvj785iakja7in7x";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.0.0";
|
version = "1.0.3";
|
||||||
};
|
};
|
||||||
jwt = {
|
jwt = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
@ -1132,10 +1122,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "15xqp7pnicjh2868fsc6fmxw8cw32bpiaqpc5bz8cwdib09ns3qk";
|
sha256 = "1ppqgch8xxccpmccdx37lb00112ayqjb80zz5m3w3298vdzb1kn4";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "4.3.8";
|
version = "4.3.7";
|
||||||
};
|
};
|
||||||
method_source = {
|
method_source = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
@ -1148,14 +1138,14 @@
|
|||||||
version = "1.0.0";
|
version = "1.0.0";
|
||||||
};
|
};
|
||||||
mini_mime = {
|
mini_mime = {
|
||||||
groups = ["default" "test"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6";
|
sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.1.5";
|
version = "1.1.2";
|
||||||
};
|
};
|
||||||
mini_portile2 = {
|
mini_portile2 = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
@ -1194,10 +1184,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0yrxjmwhfnvcwbj9vscyq0z67sq09zl8qhmzgakq2ywy4yvcpwgg";
|
sha256 = "1dgwyyya821sfj4f92sljsxmmnak2yrzsbckvy82001zgq1n3b41";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.5.0";
|
version = "1.4.0";
|
||||||
};
|
};
|
||||||
mini_suffix = {
|
mini_suffix = {
|
||||||
dependencies = ["ffi"];
|
dependencies = ["ffi"];
|
||||||
@ -1210,25 +1200,15 @@
|
|||||||
};
|
};
|
||||||
version = "0.3.3";
|
version = "0.3.3";
|
||||||
};
|
};
|
||||||
minio_runner = {
|
|
||||||
groups = ["test"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "11rwvbqichq5jipgbr5x6s609485ga7vxc32r3h9vx342gs6nrzy";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.1.1";
|
|
||||||
};
|
|
||||||
minitest = {
|
minitest = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0bkmfi9mb49m0fkdhl2g38i3xxa02d411gg0m8x0gvbwfmmg5ym3";
|
sha256 = "0jnpsbb2dbcs95p4is4431l2pw1l5pn7dfg3vkgb4ga464j0c5l6";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "5.20.0";
|
version = "5.19.0";
|
||||||
};
|
};
|
||||||
mocha = {
|
mocha = {
|
||||||
dependencies = ["ruby2_keywords"];
|
dependencies = ["ruby2_keywords"];
|
||||||
@ -1356,10 +1336,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0k9w2z0953mnjrsji74cshqqp08q7m1r6zhadw1w0g34xzjh3a74";
|
sha256 = "1jw8a20a9k05fpz3q24im19b97idss3179z76yn5scc5b8lk2rl7";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.15.4";
|
version = "1.15.3";
|
||||||
};
|
};
|
||||||
oauth = {
|
oauth = {
|
||||||
dependencies = ["oauth-tty" "snaky_hash" "version_gem"];
|
dependencies = ["oauth-tty" "snaky_hash" "version_gem"];
|
||||||
@ -1399,10 +1379,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0m4vsd6i093kmyz9gckvzpnws997laldaiaf86hg5lza1ir82x7n";
|
sha256 = "1vzcrsv6w5k90l75gy83dlfkv2z9pvnr82mz1nhnijmcg3rgqaz8";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.16.1";
|
version = "3.15.1";
|
||||||
};
|
};
|
||||||
omniauth = {
|
omniauth = {
|
||||||
dependencies = ["hashie" "rack"];
|
dependencies = ["hashie" "rack"];
|
||||||
@ -1532,10 +1512,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1pa50my9sgh4wh9jah1qxjd33wsp1ahv29vj2q1biz434p67vh5p";
|
sha256 = "04y02j0kyhfww41dnnjawn2gpp24smq0x21dvaa5z6pnq0fvmahv";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "4.2.2";
|
version = "4.2.1";
|
||||||
};
|
};
|
||||||
parser = {
|
parser = {
|
||||||
dependencies = ["ast" "racc"];
|
dependencies = ["ast" "racc"];
|
||||||
@ -1627,10 +1607,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1x4dwx2shx0p7lsms97r85r7ji7zv57bjy3i1kmcpxc8bxvrr67c";
|
sha256 = "1v7fmv0n4bhdcwh60dgza44iqai5pg34f5pzm4vh4i5fwx7mpqxh";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.3.1";
|
version = "6.3.0";
|
||||||
};
|
};
|
||||||
racc = {
|
racc = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
@ -1662,10 +1642,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "18vj7q740f7ffj677i258abryj97w0a6g3d5859y0lgypm5big1v";
|
sha256 = "13dhpp1iljhqp9c8akmp6gjhx47qf83w12ns4bif26ldkignpam1";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.1.1";
|
version = "3.1.0";
|
||||||
};
|
};
|
||||||
rack-protection = {
|
rack-protection = {
|
||||||
dependencies = ["rack"];
|
dependencies = ["rack"];
|
||||||
@ -1673,10 +1653,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0xsz78hccgza144n37bfisdkzpr2c8m0xl6rnlzgxdbsm1zrkg7r";
|
sha256 = "1kpm67az1wxlg76h620in2r7agfyhv177ps268j5ggsanzddzih8";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.1.0";
|
version = "3.0.6";
|
||||||
};
|
};
|
||||||
rack-test = {
|
rack-test = {
|
||||||
dependencies = ["rack"];
|
dependencies = ["rack"];
|
||||||
@ -1695,10 +1675,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5";
|
sha256 = "17g05y7q7934z0ib4aph8h71c2qwjmlakkm7nb2ab45q0aqkfgjd";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.2.0";
|
version = "2.1.1";
|
||||||
};
|
};
|
||||||
rails-html-sanitizer = {
|
rails-html-sanitizer = {
|
||||||
dependencies = ["loofah" "nokogiri"];
|
dependencies = ["loofah" "nokogiri"];
|
||||||
@ -1739,10 +1719,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0in2b84qqmfnigx0li9bgi6l4knmgbj3a29fzm1zzb5jnv4r1gbr";
|
sha256 = "1z4lqqbd4i5izsg97mx5yf3gj7y5d07wgvad0jzjghjg12pf142i";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "7.0.7";
|
version = "7.0.5.1";
|
||||||
};
|
};
|
||||||
rainbow = {
|
rainbow = {
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
@ -1893,10 +1873,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0m48hv6wpmmm6cjr6q92q78h1i610riml19k5h1dil2yws3h1m3m";
|
sha256 = "10mmzc85y7andsich586ndykw678qn1ns2wpjxrg0sc0gr4w3pig";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "6.3.0";
|
version = "6.2.2";
|
||||||
};
|
};
|
||||||
rouge = {
|
rouge = {
|
||||||
groups = ["default" "development"];
|
groups = ["default" "development"];
|
||||||
@ -2015,10 +1995,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1wv27axi39hhr0nmaffdl5bdjqiafcvp9xhfgnsgfczsblja50sn";
|
sha256 = "1b1zx07kr64kkpm4lssd4r1a1qyr829ppmfl85i4adcvx9mqfid0";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.3.0";
|
version = "0.2.9";
|
||||||
};
|
};
|
||||||
rswag-specs = {
|
rswag-specs = {
|
||||||
dependencies = ["activesupport" "json-schema" "railties" "rspec-core"];
|
dependencies = ["activesupport" "json-schema" "railties" "rspec-core"];
|
||||||
@ -2043,15 +2023,15 @@
|
|||||||
version = "0.2.1";
|
version = "0.2.1";
|
||||||
};
|
};
|
||||||
rubocop = {
|
rubocop = {
|
||||||
dependencies = ["base64" "json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
|
dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
|
||||||
groups = ["default" "development" "test"];
|
groups = ["default" "development" "test"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1i3571gchdj3c28znr5kisj0fkppy57208g9j1kv23rhk3p5q5p2";
|
sha256 = "0s9p5qaqq68h5s3ys8xlk9swccma7arjif1w58987n6gicrsprrm";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.56.3";
|
version = "1.55.1";
|
||||||
};
|
};
|
||||||
rubocop-ast = {
|
rubocop-ast = {
|
||||||
dependencies = ["parser"];
|
dependencies = ["parser"];
|
||||||
@ -2103,10 +2083,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0ylwy4afnxhbrvlaf8an9nrizj78axnzggiyfcp8v531cv8six5f";
|
sha256 = "0l364y00bw1zcs3grdxcxpn48vfrjds2khsiaxjqq3r9grvbprfy";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.23.2";
|
version = "2.23.0";
|
||||||
};
|
};
|
||||||
ruby-prof = {
|
ruby-prof = {
|
||||||
groups = ["development"];
|
groups = ["development"];
|
||||||
@ -2180,10 +2160,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "038fzkbq5sw9lf947akhpsvdm14q6jfzl2yn87s8958h42sn0xjy";
|
sha256 = "15k44qn8vk8ap8khkmpsiw40pywm9pkx4a5yhm8vfi2rgqci9k90";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.66.1";
|
version = "1.64.1";
|
||||||
};
|
};
|
||||||
selenium-webdriver = {
|
selenium-webdriver = {
|
||||||
dependencies = ["rexml" "rubyzip" "websocket"];
|
dependencies = ["rexml" "rubyzip" "websocket"];
|
||||||
@ -2191,10 +2171,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0jwll13m7bqph4lgl75m7vwd175k657znwa7qn9qkf5dcxdjkcjs";
|
sha256 = "0hwxxvx6j95ln82pjmrgyzg6qmf511dkcp5q79n6m5m8z4way8m3";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "4.12.0";
|
version = "4.10.0";
|
||||||
};
|
};
|
||||||
shoulda-matchers = {
|
shoulda-matchers = {
|
||||||
dependencies = ["activesupport"];
|
dependencies = ["activesupport"];
|
||||||
@ -2202,8 +2182,8 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
fetchSubmodules = false;
|
fetchSubmodules = false;
|
||||||
rev = "68f76ce13e9892339f90c4928339dfd769cfa613";
|
rev = "783a90554053002017510285bc736099b2749c22";
|
||||||
sha256 = "08kbcdfplmbdhgq0x6lk2lpwrlgijrfq6vhl5hkmxg9v9gpgbbrj";
|
sha256 = "10rw7ksi462fxamap6kimdy7hpdgx8477r6zs1kgrbakx24dm3wx";
|
||||||
type = "git";
|
type = "git";
|
||||||
url = "https://github.com/thoughtbot/shoulda-matchers.git";
|
url = "https://github.com/thoughtbot/shoulda-matchers.git";
|
||||||
};
|
};
|
||||||
@ -2302,10 +2282,10 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1k8i5pzjhcnyf0bhcyn5iixpfp4pz0556rcxwpglh6p0sr8s6nv5";
|
sha256 = "03bkn55qsng484iqwz2lmm6rkimj01vsvhwk661s3lnmpkl65lbp";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.0.0";
|
version = "2.0.0";
|
||||||
};
|
};
|
||||||
stackprof = {
|
stackprof = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
@ -2504,16 +2484,27 @@
|
|||||||
};
|
};
|
||||||
version = "3.0.0";
|
version = "3.0.0";
|
||||||
};
|
};
|
||||||
|
webdrivers = {
|
||||||
|
dependencies = ["nokogiri" "rubyzip" "selenium-webdriver"];
|
||||||
|
groups = ["test"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "19aaxhawzv7315rh285gd1fg6m6wbrn3w3kilyibci1wphgm7mfp";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "5.3.1";
|
||||||
|
};
|
||||||
webmock = {
|
webmock = {
|
||||||
dependencies = ["addressable" "crack" "hashdiff"];
|
dependencies = ["addressable" "crack" "hashdiff"];
|
||||||
groups = ["test"];
|
groups = ["test"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0vfispr7wd2p1fs9ckn1qnby1yyp4i1dl7qz8n482iw977iyxrza";
|
sha256 = "1myj44wvbbqvv18ragv3ihl0h61acgnfwrnj3lccdgp49bgmbjal";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.19.1";
|
version = "3.18.1";
|
||||||
};
|
};
|
||||||
websocket = {
|
websocket = {
|
||||||
groups = ["default" "test"];
|
groups = ["default" "test"];
|
||||||
@ -2561,9 +2552,9 @@
|
|||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1mwdd445w63khz13hpv17m2br5xngyjl3jdj08xizjbm78i2zrxd";
|
sha256 = "06vf6y5ai20ry3b1h9cl7vsdj6i5valq172zdxpnfhj5zvlp104j";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.6.11";
|
version = "2.6.10";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
diff --git a/lib/discourse.rb b/lib/discourse.rb
|
||||||
|
index ea2a3cbafd..66454d9157 100644
|
||||||
|
--- a/lib/discourse.rb
|
||||||
|
+++ b/lib/discourse.rb
|
||||||
|
@@ -62,7 +62,7 @@ module Discourse
|
||||||
|
fd.fsync()
|
||||||
|
end
|
||||||
|
|
||||||
|
- File.rename(temp_destination, destination)
|
||||||
|
+ FileUtils.mv(temp_destination, destination)
|
||||||
|
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
@@ -76,7 +76,7 @@ module Discourse
|
||||||
|
FileUtils.mkdir_p(File.join(Rails.root, 'tmp'))
|
||||||
|
temp_destination = File.join(Rails.root, 'tmp', SecureRandom.hex)
|
||||||
|
execute_command('ln', '-s', source, temp_destination)
|
||||||
|
- File.rename(temp_destination, destination)
|
||||||
|
+ FileUtils.mv(temp_destination, destination)
|
||||||
|
|
||||||
|
nil
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user