Skip to content

Commit

Permalink
Revert "Merge #188995: bundler: 2.3.20 -> 2.3.21"
Browse files Browse the repository at this point in the history
Moving to staging branch, as it's a huge rebuild.

This reverts commit 6511d3f, reversing
changes made to cf40140.
  • Loading branch information
vcunat committed Sep 2, 2022
1 parent 0e115ea commit 21de2b9
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions pkgs/development/ruby-modules/bundler/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,14 @@
{ lib, buildRubyGem, ruby, writeScript }:
{ buildRubyGem, ruby }:

buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "bundler";
version = "2.3.21";
source.sha256 = "sha256-+u3H/8Fno8U7ZMRj2me1DVvkOAR2HeWmjdo0TCG/0d4=";
version = "2.3.20";
source.sha256 = "sha256-gJJ3vHzrJo6XpHS1iwLb77jd9ZB39GGLcOJQSrgaBHw=";
dontPatchShebangs = true;

passthru.updateScript = writeScript "gem-update-script" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl common-updater-scripts jq
set -eu -o pipefail
latest_version=$(curl -s https://rubygems.org/api/v1/gems/${gemName}.json | jq --raw-output .version)
update-source-version ${gemName} "$latest_version"
'';

postFixup = ''
sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle
'';

meta = with lib; {
description = "Manage your Ruby application's gem dependencies";
homepage = "https://bundler.io";
license = licenses.mit;
maintainers = with maintainers; [anthonyroussel];
};
}

2 comments on commit 21de2b9

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vcunat, you pushed a commit directly to master/release branch
instead of going through a Pull Request.

That's highly discouraged beyond the few exceptions listed
on #118661

@vcunat
Copy link
Member Author

@vcunat vcunat commented on 21de2b9 Sep 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, intentional.

Please sign in to comment.