2019-07-22 12:02:47 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
bundlerApp,
|
|
|
|
bundlerUpdateScript,
|
|
|
|
}:
|
2019-02-26 21:38:51 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "cadre";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "cadre" ];
|
|
|
|
|
2019-07-22 12:02:47 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "cadre";
|
|
|
|
|
2019-02-26 21:38:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/nyarly/cadre";
|
2019-02-26 21:38:51 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 12:02:47 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
nyarly
|
|
|
|
nicknovitski
|
|
|
|
];
|
2019-02-26 21:38:51 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|