1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "pry";
5 gemdir = ./.;
6 exes = [ "pry" ];
7
8 passthru.updateScript = bundlerUpdateScript "pry";
9
10 meta = with lib; {
11 description = "A Ruby runtime developer console and IRB alternative";
12 homepage = "https://pryrepl.org";
13 license = licenses.mit;
14 maintainers = [ maintainers.tckmn ];
15 platforms = platforms.unix;
16 };
17}