Skip to content

Instantly share code, notes, and snippets.

@copiousfreetime
Created March 16, 2016 21:55
Show Gist options
  • Save copiousfreetime/25bda26d08c7173770a9 to your computer and use it in GitHub Desktop.
Save copiousfreetime/25bda26d08c7173770a9 to your computer and use it in GitHub Desktop.
gem installing / uninstall in user dir
% export GEM_HOME=tmp/gem/a
% gem install envolve
Fetching: envolve-1.1.0.gem (100%)
Successfully installed envolve-1.1.0
1 gem installed
% gem list -d envolve
*** LOCAL GEMS ***
envolve (1.1.0)
Author: Jeremy Hinegardner
Homepage: http://github.com/copiousfreetime/envolve
License: ISC
Installed at: /Users/jeremy/tmp/gem/a
Envolve provides a consistent and validating way to access your
application configuration that is set via environment variables.
% gem install --user-install envolve
Successfully installed envolve-1.1.0
1 gem installed
% gem list -d envolve
*** LOCAL GEMS ***
envolve (1.1.0)
Author: Jeremy Hinegardner
Homepage: http://github.com/copiousfreetime/envolve
License: ISC
Installed at: /Users/jeremy/.gem/ruby/2.3.0
Envolve provides a consistent and validating way to access your
application configuration that is set via environment variables.
% gem uninstall envolve
Select gem to uninstall:
1. envolve-1.1.0
2. envolve-1.1.0
3. All versions
>3
Successfully uninstalled envolve-1.1.0
Successfully uninstalled envolve-1.1.0
jeremy@cantal:~ ruby-2.3.0@tmp % gem list -d envolve
*** LOCAL GEMS ***
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment