Rubygems-cheatsheets速查表

Building and publishing

gem build *.gemspec         # Build a gem
gem install *.gem           # Install locally
gem push *.gem              # Upload to rubygems.org
gem yank foogem -v 0.0.1    # Take it back

Querying

gem owner foogem -a [email protected]

gem list                    # List local gems
gem which rake              # Point to where lib/rake.rb is
gem search -r rails         # [remote] Search for gems

Opening a gem

# https://github.com/fnando/gem-open
gem open foogem
GEM_EDITOR="vim" gem open foogem

Changing to a directory

cd $(basename `gem which rake`)  # Go to a gem's path

本站为非盈利网站,作品由网友提供上传,如无意中有侵犯您的版权,请联系删除