Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e222ab09d16
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e05653e7f70
Choose a head ref
  • 2 commits
  • 6 files changed
  • 2 contributors

Commits on Aug 16, 2019

  1. pry: init at 0.12.2

    tckmn committed Aug 16, 2019
    Copy the full SHA
    e90defb View commit details

Commits on Jan 9, 2020

  1. Merge pull request #66699 from tckmn/master

    pry: init at 0.12.2
    peterhoeg authored Jan 9, 2020
    Copy the full SHA
    2e05653 View commit details
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -6865,6 +6865,11 @@
githubId = 863327;
name = "Tyler Benster";
};
tckmn = {
email = "andy@tck.mn";
github = "tckmn";
name = "Andy Tockman";
};
teh = {
email = "tehunger@gmail.com";
github = "teh";
2 changes: 2 additions & 0 deletions pkgs/development/tools/pry/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'pry'
17 changes: 17 additions & 0 deletions pkgs/development/tools/pry/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions pkgs/development/tools/pry/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
33 changes: 33 additions & 0 deletions pkgs/development/tools/pry/gemset.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -10430,6 +10430,8 @@ in

procodile = callPackage ../tools/system/procodile { };

pry = callPackage ../development/tools/pry { };

pup = callPackage ../development/tools/pup { };

puppet-lint = callPackage ../development/tools/puppet/puppet-lint { };