mpapis-bundler 1.0.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (144) hide show
  1. data/.gitignore +22 -0
  2. data/.travis.yml +32 -0
  3. data/CHANGELOG.md +805 -0
  4. data/ISSUES.md +62 -0
  5. data/LICENSE +23 -0
  6. data/README.md +29 -0
  7. data/Rakefile +212 -0
  8. data/UPGRADING.md +103 -0
  9. data/bin/bundle +22 -0
  10. data/bundler.gemspec +32 -0
  11. data/lib/bundler/capistrano.rb +11 -0
  12. data/lib/bundler/cli.rb +522 -0
  13. data/lib/bundler/definition.rb +438 -0
  14. data/lib/bundler/dependency.rb +134 -0
  15. data/lib/bundler/deployment.rb +58 -0
  16. data/lib/bundler/dsl.rb +257 -0
  17. data/lib/bundler/environment.rb +47 -0
  18. data/lib/bundler/gem_helper.rb +151 -0
  19. data/lib/bundler/gem_installer.rb +9 -0
  20. data/lib/bundler/gem_tasks.rb +2 -0
  21. data/lib/bundler/graph.rb +130 -0
  22. data/lib/bundler/index.rb +138 -0
  23. data/lib/bundler/installer.rb +97 -0
  24. data/lib/bundler/lazy_specification.rb +74 -0
  25. data/lib/bundler/lockfile_parser.rb +108 -0
  26. data/lib/bundler/remote_specification.rb +59 -0
  27. data/lib/bundler/resolver.rb +464 -0
  28. data/lib/bundler/rubygems_ext.rb +237 -0
  29. data/lib/bundler/rubygems_integration.rb +349 -0
  30. data/lib/bundler/runtime.rb +152 -0
  31. data/lib/bundler/settings.rb +115 -0
  32. data/lib/bundler/setup.rb +23 -0
  33. data/lib/bundler/shared_helpers.rb +71 -0
  34. data/lib/bundler/source.rb +708 -0
  35. data/lib/bundler/spec_set.rb +135 -0
  36. data/lib/bundler/templates/Executable +16 -0
  37. data/lib/bundler/templates/Gemfile +4 -0
  38. data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  39. data/lib/bundler/templates/newgem/Rakefile.tt +1 -0
  40. data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
  41. data/lib/bundler/templates/newgem/gitignore.tt +4 -0
  42. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  43. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +9 -0
  44. data/lib/bundler/templates/newgem/newgem.gemspec.tt +24 -0
  45. data/lib/bundler/ui.rb +73 -0
  46. data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
  47. data/lib/bundler/vendor/thor/actions/create_link.rb +57 -0
  48. data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
  49. data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
  50. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +270 -0
  51. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +109 -0
  52. data/lib/bundler/vendor/thor/actions.rb +314 -0
  53. data/lib/bundler/vendor/thor/base.rb +576 -0
  54. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
  55. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  56. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
  57. data/lib/bundler/vendor/thor/error.rb +30 -0
  58. data/lib/bundler/vendor/thor/group.rb +273 -0
  59. data/lib/bundler/vendor/thor/invocation.rb +168 -0
  60. data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
  61. data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
  62. data/lib/bundler/vendor/thor/parser/option.rb +120 -0
  63. data/lib/bundler/vendor/thor/parser/options.rb +175 -0
  64. data/lib/bundler/vendor/thor/parser.rb +4 -0
  65. data/lib/bundler/vendor/thor/rake_compat.rb +66 -0
  66. data/lib/bundler/vendor/thor/runner.rb +309 -0
  67. data/lib/bundler/vendor/thor/shell/basic.rb +302 -0
  68. data/lib/bundler/vendor/thor/shell/color.rb +108 -0
  69. data/lib/bundler/vendor/thor/shell/html.rb +121 -0
  70. data/lib/bundler/vendor/thor/shell.rb +88 -0
  71. data/lib/bundler/vendor/thor/task.rb +113 -0
  72. data/lib/bundler/vendor/thor/util.rb +229 -0
  73. data/lib/bundler/vendor/thor/version.rb +3 -0
  74. data/lib/bundler/vendor/thor.rb +358 -0
  75. data/lib/bundler/vendored_thor.rb +7 -0
  76. data/lib/bundler/version.rb +6 -0
  77. data/lib/bundler/vlad.rb +11 -0
  78. data/lib/bundler.rb +286 -0
  79. data/man/bundle-config.ronn +90 -0
  80. data/man/bundle-exec.ronn +111 -0
  81. data/man/bundle-install.ronn +317 -0
  82. data/man/bundle-package.ronn +59 -0
  83. data/man/bundle-update.ronn +176 -0
  84. data/man/bundle.ronn +80 -0
  85. data/man/gemfile.5.ronn +284 -0
  86. data/man/index.txt +6 -0
  87. data/spec/bundler/gem_helper_spec.rb +143 -0
  88. data/spec/cache/gems_spec.rb +230 -0
  89. data/spec/cache/git_spec.rb +12 -0
  90. data/spec/cache/path_spec.rb +27 -0
  91. data/spec/cache/platform_spec.rb +57 -0
  92. data/spec/install/deploy_spec.rb +197 -0
  93. data/spec/install/deprecated_spec.rb +37 -0
  94. data/spec/install/gems/c_ext_spec.rb +48 -0
  95. data/spec/install/gems/env_spec.rb +107 -0
  96. data/spec/install/gems/flex_spec.rb +313 -0
  97. data/spec/install/gems/groups_spec.rb +259 -0
  98. data/spec/install/gems/packed_spec.rb +84 -0
  99. data/spec/install/gems/platform_spec.rb +192 -0
  100. data/spec/install/gems/resolving_spec.rb +72 -0
  101. data/spec/install/gems/simple_case_spec.rb +770 -0
  102. data/spec/install/gems/sudo_spec.rb +74 -0
  103. data/spec/install/gems/win32_spec.rb +26 -0
  104. data/spec/install/gemspec_spec.rb +125 -0
  105. data/spec/install/git_spec.rb +570 -0
  106. data/spec/install/invalid_spec.rb +35 -0
  107. data/spec/install/path_spec.rb +405 -0
  108. data/spec/install/upgrade_spec.rb +26 -0
  109. data/spec/lock/git_spec.rb +35 -0
  110. data/spec/lock/lockfile_spec.rb +739 -0
  111. data/spec/other/check_spec.rb +221 -0
  112. data/spec/other/config_spec.rb +40 -0
  113. data/spec/other/console_spec.rb +54 -0
  114. data/spec/other/exec_spec.rb +248 -0
  115. data/spec/other/ext_spec.rb +37 -0
  116. data/spec/other/help_spec.rb +39 -0
  117. data/spec/other/init_spec.rb +40 -0
  118. data/spec/other/newgem_spec.rb +46 -0
  119. data/spec/other/open_spec.rb +35 -0
  120. data/spec/other/show_spec.rb +82 -0
  121. data/spec/quality_spec.rb +62 -0
  122. data/spec/resolver/basic_spec.rb +20 -0
  123. data/spec/resolver/platform_spec.rb +82 -0
  124. data/spec/runtime/executable_spec.rb +110 -0
  125. data/spec/runtime/load_spec.rb +107 -0
  126. data/spec/runtime/platform_spec.rb +90 -0
  127. data/spec/runtime/require_spec.rb +231 -0
  128. data/spec/runtime/setup_spec.rb +730 -0
  129. data/spec/runtime/with_clean_env_spec.rb +15 -0
  130. data/spec/spec_helper.rb +92 -0
  131. data/spec/support/builders.rb +597 -0
  132. data/spec/support/helpers.rb +239 -0
  133. data/spec/support/indexes.rb +112 -0
  134. data/spec/support/matchers.rb +77 -0
  135. data/spec/support/path.rb +71 -0
  136. data/spec/support/platforms.rb +53 -0
  137. data/spec/support/ruby_ext.rb +20 -0
  138. data/spec/support/rubygems_ext.rb +37 -0
  139. data/spec/support/rubygems_hax/platform.rb +11 -0
  140. data/spec/support/sudo.rb +21 -0
  141. data/spec/update/gems_spec.rb +122 -0
  142. data/spec/update/git_spec.rb +196 -0
  143. data/spec/update/source_spec.rb +51 -0
  144. metadata +314 -0
@@ -0,0 +1,317 @@
1
+ bundle-install(1) -- Install the dependencies specified in your Gemfile
2
+ =======================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle install` [--gemfile=GEMFILE]
7
+ [--path PATH] [--system]
8
+ [--without=GROUP1[ GROUP2...]]
9
+ [--local] [--deployment]
10
+ [--binstubs[=DIRECTORY]]
11
+ [--quiet]
12
+
13
+ ## DESCRIPTION
14
+
15
+ Install the gems specified in your Gemfile(5). If this is the first
16
+ time you run bundle install (and a `Gemfile.lock` does not exist),
17
+ bundler will fetch all remote sources, resolve dependencies and
18
+ install all needed gems.
19
+
20
+ If a `Gemfile.lock` does exist, and you have not updated your Gemfile(5),
21
+ bundler will fetch all remote sources, but use the dependencies
22
+ specified in the `Gemfile.lock` instead of resolving dependencies.
23
+
24
+ If a `Gemfile.lock` does exist, and you have updated your Gemfile(5),
25
+ bundler will use the dependencies in the `Gemfile.lock` for all gems
26
+ that you did not update, but will re-resolve the dependencies of
27
+ gems that you did update. You can find more information about this
28
+ update process below under [CONSERVATIVE UPDATING][].
29
+
30
+ ## OPTIONS
31
+
32
+ * `--gemfile=<gemfile>`:
33
+ The location of the Gemfile(5) that bundler should use. This defaults
34
+ to a gemfile in the current working directory. In general, bundler
35
+ will assume that the location of the Gemfile(5) is also the project
36
+ root, and will look for the `Gemfile.lock` and `vendor/cache` relative
37
+ to it.
38
+
39
+ * `--path=<path>`:
40
+ The location to install the gems in the bundle to. This defaults
41
+ to the gem home, which is the location that `gem install` installs
42
+ gems to. This means that, by default, gems installed without a
43
+ `--path` setting will show up in `gem list`. This setting is a
44
+ [remembered option][REMEMBERED OPTIONS].
45
+
46
+ * `--system`:
47
+ Installs the gems in the bundle to the system location. This
48
+ overrides any previous [remembered][REMEMBERED OPTIONS] use of
49
+ `--path`.
50
+
51
+ * `--without=<list>`:
52
+ A space-separated list of groups to skip installing. This is a
53
+ [remembered option][REMEMBERED OPTIONS].
54
+
55
+ * `--local`:
56
+ Do not attempt to connect to `rubygems.org`, instead using just
57
+ the gems already present in Rubygems' cache or in `vendor/cache`.
58
+ Note that if a more appropriate platform-specific gem exists on
59
+ `rubygems.org`, it will not be found.
60
+
61
+ * `--deployment`:
62
+ Switches bundler's defaults into [deployment mode][DEPLOYMENT MODE].
63
+ Do not use this flag on development machines.
64
+
65
+ * `--binstubs[=<directory>]`:
66
+ Create a directory (defaults to `bin`) containing an executable
67
+ that runs in the context of the bundle. For instance, if the
68
+ `rails` gem comes with a `rails` executable, this flag will create
69
+ a `bin/rails` executable that ensures that all dependencies used
70
+ come from the bundled gems.
71
+
72
+ ## DEPLOYMENT MODE
73
+
74
+ Bundler's defaults are optimized for development. To switch to
75
+ defaults optimized for deployment, use the `--deployment` flag.
76
+ Do not activate deployment mode on development machines, as it
77
+ will cause in an error when the Gemfile is modified.
78
+
79
+ 1. A `Gemfile.lock` is required.
80
+
81
+ To ensure that the same versions of the gems you developed with
82
+ and tested with are also used in deployments, a `Gemfile.lock`
83
+ is required.
84
+
85
+ This is mainly to ensure that you remember to check your
86
+ `Gemfile.lock` into version control.
87
+
88
+ 2. The `Gemfile.lock` must be up to date
89
+
90
+ In development, you can modify your Gemfile(5) and re-run
91
+ `bundle install` to [conservatively update][CONSERVATIVE UPDATING]
92
+ your `Gemfile.lock` snapshot.
93
+
94
+ In deployment, your `Gemfile.lock` should be up-to-date with
95
+ changes made in your Gemfile(5).
96
+
97
+ 3. Gems are installed to `vendor/bundle` not your default system location
98
+
99
+ In development, it's convenient to share the gems used in your
100
+ application with other applications and other scripts run on
101
+ the system.
102
+
103
+ In deployment, isolation is a more important default. In addition,
104
+ the user deploying the application may not have permission to install
105
+ gems to the system, or the web server may not have permission to
106
+ read them.
107
+
108
+ As a result, `bundle install --deployment` installs gems to
109
+ the `vendor/bundle` directory in the application. This may be
110
+ overridden using the `--path` option.
111
+
112
+ ## SUDO USAGE
113
+
114
+ By default, bundler installs gems to the same location as `gem install`.
115
+
116
+ In some cases, that location may not be writable by your Unix user. In
117
+ that case, bundler will stage everything in a temporary directory,
118
+ then ask you for your `sudo` password in order to copy the gems into
119
+ their system location.
120
+
121
+ From your perspective, this is identical to installing them gems
122
+ directly into the system.
123
+
124
+ You should never use `sudo bundle install`. This is because several
125
+ other steps in `bundle install` must be performed as the current user:
126
+
127
+ * Updating your `Gemfile.lock`
128
+ * Updating your `vendor/cache`, if necessary
129
+ * Checking out private git repositories using your user's SSH keys
130
+
131
+ Of these three, the first two could theoretically be performed by
132
+ `chown`ing the resulting files to `$SUDO_USER`. The third, however,
133
+ can only be performed by actually invoking the `git` command as
134
+ the current user. Therefore, git gems are downloaded and installed
135
+ into `~/.bundle` rather than $GEM_HOME or $BUNDLE_PATH.
136
+
137
+ As a result, you should run `bundle install` as the current user,
138
+ and bundler will ask for your password if it is needed to put the
139
+ gems into their final location.
140
+
141
+ ## INSTALLING GROUPS
142
+
143
+ By default, `bundle install` will install all gems in all groups
144
+ in your Gemfile(5), except those declared for a different platform.
145
+
146
+ However, you can explicitly tell bundler to skip installing
147
+ certain groups with the `--without` option. This option takes
148
+ a space-separated list of groups.
149
+
150
+ While the `--without` option will skip _installing_ the gems in the
151
+ specified groups, it will still _download_ those gems and use them to
152
+ resolve the dependencies of every gem in your Gemfile(5).
153
+
154
+ This is so that installing a different set of groups on another
155
+ machine (such as a production server) will not change the
156
+ gems and versions that you have already developed and tested against.
157
+
158
+ `Bundler offers a rock-solid guarantee that the third-party
159
+ code you are running in development and testing is also the
160
+ third-party code you are running in production. You can choose
161
+ to exclude some of that code in different environments, but you
162
+ will never be caught flat-footed by different versions of
163
+ third-party code being used in different environments.`
164
+
165
+ For a simple illustration, consider the following Gemfile(5):
166
+
167
+ source "http://rubygems.org"
168
+
169
+ gem "sinatra"
170
+
171
+ group :production do
172
+ gem "rack-perftools-profiler"
173
+ end
174
+
175
+ In this case, `sinatra` depends on any version of Rack (`>= 1.0`, while
176
+ `rack-perftools-profiler` depends on 1.x (`~> 1.0`).
177
+
178
+ When you run `bundle install --without production` in development, we
179
+ look at the dependencies of `rack-perftools-profiler` as well. That way,
180
+ you do not spend all your time developing against Rack 2.0, using new
181
+ APIs unavailable in Rack 1.x, only to have bundler switch to Rack 1.2
182
+ when the `production` group _is_ used.
183
+
184
+ This should not cause any problems in practice, because we do not
185
+ attempt to `install` the gems in the excluded groups, and only evaluate
186
+ as part of the dependency resolution process.
187
+
188
+ This also means that you cannot include different versions of the same
189
+ gem in different groups, because doing so would result in different
190
+ sets of dependencies used in development and production. Because of
191
+ the vagaries of the dependency resolution process, this usually
192
+ affects more than just the gems you list in your Gemfile(5), and can
193
+ (surprisingly) radically change the gems you are using.
194
+
195
+ ## REMEMBERED OPTIONS
196
+
197
+ Some options (marked above in the [OPTIONS][] section) are remembered
198
+ between calls to `bundle install`, and by the Bundler runtime.
199
+
200
+ For instance, if you run `bundle install --without test`, a subsequent
201
+ call to `bundle install` that does not include a `--without` flag will
202
+ remember your previous choice.
203
+
204
+ In addition, a call to `Bundler.setup` will not attempt to make the
205
+ gems in those groups available on the Ruby load path, as they were
206
+ not installed.
207
+
208
+ The settings that are remembered are:
209
+
210
+ * `--deployment`:
211
+ At runtime, this remembered setting will also result in Bundler
212
+ raising an exception if the `Gemfile.lock` is out of date.
213
+
214
+ * `--path`:
215
+ Subsequent calls to `bundle install` will install gems to the
216
+ directory originally passed to `--path`. The Bundler runtime
217
+ will look for gems in that location. You can revert this
218
+ option by running `bundle install --system`.
219
+
220
+ * `--binstubs`:
221
+ Bundler will update the executables every subsequent call to
222
+ `bundle install`.
223
+
224
+ * `--without`:
225
+ As described above, Bundler will skip the gems specified by
226
+ `--without` in subsequent calls to `bundle install`. The
227
+ Bundler runtime will also not try to make the gems in the
228
+ skipped groups available.
229
+
230
+ ## THE GEMFILE.LOCK
231
+
232
+ When you run `bundle install`, Bundler will persist the full names
233
+ and versions of all gems that you used (including dependencies of
234
+ the gems specified in the Gemfile(5)) into a file called `Gemfile.lock`.
235
+
236
+ Bundler uses this file in all subsequent calls to `bundle install`,
237
+ which guarantees that you always use the same exact code, even
238
+ as your application moves across machines.
239
+
240
+ Because of the way dependency resolution works, even a
241
+ seemingly small change (for instance, an update to a point-release
242
+ of a dependency of a gem in your Gemfile(5)) can result in radically
243
+ different gems being needed to satisfy all dependencies.
244
+
245
+ As a result, you `SHOULD` check your `Gemfile.lock` into version
246
+ control. If you do not, every machine that checks out your
247
+ repository (including your production server) will resolve all
248
+ dependencies again, which will result in different versions of
249
+ third-party code being used if `any` of the gems in the Gemfile(5)
250
+ or any of their dependencies have been updated.
251
+
252
+ ## CONSERVATIVE UPDATING
253
+
254
+ When you make a change to the Gemfile(5) and then run `bundle install`,
255
+ Bundler will update only the gems that you modified.
256
+
257
+ In other words, if a gem that you `did not modify` worked before
258
+ you called `bundle install`, it will continue to use the exact
259
+ same versions of all dependencies as it used before the update.
260
+
261
+ Let's take a look at an example. Here's your original Gemfile(5):
262
+
263
+ source "http://rubygems.org"
264
+
265
+ gem "actionpack", "2.3.8"
266
+ gem "activemerchant"
267
+
268
+ In this case, both `actionpack` and `activemerchant` depend on
269
+ `activesupport`. The `actionpack` gem depends on `activesupport 2.3.8`
270
+ and `rack ~> 1.1.0`, while the `activemerchant` gem depends on
271
+ `activesupport >= 2.3.2`, `braintree >= 2.0.0`, and `builder >= 2.0.0`.
272
+
273
+ When the dependencies are first resolved, Bundler will select
274
+ `activesupport 2.3.8`, which satisfies the requirements of both
275
+ gems in your Gemfile(5).
276
+
277
+ Next, you modify your Gemfile(5) to:
278
+
279
+ source "http://rubygems.org"
280
+
281
+ gem "actionpack", "3.0.0.rc"
282
+ gem "activemerchant"
283
+
284
+ The `actionpack 3.0.0.rc` gem has a number of new dependencies,
285
+ and updates the `activesupport` dependency to `= 3.0.0.rc` and
286
+ the `rack` dependency to `~> 1.2.1`.
287
+
288
+ When you run `bundle install`, Bundler notices that you changed
289
+ the `actionpack` gem, but not the `activemerchant` gem. It
290
+ evaluates the gems currently being used to satisfy its requirements:
291
+
292
+ * `activesupport 2.3.8`:
293
+ also used to satisfy a dependency in `activemerchant`,
294
+ which is not being updated
295
+ * `rack ~> 1.1.0`:
296
+ not currently being used to satify another dependency
297
+
298
+ Because you did not explicitly ask to update `activemerchant`,
299
+ you would not expect it to suddenly stop working after updating
300
+ `actionpack`. However, satisfying the new `activesupport 3.0.0.rc`
301
+ dependency of actionpack requires updating one of its dependencies.
302
+
303
+ Even though `activemerchant` declares a very loose dependency
304
+ that theoretically matches `activesupport 3.0.0.rc`, bundler treats
305
+ gems in your Gemfile(5) that have not changed as an atomic unit
306
+ together with their dependencies. In this case, the `activemerchant`
307
+ dependency is treated as `activemerchant 1.7.1 + activesupport 2.3.8`,
308
+ so `bundle install` will report that it cannot update `actionpack`.
309
+
310
+ To explicitly update `actionpack`, including its dependencies
311
+ which other gems in the Gemfile(5) still depend on, run
312
+ `bundle update actionpack` (see `bundle update(1)`).
313
+
314
+ `Summary`: In general, after making a change to the Gemfile(5) , you
315
+ should first try to run `bundle install`, which will guarantee that no
316
+ other gems in the Gemfile(5) are impacted by the change. If that
317
+ does not work, run [bundle update(1)][bundle-update].
@@ -0,0 +1,59 @@
1
+ bundle-package(1) -- Package your needed `.gem` files into your application
2
+ ===========================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle package`
7
+
8
+ ## DESCRIPTION
9
+
10
+ Copy all of the `.gem` files needed to run the application into the
11
+ `vendor/cache` directory. In the future, when running [bundle install(1)][bundle-install],
12
+ use the gems in the cache in preference to the ones on `rubygems.org`.
13
+
14
+ ## GIT AND PATH GEMS
15
+
16
+ In Bundler 1.0, the `bundle package` command only packages `.gem` files,
17
+ not gems specified using the `:git` or `:path` options. This will likely
18
+ change in the future.
19
+
20
+ ## REMOTE FETCHING
21
+
22
+ By default, if you simply run [bundle install(1)][bundle-install] after running
23
+ [bundle package(1)][bundle-package], bundler will still connect to `rubygems.org`
24
+ to check whether a platform-specific gem exists for any of the gems
25
+ in `vendor/cache`.
26
+
27
+ For instance, consider this Gemfile(5):
28
+
29
+ source "http://rubygems.org"
30
+
31
+ gem "nokogiri"
32
+
33
+ If you run `bundle package` under C Ruby, bundler will retrieve
34
+ the version of `nokogiri` for the `"ruby"` platform. If you deploy
35
+ to JRuby and run `bundle install`, bundler is forced to check to
36
+ see whether a `"java"` platformed `nokogiri` exists.
37
+
38
+ Even though the `nokogiri` gem for the Ruby platform is
39
+ _technically_ acceptable on JRuby, it actually has a C extension
40
+ that does not run on JRuby. As a result, bundler will, by default,
41
+ still connect to `rubygems.org` to check whether it has a version
42
+ of one of your gems more specific to your platform.
43
+
44
+ This problem is also not just limited to the `"java"` platform.
45
+ A similar (common) problem can happen when developing on Windows
46
+ and deploying to Linux, or even when developing on OSX and
47
+ deploying to Linux.
48
+
49
+ If you know for sure that the gems packaged in `vendor/cache`
50
+ are appropriate for the platform you are on, you can run
51
+ `bundle install --local` to skip checking for more appropriate
52
+ gems, and just use the ones in `vendor/cache`.
53
+
54
+ One way to be sure that you have the right platformed versions
55
+ of all your gems is to run `bundle package` on an identical
56
+ machine and check in the gems. For instance, you can run
57
+ `bundle package` on an identical staging box during your
58
+ staging process, and check in the `vendor/cache` before
59
+ deploying to production.
@@ -0,0 +1,176 @@
1
+ bundle-update(1) -- Update your gems to the latest available versions
2
+ =====================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle update` <*gems> [--source=NAME]
7
+
8
+ ## DESCRIPTION
9
+
10
+ Update the gems specified (all gems, if none are specified), ignoring
11
+ the previously installed gems specified in the `Gemfile.lock`. In
12
+ general, you should use [bundle install(1)][bundle-install] to install the same exact
13
+ gems and versions across machines.
14
+
15
+ You would use `bundle update` to explicitly update the version of a
16
+ gem.
17
+
18
+ ## OPTIONS
19
+
20
+ * `--source=<name>`:
21
+ The name of a `:git` or `:path` source used in the Gemfile(5). For
22
+ instance, with a `:git` source of `http://github.com/rails/rails.git`,
23
+ you would call `bundle update --source rails`
24
+
25
+ ## UPDATING ALL GEMS
26
+
27
+ If you run `bundle update` with no parameters, bundler will ignore
28
+ any previously installed gems and resolve all dependencies again
29
+ based on the latest versions of all gems available in the sources.
30
+
31
+ Consider the following Gemfile(5):
32
+
33
+ source "http://rubygems.org"
34
+
35
+ gem "rails", "3.0.0.rc"
36
+ gem "nokogiri"
37
+
38
+ When you run [bundle install(1)][bundle-install] the first time, bundler will resolve
39
+ all of the dependencies, all the way down, and install what you need:
40
+
41
+ Fetching source index for http://rubygems.org/
42
+ Installing rake (0.8.7)
43
+ Installing abstract (1.0.0)
44
+ Installing activesupport (3.0.0.rc)
45
+ Installing builder (2.1.2)
46
+ Installing i18n (0.4.1)
47
+ Installing activemodel (3.0.0.rc)
48
+ Installing erubis (2.6.6)
49
+ Installing rack (1.2.1)
50
+ Installing rack-mount (0.6.9)
51
+ Installing rack-test (0.5.4)
52
+ Installing tzinfo (0.3.22)
53
+ Installing actionpack (3.0.0.rc)
54
+ Installing mime-types (1.16)
55
+ Installing polyglot (0.3.1)
56
+ Installing treetop (1.4.8)
57
+ Installing mail (2.2.5)
58
+ Installing actionmailer (3.0.0.rc)
59
+ Installing arel (0.4.0)
60
+ Installing activerecord (3.0.0.rc)
61
+ Installing activeresource (3.0.0.rc)
62
+ Installing bundler (1.0.0.rc.3)
63
+ Installing nokogiri (1.4.3.1) with native extensions
64
+ Installing thor (0.14.0)
65
+ Installing railties (3.0.0.rc)
66
+ Installing rails (3.0.0.rc)
67
+
68
+ Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
69
+
70
+ As you can see, even though you have just two gems in the Gemfile(5), your application
71
+ actually needs 25 different gems in order to run. Bundler remembers the exact versions
72
+ it installed in `Gemfile.lock`. The next time you run [bundle install(1)][bundle-install], bundler skips
73
+ the dependency resolution and installs the same gems as it installed last time.
74
+
75
+ After checking in the `Gemfile.lock` into version control and cloning it on another
76
+ machine, running [bundle install(1)][bundle-install] will _still_ install the gems that you installed
77
+ last time. You don't need to worry that a new release of `erubis` or `mail` changes
78
+ the gems you use.
79
+
80
+ However, from time to time, you might want to update the gems you are using to the
81
+ newest versions that still match the gems in your Gemfile(5).
82
+
83
+ To do this, run `bundle update`, which will ignore the `Gemfile.lock`, and resolve
84
+ all the dependencies again. Keep in mind that this process can result in a significantly
85
+ different set of the 25 gems, based on the requirements of new gems that the gem
86
+ authors released since the last time you ran `bundle update`.
87
+
88
+ ## UPDATING A LIST OF GEMS
89
+
90
+ Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the
91
+ gems that you specified locked to the versions in the `Gemfile.lock`.
92
+
93
+ For instance, in the scenario above, imagine that `nokogiri` releases version `1.4.4`, and
94
+ you want to update it _without_ updating Rails and all of its dependencies. To do this,
95
+ run `bundle update nokogiri`.
96
+
97
+ Bundler will update `nokogiri` and any of its dependencies, but leave alone Rails and
98
+ its dependencies.
99
+
100
+ ## OVERLAPPING DEPENDENCIES
101
+
102
+ Sometimes, multiple gems declared in your Gemfile(5) are satisfied by the same
103
+ second-level dependency. For instance, consider the case of `thin` and
104
+ `rack-perftools-profiler`.
105
+
106
+ source "http://rubygems.org"
107
+
108
+ gem "thin"
109
+ gem "rack-perftools-profiler"
110
+
111
+ The `thin` gem depends on `rack >= 1.0`, while `rack-perftools-profiler` depends
112
+ on `rack ~> 1.0`. If you run bundle install, you get:
113
+
114
+ Fetching source index for http://rubygems.org/
115
+ Installing daemons (1.1.0)
116
+ Installing eventmachine (0.12.10) with native extensions
117
+ Installing open4 (1.0.1)
118
+ Installing perftools.rb (0.4.7) with native extensions
119
+ Installing rack (1.2.1)
120
+ Installing rack-perftools_profiler (0.0.2)
121
+ Installing thin (1.2.7) with native extensions
122
+ Using bundler (1.0.0.rc.3)
123
+
124
+ In this case, the two gems have their own set of dependencies, but they share
125
+ `rack` in common. If you run `bundle update thin`, bundler will update `daemons`,
126
+ `eventmachine` and `rack`, which are dependencies of `thin`, but not `open4` or
127
+ `perftools.rb`, which are dependencies of `rack-perftools_profiler`. Note that
128
+ `bundle update thin` will update `rack` even though it's _also_ a dependency of
129
+ `rack-perftools_profiler`.
130
+
131
+ `In short`, when you update a gem using `bundle update`, bundler will update all
132
+ dependencies of that gem, including those that are also dependencies of another gem.
133
+
134
+ In this scenario, updating the `thin` version manually in the Gemfile(5),
135
+ and then running [bundle install(1)][bundle-install] will only update `daemons` and `eventmachine`,
136
+ but not `rack`. For more information, see the `CONSERVATIVE UPDATING` section
137
+ of [bundle install(1)][bundle-install].
138
+
139
+ ## RECOMMENDED WORKFLOW
140
+
141
+ In general, when working with an application managed with bundler, you should
142
+ use the following workflow:
143
+
144
+ * After you create your Gemfile(5) for the first time, run
145
+
146
+ $ bundle install
147
+
148
+ * Check the resulting `Gemfile.lock` into version control
149
+
150
+ $ git add Gemfile.lock
151
+
152
+ * When checking out this repository on another development machine, run
153
+
154
+ $ bundle install
155
+
156
+ * When checking out this repository on a deployment machine, run
157
+
158
+ $ bundle install --deployment
159
+
160
+ * After changing the Gemfile(5) to reflect a new or update dependency, run
161
+
162
+ $ bundle install
163
+
164
+ * Make sure to check the updated `Gemfile.lock` into version control
165
+
166
+ $ git add Gemfile.lock
167
+
168
+ * If [bundle install(1)][bundle-install] reports a conflict, manually update the specific
169
+ gems that you changed in the Gemfile(5)
170
+
171
+ $ bundle update rails thin
172
+
173
+ * If you want to update all the gems to the latest possible versions that
174
+ still match the gems listed in the Gemfile(5), run
175
+
176
+ $ bundle update