1
2

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.

Gemfileの削除方法

Last updated at Posted at 2019-06-02

使用しないGemfileを削除する方法です。

例えばwill_paginateをGemfileから削除する

$ bundle exec gem uninstall Gemの名前

今回の場合だと

$ bundle exec gem uninstall will_paginate

削除が完了したら、Gemfileから削除したふたつのGemを削除する

gemfile.
gem 'will_paginate',           '3.1.6' # 削除
gem 'bootstrap-will_paginate', '1.0.0' # 削除

これでOK

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?