All Projects → rubygems → Bundler

rubygems / Bundler

Licence: mit
Manage your Ruby application's gem dependencies

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Bundler

G
Simple go version manager, gluten-free
Stars: ✭ 307 (-93.66%)
Mutual labels:  dependency-manager
Fury
A new build tool for JVM languages
Stars: ✭ 384 (-92.08%)
Mutual labels:  dependency-manager
Pip Update Requirements
Update the packages in a requirements.txt file.
Stars: ✭ 462 (-90.47%)
Mutual labels:  dependency-manager
Rubygems Mirror
https://gems.ruby-china.com
Stars: ✭ 318 (-93.44%)
Mutual labels:  rubygems
Cget
C++ package retrieval
Stars: ✭ 370 (-92.36%)
Mutual labels:  dependency-manager
Ruby Units
A unit handling library for ruby
Stars: ✭ 389 (-91.97%)
Mutual labels:  rubygems
Cryptoexchange
[UNMAINTAINED] Ruby library to query market data from cryptocurrency exchanges (https://www.coingecko.com)
Stars: ✭ 272 (-94.39%)
Mutual labels:  rubygems
Patch Package
Fix broken node modules instantly 🏃🏽‍♀️💨
Stars: ✭ 6,062 (+25.09%)
Mutual labels:  dependency-manager
Pyup
A tool to update your project's dependencies on GitHub. Runs on pyup.io, comes with a command line interface.
Stars: ✭ 379 (-92.18%)
Mutual labels:  dependency-manager
Gem Release
Release your ruby gems with ease.
Stars: ✭ 448 (-90.76%)
Mutual labels:  rubygems
Cocoaseeds
Git Submodule Alternative for Cocoa.
Stars: ✭ 340 (-92.98%)
Mutual labels:  dependency-manager
Gemsmith
A command line interface for smithing Ruby gems.
Stars: ✭ 354 (-92.7%)
Mutual labels:  rubygems
Papertrail Cli
Command-line client for Papertrail hosted syslog & app log management service
Stars: ✭ 397 (-91.81%)
Mutual labels:  rubygems
Poet
Poet helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere.
Stars: ✭ 312 (-93.56%)
Mutual labels:  dependency-manager
Ruby Mqtt
Pure Ruby gem that implements the MQTT protocol, a lightweight protocol for publish/subscribe messaging.
Stars: ✭ 463 (-90.45%)
Mutual labels:  rubygems
Pluck to hash
Extend ActiveRecord pluck to return array of hashes
Stars: ✭ 275 (-94.33%)
Mutual labels:  rubygems
Deep pluck
Allow you to pluck attributes from nested associations without loading a bunch of records.
Stars: ✭ 385 (-92.06%)
Mutual labels:  rubygems
Renovate
Universal dependency update tool that fits into your workflows.
Stars: ✭ 6,700 (+38.26%)
Mutual labels:  dependency-manager
Bowerphp
A PHP implementation of bower 🐦
Stars: ✭ 479 (-90.12%)
Mutual labels:  dependency-manager
Ruby Fann
Ruby library for interfacing with FANN (Fast Artificial Neural Network)
Stars: ✭ 425 (-91.23%)
Mutual labels:  rubygems

Bundler is now maintained in the rubygems/rubygems repository.


Version     Inline docs Slack

Bundler: a gem to bundle gems

Bundler makes sure Ruby applications run the same code on every machine.

It does this by managing the gems that the application depends on. Given a list of gems, it can automatically download and install those gems, as well as any other gems needed by the gems that are listed. Before installing gems, it checks the versions of every gem to make sure that they are compatible, and can all be loaded at the same time. After the gems have been installed, Bundler can help you update some or all of them when new versions become available. Finally, it records the exact versions that have been installed, so that others can install the exact same gems.

Installation and usage

To install (or update to the latest version):

gem install bundler

To install a prerelease version (if one is available), run gem install bundler --pre. To uninstall Bundler, run gem uninstall bundler.

Bundler is most commonly used to manage your application's dependencies. For example, these commands will allow you to use Bundler to manage the rspec gem for your application:

bundle init
bundle add rspec
bundle install
bundle exec rspec

See bundler.io for the full documentation.

Troubleshooting

For help with common problems, see TROUBLESHOOTING.

Still stuck? Try filing an issue.

Other questions

To see what has changed in recent versions of Bundler, see the CHANGELOG.

To get in touch with the Bundler core team and other Bundler users, please see getting help.

Contributing

If you'd like to contribute to Bundler, that's awesome, and we <3 you. We've put together the Bundler contributor guide with all of the information you need to get started.

If you'd like to request a substantial change to Bundler or to the Bundler documentation, refer to the Bundler RFC process for more information.

While some Bundler contributors are compensated by Ruby Together, the project maintainers make decisions independent of Ruby Together. As a project, we welcome contributions regardless of the author's affiliation with Ruby Together.

Supporting


Ruby Together pays some Bundler maintainers for their ongoing work. As a grassroots initiative committed to supporting the critical Ruby infrastructure you rely on, Ruby Together is funded entirely by the Ruby community. Contribute today as an individual or (better yet) as a company to ensure that Bundler, RubyGems, and other shared tooling is around for years to come.

Code of Conduct

Everyone interacting in the Bundler project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Bundler code of conduct.

License

Bundler is available under an MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].