Commit b4403bcc authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

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`.
parent 12e08bd3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
source 'https://rubygems.org'
gem 'taskjuggler'
gem 'webrick'
+3 −1
Original line number Diff line number Diff line
@@ -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
+10 −0
Original line number Diff line number Diff line
@@ -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";
  };
}