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