Header transparent bg

Bundler provee un ambiente consistente para los proyectos de Ruby por modo de siguiendo e instalando las gemas exactas y versiones necesarias.

Bundler es un éxito del infierno de dependencias, y asegura que las gemas usted necesita estén presente en entorno de desarollo, staging, y entorno de producción. Empezando trabajar en un proyecto es tan simple como bundle install.

Translation missing: es.home.what_can_bundler_do Translation missing: es.home.new_in v2.5 Translation missing: es.home.cli_docs Translation missing: es.home.chat_with_us

Para empezar

This guide assumes that you have Ruby installed. If you do not have Ruby installed, do that first and then check back here! Any modern distribution of Ruby comes with Bundler preinstalled by default.

¡Empezando con bundler es fácil! Especifique sus dependencias en un Gemfile en la raíz de su proyecto:

source 'https://rubygems.org'
gem 'nokogiri'
gem 'rack', '~> 2.2.4'
gem 'rspec'

Instala todas de las gemas necesarias de sus fuentes especificadas:

$ bundle install
$ git add Gemfile Gemfile.lock

Get involved

Bundler has a lot of contributors and users, and we would love to have your help! If you have questions, join the Bundler Slack and we'll try to answer them. If you're interested in contributing (no programming skills needed), start with the contributing guide. While participating in the Bundler project, please keep the code of conduct in mind, and be inclusive and friendly towards everyone. If you think you've found a security issue, please report it via HackerOne.