0
0

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 1 year has passed since last update.

RailsのBundlerの書き方

Posted at

自動的に最新バージョンのgemを取得する場合

gem "sprockets-rails"

gemのバージョンを指定する場合

gemのバージョンを指定する方法は2種類ある。

1. 最新のgemを探してインストール

gem "capybara", ">= 3.26"

3.26と同じかそれより上のバージョンがインストールされる。

2. マイナーバージョンのみバージョンアップ

gem "puma", "~> 5.0"

バージョンが5.0以上のpumaがインストールされるが、6以上(メジャーアップデート)はインストールされない。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?