13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gemをローカルで修正

Posted at

手順

  1. gem の取得
$ gem fetch [pakcage]
  1. gem をローカルに展開
$ gem unpack [pakcage]-x.y.z.gem
  1. ファイルの修正
$ cd [pakcage]-x.y.z
$ vim ...
  1. specファイルの取得
$ gem spec [pakcage] > [pakcage].gemspec
  1. パッケージのビルド
$ gem build [pakcage].gemspec
  1. 修正した gem のインストール
$ sudo gem install ./[pakcage]-x.y.z.gem

参考

13
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?