# 현재 설치된 패키지들 보기
gem list
# gem system 최신으로 업데이트
gem update --system
# gem 최신으로 업데이트
gem update
# json 패키지 설치하기
gem install json
# gem 이사용하는 패키지 저장소(소스) 보기
# http://gems.rubyforge.org (RubyGems 1.3.6 and earlier)
# http://rubygems.org (RubyGems 1.3.7 through 1.8.25)
# https://rubygems.org (RubyGems 2.0.1 and newer)
gem source
# 소스 삭제
gem sources -r https://rubygems.org
# 소스 추가
gem sources -a https://rubygems.org
# 캐싱 되어 있는 소스 업데이트
gem sources -u
# json 패키지 설치하기
gem install json
# gem 이사용하는 패키지 저장소(소스) 보기
# http://gems.rubyforge.org (RubyGems 1.3.6 and earlier)
# http://rubygems.org (RubyGems 1.3.7 through 1.8.25)
# https://rubygems.org (RubyGems 2.0.1 and newer)
gem source
# 소스 삭제
gem sources -r https://rubygems.org
# 소스 추가
gem sources -a https://rubygems.org
# 캐싱 되어 있는 소스 업데이트
gem sources -u
comments:
댓글 쓰기