taskjuggler: add webrick for tj3webd

Without webrick, the taskjuggler web server fails to start.

Made by adding "gem 'webrick'" to the Gemfile and running
`nix-shell maintainers/scripts/update.nix --argstr package taskjuggler`.
This commit is contained in:
Bjørn Forsman 2023-04-27 17:31:59 +02:00
parent 12e08bd339
commit b4403bcc85
3 changed files with 14 additions and 1 deletions

View File

@ -1,2 +1,3 @@
source 'https://rubygems.org'
gem 'taskjuggler'
gem 'webrick'

View File

@ -26,12 +26,14 @@ GEM
timeout (0.3.2)
tins (1.32.1)
sync
webrick (1.8.1)
PLATFORMS
ruby
x86_64-linux
DEPENDENCIES
taskjuggler
webrick
BUNDLED WITH
2.4.12

View File

@ -127,4 +127,14 @@
};
version = "1.32.1";
};
webrick = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "13qm7s0gr2pmfcl7dxrmq38asaza4w0i2n9my4yzs499j731wh8r";
type = "gem";
};
version = "1.8.1";
};
}