completely: 0.5.2 -> 0.6.3

zendo 9828bad6 88b620a7

+27 -26
+9 -9
pkgs/by-name/co/completely/Gemfile.lock
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 - colsole (0.8.2) 5 - completely (0.5.2) 6 - colsole (~> 0.6) 7 - mister_bin (~> 0.7.2) 8 - docopt (0.6.1) 9 - mister_bin (0.7.3) 10 - colsole (~> 0.7) 11 - docopt (~> 0.6) 12 13 PLATFORMS 14 ruby ··· 17 completely 18 19 BUNDLED WITH 20 - 2.4.5
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 + colsole (1.0.0) 5 + completely (0.6.3) 6 + colsole (>= 0.8.1, < 2) 7 + mister_bin (~> 0.7) 8 + docopt_ng (0.7.1) 9 + mister_bin (0.7.6) 10 + colsole (>= 0.8.1, < 2) 11 + docopt_ng (~> 0.7, >= 0.7.1) 12 13 PLATFORMS 14 ruby ··· 17 completely 18 19 BUNDLED WITH 20 + 2.5.16
+10 -10
pkgs/by-name/co/completely/gemset.nix
··· 4 platforms = []; 5 source = { 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "1l29sxy4p9jbvcihckxfsyqx98b8xwzd3hjqvdh1zxw8nv5walnp"; 8 type = "gem"; 9 }; 10 - version = "0.8.2"; 11 }; 12 completely = { 13 dependencies = ["colsole" "mister_bin"]; ··· 15 platforms = []; 16 source = { 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "0w7cmmsp9m42c8w4j03kr98zy7x7yszw3qsm3ww600dmc0d0xd2b"; 19 type = "gem"; 20 }; 21 - version = "0.5.2"; 22 }; 23 - docopt = { 24 groups = ["default"]; 25 platforms = []; 26 source = { 27 remotes = ["https://rubygems.org"]; 28 - sha256 = "0rvlfbb7kzyagncm4zdpcjwrh682zamgf5rcf5qmj0bd6znkgy3k"; 29 type = "gem"; 30 }; 31 - version = "0.6.1"; 32 }; 33 mister_bin = { 34 - dependencies = ["colsole" "docopt"]; 35 groups = ["default"]; 36 platforms = []; 37 source = { 38 remotes = ["https://rubygems.org"]; 39 - sha256 = "1f51zs9wjpslhdadp8yfx4ij0jj1ya92cbzqlfd2wfr19wdr2jgd"; 40 type = "gem"; 41 }; 42 - version = "0.7.3"; 43 }; 44 }
··· 4 platforms = []; 5 source = { 6 remotes = ["https://rubygems.org"]; 7 + sha256 = "1fvf6dz2wsvjk7q24z0dm8lajq3p2l6i5ywf3mxj683rmhwq49bg"; 8 type = "gem"; 9 }; 10 + version = "1.0.0"; 11 }; 12 completely = { 13 dependencies = ["colsole" "mister_bin"]; ··· 15 platforms = []; 16 source = { 17 remotes = ["https://rubygems.org"]; 18 + sha256 = "0ci8iza647hvc4f1cmf9mpsm3i78ysf6g6213wkyrr5jk296hjjb"; 19 type = "gem"; 20 }; 21 + version = "0.6.3"; 22 }; 23 + docopt_ng = { 24 groups = ["default"]; 25 platforms = []; 26 source = { 27 remotes = ["https://rubygems.org"]; 28 + sha256 = "0rsnl5s7k2s1gl4n4dg68ssg577kf11sl4a4l2lb2fpswj718950"; 29 type = "gem"; 30 }; 31 + version = "0.7.1"; 32 }; 33 mister_bin = { 34 + dependencies = ["colsole" "docopt_ng"]; 35 groups = ["default"]; 36 platforms = []; 37 source = { 38 remotes = ["https://rubygems.org"]; 39 + sha256 = "0xx8cxvzcn47zsnshcllf477x4rbssrchvp76929qnsg5k9q7fas"; 40 type = "gem"; 41 }; 42 + version = "0.7.6"; 43 }; 44 }
+8 -7
pkgs/by-name/co/completely/package.nix
··· 1 - { lib 2 - , bundlerApp 3 - , bundlerUpdateScript 4 }: 5 6 bundlerApp { ··· 11 12 passthru.updateScript = bundlerUpdateScript "completely"; 13 14 - meta = with lib; { 15 description = "Generate bash completion scripts using a simple configuration file"; 16 homepage = "https://github.com/DannyBen/completely"; 17 - license = licenses.mit; 18 - platforms = platforms.unix; 19 - maintainers = with maintainers; [ zendo ]; 20 mainProgram = "completely"; 21 }; 22 }
··· 1 + { 2 + lib, 3 + bundlerApp, 4 + bundlerUpdateScript, 5 }: 6 7 bundlerApp { ··· 12 13 passthru.updateScript = bundlerUpdateScript "completely"; 14 15 + meta = { 16 description = "Generate bash completion scripts using a simple configuration file"; 17 homepage = "https://github.com/DannyBen/completely"; 18 + license = lib.licenses.mit; 19 + platforms = lib.platforms.unix; 20 + maintainers = with lib.maintainers; [ zendo ]; 21 mainProgram = "completely"; 22 }; 23 }