Skip to content

Instantly share code, notes, and snippets.

@gaspanik
Created October 28, 2012 09:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaspanik/3968117 to your computer and use it in GitHub Desktop.
Save gaspanik/3968117 to your computer and use it in GitHub Desktop.
Install: Install Compass on OS X

Install Compass on OS X

まずはRubyをインストールしないことにははじまりません。OS Xの場合は、システム内にRubyが入ってますが、ちょっと古かったりするのでRVMで入れておくと良いでしょう。Ruby On Railsの環境の作り方は下記にあるので参考にどうぞ。

Setting up a Ruby On Rails environment on Mountain Lion

$ gem update --system

Latest version currently installed. Aborting.

$ gem install compass

上記コマンドを実行すると、依存するものが自動的にインストールされる。

Fetching: chunky_png-1.2.6.gem (100%)
Fetching: fssm-0.2.9.gem (100%)
Fetching: compass-0.12.2.gem (100%)
Successfully installed chunky_png-1.2.6
Successfully installed fssm-0.2.9
Successfully installed compass-0.12.2
3 gems installed
Installing ri documentation for chunky_png-1.2.6...
Installing ri documentation for fssm-0.2.9...
Installing ri documentation for compass-0.12.2...
Installing RDoc documentation for chunky_png-1.2.6...
Installing RDoc documentation for fssm-0.2.9...
Installing RDoc documentation for compass-0.12.2...

おしまい。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment