0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

#railsバージョンの確認方法

Posted at

アプリ作成中、railsのバージョン確認する為、バージョンの確認方法を調べました。

1. OSとバージョンを確認する
cat /etc/issue
「Ubuntu 14.04.2 LTS \n \l」から「Ubuntu」がOS、バージョン「14.04.2」であると認識
2. Rubyバージョンを確認
ruby -v
「ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-linux]」から、「2.1.5p273」がバージョンであると認識
3. RubyGemsのバージョンを確認する
gem -v
4. Railsのバージョンを確認する
rails -v
5. PostgreSQLのバージョンを確認する
psql -v
6. Heroku Toolbeltのバージョンを確認する
heroku --version
「heroku-toolbelt/3.41.3 (x86_64-linux) ruby/2.1.5」から、3.41.3がバージョンであると認識する
7. Gitのバージョンを確認する
git --version
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?