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