Skip to content

Instantly share code, notes, and snippets.

@kazoo0217
Created September 5, 2014 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazoo0217/ebfd7e1befbb950ed021 to your computer and use it in GitHub Desktop.
Save kazoo0217/ebfd7e1befbb950ed021 to your computer and use it in GitHub Desktop.

gemのパッケージでインストールされているものの一覧表示

C:\Users\UserName>gem list

*** LOCAL GEMS ***

bigdecimal (1.2.0)
bootstrap-sass (3.2.0.1)
chunky_png (1.3.1)
compass (0.12.7)
fssm (0.2.10)
io-console (0.4.2)
json (1.7.7)
kramdown (1.4.0)
minitest (4.3.2)
psych (2.0.0)
rake (0.9.6)
rdoc (4.0.0)
rubygems-update (2.4.1)
sass (3.2.19)
test-unit (2.0.0.0)

gemシステムをアップグレード

C:\Users\UserName>gem update --system
Latest version currently installed. Aborting.

※既に最新版でした。

compassをアップグレード(sassも同時にアップグレード)

C:\Users\UserName>gem update compass
Updating installed gems
Updating compass
Fetching: ffi-1.9.3-x64-mingw32.gem (100%)
Successfully installed ffi-1.9.3-x64-mingw32
Fetching: rb-inotify-0.9.5.gem (100%)
Successfully installed rb-inotify-0.9.5
Fetching: rb-fsevent-0.9.4.gem (100%)
Successfully installed rb-fsevent-0.9.4
Fetching: sass-3.4.3.gem (100%)
Successfully installed sass-3.4.3
Fetching: compass-import-once-1.0.5.gem (100%)
Successfully installed compass-import-once-1.0.5
Fetching: multi_json-1.10.1.gem (100%)
Successfully installed multi_json-1.10.1
Fetching: compass-core-1.0.1.gem (100%)
Successfully installed compass-core-1.0.1
Fetching: compass-1.0.1.gem (100%)
    Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!
Successfully installed compass-1.0.1
Parsing documentation for ffi-1.9.3-x64-mingw32
Installing ri documentation for ffi-1.9.3-x64-mingw32
Installing darkfish documentation for ffi-1.9.3-x64-mingw32
Parsing documentation for rb-inotify-0.9.5
Installing ri documentation for rb-inotify-0.9.5
Installing darkfish documentation for rb-inotify-0.9.5
Parsing documentation for rb-fsevent-0.9.4
Installing ri documentation for rb-fsevent-0.9.4
Installing darkfish documentation for rb-fsevent-0.9.4
Parsing documentation for sass-3.4.3
Installing ri documentation for sass-3.4.3
Installing darkfish documentation for sass-3.4.3
Parsing documentation for compass-import-once-1.0.5
Installing ri documentation for compass-import-once-1.0.5
Installing darkfish documentation for compass-import-once-1.0.5
Parsing documentation for multi_json-1.10.1
Installing ri documentation for multi_json-1.10.1
Installing darkfish documentation for multi_json-1.10.1
Parsing documentation for compass-core-1.0.1
Installing ri documentation for compass-core-1.0.1
Installing darkfish documentation for compass-core-1.0.1
Parsing documentation for compass-1.0.1
Installing ri documentation for compass-1.0.1
Installing darkfish documentation for compass-1.0.1
Parsing documentation for compass-1.0.1
Parsing documentation for compass-core-1.0.1
Parsing documentation for compass-import-once-1.0.5
Parsing documentation for ffi-1.9.3-x64-mingw32
unable to convert "\x90" from ASCII-8BIT to UTF-8 for lib/ffi_c.so, skipping
Parsing documentation for multi_json-1.10.1
Parsing documentation for rb-fsevent-0.9.4
Parsing documentation for rb-inotify-0.9.5
Parsing documentation for sass-3.4.3
Gems updated: compass compass-core compass-import-once ffi multi_json rb-fsevent rb-inotify sass

compassのバージョンを確認

C:\Users\UserName>compass --version
Compass 1.0.1 (Polaris)
Copyright (c) 2008-2014 Chris Eppstein
Released under the MIT License.
Compass is charityware.
Please make a tax deductable donation for a worthy cause: http://umdf.org/compass

sassのバージョンを確認

C:\Users\UserName>sass --version
Sass 3.4.3 (Selective Steve)

再度一覧表示

C:\Users\UserName>gem list

*** LOCAL GEMS ***

bigdecimal (1.2.0)
bootstrap-sass (3.2.0.1)
chunky_png (1.3.1)
compass (1.0.1, 0.12.7)
compass-core (1.0.1)
compass-import-once (1.0.5)
ffi (1.9.3 x64-mingw32)
fssm (0.2.10)
io-console (0.4.2)
json (1.7.7)
kramdown (1.4.0)
minitest (4.3.2)
multi_json (1.10.1)
psych (2.0.0)
rake (0.9.6)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
rdoc (4.0.0)
rubygems-update (2.4.1)
sass (3.4.3, 3.2.19)
test-unit (2.0.0.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment