जवाबों:
gem environment
अपने रत्न पर्यावरण के बारे में जानने के लिए उपयोग करें :
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
इसके लिए दो खंड देखें:
INSTALLATION DIRECTORY
GEM PATHS
gem env
शॉर्ट के लिए
EXECUTABLE DIRECTORY
।
EXECUTABLE DIRECTORY
CLI निष्पादन संस्करणों जवाहरात द्वारा स्थापित हैं, लेकिन उसकी जवाहरात खुद को नहीं है।
मुझे लाइब्रेरी फ़ाइल का स्थान प्राप्त करना उपयोगी लगा:
gem which *gemname*
gem which 'logstash/inputs/tcp.rb'
रत्नों को स्थापित करने के बाद, यदि आप जानना चाहते हैं कि एक विशेष रत्न कहाँ है। टाइप करने का प्रयास करें:
gem list
आप अपने द्वारा स्थापित रत्नों की सूची देख पाएंगे। अब bundle show
उस मणि का उपयोग करें और नाम दें, जिसे आप इस तरह से जानना चाहते हैं:
bundle show <gemName>
Could not locate Gemfile or .bundle/ directory
।
gem env
) से पता चलता है के लिए ही मूल फ़ोल्डर gems
फ़ोल्डर: /home/test/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0
। इसके अंदर बहुत सारे फोल्डर हैं और आपका रत्न उनमें से लगभग किसी एक में स्थित हो सकता है - ऐसा bundle show <gemName>
बिल्कुल दिखाता है (और gem env
) नहीं।
अन्य उत्तरों को पूरा करने के लिए, मणि-पथ मणि एक विशेष मणि की स्थापना पथ पा सकता है।
स्थापना:
gem install gem-path
उपयोग:
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
यह वास्तव में आसान है क्योंकि आप इसका उपयोग फ़ाइलों को संपादित करने या संपादित करने के लिए कर सकते हैं:
grep -R 'Internal server error' "$(gem path thin)"
subl "$(gem path thin)"
आप इसे अपने कमांड प्रॉम्प्ट से चलाकर gem help commands
और फिर उचित कमांड का चयन करके देख सकते हैं:
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:~$
अब ऊपर से मैं देख सकता हूँ कि कमांड environment
मददगार है। तो मैं करूँगा:
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:~$
अंत में आपको यह दिखाने के लिए कि आपने क्या पूछा, मैं करूंगा:
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:~$
gem help commands
। और मुझे लिखना चाहिए कि मैं rbenv का उपयोग कर रहा हूं।
आप gem open
मणि पथ प्रदर्शित करने में प्रवृत्त हो सकते हैं:
VISUAL=echo gem open gem-name
उदाहरण:
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
यह सिर्फ काम करता है, और कोई तीसरा पक्ष मणि आवश्यक नहीं है।
-e
विकल्प के साथ "संपादक" भी निर्दिष्ट कर सकते हैं ( -e echo
), यदि यह पर्यावरण चर सेट करने से आसान है।
gem env
जैसे काम करता है gem environment
। कुछ टाइपिंग बचाता है।
# 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/
gem help commands
रिटर्न " कमांड्स संक्षिप्त हो सकते हैं, इसलिए जब तक वे असंदिग्ध होते हैं। उदाहरण के लिए 'मणि आई रेक' 'रत्न इंस्टॉल रेक' के लिए कम है। " दूसरे शब्दों में gem environment
, gem env
और gem e
सभी काम करते हैं, लेकिन gem environment
उन लोगों के लिए स्व-दस्तावेजीकरण है जो नहीं जानते हैं। यह ऐसा कर रहा है, हमें इसका उपयोग पहली बार करने वालों के लिए करना चाहिए।
वे gem env
सूचियाँ जहाँ रत्न स्थापित किए जा सकते हैं, लेकिन यह 10 या अधिक स्थान हो सकते हैं। आप को पता है, जहां एक विशेष मणि चाहते हैं है स्थापित है, तो आप पर अमल कर सकते हैं:
gem list -d <gemname>
उदाहरण आउटपुट:
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
यह काम करता है और आपको प्रत्येक रत्न के लिए पथ पर स्थापित देता है। मल्टी-स्टेज डॉकर्स बनाने की कोशिश करते समय यह सुपर सहायक होता है .. आप विशिष्ट निर्देशिका पोस्ट-बंडल इंस्टॉल में कॉपी कर सकते हैं।
bash-4.4# gem list -d
आउटपुट ::
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
GEM PATHS
कि केवल पहले एक का उपयोग किया जाता है। क्या वह सही है?