Programing Notes.

Do things you enjoy.

Bundle 問題及排除方式

目前先把有遇過的問題整理在此


images

解決方式 :

$ sudo gem update bundler
$ bundle install

Octopress - 使用篇

Octopress常用的語法

1.建立文章 正常的情況下執行此行:

$ rake new_post['how-to-use-octopress']

但如果你使用的是zsh shell的話, 就必須這樣打:

$ rake "new_post[how-to-use-octopress]"

Octopress - 第一篇文章

寫Code的人想有個筆記兼具分享的部落格

其實很久以前就有想要搞一個技術部落格, 在這之前有用過無名、痞客邦,但貼code的時候總不能就直接control+c然後control+v吧 ? 因為直接貼code上去既醜又沒人看的懂…

Octopress - 安裝篇

1.安裝RVM & Ruby for Mac

$ \curl -L https://get.rvm.io | bash -s stable --ruby
$ rvm install 1.9.3
$ rvm use 1.9.3 --default
$ rvm rubygems current

2.安裝bundler

$ gem install bundler

3.下載Octpress專案

$ git clone git://github.com/imathis/octopress.git octopress
$ cd octopress
$ bundle install
$ rake install