2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-05-26 16:30:17 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerApp {
|
2018-05-26 16:30:17 +01:00
|
|
|
pname = "solargraph";
|
|
|
|
exes = ["solargraph" "solargraph-runtime"];
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "solargraph";
|
|
|
|
|
2018-05-26 16:30:17 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "IDE tools for the Ruby language";
|
2018-12-02 03:27:52 +00:00
|
|
|
homepage = http://www.github.com/castwide/solargraph;
|
|
|
|
license = licenses.mit;
|
2019-08-01 19:11:31 +01:00
|
|
|
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
|
2018-12-02 03:27:52 +00:00
|
|
|
platforms = platforms.unix;
|
2018-05-26 16:30:17 +01:00
|
|
|
};
|
|
|
|
}
|