pry: init at 0.12.2
This commit is contained in:
parent
31a577c736
commit
e90defbcf9
|
@ -5229,6 +5229,11 @@
|
||||||
github = "tbenst";
|
github = "tbenst";
|
||||||
name = "Tyler Benster";
|
name = "Tyler Benster";
|
||||||
};
|
};
|
||||||
|
tckmn = {
|
||||||
|
email = "andy@tck.mn";
|
||||||
|
github = "tckmn";
|
||||||
|
name = "Andy Tockman";
|
||||||
|
};
|
||||||
teh = {
|
teh = {
|
||||||
email = "tehunger@gmail.com";
|
email = "tehunger@gmail.com";
|
||||||
github = "teh";
|
github = "teh";
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'pry'
|
|
@ -0,0 +1,17 @@
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
coderay (1.1.2)
|
||||||
|
method_source (0.9.2)
|
||||||
|
pry (0.12.2)
|
||||||
|
coderay (~> 1.1.0)
|
||||||
|
method_source (~> 0.9.0)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
pry
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.17.2
|
|
@ -0,0 +1,17 @@
|
||||||
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
||||||
|
|
||||||
|
bundlerApp {
|
||||||
|
pname = "pry";
|
||||||
|
gemdir = ./.;
|
||||||
|
exes = [ "pry" ];
|
||||||
|
|
||||||
|
passthru.updateScript = bundlerUpdateScript "pry";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Ruby runtime developer console and IRB alternative";
|
||||||
|
homepage = https://pryrepl.org;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.tckmn ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
coderay = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.1.2";
|
||||||
|
};
|
||||||
|
method_source = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.9.2";
|
||||||
|
};
|
||||||
|
pry = {
|
||||||
|
dependencies = ["coderay" "method_source"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.12.2";
|
||||||
|
};
|
||||||
|
}
|
|
@ -9796,6 +9796,8 @@ in
|
||||||
|
|
||||||
procodile = callPackage ../tools/system/procodile { };
|
procodile = callPackage ../tools/system/procodile { };
|
||||||
|
|
||||||
|
pry = callPackage ../development/tools/pry { };
|
||||||
|
|
||||||
pup = callPackage ../development/tools/pup { };
|
pup = callPackage ../development/tools/pup { };
|
||||||
|
|
||||||
puppet-lint = callPackage ../development/tools/puppet/puppet-lint { };
|
puppet-lint = callPackage ../development/tools/puppet/puppet-lint { };
|
||||||
|
|
Loading…
Reference in New Issue