Quantcast
Channel: 未分類 –けんさんのIT知識
Viewing all articles
Browse latest Browse all 12

Ubuntu 12.04LTS上で Ruby1.9.3+ Rails3.2.8 + Rspec をインストール

$
0
0

Rubyをインストールする

$ apt-get install git-core
$ apt-get install curl
$ curl -L get.rvm.io | bash -s stable
$ source /etc/profile.d/rvm.sh
$ rvm install 1.9.3
$ rvm use --default 1.9.3

Railsをインストールする

$ rvmsudo gem install rails -v 3.2.8

Rspecをインストールする

Gemfile に下記を追加する。

 gem 'rspec'
 gem 'rspec-rails'

gemのインストールと設定を行う。

$ bundle install
$ bundle exec rails g rspec:install

以上で完了です。

もし、Rails起動時に下記のようなエラーが出た場合はtherubyracer をインストールし、Gemfileを編集します。

/usr/local/rvm/gems/ruby-1.9.3-p448/gems/execjs-2.0.2/lib/execjs/runtimes.rb:51:in `autodetect': Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable)

therubyracerのインストール

 # rvmsudo gem install therubyracer

Gemfile に以下を追加

  gem 'execjs'
  gem 'therubyracer'

Viewing all articles
Browse latest Browse all 12

Trending Articles