gemfile

 
 
 

Bundle init

$ bundle init # -> Gemfile이 생성됨
notion image
# frozen_string_literal: true source "https://rubygems.org" # gem "rails"
처음 생성된 Gemfile의 내용은 위와 같다.
 

Bundle install

$ bundle install
notion image
notion image
기본적인 디펜던시 정보들과 버전 정보가 기입된다.

bundle exec pod install