solargraph: init at 0.21.1 (#41089)

This commit is contained in:
worldofpeace
2018-05-26 16:30:17 +01:00
committed by zimbatm
parent c6677c4010
commit 59c09a52f2
5 changed files with 229 additions and 0 deletions
@@ -0,0 +1,15 @@
{ lib, bundlerApp, ruby }:
bundlerApp rec {
pname = "solargraph";
exes = ["solargraph" "solargraph-runtime"];
gemdir = ./.;
meta = with lib; {
description = "IDE tools for the Ruby language";
homepage = http://www.github.com/castwide/solargraph;
license = licenses.mit;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.unix;
};
}