tldr/pages.it/common/bundle.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

21 lines
498 B
Markdown

# bundle
> Gestore di dipendenze per il linguaggio di programmazione Ruby.
> Maggiori informazioni: <https://bundler.io/man/bundle.1.html>.
- Installa tutte le gem definite nel gemfile della directory corrente:
`bundle install`
- Aggiorna tutte le gem secondo le regole definite nel gemfile e genera un `gemfile.lock`:
`bundle update`
- Aggiorna una specifica gem definita nel gemfile:
`bundle update --source {{nome_gem}}`
- Crea un scheletro per una nuova gem:
`bundle gem {{nome_gem}}`