RubyGems
gemを管理するパッケージ管理ツール
RubyGemes.orgにホスティングするとgemからインストール可能になる
gemを削除してインストールしなおす
find /Users/username/.rbenv/versions/3.2.2/lib/ruby/gems/3.2.0/gems -type d -name 'faraday-*'
特定コミットを指定
gem "hoge", "~> 1.0.0", ref: "01ce2f5531bb5788c89da1cce4c3772fb0c005e7"
特定のブランチを指定
gem "hoge", "~> 1.0.0", git: "git://github.com/<username>/aikatsu.git", branch: "master"
code:ruby
git_source(:my_private) do |repo_name|
end
gem "hoge", my_private: "reponame", branch: "master"