Come trovare dove sono installati i file gem


289

Posso trovare gemme che vengono installate usando gem list, ma non mi mostra dove sono installate le gemme.

Come posso trovare dove sono le gemme e come posso sapere prima di installare una gemma dove verrà installata?

Risposte:


374

Usa gem environmentper scoprire il tuo ambiente gemma:

RubyGems Environment:
  - RUBYGEMS VERSION: 2.1.5
  - RUBY VERSION: 2.0.0 (2013-06-27 patchlevel 247) [x86_64-darwin12.4.0]
  - INSTALLATION DIRECTORY: /Users/ttm/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0
  - RUBY EXECUTABLE: /Users/ttm/.rbenv/versions/2.0.0-p247/bin/ruby
  - EXECUTABLE DIRECTORY: /Users/ttm/.rbenv/versions/2.0.0-p247/bin
  - SPEC CACHE DIRECTORY: /Users/ttm/.gem/specs
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86_64-darwin-12
  - GEM PATHS:
     - /Users/ttm/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0
     - /Users/ttm/.gem/ruby/2.0.0
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :backtrace => false
     - :bulk_threshold => 1000
  - REMOTE SOURCES:
     - https://rubygems.org/
  - SHELL PATH:
     - /Users/ttm/.rbenv/versions/2.0.0-p247/bin
     - /Users/ttm/.rbenv/libexec
     - /Users/ttm/.rbenv/plugins/ruby-build/bin
     - /Users/ttm/perl5/perlbrew/bin
     - /Users/ttm/perl5/perlbrew/perls/perl-5.18.1/bin
     - /Users/ttm/.pyenv/shims
     - /Users/ttm/.pyenv/bin
     - /Users/ttm/.rbenv/shims
     - /Users/ttm/.rbenv/bin
     - /Users/ttm/bin
     - /usr/local/mysql-5.6.12-osx10.7-x86_64/bin
     - /Users/ttm/libsmi/bin
     - /usr/local/bin
     - /usr/bin
     - /bin
     - /usr/sbin
     - /sbin
     - /usr/local/bin

Notare le due sezioni per:

  • INSTALLATION DIRECTORY
  • GEM PATHS

Grazie per le tue informazioni! Nel mio ambiente, sembra che GEM PATHSvengano utilizzati solo per primi. È giusto?
Iron and

8
gem envin breve
zanderwar,

Guarderei dentro EXECUTABLE DIRECTORY.
Matt Setter

Il EXECUTABLE DIRECTORYcontiene le versioni eseguibili della CLI installate dalle gemme, ma non sono le gemme stesse.
Tin Man,

146

Ho trovato utile ottenere una posizione del file della libreria con:

gem which *gemname*

6
Questo è un metodo semplice molto carino che non richiede bundler (anche se adoro bundler :-).
antinome,

2
risposta più semplice, non richiede binari o bundler! BEN FATTO!
lacostenycoder

Mi piace questa versione perché è utile per le persone che stanno sviluppando logstash (nessun bundler sui miei server). L'esempio è utile:gem which 'logstash/inputs/tcp.rb'
Cameron Kerr il

Non funzionerà sempre. Funziona solo quando la gemma esiste come eseguibile nella directory PATH.
GiriB

74

Dopo aver installato le gemme, se vuoi sapere dove si trova una gemma particolare. Prova a digitare:

 gem list

Sarai in grado di vedere l'elenco delle gemme che hai installato. Ora usa bundle showe dai un nome alla gemma per cui vuoi conoscere il percorso, in questo modo:

 bundle show <gemName>

2
Non sono sicuro che funzioni in tutte le directory. Ho eseguito questo comando e ho ottenuto Could not locate Gemfile or .bundle/ directory.
Richie Thomas,

1
Questo è il modo migliore perché mostra il percorso completo, (mentre gem env) mostra solo la cartella principale per la gemscartella: /home/test/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0. C'è un numero di cartelle al suo interno e la tua gemma può trovarsi in quasi ognuna di esse - questo è ciò che bundle show <gemName>mostra esattamente (e gem env) no.
prograils

49

Per completare altre risposte, la gemma gem-path può trovare il percorso di installazione di una gemma particolare.

Installazione:

gem install gem-path

Uso:

gem path rails
=> /home/cbliard/.rvm/gems/ruby-2.1.5/gems/rails-4.0.13
gem path rails '< 4'
=> /home/cbliard/.rvm/gems/ruby-2.1.5/gems/rails-3.2.21

Questo è davvero utile in quanto puoi usarlo per grep o modificare i file:

grep -R 'Internal server error' "$(gem path thin)"
subl "$(gem path thin)"

33

Puoi controllarlo dal tuo prompt dei comandi eseguendo gem help commandse quindi selezionando il comando corretto:

kirti@kirti-Aspire-5733Z:~$  gem help commands
GEM commands are:

    build                  Build a gem from a gemspec
    cert                   Manage RubyGems certificates and signing settings
    check                  Check a gem repository for added or missing files
    cleanup                Clean up old versions of installed gems in the local
                           repository
    contents               Display the contents of the installed gems
    dependency             Show the dependencies of an installed gem
    environment            Display information about the RubyGems environment
    fetch                  Download a gem and place it in the current directory
    generate_index         Generates the index files for a gem server directory
    help                   Provide help on the 'gem' command
    install                Install a gem into the local repository
    list                   Display gems whose name starts with STRING
    lock                   Generate a lockdown list of gems
    mirror                 Mirror all gem files (requires rubygems-mirror)
    outdated               Display all gems that need updates
    owner                  Manage gem owners on RubyGems.org.
    pristine               Restores installed gems to pristine condition from
                           files located in the gem cache
    push                   Push a gem up to RubyGems.org
    query                  Query gem information in local or remote repositories
    rdoc                   Generates RDoc for pre-installed gems
    regenerate_binstubs    Re run generation of executable wrappers for gems.
    search                 Display all gems whose name contains STRING
    server                 Documentation and gem repository HTTP server
    sources                Manage the sources and cache file RubyGems uses to
                           search for gems
    specification          Display gem specification (in yaml)
    stale                  List gems along with access times
    uninstall              Uninstall gems from the local repository
    unpack                 Unpack an installed gem to the current directory
    update                 Update installed gems to the latest version
    which                  Find the location of a library file you can require
    yank                   Remove a specific gem version release from
                           RubyGems.org

For help on a particular command, use 'gem help COMMAND'.

Commands may be abbreviated, so long as they are unambiguous.
e.g. 'gem i rake' is short for 'gem install rake'.
kirti@kirti-Aspire-5733Z:~$ 

Da quanto sopra posso vedere che il comando environmentè utile. Quindi farei:

kirti@kirti-Aspire-5733Z:~$ gem help environment
Usage: gem environment [arg] [options]


  Common Options:
    -h, --help                       Get help on this command
    -V, --[no-]verbose               Set the verbose level of output
    -q, --quiet                      Silence commands
        --config-file FILE           Use this config file instead of default
        --backtrace                  Show stack backtrace on errors
        --debug                      Turn on Ruby debugging


  Arguments:
    packageversion  display the package version
    gemdir          display the path where gems are installed
    gempath         display path used to search for gems
    version         display the gem format version
    remotesources   display the remote gem servers
    platform        display the supported gem platforms
    <omitted>       display everything

  Summary:
    Display information about the RubyGems environment

  Description:
    The RubyGems environment can be controlled through command line arguments,
    gemrc files, environment variables and built-in defaults.

    Command line argument defaults and some RubyGems defaults can be set in a
    ~/.gemrc file for individual users and a /etc/gemrc for all users. These
    files are YAML files with the following YAML keys:

      :sources: A YAML array of remote gem repositories to install gems from
      :verbose: Verbosity of the gem command. false, true, and :really are the
                levels
      :update_sources: Enable/disable automatic updating of repository metadata
      :backtrace: Print backtrace when RubyGems encounters an error
      :gempath: The paths in which to look for gems
      :disable_default_gem_server: Force specification of gem server host on
    push
      <gem_command>: A string containing arguments for the specified gem command

    Example:

      :verbose: false
      install: --no-wrappers
      update: --no-wrappers
      :disable_default_gem_server: true

    RubyGems' default local repository can be overridden with the GEM_PATH and
    GEM_HOME environment variables. GEM_HOME sets the default repository to
    install into. GEM_PATH allows multiple local repositories to be searched for
    gems.

    If you are behind a proxy server, RubyGems uses the HTTP_PROXY,
    HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables to discover the
    proxy server.

    If you would like to push gems to a private gem server the RUBYGEMS_HOST
    environment variable can be set to the URI for that server.

    If you are packaging RubyGems all of RubyGems' defaults are in
    lib/rubygems/defaults.rb.  You may override these in
    lib/rubygems/defaults/operating_system.rb
