ruby gem 관련 명령어
Updated:
참고 링크
- https://rubygems.org/
- gem 관련 명령어
원격저장소 gem 찾기
원격저장소에 gem이 있는지 이름으로 찾기( Finding Gems)
$ gem search ^rails
(...생략...)
gem 설치 확인
$ gem list
(...생략...)
$ gem list -d bundler
bundler (2.0.1)
Authors: Andr챕 Arko, Samuel Giddins, Colby Swandale, Hiroshi
Shibata, David Rodr챠guez, Grey Baker, Stephanie Morillo, Chris
Morris, James Wen, Tim Moore, Andr챕 Medeiros, Jessica Lynn Suttles,
Terence Lee, Carl Lerche, Yehuda Katz
Homepage: http://bundler.io
License: MIT
Installed at: C:/Ruby25-x64/lib/ruby/gems/2.5.0
The best way to manage your application's dependencies
gem 삭제
gem uninstall <gem-name>
Leave a comment