Go to file
BOHUNG b890c6ec3b fix about Gemfile.lock.(Make the folder name be about revision(commit id) if gem package has an revision number) 2019-10-08 21:47:35 +08:00
bin original version 2019-10-06 23:48:28 +08:00
lib fix about Gemfile.lock.(Make the folder name be about revision(commit id) if gem package has an revision number) 2019-10-08 21:47:35 +08:00
man original version 2019-10-06 23:48:28 +08:00
spec original version 2019-10-06 23:48:28 +08:00
.gitignore original version 2019-10-06 23:48:28 +08:00
.rspec original version 2019-10-06 23:48:28 +08:00
.travis.yml original version 2019-10-06 23:48:28 +08:00
CHANGELOG.md original version 2019-10-06 23:48:28 +08:00
CONTRIBUTING.md original version 2019-10-06 23:48:28 +08:00
DEVELOPMENT.md original version 2019-10-06 23:48:28 +08:00
ISSUES.md original version 2019-10-06 23:48:28 +08:00
LICENSE.md original version 2019-10-06 23:48:28 +08:00
README.md original version 2019-10-06 23:48:28 +08:00
Rakefile original version 2019-10-06 23:48:28 +08:00
UPGRADING.md original version 2019-10-06 23:48:28 +08:00
bundler.gemspec original version 2019-10-06 23:48:28 +08:00

README.md

Code Climate Build Status Version

Bundler: a gem to bundle gems

Bundler keeps ruby applications running 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

gem install bundler
bundle init
echo "gem 'rails'" >> Gemfile
bundle install
bundle exec rails new myapp

See bundler.io for the full documentation.

Troubleshooting

For help with common problems, see ISSUES.

Contributing

If you'd like to contribute to Bundler, that's awesome, and we <3 you. There's a guide to contributing to Bundler (both code and general help) over in DEVELOPMENT

The master branch contains our current progress towards version 1.5. Versions 1.0-1.3 each have their own stable branches. Please submit bugfixes as pull requests to the stable branch for the version you would like to fix.

Core Team

The Bundler core team consists of André Arko (@indirect), Terence Lee (@hone), and Jessica Lynn Suttles (@jlsuttles), with support and advice from original Bundler author Yehuda Katz (@wycats).

Other questions

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

Feel free to chat with the Bundler core team (and many other users) on IRC in the #bundler channel on Freenode, or via email on the Bundler mailing list.