web-dev-qa-db-ja.com

ubuntuにインストールされているrubygemsのバージョンを確認しますか?

Ubuntuボックスにインストールされているrubygemsのバージョンを確認するにはどうすればよいですか?

16
John

Rubyまたはgemsなど)のインストール済みパッケージとgrepをリストします。

dpkg --get-selections

1
user126330

gem -vまたはgem --versionはバージョン番号を出力します。

詳細については:

$ gem -h
RubyGems is a sophisticated package manager for Ruby.  This is a
basic help message containing pointers to more information.

  Usage:
    gem -h/--help
    gem -v/--version
    gem command [arguments...] [options...]

  Examples:
    gem install rake
    gem list --local
    gem build package.gemspec
    gem help install

  Further help:
    gem help commands            list all 'gem' commands
    gem help examples            show some examples of usage
    gem help platforms           show information about platforms
    gem help <COMMAND>           show help on COMMAND
                                   (e.g. 'gem help install')
    gem server                   present a web page at
                                 http://localhost:8808/
                                 with info about installed gems
  Further information:
    http://rubygems.rubyforge.org

別の質問で、gemアプリが壊れていることを確認しました。 gem update --systemで更新しました。この場合、/usr/lib/Ruby/gems/1.8/gems/rubygems-update-x.x.xを調べて、x.x.xの値が最も高いディレクトリを取得できます。

21
chmeee