1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-29 06:33:39 +02:00

bundle: add Brazilian Portuguese translation (#2887)

This commit is contained in:
Andrik Albuquerque 2019-04-11 19:18:54 -03:00 committed by Waldir Pimenta
parent f293d52ca5
commit 07c3fee951

View file

@ -0,0 +1,19 @@
# bundle
> Gerenciador de dependências da linguagem de programação Ruby.
- 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}}`