http://openbook4.me/projects/92
2015年時点でRails4をインストールする場合、CentOS7ですら依存バージョンが古かったりでインストールが大変である。
brew update brew install rbenv ruby-build echo 'eval "$(rbenv init -)"' >> ~/.bash_profile rbenv install -l rbenv install 2.3.4 rbenv rehash rbenv global 2.3.4
gem install rails gem install bundler
railas new sample
brew install mysql
mynewappというアプリケーションを作る | rails new mynewapp |
indexとshowのviewを作成 | rails g controller users index show |
DB作成 | rake db:create |
@user = Hash.new @user[:name] = 'taro'
<h1><%= @user[:name] %></h1>
flash[:error] = message('dashboard.project_not_found')