Skip to content

Instantly share code, notes, and snippets.

@astyagun
Last active December 11, 2024 03:39
Show Gist options
  • Save astyagun/290b783045afffb8190a0c75ab76d0fa to your computer and use it in GitHub Desktop.
Save astyagun/290b783045afffb8190a0c75ab76d0fa to your computer and use it in GitHub Desktop.
List Ruby gems, that are not a dependency of any other gem (analog of `brew leaves`)
#!/bin/sh
# List Ruby gems, that are not a dependency of any other gem (analog of `brew leaves`)
# https://gist.github.com/astyagun/290b783045afffb8190a0c75ab76d0fa
GEMS_FILE=`mktemp`
DEPENDENCIES_FILE=`mktemp`
gem list -l | sed 's/ (.*//' | sort > $GEMS_FILE
cat $GEMS_FILE | xargs -n1 gem dependency -l --pipe | sed 's/ --version.*//' | sort -u > $DEPENDENCIES_FILE
comm -23 $GEMS_FILE $DEPENDENCIES_FILE
rm -f $GEMS_FILE $DEPENDENCIES_FILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment