6
6

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 5 years have passed since last update.

【Ruby】Macにruby2.1.0とrails4を入れる(2014/1/23版)【rails4】

Last updated at Posted at 2014-01-22

Mac前提です。

#rubyのインストール

http://qiita.com/ryam/items/4ad7269a720297121bc5
の開発ツール等のインストールのところまで進めて下さい。

rbenvでインストール可能なrubyのリスト

$ rbenv install -l

2014/1/23時点のstableの最新である2.1.0を入れます。

参考

2.1.0のインストール

$ RUBY_CONFIGURE_OPTS="--with-readline-dir=$(brew --prefix readline) --with-openssl-dir=$(brew --prefix openssl)" rbenv install 2.1.0

デフォルト設定

rbenv global 2.1.0

バージョン確認

ruby -v

2.1.0とか何とか表示されればOK。

#railsのインストール

参考

####インストール

gem install rails

結構時間かかったよ。2014/1/23時点では、4.0.2が入りました。

####バージョン確認

rails -v
6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?