curl -sSL https://get.rvm.io | bash -s stable
<section id="main">
<div>
<h1 id="title">{{ .Title }}</h1>
{{ range .Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</section>
途中で署名がどうとかいうエラーが出るので、もう一度実行。
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
curl -sSL https://get.rvm.io | bash -s stable
環境変数を読み込み
source ~/.rvm/scripts/rvm
Rubyのインストール
rvm install 2.1.5
OK!
Octopressのインストール
git clone git://github.com/imathis/octopress.git octopress
cd octopress
gem install bundler
bundle install
rake install
これで実行しようとするとJSランタイムがないと言われるので、Gemfileに追加します。
vi Gemfile
こんな感じでtherubyracer
を追加します。
gem 'rubypants', '~> 0.2.0'
gem 'rb-fsevent', '~> 0.9'
gem 'stringex', '~> 1.4.0'
gem 'therubyracer'
end
rake preview
でプレビューを確認します。以上!