Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
開発にはシン サーバーを使用し、ステージング/本番環境にはユニコーンを使用したいと考えています。適切なサーバーのみがそれぞれの gemset にインストールされるように Gemfile を変更するにはどうすればよいですか?
In development:
group :development do gem "thin" end
In staging and production:
group :staging, :production do gem "unicorn" end