Last active
December 11, 2024 03:39
-
-
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`)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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