kirti@kirti-Aspire-5733Z:~$ 

Infine, per mostrarti ciò che hai chiesto, farei:

kirti@kirti-Aspire-5733Z:~$ gem environment gemdir
/home/kirti/.rvm/gems/ruby-2.0.0-p0
kirti@kirti-Aspire-5733Z:~$ gem environment gempath
/home/kirti/.rvm/gems/ruby-2.0.0-p0:/home/kirti/.rvm/gems/ruby-2.0.0-p0@global
kirti@kirti-Aspire-5733Z:~$ 

1
Grazie! Non conoscevo il gem help commands. E avrei dovuto scrivere che sto usando rbenv.
Iron and

17

Puoi ingannare la gem openvisualizzazione del percorso gemma:

VISUAL=echo gem open gem-name

Esempio:

VISUAL=echo gem open rails
=> /usr/local/opt/asdf/installs/ruby/2.4.3/lib/ruby/gems/2.4.0/gems/rails-5.1.4

Funziona e non è necessaria alcuna gemma di terze parti.


2
Questo è perfetto! È un peccato che queste informazioni utili siano un effetto collaterale anziché un comando intenzionale. Nota che puoi anche specificare "editor" con l' -eopzione ( -e echo), se è più semplice che impostare una variabile d'ambiente.
Steve,

Bellissimo! Ometti l'ultima parte e vai in quella directory nel tuo editor e fai a pezzi le gemme ;-)
ARK

14

gem envfunziona proprio come gem environment. Salva un po 'di battitura.

# gem env
RubyGems Environment:
  - RUBYGEMS VERSION: 2.0.14
  - RUBY VERSION: 2.0.0 (2014-02-24 patchlevel 451) [i686-linux]
  - INSTALLATION DIRECTORY: /usr/local/lib/ruby/gems/2.0.0
  - RUBY EXECUTABLE: /usr/local/bin/ruby
  - EXECUTABLE DIRECTORY: /usr/local/bin
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86-linux
  - GEM PATHS:
     - /usr/local/lib/ruby/gems/2.0.0
     - /root/.gem/ruby/2.0.0
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :backtrace => false
     - :bulk_threshold => 1000
  - REMOTE SOURCES:
     - https://rubygems.org/

Non è "funziona proprio come", è lo stesso comando. gem help commandsrestituisce "I comandi possono essere abbreviati, purché inequivocabili. Ad esempio, 'gem i rake' è l'abbreviazione di 'gem install rake'. " In altre parole gem environment, gem enve gem etutto funziona ma gem environmentsi auto documenta per coloro che non lo sanno cosa sta facendo, quindi dovremmo usarlo per i principianti.
Tin Man,

2

Gli gem envelenchi in cui è possibile installare le gemme , ma può trattarsi di 10 o più posizioni. Se vuoi sapere dove è installato un particolare gioiello , puoi eseguire:

gem list -d <gemname>

Esempio di output:

tilt (2.0.9)
    Author: Ryan Tomayko
    Homepage: http://github.com/rtomayko/tilt/
    License: MIT
    Installed at: /opt/rubies/ruby-2.5.3/lib/ruby/gems/2.5.0

    Generic interface to multiple Ruby template engines

0

se stai usando lo strumento rvm puoi eseguire questo comando per stampare il percorso gem:

rvm gemdir

O

echo $GEM_HOME

0

Questo funziona e ti dà il percorso installato per ogni gemma. Questo è molto utile quando si tenta di eseguire build docker multi-stage .. È possibile copiare nella directory specifica post-bundle install.

bash-4.4# gem list -d

Produzione::

aasm (5.0.6)
    Authors: Thorsten Boettger, Anil Maurya
    Homepage: https://github.com/aasm/aasm
    License: MIT
    Installed at: /usr/local/bundle

  State machine mixin for Ruby objects
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.