1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pt_BR/common/bundle.md

21 lines
517 B
Markdown
Raw Normal View History

# bundle
> Gerenciador de dependências da linguagem de programação Ruby.
> Mais informações: <https://bundler.io/man/bundle.1.html>.
- Instalar todas as gemas definidas no `Gemfile`:
`bundle install`
- Atualizar todas as gemas, respeitando as regras definidas no `Gemfile`, e recriar o arquivo `Gemfile.lock`:
`bundle update`
- Atualizar uma gema específica definida no `Gemfile`:
`bundle update --source {{nome_da_gema}}`
- Criar o esqueleto do projeto de uma nova gema:
`bundle gem {{nome_da_gema}}`