bundler-prehistoric 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (284) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +100 -0
  5. data/CHANGELOG.md +1640 -0
  6. data/CONTRIBUTING.md +32 -0
  7. data/DEVELOPMENT.md +117 -0
  8. data/Gemfile +3 -0
  9. data/ISSUES.md +96 -0
  10. data/LICENSE.md +23 -0
  11. data/README.md +46 -0
  12. data/Rakefile +256 -0
  13. data/UPGRADING.md +103 -0
  14. data/bin/bundle +21 -0
  15. data/bin/bundle_ruby +56 -0
  16. data/bin/bundler +21 -0
  17. data/bundler.gemspec +33 -0
  18. data/lib/bundler.rb +442 -0
  19. data/lib/bundler/backports/time.rb +7 -0
  20. data/lib/bundler/capistrano.rb +16 -0
  21. data/lib/bundler/cli.rb +395 -0
  22. data/lib/bundler/cli/binstubs.rb +38 -0
  23. data/lib/bundler/cli/cache.rb +34 -0
  24. data/lib/bundler/cli/check.rb +35 -0
  25. data/lib/bundler/cli/clean.rb +19 -0
  26. data/lib/bundler/cli/common.rb +54 -0
  27. data/lib/bundler/cli/config.rb +84 -0
  28. data/lib/bundler/cli/console.rb +39 -0
  29. data/lib/bundler/cli/exec.rb +37 -0
  30. data/lib/bundler/cli/gem.rb +101 -0
  31. data/lib/bundler/cli/init.rb +33 -0
  32. data/lib/bundler/cli/inject.rb +33 -0
  33. data/lib/bundler/cli/install.rb +133 -0
  34. data/lib/bundler/cli/open.rb +23 -0
  35. data/lib/bundler/cli/outdated.rb +80 -0
  36. data/lib/bundler/cli/package.rb +36 -0
  37. data/lib/bundler/cli/platform.rb +43 -0
  38. data/lib/bundler/cli/show.rb +48 -0
  39. data/lib/bundler/cli/update.rb +73 -0
  40. data/lib/bundler/cli/viz.rb +27 -0
  41. data/lib/bundler/constants.rb +5 -0
  42. data/lib/bundler/current_ruby.rb +155 -0
  43. data/lib/bundler/definition.rb +604 -0
  44. data/lib/bundler/dep_proxy.rb +43 -0
  45. data/lib/bundler/dependency.rb +106 -0
  46. data/lib/bundler/deployment.rb +59 -0
  47. data/lib/bundler/deprecate.rb +15 -0
  48. data/lib/bundler/dsl.rb +305 -0
  49. data/lib/bundler/endpoint_specification.rb +76 -0
  50. data/lib/bundler/env.rb +56 -0
  51. data/lib/bundler/environment.rb +42 -0
  52. data/lib/bundler/fetcher.rb +396 -0
  53. data/lib/bundler/friendly_errors.rb +42 -0
  54. data/lib/bundler/gem_helper.rb +169 -0
  55. data/lib/bundler/gem_helpers.rb +25 -0
  56. data/lib/bundler/gem_installer.rb +9 -0
  57. data/lib/bundler/gem_path_manipulation.rb +8 -0
  58. data/lib/bundler/gem_tasks.rb +2 -0
  59. data/lib/bundler/graph.rb +169 -0
  60. data/lib/bundler/index.rb +184 -0
  61. data/lib/bundler/injector.rb +64 -0
  62. data/lib/bundler/installer.rb +332 -0
  63. data/lib/bundler/lazy_specification.rb +83 -0
  64. data/lib/bundler/lockfile_parser.rb +146 -0
  65. data/lib/bundler/match_platform.rb +13 -0
  66. data/lib/bundler/parallel_workers.rb +18 -0
  67. data/lib/bundler/parallel_workers/thread_worker.rb +30 -0
  68. data/lib/bundler/parallel_workers/unix_worker.rb +101 -0
  69. data/lib/bundler/parallel_workers/worker.rb +69 -0
  70. data/lib/bundler/psyched_yaml.rb +26 -0
  71. data/lib/bundler/remote_specification.rb +57 -0
  72. data/lib/bundler/resolver.rb +534 -0
  73. data/lib/bundler/retry.rb +60 -0
  74. data/lib/bundler/ruby_dsl.rb +11 -0
  75. data/lib/bundler/ruby_version.rb +117 -0
  76. data/lib/bundler/rubygems_ext.rb +171 -0
  77. data/lib/bundler/rubygems_integration.rb +578 -0
  78. data/lib/bundler/runtime.rb +310 -0
  79. data/lib/bundler/settings.rb +176 -0
  80. data/lib/bundler/setup.rb +23 -0
  81. data/lib/bundler/shared_helpers.rb +110 -0
  82. data/lib/bundler/similarity_detector.rb +63 -0
  83. data/lib/bundler/source.rb +29 -0
  84. data/lib/bundler/source/git.rb +289 -0
  85. data/lib/bundler/source/git/git_proxy.rb +158 -0
  86. data/lib/bundler/source/path.rb +225 -0
  87. data/lib/bundler/source/path/installer.rb +38 -0
  88. data/lib/bundler/source/rubygems.rb +334 -0
  89. data/lib/bundler/source/svn.rb +260 -0
  90. data/lib/bundler/source/svn/svn_proxy.rb +110 -0
  91. data/lib/bundler/spec_set.rb +154 -0
  92. data/lib/bundler/ssl_certs/.document +1 -0
  93. data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +14 -0
  94. data/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +23 -0
  95. data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +28 -0
  96. data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +20 -0
  97. data/lib/bundler/ssl_certs/certificate_manager.rb +41 -0
  98. data/lib/bundler/templates/Executable +16 -0
  99. data/lib/bundler/templates/Executable.standalone +12 -0
  100. data/lib/bundler/templates/Gemfile +4 -0
  101. data/lib/bundler/templates/newgem/.travis.yml.tt +3 -0
  102. data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  103. data/lib/bundler/templates/newgem/LICENSE.txt.tt +22 -0
  104. data/lib/bundler/templates/newgem/README.md.tt +31 -0
  105. data/lib/bundler/templates/newgem/Rakefile.tt +26 -0
  106. data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
  107. data/lib/bundler/templates/newgem/consolerc.tt +3 -0
  108. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
  109. data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  110. data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  111. data/lib/bundler/templates/newgem/gitignore.tt +16 -0
  112. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
  113. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  114. data/lib/bundler/templates/newgem/newgem.gemspec.tt +38 -0
  115. data/lib/bundler/templates/newgem/rspec.tt +2 -0
  116. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
  117. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  118. data/lib/bundler/templates/newgem/test/minitest_helper.rb.tt +4 -0
  119. data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +11 -0
  120. data/lib/bundler/ui.rb +7 -0
  121. data/lib/bundler/ui/rg_proxy.rb +21 -0
  122. data/lib/bundler/ui/shell.rb +98 -0
  123. data/lib/bundler/ui/silent.rb +44 -0
  124. data/lib/bundler/vendor/.document +0 -0
  125. data/lib/bundler/vendor/net/http/faster.rb +26 -0
  126. data/lib/bundler/vendor/net/http/persistent.rb +1230 -0
  127. data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
  128. data/lib/bundler/vendor/thor.rb +480 -0
  129. data/lib/bundler/vendor/thor/actions.rb +319 -0
  130. data/lib/bundler/vendor/thor/actions/create_file.rb +103 -0
  131. data/lib/bundler/vendor/thor/actions/create_link.rb +59 -0
  132. data/lib/bundler/vendor/thor/actions/directory.rb +118 -0
  133. data/lib/bundler/vendor/thor/actions/empty_directory.rb +135 -0
  134. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +316 -0
  135. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +107 -0
  136. data/lib/bundler/vendor/thor/base.rb +656 -0
  137. data/lib/bundler/vendor/thor/command.rb +133 -0
  138. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +77 -0
  139. data/lib/bundler/vendor/thor/core_ext/io_binary_read.rb +10 -0
  140. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +98 -0
  141. data/lib/bundler/vendor/thor/error.rb +32 -0
  142. data/lib/bundler/vendor/thor/group.rb +281 -0
  143. data/lib/bundler/vendor/thor/invocation.rb +173 -0
  144. data/lib/bundler/vendor/thor/line_editor.rb +17 -0
  145. data/lib/bundler/vendor/thor/line_editor/basic.rb +35 -0
  146. data/lib/bundler/vendor/thor/line_editor/readline.rb +88 -0
  147. data/lib/bundler/vendor/thor/parser.rb +4 -0
  148. data/lib/bundler/vendor/thor/parser/argument.rb +73 -0
  149. data/lib/bundler/vendor/thor/parser/arguments.rb +175 -0
  150. data/lib/bundler/vendor/thor/parser/option.rb +121 -0
  151. data/lib/bundler/vendor/thor/parser/options.rb +218 -0
  152. data/lib/bundler/vendor/thor/rake_compat.rb +71 -0
  153. data/lib/bundler/vendor/thor/runner.rb +322 -0
  154. data/lib/bundler/vendor/thor/shell.rb +81 -0
  155. data/lib/bundler/vendor/thor/shell/basic.rb +420 -0
  156. data/lib/bundler/vendor/thor/shell/color.rb +149 -0
  157. data/lib/bundler/vendor/thor/shell/html.rb +126 -0
  158. data/lib/bundler/vendor/thor/util.rb +267 -0
  159. data/lib/bundler/vendor/thor/version.rb +3 -0
  160. data/lib/bundler/vendored_persistent.rb +3 -0
  161. data/lib/bundler/vendored_thor.rb +8 -0
  162. data/lib/bundler/version.rb +6 -0
  163. data/lib/bundler/vlad.rb +11 -0
  164. data/man/bundle-config.ronn +155 -0
  165. data/man/bundle-exec.ronn +136 -0
  166. data/man/bundle-install.ronn +372 -0
  167. data/man/bundle-package.ronn +59 -0
  168. data/man/bundle-platform.ronn +42 -0
  169. data/man/bundle-update.ronn +179 -0
  170. data/man/bundle.ronn +92 -0
  171. data/man/gemfile.5.ronn +369 -0
  172. data/man/index.txt +7 -0
  173. data/spec/bundler/bundler_spec.rb +74 -0
  174. data/spec/bundler/cli_spec.rb +16 -0
  175. data/spec/bundler/definition_spec.rb +21 -0
  176. data/spec/bundler/dsl_spec.rb +108 -0
  177. data/spec/bundler/friendly_errors_spec.rb +13 -0
  178. data/spec/bundler/gem_helper_spec.rb +225 -0
  179. data/spec/bundler/psyched_yaml_spec.rb +8 -0
  180. data/spec/bundler/retry_spec.rb +59 -0
  181. data/spec/bundler/settings_spec.rb +13 -0
  182. data/spec/bundler/source_spec.rb +25 -0
  183. data/spec/cache/gems_spec.rb +316 -0
  184. data/spec/cache/git_spec.rb +188 -0
  185. data/spec/cache/path_spec.rb +121 -0
  186. data/spec/cache/platform_spec.rb +53 -0
  187. data/spec/cache/svn_spec.rb +82 -0
  188. data/spec/commands/binstubs_spec.rb +246 -0
  189. data/spec/commands/check_spec.rb +278 -0
  190. data/spec/commands/clean_spec.rb +652 -0
  191. data/spec/commands/config_spec.rb +227 -0
  192. data/spec/commands/console_spec.rb +102 -0
  193. data/spec/commands/exec_spec.rb +367 -0
  194. data/spec/commands/help_spec.rb +39 -0
  195. data/spec/commands/init_spec.rb +39 -0
  196. data/spec/commands/inject_spec.rb +78 -0
  197. data/spec/commands/licenses_spec.rb +31 -0
  198. data/spec/commands/newgem_spec.rb +451 -0
  199. data/spec/commands/open_spec.rb +80 -0
  200. data/spec/commands/outdated_spec.rb +168 -0
  201. data/spec/commands/package_spec.rb +128 -0
  202. data/spec/commands/show_spec.rb +152 -0
  203. data/spec/install/binstubs_spec.rb +24 -0
  204. data/spec/install/bundler_spec.rb +146 -0
  205. data/spec/install/deploy_spec.rb +237 -0
  206. data/spec/install/gemfile/gemspec_spec.rb +170 -0
  207. data/spec/install/gemfile/git_spec.rb +967 -0
  208. data/spec/install/gemfile/path_spec.rb +480 -0
  209. data/spec/install/gemfile/svn_spec.rb +582 -0
  210. data/spec/install/gemfile_spec.rb +44 -0
  211. data/spec/install/gems/c_ext_spec.rb +48 -0
  212. data/spec/install/gems/dependency_api_spec.rb +580 -0
  213. data/spec/install/gems/env_spec.rb +107 -0
  214. data/spec/install/gems/flex_spec.rb +314 -0
  215. data/spec/install/gems/groups_spec.rb +308 -0
  216. data/spec/install/gems/mirror_spec.rb +39 -0
  217. data/spec/install/gems/platform_spec.rb +221 -0
  218. data/spec/install/gems/post_install_spec.rb +121 -0
  219. data/spec/install/gems/resolving_spec.rb +124 -0
  220. data/spec/install/gems/simple_case_spec.rb +386 -0
  221. data/spec/install/gems/standalone_spec.rb +260 -0
  222. data/spec/install/gems/sudo_spec.rb +136 -0
  223. data/spec/install/gems/win32_spec.rb +26 -0
  224. data/spec/install/gemspecs_spec.rb +50 -0
  225. data/spec/install/path_spec.rb +150 -0
  226. data/spec/install/post_bundle_message_spec.rb +142 -0
  227. data/spec/install/prereleases_spec.rb +43 -0
  228. data/spec/install/security_policy_spec.rb +77 -0
  229. data/spec/install/upgrade_spec.rb +26 -0
  230. data/spec/lock/git_spec.rb +34 -0
  231. data/spec/lock/lockfile_spec.rb +912 -0
  232. data/spec/lock/svn_spec.rb +35 -0
  233. data/spec/other/bundle_ruby_spec.rb +142 -0
  234. data/spec/other/cli_dispatch_spec.rb +21 -0
  235. data/spec/other/ext_spec.rb +60 -0
  236. data/spec/other/platform_spec.rb +1285 -0
  237. data/spec/other/ssl_cert_spec.rb +10 -0
  238. data/spec/quality_spec.rb +88 -0
  239. data/spec/realworld/dependency_api_spec.rb +60 -0
  240. data/spec/realworld/edgecases_spec.rb +177 -0
  241. data/spec/realworld/parallel_spec.rb +69 -0
  242. data/spec/resolver/basic_spec.rb +66 -0
  243. data/spec/resolver/platform_spec.rb +88 -0
  244. data/spec/runtime/executable_spec.rb +149 -0
  245. data/spec/runtime/load_spec.rb +107 -0
  246. data/spec/runtime/platform_spec.rb +90 -0
  247. data/spec/runtime/require_spec.rb +332 -0
  248. data/spec/runtime/setup_spec.rb +856 -0
  249. data/spec/runtime/with_clean_env_spec.rb +91 -0
  250. data/spec/spec_helper.rb +114 -0
  251. data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
  252. data/spec/support/artifice/endpoint.rb +71 -0
  253. data/spec/support/artifice/endpoint_500.rb +37 -0
  254. data/spec/support/artifice/endpoint_api_missing.rb +16 -0
  255. data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
  256. data/spec/support/artifice/endpoint_creds_diff_host.rb +38 -0
  257. data/spec/support/artifice/endpoint_extra.rb +31 -0
  258. data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
  259. data/spec/support/artifice/endpoint_fallback.rb +17 -0
  260. data/spec/support/artifice/endpoint_host_redirect.rb +15 -0
  261. data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
  262. data/spec/support/artifice/endpoint_redirect.rb +15 -0
  263. data/spec/support/artifice/endpoint_strict_basic_authentication.rb +18 -0
  264. data/spec/support/artifice/endpoint_timeout.rb +13 -0
  265. data/spec/support/builders.rb +748 -0
  266. data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
  267. data/spec/support/fakeweb/windows.rb +23 -0
  268. data/spec/support/hax.rb +22 -0
  269. data/spec/support/helpers.rb +348 -0
  270. data/spec/support/indexes.rb +280 -0
  271. data/spec/support/less_than_proc.rb +14 -0
  272. data/spec/support/matchers.rb +77 -0
  273. data/spec/support/path.rb +81 -0
  274. data/spec/support/permissions.rb +10 -0
  275. data/spec/support/platforms.rb +94 -0
  276. data/spec/support/ruby_ext.rb +20 -0
  277. data/spec/support/rubygems_ext.rb +39 -0
  278. data/spec/support/streams.rb +13 -0
  279. data/spec/support/sudo.rb +16 -0
  280. data/spec/update/gems_spec.rb +201 -0
  281. data/spec/update/git_spec.rb +236 -0
  282. data/spec/update/source_spec.rb +63 -0
  283. data/spec/update/svn_spec.rb +100 -0
  284. metadata +486 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6459acc7c0a657490d4accf549b342b2b44dea95
4
+ data.tar.gz: 433387ebba61be6f4b8a1eac762428aa48d29bff
5
+ SHA512:
6
+ metadata.gz: a6d80a86369a311fc4af6725124aeea89dd8a74af4981ea95589f2bb3c629e667fa676ea13498733eb207965ca39260b59f9175d447fbe84b63b7e0a126bdf07
7
+ data.tar.gz: 1cb135aaade5039f0d8e87f2d2b92b8482f7311b77a0d38a59f766f936f9ad625855215d22c572b3a07bb07fe62b1e16922a4373242b4db9cd8fab67c18cb357
@@ -0,0 +1,17 @@
1
+ # Please do not submit patches for including directives to ignore IDE/editor
2
+ # generated files. Use a global gitignore as described in
3
+ # https://help.github.com/articles/ignoring-files and find useful gitignore
4
+ # samples at https://github.com/github/gitignore
5
+
6
+ # files created by running the specs
7
+ /tmp/
8
+
9
+ # gems built by `rake build`
10
+ /pkg/
11
+
12
+ # output from ronn
13
+ /lib/bundler/man/
14
+
15
+ # output from ci_reporter
16
+ /spec/reports/
17
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --warnings
@@ -0,0 +1,100 @@
1
+ language: ruby
2
+ script: rake spec:travis
3
+ before_script: travis_retry rake spec:travis:deps
4
+ branches:
5
+ only:
6
+ - master
7
+ - 1-6-stable
8
+ - 1-5-stable
9
+ - 1-3-stable
10
+ - 1-2-stable
11
+ - 1-1-stable
12
+ - 1-0-stable
13
+ notifications:
14
+ email:
15
+ # andre
16
+ - secure: "bCcvqJT7YrBawtkXXwHhT+jOFth7r2Qv/30PkkbhQxk6Jb3xambjCOJ3U6vJ\ngYmiL50exi5lUp3oc3SEbHN5t2CrZqOZDQ6o7P8EAmB5c0oH2RrYaFOkI5Gt\nul/jGH/96A9sj0aMwG7JfdMSfhqj1DUKAm2PnnbXPL853VfmT24="
17
+ # terence
18
+ - secure: "MQ8eA5Jb8YzEpAo58DRGfVJklAPcEbAulpBZnTxp0am6ldneDtJHbQk21w6R\nj5GsDHlzr/lMp/GHIimtUZ7rLohfND8fj/W7fs1Dkd4eN02/ERt98x3pHlqv\nvZgSnZ39uVYv+OcphraE24QaRaGWLhWZAMYQTVe/Yz50NyG8g1U="
19
+ campfire:
20
+ on_success: change
21
+ on_failure: always
22
+ rooms:
23
+ # Bundler Ops
24
+ secure: MNTSGIySYwHia5gIgRiZxXtPMPDIP9KmzQk7Kq2ZoVvP3mIk8W1TMkvcyFkEf6uCasyVZZixzUBfY+E0BlHAz1ycQpTh1jvSpuIpEVYW48ShJldJ+8W8xfzafyOHii3z7VrDaomEffmMDdmHRsbQAfekMjdR4bTpXtT9V+wOXlg=
25
+ slack:
26
+ on_success: change
27
+ on_failure: always
28
+ rooms:
29
+ secure: "OSIcoeVfwT9MyTmTfjQh4lRXmBAt2WnFXmkKs0xY2cSQm1wXD8DGg/WcutZmPcNK+vAQc0w4QmtagxbeugnjAVrbJLK5SetvgPz/SAeSIrHEwcXNGkx3E3wshhLPCwP6IRSQrUZHw1mWPMs/MvRVFWDJRe/ho+DDO2/1QtlkrkY="
30
+ rvm:
31
+ - 2.1.1
32
+ - 2.0.0
33
+ - 1.9.3
34
+ - 1.8.7
35
+ # Rubygems versions MUST be available as rake tasks
36
+ # see Rakefile:66 for the list of possible RGV values
37
+ env:
38
+ # We need to know if changes to rubygems will break bundler on release
39
+ - RGV=master
40
+ # Test the latest rubygems release with all of our supported rubies
41
+ - RGV=v2.2.2
42
+ matrix:
43
+ include:
44
+ # Ruby 2.0.0, Rubygems 2.0 and up
45
+ - rvm: 2.0.0
46
+ env: RGV=v2.1.11
47
+ - rvm: 2.0.0
48
+ env: RGV=v2.0.14
49
+ # Ruby 1.9.3, Rubygems 1.5.3 and up
50
+ - rvm: 1.9.3
51
+ env: RGV=v2.1.11
52
+ - rvm: 1.9.3
53
+ env: RGV=v2.0.14
54
+ - rvm: 1.9.3
55
+ env: RGV=v1.8.29
56
+ - rvm: 1.9.3
57
+ env: RGV=v1.7.2
58
+ - rvm: 1.9.3
59
+ env: RGV=v1.6.2
60
+ - rvm: 1.9.3
61
+ env: RGV=v1.5.3
62
+ # Ruby 1.8.7, Rubygems 1.3.6 and up
63
+ - rvm: 1.8.7
64
+ env: RGV=v2.1.11
65
+ - rvm: 1.8.7
66
+ env: RGV=v2.0.14
67
+ - rvm: 1.8.7
68
+ env: RGV=v1.8.29
69
+ - rvm: 1.8.7
70
+ env: RGV=v1.7.2
71
+ - rvm: 1.8.7
72
+ env: RGV=v1.6.2
73
+ - rvm: 1.8.7
74
+ env: RGV=v1.5.3
75
+ - rvm: 1.8.7
76
+ env: RGV=v1.4.2
77
+ - rvm: 1.8.7
78
+ env: RGV=v1.3.7
79
+ - rvm: 1.8.7
80
+ env: RGV=v1.3.6
81
+
82
+ # ALLOWED FAILURES
83
+ # Ruby 1.9.2 sanity check
84
+ # (but it's just too slow and sometimes goes over the Travis limit)
85
+ - rvm: 1.9.2
86
+ env: RGV=v2.2.2
87
+ # Ruby-head (we want to know how we're doing, but not fail the build)
88
+ - rvm: ruby-head
89
+ env: RGV=master
90
+ # JRuby, the latest (not maintained, but good to know)
91
+ - rvm: jruby
92
+ env: RGV=v2.2.2
93
+ # Rubinius, the latest (not maintained, but good to know)
94
+ - rvm: rbx-2
95
+ env: RGV=v2.2.2
96
+ allow_failures:
97
+ - rvm: ruby-head
98
+ - rvm: 1.9.2
99
+ - rvm: jruby
100
+ - rvm: rbx-2
@@ -0,0 +1,1640 @@
1
+ ## 1.6.3
2
+
3
+ Bugfixes:
4
+
5
+ - don't warn about sudo when installing on Windows (#2984, @indirect)
6
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
7
+
8
+ Features:
9
+
10
+ - add support for SVN sources (@msnexploder)
11
+ - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
12
+ - adds a `--no-install` flag to `bundle package`
13
+ - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
14
+ - add compatibility with ruby 1.8.6 (@Nerian)
15
+
16
+ ## 1.6.2 (2014-04-13)
17
+
18
+ Bugfixes:
19
+
20
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
21
+ - cache gems that are built in to the running ruby (#2975, @indirect)
22
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
23
+ - keep standalone working even with builtin gems (@indirect)
24
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
25
+
26
+ Features:
27
+
28
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
29
+
30
+ ## 1.6.1 (2014-04-02)
31
+
32
+ Bugfixes:
33
+
34
+ - update C extensions when git gem versions change (#2948, @dylanahsmith)
35
+
36
+ Features:
37
+
38
+ - add support for C extensions in sudo mode on Rubygems 2.2
39
+
40
+ ## 1.6.0 (2014-03-28)
41
+
42
+ Bugfixes:
43
+
44
+ - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
45
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
46
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
47
+ - support escaped characters in usernames and passwords (@punkie)
48
+ - no more exception on `update GEM` without lock file (@simi)
49
+ - allow long config values (#2823, @kgrz)
50
+ - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
51
+ - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
52
+ - only retry git commands that hit the network (#2899, @timmoore)
53
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
54
+ - handle exception installing when build_info owned by root (@Who828)
55
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
56
+
57
+ Features:
58
+
59
+ - resolver rewritten to avoid recursion (@Who828)
60
+ - add `git_source` for custom options like :github and :gist (@strzalek)
61
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
62
+ - some complex Gemfiles are resolved up to 10x faster (@Who828)
63
+ - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
64
+ - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
65
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
66
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
67
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
68
+ - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
69
+ - Avoid using threequals operator where possible (@as-cii)
70
+ - Add `bundle update --group` to update specific group (#2731 @banyan)
71
+
72
+ Documentation:
73
+
74
+ - Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
75
+
76
+ ## 1.5.3 (2014-02-06)
77
+
78
+ Bugfixes:
79
+
80
+ - find "missing" gems that are actually present (#2780, #2818, #2854)
81
+ - use n-1 cores when given n jobs for parallel install (@jdickey)
82
+
83
+ ## 1.5.2 (2014-01-10)
84
+
85
+ Bugfixes:
86
+
87
+ - fix integration with Rubygems 1.8.0-1.8.19
88
+ - handle ENETDOWN exception during network requests
89
+ - gracefully shut down after interrupt during parallel install (@Who828)
90
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
91
+ - set git binstub permissions by umask (@v-yarotsky)
92
+ - remove parallel install debug log
93
+
94
+ ## 1.5.1 (2013-12-28)
95
+
96
+ Bugfixes:
97
+
98
+ - correctly find gems installed with Ruby by default
99
+
100
+ ## 1.5.0 (2013-12-26)
101
+
102
+ Features:
103
+
104
+ - install missing gems if their specs are present (@hone)
105
+
106
+ Bugfixes:
107
+
108
+ - use print for "Installing…" so messages are thread-safe (@TimMoore)
109
+
110
+ ## 1.5.0.rc.2 (2013-12-18)
111
+
112
+ "Features":
113
+
114
+ - Support threaded installation on Rubygems 2.0.7+
115
+ - Debug installation logs in .bundle/install.log
116
+
117
+ "Bugfixes":
118
+
119
+ - Try to catch gem installation race conditions
120
+
121
+ ## 1.5.0.rc.1 (2013-11-09)
122
+
123
+ Features:
124
+
125
+ - bundle update also accepts --jobs (#2692, @mrkn)
126
+ - add fork URL to README for new `bundle gem` (#2665, @zzak)
127
+ - add `bundle outdated --strict` (#2685, @davidblondeau)
128
+ - warn if same gem/version is added twice (#2679, @jendiamond)
129
+ - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
130
+ - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
131
+
132
+ Bugfixes:
133
+
134
+ - fix sharing same SSL socket when forking workers for parallel install (#2632)
135
+ - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
136
+ - fix Bundler.which for directories (#2697, @rhysd)
137
+ - properly require `Capistrano::Version` (#2690, @steveklabnik)
138
+ - search for git.exe and git
139
+ - fix the bug that downloads every spec when API fetcher encouters an error
140
+ - only retry network requests
141
+
142
+ ## 1.4.0.rc.1 (2013-09-29)
143
+
144
+ Features:
145
+
146
+ - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
147
+ - add :patchlevel option to ruby DSL
148
+ - add `bundler` bin (#2598, @kirs)
149
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
150
+ - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
151
+ - add X.509 client certificates for auth without passwords (@snackbandit)
152
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
153
+ - print a better error when git is not installed (@joyicecloud)
154
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
155
+ - add `:ruby_21` platform option (@brandonblack)
156
+ - add `--retry` to retry failed network and git commands (@schneems)
157
+ - include command and versions in User-Agent (@indirect, @joyicecloud)
158
+
159
+ Bugfixes:
160
+
161
+ - allow passwordless Basic Auth (#2606, @rykov)
162
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
163
+ - revert #2569, staying compatible with git: instead of https: for :github gems
164
+ - handle exceptions while installing gems in parallel (@gnufied)
165
+
166
+ ## 1.4.0.pre.1 (2013-08-04)
167
+
168
+ Features:
169
+
170
+ - retry network requests while installing gems (#2561, @ascherger)
171
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
172
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
173
+ - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
174
+ - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
175
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
176
+ - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
177
+ - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
178
+ - rescue and report Thor errors (#2478, @pjvds)
179
+ - detect cyclic dependencies (#2564, @gnufied)
180
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
181
+ - use https instead of git for :github gems (#2569, @fuadsaud)
182
+ - add quiet option to `bundle package` (#2573, @shtirlic)
183
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
184
+
185
+ Bugfixes:
186
+
187
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
188
+ - display GitErrors while loading specs in --verbose mode (#2461)
189
+ - allow the same options hash to be passed to multiple gems (#2447)
190
+ - handle missing binaries without an exception (#2019, @luismreis)
191
+
192
+ ## 1.3.6 (8 January 2014)
193
+
194
+ Bugfixes:
195
+
196
+ - make gemspec path option preserve relative paths in lock file (@bwillis)
197
+ - use umask when creating binstubs (#1618, @v-yarotsky)
198
+ - warn if graphviz is not installed (#2435, @Agis-)
199
+ - show git errors while loading gemspecs
200
+ - don't mutate gem method options hash (#2447)
201
+ - print Thor errors (#2478, @pjvds)
202
+ - print Rubygems system exit errors (James Cook)
203
+ - more Pathnames into Strings for MacRuby (@kml)
204
+ - preserve original gemspec path (@bwillis)
205
+ - remove warning about deps with :git (#1651, @ixti)
206
+ - split git files on null (#2634, @jasonmp85)
207
+ - handle cross-host redirects without SSL (#2686, @grddev)
208
+ - handle Rubygems 2 security exception (@zzak)
209
+ - reinstall gems if they are missing with spec present
210
+ - set binstub permissions using umask (#1618, @v-yarotsky)
211
+
212
+ ## 1.3.5 (3 April 2013)
213
+
214
+ Features:
215
+
216
+ - progress indicator while resolver is running (@chief)
217
+
218
+ Bugfixes:
219
+
220
+ - update local overrides with orphaned revisions (@jamesferguson)
221
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
222
+ - use basic auth even when SSL is not available (@jayniz)
223
+ - installing git gems without dependencies in deployment now works
224
+
225
+ ## 1.3.4 (15 March 2013)
226
+
227
+ Bugfixes:
228
+
229
+ - load YAML on Rubygems versions that define module YAML
230
+ - fix regression that broke --without on ruby 1.8.7
231
+
232
+ ## 1.3.3 (13 March 2013)
233
+
234
+ Features:
235
+
236
+ - compatible with Rubygems 2.0.2 (higher and lower already work)
237
+ - mention skipped groups in bundle install and bundle update output (@simi)
238
+ - `gem` creates rake tasks for minitest (@coop) and rspec
239
+
240
+ Bugfixes:
241
+
242
+ - require rbconfig for standalone mode
243
+
244
+ ## 1.3.2 (7 March 2013)
245
+
246
+ Features:
247
+
248
+ - include rubygems.org CA chain
249
+
250
+ Bugfixes:
251
+
252
+ - don't store --dry-run as a Bundler setting
253
+
254
+ ## 1.3.1 (3 March 2013)
255
+
256
+ Bugfixes:
257
+
258
+ - include manpages in gem, restoring many help pages
259
+ - handle more SSL certificate verification failures
260
+ - check for the full version of SSL, which we need (@alup)
261
+ - gem rake task 'install' now depends on task 'build' (@sunaku)
262
+
263
+ ## 1.3.0 (24 February 2013)
264
+
265
+ Features:
266
+
267
+ - raise a useful error when the lockfile contains a merge conflict (@zofrex)
268
+ - ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
269
+ - allow environment variables to be negated with 'false' and '0' (@brettporter)
270
+ - set $MANPATH inside `exec` for gems with man pages (@sunaku)
271
+ - partial gem names for `open` and `update` now return a list (@takkanm)
272
+
273
+ Bugfixes:
274
+
275
+ - `update` now (again) finds gems that aren't listed in the Gemfile
276
+ - `install` now (again) updates cached gems that aren't in the Gemfile
277
+ - install Gemfiles with HTTP sources even without OpenSSL present
278
+ - display CerficateFailureError message in full
279
+
280
+ ## 1.3.0.pre.8 (12 February 2013)
281
+
282
+ Security:
283
+
284
+ - validate SSL certificate chain during HTTPS network requests
285
+ - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
286
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
287
+
288
+ Features:
289
+
290
+ - optimize resolver when too new of a gem is already activated (@rykov, #2248)
291
+ - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
292
+ - explain SSL cert validation failures
293
+ - generate gemspecs when installing git repos, removing shellouts
294
+ - add pager selection (@csgui)
295
+ - add `licenses` command (@bryanwoods, #1898)
296
+ - sort output from `outdated` (@richardkmichael, #1896)
297
+ - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
298
+ - inform users when the resolver starts
299
+ - disable reverse DNS to speed up API requests (@raggi)
300
+
301
+ Bugfixes:
302
+
303
+ - raise errors while requiring dashed gems (#1807)
304
+ - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
305
+ - load gemspecs containing unicode (@gaffneyc, #2301)
306
+ - support any ruby version in --standalone
307
+ - resolve some ruby -w warnings (@chastell, #2193)
308
+ - don't scare users with an error message during API fallback
309
+ - `install --binstubs` is back to overwriting. thanks, SemVer.
310
+
311
+ ## 1.3.0.pre.7 (22 January 2013)
312
+
313
+ Bugfixes:
314
+
315
+ - stubs for gems with dev deps no longer cause exceptions (#2272)
316
+ - don't suggest binstubs to --binstubs users
317
+
318
+ ## 1.3.0.pre.6 (22 January 2013)
319
+
320
+ Features:
321
+
322
+ - `binstubs` lists child gem bins if a gem has no binstubs
323
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
324
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
325
+ - `bundle env` prints info about bundler's environment (@peeja)
326
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
327
+
328
+ Bugfixes:
329
+
330
+ - don't overwrite custom binstubs during `install --binstubs`
331
+ - don't throw an exception if `binstubs` gem doesn't exist
332
+ - `bundle config` now works in directories without a Gemfile
333
+
334
+ ## 1.3.0.pre.5 (Jan 9, 2013)
335
+
336
+ Features:
337
+
338
+ - make `--standalone` require lines ruby engine/version agnostic
339
+ - add `--dry-run` to `bundle clean` (@wfarr, #2237)
340
+
341
+ Bugfixes:
342
+
343
+ - don't skip writing binstubs when doing `bundle install`
344
+ - distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
345
+
346
+ ## 1.3.0.pre.4 (Jan 3, 2013)
347
+
348
+ Features:
349
+
350
+ - `bundle binstubs <gem>` to setup individual binstubs
351
+ - `bundle install --binstubs ""` will remove binstubs option
352
+ - `bundle clean --dry-run` will print out gems instead of removing them
353
+
354
+ Bugfixes:
355
+
356
+ - Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
357
+ - fix YAML parsing in in ruby-preview2
358
+
359
+ ## 1.3.0.pre.3 (Dec 21, 2012)
360
+
361
+ Features:
362
+
363
+ - pushing gems during `rake release` can be disabled (@trans)
364
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
365
+ - added platforms :ruby_20 and :mri_20, since the ABI has changed
366
+ - added '--edit' option to open generated gemspec in editor
367
+
368
+ Bugfixes:
369
+
370
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
371
+ - revert SemVer breaking change to :github
372
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
373
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
374
+ - namespaced gems no longer generate a superfluous directory (@banyan)
375
+
376
+ ## 1.3.0.pre.2 (Dec 9, 2012)
377
+
378
+ Features:
379
+
380
+ - `config` expands local overrides like `local.rack .` (@gkop, #2205)
381
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
382
+ - use gems from gists with the :gist option in the Gemfile (@jgaskins)
383
+
384
+ Bugfixes:
385
+
386
+ - Gemfile sources other than rubygems.org work even when .gemrc contains sources
387
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
388
+ - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
389
+ - git output hidden when running in --quiet mode (@rohit)
390
+
391
+ ## 1.3.0.pre (Nov 29, 2012)
392
+
393
+ Features:
394
+
395
+ - compatibile with Ruby 2.0.0-preview2
396
+ - compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
397
+ - ruby 2.0 added to the `:ruby19` ABI-compatible platform
398
+ - lazy load YAML, allowing Psych to be specified in the Gemfile
399
+ - significant performance improvements (@cheald, #2181)
400
+ - `inject` command for scripted Gemfile additions (Engine Yard)
401
+ - :github option uses slashless arguements as repo owner (@rking)
402
+ - `open` suggests gem names for typos (@jdelStrother)
403
+ - `update` reports non-existent gems (@jdelStrother)
404
+ - `gem` option --test can generate rspec stubs (@MafcoCinco)
405
+ - `gem` option --test can generate minitest stubs (@kcurtin)
406
+ - `gem` command generates MIT license (@BrentWheeldon)
407
+ - gem rake task 'release' resuses existing tags (@shtirlic)
408
+
409
+ Bugfixes:
410
+
411
+ - JRuby new works with HTTPS gem sources (@davidcelis)
412
+ - `install` installs both rake rake-built gems at once (@crowbot, #2107)
413
+ - handle Errno::ETIMEDOUT errors (@jmoses)
414
+ - handle Errno::EAGAIN errors on JRuby
415
+ - disable ANSI coloring when output is redirected (@tomykaira)
416
+ - raise LoadErrors correctly during Bundler.require (@Empact)
417
+ - do not swallow --verbose on `bundle exec` (@sol, #2102)
418
+ - `gem` generates gemspecs that block double-requires
419
+ - `gem` generates gemspecs that admit they depend on rake
420
+
421
+ ## 1.2.5 (Feb 24, 2013)
422
+
423
+ Bugfixes:
424
+
425
+ - install Gemfiles with HTTP sources even without OpenSSL present
426
+ - display CerficateFailureError message in full
427
+
428
+ ## 1.2.4 (Feb 12, 2013)
429
+
430
+ Features:
431
+
432
+ - warn about Ruby 2.0 and Rubygems 2.0
433
+ - inform users when the resolver starts
434
+ - disable reverse DNS to speed up API requests (@raggi)
435
+
436
+ Bugfixes:
437
+
438
+ - don't send user/pass when redirected to another host (@perplexes)
439
+ - load gemspecs containing unicode (@gaffneyc, #2301)
440
+ - support any ruby version in --standalone
441
+ - resolve some ruby -w warnings (@chastell, #2193)
442
+ - don't scare users with an error message during API fallback
443
+
444
+ ## 1.2.3 (Nov 29, 2012)
445
+
446
+ Bugfixes:
447
+
448
+ - fix exceptions while loading some gemspecs
449
+
450
+ ## 1.2.2 (Nov 14, 2012)
451
+
452
+ Bugfixes:
453
+
454
+ - support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
455
+ - `bundle viz` works with git gems again (@hirochachacha)
456
+ - recognize more cases when OpenSSL is not present
457
+
458
+ ## 1.2.1 (Sep 19, 2012)
459
+
460
+ Bugfixes:
461
+
462
+ - `bundle clean` now works with BUNDLE_WITHOUT groups again
463
+ - have a net/http read timeout around the Gemcutter API Endpoint
464
+
465
+ ## 1.2.0 (Aug 30, 2012)
466
+
467
+ Bugfixes:
468
+
469
+ - raise original error message from LoadError's
470
+
471
+ Documentation:
472
+
473
+ - `platform` man pages
474
+
475
+ ## 1.2.0.rc.2 (Aug 8, 2012)
476
+
477
+ Bugfixes:
478
+
479
+ - `clean` doesn't remove gems that are included in the lockfile
480
+
481
+ ## 1.2.0.rc (Jul 17, 2012)
482
+
483
+ Features:
484
+
485
+ - `check` now has a `--dry-run` option (@svenfuchs, #1811)
486
+ - loosen ruby directive for engines
487
+ - prune git/path directories inside vendor/cache (@josevalim, #1988)
488
+ - update vendored thor to 0.15.2 (@sferik)
489
+ - add .txt to LICENSE (@postmodern, #2001)
490
+ - add `config disable_local_branch_check` (@josevalim, #1985)
491
+ - fall back on the full index when experiencing syck errors (#1419)
492
+ - handle syntax errors in Ruby gemspecs (#1974)
493
+
494
+ Bugfixes:
495
+
496
+ - fix `pack`/`cache` with `--all` (@josevalim, #1989)
497
+ - don't display warning message when `cache_all` is set
498
+ - check for `nil` PATH (#2006)
499
+ - Always try to keep original GEM_PATH (@drogus, #1920)
500
+
501
+ ## 1.2.0.pre.1 (May 27, 2012)
502
+
503
+ Features:
504
+
505
+ - Git gems import submodules of submodules recursively (@nwwatson, #1935)
506
+
507
+ Bugfixes:
508
+
509
+ - Exit from `check` with a non-zero status when frozen with no lock
510
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
511
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
512
+
513
+ Documentation:
514
+
515
+ - Add instructions for local git repos to the `config` manpage
516
+ - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
517
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
518
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
519
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
520
+
521
+ ## 1.2.0.pre (May 4, 2012)
522
+
523
+ Features:
524
+
525
+ - bundle package now accepts --all to package git and path dependencies
526
+ - bundle config now accepts --local, --global and --delete options
527
+ - It is possible to override a git repository via configuration.
528
+ For instance, if you have a git dependency on rack, you can force
529
+ it to use a local repo with `bundle config local.rack ~/path/to/rack`
530
+ - Cache gemspec loads for performance (@dekellum, #1635)
531
+ - add --full-index flag to `bundle update` (@fluxx, #1829)
532
+ - add --quiet flag to `bundle update` (@nashby, #1654)
533
+ - Add Bundler::GemHelper.gemspec (@knu, #1637)
534
+ - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
535
+ - `bundle platform` command
536
+ - add ruby to DSL, to specify version of ruby
537
+ - error out if the ruby version doesn't match
538
+
539
+ Performance:
540
+
541
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
542
+
543
+ Bugfixes:
544
+
545
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
546
+ - Use the same ruby to run subprocesses as is running rake (@brixen)
547
+
548
+ Documentation:
549
+
550
+ - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
551
+ - Add docs for the --no-cache option (@fluxx, #1796)
552
+ - Add basic documentation for bin_path and bundle_path (@radar)
553
+ - Add documentation for the run method in Bundler::Installer
554
+
555
+ ## 1.1.5 (Jul 17, 2012)
556
+
557
+ Features:
558
+
559
+ - Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
560
+
561
+ ## 1.1.4 (May 27, 2012)
562
+
563
+ Bugfixes:
564
+
565
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
566
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
567
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
568
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
569
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
570
+
571
+ ## 1.1.3 (March 23, 2012)
572
+
573
+ Bugfixes:
574
+
575
+ - escape the bundler root path (@tenderlove, #1789)
576
+
577
+ ## 1.1.2 (March 20, 2012)
578
+
579
+ Bugfixes:
580
+
581
+ - Fix --deployment for multiple PATH sections of the same source (#1782)
582
+
583
+ ## 1.1.1 (March 14, 2012)
584
+
585
+ Bugfixes:
586
+
587
+ - Rescue EAGAIN so the fetcher works on JRuby on Windows
588
+ - Stop asking users to report gem installation errors
589
+ - Clarify "no sources" message
590
+ - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
591
+ - URI-encode gem names for dependency API (@rohit, #1672)
592
+ - Fix `cache` edge case in rubygems 1.3.7 (#1202)
593
+
594
+ Performance:
595
+
596
+ - Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
597
+
598
+ ## 1.1.0 (Mar 7, 2012)
599
+
600
+ Bugfixes:
601
+
602
+ - Clean up corrupted lockfiles on bundle installs
603
+ - Prevent duplicate GIT sources
604
+ - Fix post_install_message when uing the endpoint API
605
+
606
+ ## 1.1.rc.8 (Mar 3, 2012)
607
+
608
+ Performance:
609
+
610
+ - don't resolve if the Gemfile.lock and Gemfile haven't changed
611
+
612
+ Bugfixes:
613
+
614
+ - Load gemspecs from git even when a released gem has the same version (#1609)
615
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
616
+ - handle gemspec development dependencies correctly (@raggi, #1639)
617
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
618
+
619
+ ## 1.1.rc.7 (Dec 29, 2011)
620
+
621
+ Bugfixes:
622
+
623
+ - Fix bug where `clean` would break when using :path with no gemspec
624
+
625
+ ## 1.1.rc.6 (Dec 22, 2011)
626
+
627
+ Bugfixes:
628
+
629
+ - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
630
+ - Load gems correctly when GEM_HOME is blank
631
+ - Refresh gems so Bundler works from inside a bundle
632
+ - Handle empty .bundle/config files without an error
633
+
634
+ ## 1.1.rc.5 (Dec 14, 2011)
635
+
636
+ Bugfixes:
637
+
638
+ - Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
639
+
640
+ ## 1.1.rc.4 (Dec 14, 2011)
641
+
642
+ Features:
643
+
644
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
645
+
646
+ Bugfixes:
647
+
648
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
649
+ - fix `bundle viz` (@hirochachacha, #1586)
650
+
651
+ ## 1.1.rc.3 (Dec 8, 2011)
652
+
653
+ Bugfixes:
654
+
655
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
656
+ - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
657
+
658
+ ## 1.1.rc.2 (Dec 6, 2011)
659
+
660
+ Features:
661
+
662
+ - Added README.md to `newgem` (@ognevsky, #1574)
663
+ - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
664
+
665
+ Bugfixes:
666
+
667
+ - only auto-namespace requires for implied requires (#1531)
668
+ - fix bundle clean output for git repos (#1473)
669
+ - use Gem.bindir for bundle clean (#1544, #1532)
670
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
671
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
672
+ - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
673
+ - fix Psych loading issues
674
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
675
+ - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
676
+ - `newgem` now uses https://rubygems.org (#1562)
677
+ - `bundle init` now uses https://rubygems.org (@jjb, #1522)
678
+ - `bundle install/update` does not autoclean when using --path for semver
679
+
680
+ Documentation:
681
+
682
+ - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
683
+
684
+ ## 1.1.rc (Oct 3, 2011)
685
+
686
+ Features:
687
+
688
+ - add `--shebang` option to bundle install (@bensie, #1467)
689
+ - build passes on ruby 1.9.3rc1 (#1458, #1469)
690
+ - hide basic auth credentials for custom sources (#1440, #1463)
691
+
692
+ Bugfixes:
693
+
694
+ - fix index search result caching (#1446, #1466)
695
+ - fix fetcher prints multiple times during install (#1445, #1462)
696
+ - don't mention API errors from non-rubygems.org sources
697
+ - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
698
+
699
+ Documentation:
700
+
701
+ - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
702
+
703
+ ## 1.1.pre.10 (Sep 27, 2011)
704
+
705
+ Features:
706
+
707
+ - `config system_bindir foo` added, works like "-n foo" in your .gemrc file
708
+
709
+ ## 1.1.pre.9 (Sep 18, 2011)
710
+
711
+ Features:
712
+
713
+ - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
714
+ - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
715
+ - `clean` now takes a `--force` option (#1247, #1426)
716
+ - `clean` will clean up cached git dirs in bundle clean (#1390)
717
+ - remove deprecations from DSL (#1119)
718
+ - autorequire tries directories for gems with dashed names (#1205)
719
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
720
+ - load rubygems plugins in the bundle binary (@tpope, #1364)
721
+ - make `--standalone` respect `--path` (@cowboyd, #1361)
722
+
723
+ Bugfixes:
724
+
725
+ - Fix `clean` to handle nested gems in a git repo (#1329)
726
+ - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
727
+ - Fix fatal error when unable to connect to gem source (#1269)
728
+ - Fix `outdated` to find pre-release gems that are installed. (#1359)
729
+ - Fix color for ui. (#1374)
730
+ - Fix installing to user-owned system gems on OS X
731
+ - Fix caching issue in the resolver (#1353, #1421)
732
+ - Fix :github DSL option
733
+
734
+ ## 1.1.pre.8 (Aug 13, 2011)
735
+
736
+ Bugfixes:
737
+
738
+ - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
739
+ - Fix require_sudo when Gem.bindir isn't writeable (#1352)
740
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
741
+ - Fix `install --binstubs` when using --path (#1332)
742
+
743
+ ## 1.1.pre.7 (Aug 8, 2011)
744
+
745
+ Bugfixes:
746
+
747
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
748
+ - Fixed exception when sudo was needed to install gems (@spastorino)
749
+
750
+ ## 1.1.pre.6 (Aug 8, 2011)
751
+
752
+ Bugfixes:
753
+
754
+ - Fix cross repository dependencies (#1138)
755
+ - Fix git dependency fetching from API endpoint (#1254)
756
+ - Fixes for bundle outdated (@joelmoss, #1238)
757
+ - Fix bundle standalone when using the endpoint (#1240)
758
+
759
+ Features:
760
+
761
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
762
+ - bundle clean removes old .gem files (@cldwalker, #1293)
763
+ - Correcly identify missing child dependency in error message
764
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
765
+ - create Gemfile.lock for empty Gemfile (#1218)
766
+
767
+ ## 1.1.pre.5 (June 11, 2011)
768
+
769
+ Bugfixes:
770
+
771
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
772
+ - Fix HTTP proxy support (@leobessa, #878)
773
+
774
+ Features:
775
+
776
+ - Speed up `install --deployment` by using the API endpoint
777
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
778
+ - Add `install --full-index` to disable the API endpoint, just in case
779
+ - Significantly speed up install by removing unneeded gemspec fetches
780
+ - `outdated` command shows outdated gems (@joelmoss, #1130)
781
+ - Print gem post install messages (@csquared, #1155)
782
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
783
+ - Allow `check --path`
784
+
785
+ ## 1.1.pre.4 (May 5, 2011)
786
+
787
+ Bugfixes:
788
+
789
+ - Fix bug that could prevent installing new gems
790
+
791
+ ## 1.1.pre.3 (May 4, 2011)
792
+
793
+ Features:
794
+
795
+ - Add `bundle outdated` to show outdated gems (@joelmoss)
796
+ - Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
797
+ - Add Bundler.clean_system, and clean_exec (@wuputah)
798
+ - Use git config for gem author name and email (@krekoten)
799
+
800
+ Bugfixes:
801
+
802
+ - Fix error calling Bundler.rubygems.gem_path
803
+ - Fix error when Gem.path returns Gem::FS instead of String
804
+
805
+ ## 1.1.pre.2 (April 28, 2011)
806
+
807
+ Features:
808
+
809
+ - Add :github option to Gemfile DSL for easy git repos
810
+ - Merge all fixes from 1.0.12 and 1.0.13
811
+
812
+ ## 1.1.pre.1 (February 2, 2011)
813
+
814
+ Bugfixes:
815
+
816
+ - Compatibility with changes made by Rubygems 1.5
817
+
818
+ ## 1.1.pre (January 21, 2011)
819
+
820
+ Features:
821
+
822
+ - Add bundle clean. Removes unused gems from --path directory
823
+ - Initial Gemcutter Endpoint API work, BAI Fetching source index
824
+ - Added bundle install --standalone
825
+ - Ignore Gemfile.lock when buliding new gems
826
+ - Make it possible to override a .gemspec dependency's source in the
827
+ Gemfile
828
+
829
+ Removed:
830
+
831
+ - Removed bundle lock
832
+ - Removed bundle install <path>
833
+ - Removed bundle install --production
834
+ - Removed bundle install --disable-shared-gems
835
+
836
+ ## 1.0.21 (September 30, 2011)
837
+
838
+ - No changes from RC
839
+
840
+ ## 1.0.21.rc (September 29, 2011)
841
+
842
+ Bugfixes:
843
+
844
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
845
+
846
+ ## 1.0.20 (September 27, 2011)
847
+
848
+ Features:
849
+
850
+ - Add platform :maglev (@timfel, #1444)
851
+
852
+ Bugfixes:
853
+
854
+ - Ensure YAML is required even if Psych is found
855
+ - Handle directory names that contain invalid regex characters
856
+
857
+ ## 1.0.20.rc (September 18, 2011)
858
+
859
+ Features:
860
+
861
+ - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
862
+ - Allow clearing without groups by passing `--without ''` (#1259)
863
+
864
+ Bugfixes:
865
+
866
+ - Manually sort requirements in the lockfile (#1375)
867
+ - Remove several warnings generated by ruby -w (@stephencelis)
868
+ - Handle trailing slashes on names passed to `gem` (#1372)
869
+ - Name modules for gems like 'test-foo_bar' correctly (#1303)
870
+ - Don't require Psych if Syck is already loaded (#1239)
871
+
872
+ ## 1.0.19.rc (September 13, 2011)
873
+
874
+ Features:
875
+
876
+ - Compatability with Rubygems 1.8.10 installer changes
877
+ - Report gem installation failures clearly (@rwilcox, #1380)
878
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
879
+
880
+ Bugfixes:
881
+
882
+ - `exec` now works when the command contains 'exec'
883
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
884
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
885
+
886
+ ## 1.0.18 (August 16, 2011)
887
+
888
+ Bugfixes:
889
+
890
+ - Fix typo in DEBUG_RESOLVER (@geemus)
891
+ - Fixes rake 0.9.x warning (@mtylty, #1333)
892
+ - Fix `bundle cache` again for rubygems 1.3.x
893
+
894
+ Features:
895
+
896
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
897
+ - Support hidden gemspec (@trans, @cldwalker, #827)
898
+ - Make fetch_specs faster (@zeha, #1294)
899
+ - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
900
+
901
+ ## 1.0.17 (August 8, 2011)
902
+
903
+ Bugfixes:
904
+
905
+ - Fix rake issues with rubygems 1.3.x (#1342)
906
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
907
+
908
+ ## 1.0.16 (August 8, 2011)
909
+
910
+ Features:
911
+
912
+ - Performance fix for MRI 1.9 (@efficientcloud, #1288)
913
+ - Shortcuts (like `bundle i`) for all commands (@amatsuda)
914
+ - Correcly identify missing child dependency in error message
915
+
916
+ Bugfixes:
917
+
918
+ - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
919
+ - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
920
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
921
+ - Fix `bundle install --without` on kiji (@tmm1, #1287)
922
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
923
+
924
+ Documentation:
925
+
926
+ - Documentation for `gem ..., :require => false` (@kmayer, #1292)
927
+ - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
928
+
929
+ ## 1.0.15 (June 9, 2011)
930
+
931
+ Features:
932
+
933
+ - Improved Rubygems integration, removed many deprecation notices
934
+
935
+ Bugfixes:
936
+
937
+ - Escape URL arguments to git correctly on Windows (1.0.14 regression)
938
+
939
+ ## 1.0.14 (May 27, 2011)
940
+
941
+ Features:
942
+
943
+ - Rubinius platform :rbx (@rkbodenner)
944
+ - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
945
+ - Include user name and email from git config in new gemspec (@ognevsky)
946
+
947
+ Bugfixes:
948
+
949
+ - Set file permissions after checking out git repos (@tissak)
950
+ - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
951
+ - Require the version file in new gemspecs (@rubiii)
952
+ - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
953
+ - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
954
+ - Display installed path correctly on Windows (@tadman)
955
+ - Escape quotes in git URIs (@mheffner)
956
+ - Improve Rake 0.9 support (@quix)
957
+ - Handle certain directories already existing (@raggi)
958
+ - Escape filenames containing regex characters (@indirect)
959
+
960
+ ## 1.0.13 (May 4, 2011)
961
+
962
+ Features:
963
+
964
+ - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
965
+ - Informative error when --path points to a broken symlink
966
+ - Support Rake 0.9 and greater (@e2)
967
+ - Output full errors for non-TTYs e.g. pow (@josh)
968
+
969
+ Bugfixes:
970
+
971
+ - Allow spaces in gem path names for gem tasks (@rslifka)
972
+ - Have cap run bundle install from release_path (@martinjagusch)
973
+ - Quote git refspec so zsh doesn't expand it (@goneflyin)
974
+
975
+ ## 1.0.12 (April 8, 2011)
976
+
977
+ Features:
978
+
979
+ - Add --no-deployment option to `install` for disabling it on dev machines
980
+ - Better error message when git fails and cache is present (@parndt)
981
+ - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
982
+
983
+ Bugfixes:
984
+
985
+ - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
986
+ - Fix changing gem order in lock (@gucki)
987
+ - Remove color escape sequences when displaying man pages (@bgreenlee)
988
+ - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
989
+ - Fix gems without a gemspec and directories in bin/ (@epall)
990
+ - Fix --no-prune option for `bundle install` (@cmeiklejohn)
991
+
992
+ ## 1.0.11 (April 1, 2011)
993
+
994
+ Features:
995
+
996
+ - Compatibility with Rubygems 1.6 and 1.7
997
+ - Better error messages when a git command fails
998
+
999
+ Bugfixes:
1000
+
1001
+ - Don't always update gemspec gems (@carllerche)
1002
+ - Remove ivar warnings (@jackdempsey)
1003
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
1004
+ - Consistent lock for gems with double deps like Cap (@akahn)
1005
+
1006
+ ## 1.0.10 (February 1, 2011)
1007
+
1008
+ Bugfixes:
1009
+
1010
+ - Fix a regression loading YAML gemspecs from :git and :path gems
1011
+ - Requires, namespaces, etc. to work with changes in Rubygems 1.5
1012
+
1013
+ ## 1.0.9 (January 19, 2011)
1014
+
1015
+ Bugfixes:
1016
+
1017
+ - Fix a bug where Bundler.require could remove gems from the load
1018
+ path. In Rails apps with a default application.rb, this removed
1019
+ all gems in groups other than :default and Rails.env
1020
+
1021
+ ## 1.0.8 (January 18, 2011)
1022
+
1023
+ Features:
1024
+
1025
+ - Allow overriding gemspec() deps with :git deps
1026
+ - Add --local option to `bundle update`
1027
+ - Ignore Gemfile.lock in newly generated gems
1028
+ - Use `less` as help pager instead of `more`
1029
+ - Run `bundle exec rake` instead of `rake` in Capistrano tasks
1030
+
1031
+ Bugfixes:
1032
+
1033
+ - Fix --no-cache option for `bundle install`
1034
+ - Allow Vlad deploys to work without Capistrano gem installed
1035
+ - Fix group arguments to `bundle console`
1036
+ - Allow groups to be loaded even if other groups were loaded
1037
+ - Evaluate gemspec() gemspecs in their directory not the cwd
1038
+ - Count on Rake to chdir to the right place in GemHelper
1039
+ - Change Pathnames to Strings for MacRuby
1040
+ - Check git process exit status correctly
1041
+ - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
1042
+
1043
+ ## 1.0.7 (November 17, 2010)
1044
+
1045
+ Bugfixes:
1046
+
1047
+ - Remove Bundler version from the lockfile because it broke
1048
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
1049
+
1050
+ ## 1.0.6 (November 16, 2010)
1051
+
1052
+ Bugfixes:
1053
+
1054
+ - Fix regression in `update` that caused long/wrong results
1055
+ - Allow git gems on other platforms while installing (#579)
1056
+
1057
+ Features:
1058
+
1059
+ - Speed up `install` command using various optimizations
1060
+ - Significantly increase performance of resolver
1061
+ - Use upcoming Rubygems performance improvements (@tmm1)
1062
+ - Warn if the lockfile was generated by a newer version
1063
+ - Set generated gems' homepage to "", so Rubygems will warn
1064
+
1065
+ ## 1.0.5 (November 13, 2010)
1066
+
1067
+ Bugfixes:
1068
+
1069
+ - Fix regression disabling all operations that employ sudo
1070
+
1071
+ ## 1.0.4 (November 12, 2010)
1072
+
1073
+ Bugfixes:
1074
+
1075
+ - Expand relative :paths from Bundler.root (eg ./foogem)
1076
+ - Allow git gems in --without groups while --frozen
1077
+ - Allow gem :ref to be a symbol as well as a string
1078
+ - Fix exception when Gemfile needs a newer Bundler version
1079
+ - Explanation when the current Bundler version conflicts
1080
+ - Explicit error message if Gemfile needs newer Bundler
1081
+ - Ignore an empty string BUNDLE_GEMFILE
1082
+ - Skeleton gemspec now works with older versions of git
1083
+ - Fix shell quoting and ref fetching in GemHelper
1084
+ - Disable colored output in --deployment
1085
+ - Preserve line endings in lock file
1086
+
1087
+ Features:
1088
+
1089
+ - Add support for 'mingw32' platform (aka RubyInstaller)
1090
+ - Large speed increase when Gemfile.lock is already present
1091
+ - Huge speed increase when many (100+) system gems are present
1092
+ - Significant expansion of ISSUES, man pages, and docs site
1093
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
1094
+ - Allow setting roles in built-in cap and vlad tasks
1095
+
1096
+ ## 1.0.3 (October 15, 2010)
1097
+
1098
+ Bugfixes:
1099
+
1100
+ - Use bitwise or in #hash to reduce the chance of overflow
1101
+ - `bundle update` now works with :git + :tag updates
1102
+ - Record relative :path options in the Gemfile.lock
1103
+ - :groups option on gem method in Gemfile now works
1104
+ - Add #platform method and :platform option to Gemfile DSL
1105
+ - --without now accepts a quoted, space-separated list
1106
+ - Installing after --deployment with no lock is now possible
1107
+ - Binstubs can now be symlinked
1108
+ - Print warning if cache for --local install is missing gems
1109
+ - Improve output when installing to a path
1110
+ - The tests all pass! Yay!
1111
+
1112
+ ## 1.0.2 (October 2, 2010)
1113
+
1114
+ Bugfix:
1115
+
1116
+ - Actually include the man pages in the gem, so help works
1117
+
1118
+ ## 1.0.1 (October 1, 2010)
1119
+
1120
+ Features:
1121
+
1122
+ - Vlad deployment recipe, `require 'bundler/vlad'`
1123
+ - Prettier bundle graphs
1124
+ - Improved gem skeleton for `bundle gem`
1125
+ - Prompt on file clashes when generating a gem
1126
+ - Option to generate binary with gem skeleton
1127
+ - Allow subclassing of GemHelper for custom tasks
1128
+ - Chdir to gem directory during `bundle open`
1129
+
1130
+ Bugfixes:
1131
+
1132
+ - Allow gemspec requirements with a list of versions
1133
+ - Accept lockfiles with windows line endings
1134
+ - Respect BUNDLE_WITHOUT env var
1135
+ - Allow `gem "foo", :platform => :jruby`
1136
+ - Specify loaded_from path in fake gemspec
1137
+ - Flesh out gem_helper tasks, raise errors correctly
1138
+ - Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
1139
+
1140
+ ## 1.0.0 (August 29, 2010)
1141
+
1142
+ Features:
1143
+
1144
+ - You can now define `:bundle_cmd` in the capistrano task
1145
+
1146
+ Bugfixes:
1147
+
1148
+ - Various bugfixes to the built-in rake helpers
1149
+ - Fix a bug where shortrefs weren't unique enough and were
1150
+ therfore colliding
1151
+ - Fix a small bug involving checking whether a local git
1152
+ clone is up to date
1153
+ - Correctly handle explicit '=' dependencies with gems
1154
+ pinned to a git source
1155
+ - Fix an issue with Windows-generated lockfiles by reading
1156
+ and writing the lockfile in binary mode
1157
+ - Fix an issue with shelling out to git in Windows by
1158
+ using double quotes around paths
1159
+ - Detect new Rubygems sources in the Gemfile and update
1160
+ the lockfile
1161
+
1162
+ ## 1.0.0.rc.6 (August 23, 2010)
1163
+
1164
+ Features:
1165
+
1166
+ - Much better documentation for most of the commands and Gemfile
1167
+ format
1168
+
1169
+ Bugfixes:
1170
+
1171
+ - Don't attempt to create directories if they already exist
1172
+ - Fix the capistrano task so that it actually runs
1173
+ - Update the Gemfile template to reference rubygems.org instead
1174
+ of :gemcutter
1175
+ - bundle exec should exit with a non zero exit code when the gem
1176
+ binary does not exist or the file is not executable.
1177
+ - Expand paths in Gemfile relative to the Gemfile and not the current
1178
+ working directory.
1179
+
1180
+ ## 1.0.0.rc.5 (August 10, 2010)
1181
+
1182
+ Features:
1183
+
1184
+ - Make the Capistrano task more concise.
1185
+
1186
+ Bugfixes:
1187
+
1188
+ - Fix a regression with determining whether or not to use sudo
1189
+ - Allow using the --gemfile flag with the --deployment flag
1190
+
1191
+ ## 1.0.0.rc.4 (August 9, 2010)
1192
+
1193
+ Features:
1194
+
1195
+ - `bundle gem NAME` command to generate a new gem with Gemfile
1196
+ - Bundle config file location can be specified by BUNDLE_APP_CONFIG
1197
+ - Add --frozen to disable updating the Gemfile.lock at runtime
1198
+ (default with --deployment)
1199
+ - Basic Capistrano task now added as 'bundler/capistrano'
1200
+
1201
+ Bugfixes:
1202
+
1203
+ - Multiple bundler process no longer share a tmp directory
1204
+ - `bundle update GEM` always updates dependencies of GEM as well
1205
+ - Deleting the cache directory no longer causes errors
1206
+ - Moving the bundle after installation no longer causes git errors
1207
+ - Bundle path is now correctly remembered on a read-only filesystem
1208
+ - Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
1209
+ - Fetch gems from vendor/cache, even without --local
1210
+ - Sort lockfile by platform as well as spec
1211
+
1212
+ ## 1.0.0.rc.3 (August 3, 2010)
1213
+
1214
+ Features:
1215
+
1216
+ - Deprecate --production flag for --deployment, since the former
1217
+ was causing confusion with the :production group
1218
+ - Add --gemfile option to `bundle check`
1219
+ - Reduce memory usage of `bundle install` by 2-4x
1220
+ - Improve message from `bundle check` under various conditions
1221
+ - Better error when a changed Gemfile conflicts with Gemfile.lock
1222
+
1223
+ Bugfixes:
1224
+
1225
+ - Create bin/ directory if it is missing, then install binstubs
1226
+ - Error nicely on the edge case of a pinned gem with no spec
1227
+ - Do not require gems for other platforms
1228
+ - Update git sources along with the gems they contain
1229
+
1230
+ ## 1.0.0.rc.2 (July 29, 2010)
1231
+
1232
+ - `bundle install path` was causing confusion, so we now print
1233
+ a clarifying warning. The preferred way to install to a path
1234
+ (which will not print the warning) is
1235
+ `bundle install --path path/to/install`.
1236
+ - `bundle install --system` installs to the default system
1237
+ location ($BUNDLE_PATH or $GEM_HOME) even if you previously
1238
+ used `bundle install --path`
1239
+ - completely remove `--disable-shared-gems`. If you install to
1240
+ system, you will not be isolated, while if you install to
1241
+ another path, you will be isolated from gems installed to
1242
+ the system. This was mostly an internal option whose naming
1243
+ and semantics were extremely confusing.
1244
+ - Add a `--production` option to `bundle install`:
1245
+ - by default, installs to `vendor/bundle`. This can be
1246
+ overridden with the `--path` option
1247
+ - uses `--local` if `vendor/cache` is found. This will
1248
+ guarantee that Bundler does not attempt to connect to
1249
+ Rubygems and will use the gems cached in `vendor/cache`
1250
+ instead
1251
+ - Raises an exception if a Gemfile.lock is not found
1252
+ - Raises an exception if you modify your Gemfile in development
1253
+ but do not check in an updated Gemfile.lock
1254
+ - Fixes a bug where switching a source from Rubygems to git
1255
+ would always say "the git source is not checked out" when
1256
+ running `bundle install`
1257
+
1258
+ NOTE: We received several reports of "the git source has not
1259
+ been checked out. Please run bundle install". As far as we
1260
+ can tell, these problems have two possible causes:
1261
+
1262
+ 1. `bundle install ~/.bundle` in one user, but actually running
1263
+ the application as another user. Never install gems to a
1264
+ directory scoped to a user (`~` or `$HOME`) in deployment.
1265
+ 2. A bug that happened when changing a gem to a git source.
1266
+
1267
+ To mitigate several common causes of `(1)`, please use the
1268
+ new `--production` flag. This flag is simply a roll-up of
1269
+ the best practices we have been encouraging people to use
1270
+ for deployment.
1271
+
1272
+ If you want to share gems across deployments, and you use
1273
+ Capistrano, symlink release_path/current/vendor/bundle to
1274
+ release_path/shared/bundle. This will keep deployments
1275
+ snappy while maintaining the benefits of clean, deploy-time
1276
+ isolation.
1277
+
1278
+ ## 1.0.0.rc.1 (July 26, 2010)
1279
+
1280
+ - Fixed a bug with `bundle install` on multiple machines and git
1281
+
1282
+ ## 1.0.0.beta.10 (July 25, 2010)
1283
+
1284
+ - Last release before 1.0.0.rc.1
1285
+ - Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
1286
+ - Fix `bundle install` immediately after modifying the :submodule option
1287
+ - Don't write to Gemfile.lock if nothing has changed, fixing situations
1288
+ where bundle install was run with a different user than the app
1289
+ itself
1290
+ - Fix a bug where other platforms were being wiped on `bundle update`
1291
+ - Don't ask for root password on `bundle install` if not needed
1292
+ - Avoid setting `$GEM_HOME` where not needed
1293
+ - First solid pass of `bundle config`
1294
+ - Add build options
1295
+ - `bundle config build.mysql --with-mysql-config=/path/to/config`
1296
+
1297
+ ## 1.0.0.beta.9 (July 21, 2010)
1298
+
1299
+ - Fix install failure when switching from a path to git source
1300
+ - Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
1301
+ - Fix `bundle *` from inside a bundle with --disable-shared-gem
1302
+ - Shim Gem.refresh. This is used by Unicorn
1303
+ - Fix install failure when a path's dependencies changed
1304
+
1305
+ ## 1.0.0.beta.8 (July 20, 2010)
1306
+
1307
+ - Fix a Beta 7 bug involving Ruby 1.9
1308
+
1309
+ ## 1.0.0.beta.7 (July 20, 2010, yanked)
1310
+
1311
+ - Running `bundle install` twice in a row with a git source always crashed
1312
+
1313
+ ## 1.0.0.beta.6 (July 20, 2010, yanked)
1314
+
1315
+ - Create executables with bundle install --binstubs
1316
+ - You can customize the location (default is app/bin) with --binstubs other/location
1317
+ - Fix a bug where the Gemfile.lock would be deleted even if the update was exited
1318
+ - Fix a bug where cached gems for other platforms were sometimes deleted
1319
+ - Clean up output when nothing was deleted from cache (it previously said
1320
+ "Removing outdated gems ...")
1321
+ - Improve performance of bundle install if the git gem was already checked out,
1322
+ and the revision being used already exists locally
1323
+ - Fix bundle show bundler in some cases
1324
+ - Fix bugs with bundle update
1325
+ - Don't ever run git commands at runtime (fixes a number of common passenger issues)
1326
+ - Fixes an obscure bug where switching the source of a gem could fail to correctly
1327
+ change the source of its dependencies
1328
+ - Support multiple version dependencies in the Gemfile
1329
+ (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
1330
+ - Raise an exception for ambiguous uses of multiple declarations of the same gem
1331
+ (for instance, with different versions or sources).
1332
+ - Fix cases where the same dependency appeared several times in the Gemfile.lock
1333
+ - Fix a bug where require errors were being swallowed during Bundler.require
1334
+
1335
+ ## 1.0.0.beta.1
1336
+
1337
+ - No `bundle lock` command. Locking happens automatically on install or update
1338
+ - No .bundle/environment.rb. Require 'bundler/setup' instead.
1339
+ - $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
1340
+ - Remove lockfiles generated by 0.9
1341
+
1342
+ ## 0.9.26
1343
+
1344
+ Features:
1345
+
1346
+ - error nicely on incompatible 0.10 lockfiles
1347
+
1348
+ ## 0.9.25 (May 3, 2010)
1349
+
1350
+ Bugfixes:
1351
+
1352
+ - explicitly coerce Pathname objects to Strings for Ruby 1.9
1353
+ - fix some newline weirdness in output from install command
1354
+
1355
+ ## 0.9.24 (April 22, 2010)
1356
+
1357
+ Features:
1358
+
1359
+ - fetch submodules for git sources
1360
+ - limit the bundled version of bundler to the same as the one installing
1361
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
1362
+ - serialize GemCache sources correctly, so locking works
1363
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
1364
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
1365
+
1366
+ Bugfixes:
1367
+
1368
+ - don't try to regenerate environment.rb if it is read-only
1369
+ - prune outdated gems with the platform "ruby"
1370
+ - prune cache without errors when there are directories or non-gem files
1371
+ - don't re-write environment.rb if running after it has been loaded
1372
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
1373
+
1374
+ ## 0.9.23 (April 20, 2010)
1375
+
1376
+ Bugfixes:
1377
+
1378
+ - cache command no longer prunes gems created by an older rubygems version
1379
+ - cache command no longer prunes gems that are for other platforms
1380
+
1381
+ ## 0.9.22 (April 20, 2010)
1382
+
1383
+ Features:
1384
+
1385
+ - cache command now prunes stale .gem files from vendor/cache
1386
+ - init --gemspec command now generates development dependencies
1387
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
1388
+ - remove .gem files generated after installing a gem from a :path (#286)
1389
+ - improve install/lock messaging (#284)
1390
+
1391
+ Bugfixes:
1392
+
1393
+ - ignore cached gems that are for another platform (#288)
1394
+ - install Windows gems that have no architecture set, like rcov (#277)
1395
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
1396
+ - fix the `rake install` task
1397
+ - add GemspecError so it can be raised without (further) error (#292)
1398
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
1399
+
1400
+ ## 0.9.21 (April 16, 2010)
1401
+
1402
+ Bugfixes:
1403
+
1404
+ - don't raise 'omg wtf' when lockfile is outdated
1405
+
1406
+ ## 0.9.20 (April 15, 2010)
1407
+
1408
+ Features:
1409
+
1410
+ - load YAML format gemspecs
1411
+ - no backtraces when calling Bundler.setup if gems are missing
1412
+ - no backtraces when trying to exec a file without the executable bit
1413
+
1414
+ Bugfixes:
1415
+
1416
+ - fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
1417
+ - request install instead of lock when env.rb is out of sync with Gemfile.lock
1418
+
1419
+ ## 0.9.19 (April 12, 2010)
1420
+
1421
+ Features:
1422
+
1423
+ - suggest `bundle install --relock` when the Gemfile has changed (#272)
1424
+ - source support for Rubygems servers without prerelease gem indexes (#262)
1425
+
1426
+ Bugfixes:
1427
+
1428
+ - don't set up all groups every time Bundler.setup is called while locked (#263)
1429
+ - fix #full_gem_path for git gems while locked (#268)
1430
+ - eval gemspecs at the top level, not inside the Bundler class (#269)
1431
+
1432
+
1433
+ ## 0.9.18 (April 8, 2010)
1434
+
1435
+ Features:
1436
+
1437
+ - console command that runs irb with bundle (and optional group) already loaded
1438
+
1439
+ Bugfixes:
1440
+
1441
+ - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
1442
+ - fixes Yard, which found plugins in Gem.source_index that it could not load
1443
+ - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
1444
+
1445
+ ## 0.9.17 (April 7, 2010)
1446
+
1447
+ Features:
1448
+
1449
+ - Bundler.require now calls Bundler.setup automatically
1450
+ - Gem::Specification#add_bundler_dependencies added for gemspecs
1451
+
1452
+ Bugfixes:
1453
+
1454
+ - Gem paths are not longer duplicated while loading bundler
1455
+ - exec no longer duplicates RUBYOPT if it is already set correctly
1456
+
1457
+ ## 0.9.16 (April 3, 2010)
1458
+
1459
+ Features:
1460
+
1461
+ - exit gracefully on INT signal
1462
+ - resolver output now indicates whether remote sources were checked
1463
+ - print error instead of backtrace when exec cannot find a binary (#241)
1464
+
1465
+ Bugfixes:
1466
+
1467
+ - show, check, and open commands work again while locked (oops)
1468
+ - show command for git gems
1469
+ - outputs branch names other than master
1470
+ - gets the correct sha from the checkout
1471
+ - doesn't print sha twice if :ref is set
1472
+ - report errors from bundler/setup.rb without backtraces (#243)
1473
+ - fix Gem::Spec#git_version to not error on unloaded specs
1474
+ - improve deprecation, Gemfile, and command error messages (#242)
1475
+
1476
+ ## 0.9.15 (April 1, 2010)
1477
+
1478
+ Features:
1479
+
1480
+ - use the env_file if possible instead of doing a runtime resolve
1481
+ - huge speedup when calling Bundler.setup while locked
1482
+ - ensures bundle exec is fast while locked
1483
+ - regenerates env_file if it was generated by an older version
1484
+ - update cached/packed gems when you update gems via bundle install
1485
+
1486
+ Bugfixes:
1487
+
1488
+ - prep for Rubygems 1.3.7 changes
1489
+ - install command now pulls git branches correctly (#211)
1490
+ - raise errors on invalid options in the Gemfile
1491
+
1492
+ ## 0.9.14 (March 30, 2010)
1493
+
1494
+ Features:
1495
+
1496
+ - install command output vastly improved
1497
+ - installation message now accurate, with 'using' and 'installing'
1498
+ - bundler gems no longer listed as 'system gems'
1499
+ - show command output now includes sha and branch name for git gems
1500
+ - init command now takes --gemspec option for bootstrapping gem Gemfiles
1501
+ - Bundler.with_clean_env for shelling out to ruby scripts
1502
+ - show command now aliased as 'list'
1503
+ - VISUAL env var respected for GUI editors
1504
+
1505
+ Bugfixes:
1506
+
1507
+ - exec command now finds binaries from gems with no gemspec
1508
+ - note source of Gemfile resolver errors
1509
+ - don't blow up if git urls are changed
1510
+
1511
+ ## 0.9.13 (March 23, 2010)
1512
+
1513
+ Bugfixes:
1514
+
1515
+ - exec command now finds binaries from gems installed via :path
1516
+ - gem dependencies are pulled in even if their type is nil
1517
+ - paths with spaces have double-quotes to work on Windows
1518
+ - set GEM_PATH in environment.rb so generators work with Rails 2
1519
+
1520
+ ## 0.9.12 (March 17, 2010)
1521
+
1522
+ - refactoring, internal cleanup, more solid specs
1523
+
1524
+ Features:
1525
+
1526
+ - check command takes a --without option
1527
+ - check command exits 1 if the check fails
1528
+
1529
+ Bugfixes:
1530
+
1531
+ - perform a topological sort on resolved gems (#191)
1532
+ - gems from git work even when paths or repos have spaces (#196)
1533
+ - Specification#loaded_from returns a String, like Gem::Specification (#197)
1534
+ - specs eval from inside the gem directory, even when locked
1535
+ - virtual gemspecs are now saved in environment.rb for use when loading
1536
+ - unify the Installer's local index and the runtime index (#204)
1537
+
1538
+ ## 0.9.11 (March 9, 2010)
1539
+
1540
+ - added roadmap with future development plans
1541
+
1542
+ Features:
1543
+
1544
+ - install command can take the path to the gemfile with --gemfile (#125)
1545
+ - unknown command line options are now rejected (#163)
1546
+ - exec command hugely sped up while locked (#177)
1547
+ - show command prints the install path if you pass it a gem name (#148)
1548
+ - open command edits an installed gem with $EDITOR (#148)
1549
+ - Gemfile allows assigning an array of groups to a gem (#114)
1550
+ - Gemfile allows :tag option on :git sources
1551
+ - improve backtraces when a gemspec is invalid
1552
+ - improve performance by installing gems from the cache if present
1553
+
1554
+ Bugfixes:
1555
+
1556
+ - normalize parameters to Bundler.require (#153)
1557
+ - check now checks installed gems rather than cached gems (#162)
1558
+ - don't update the gem index when installing after locking (#169)
1559
+ - bundle parenthesises arguments for 1.8.6 (#179)
1560
+ - gems can now be assigned to multiple groups without problems (#135)
1561
+ - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
1562
+ - fix a Dependency.to_yaml error due to accidentally including sources and groups
1563
+ - don't reinstall packed gems
1564
+ - fix gems with git sources that are private repositories
1565
+
1566
+ ## 0.9.10 (March 1, 2010)
1567
+
1568
+ - depends on Rubygems 1.3.6
1569
+
1570
+ Bugfixes:
1571
+
1572
+ - support locking after install --without
1573
+ - don't reinstall gems from the cache if they're already in the bundle
1574
+ - fixes for Ruby 1.8.7 and 1.9
1575
+
1576
+ ## 0.9.9 (February 25, 2010)
1577
+
1578
+ Bugfixes:
1579
+
1580
+ - don't die if GEM_HOME is an empty string
1581
+ - fixes for Ruby 1.8.6 and 1.9
1582
+
1583
+ ## 0.9.8 (February 23, 2010)
1584
+
1585
+ Features:
1586
+
1587
+ - pack command which both caches and locks
1588
+ - descriptive error if a cached gem is missing
1589
+ - remember the --without option after installing
1590
+ - expand paths given in the Gemfile via the :path option
1591
+ - add block syntax to the git and group options in the Gemfile
1592
+ - support gems with extensions that don't admit they depend on rake
1593
+ - generate gems using gem build gemspec so git gems can have native extensions
1594
+ - print a useful warning if building a gem fails
1595
+ - allow manual configuration via BUNDLE_PATH
1596
+
1597
+ Bugfixes:
1598
+
1599
+ - eval gemspecs in the gem directory so relative paths work
1600
+ - make default spec for git sources valid
1601
+ - don't reinstall gems that are already packed
1602
+
1603
+ ## 0.9.7 (February 17, 2010)
1604
+
1605
+ Bugfixes:
1606
+
1607
+ - don't say that a gem from an excluded group is "installing"
1608
+ - improve crippling rubygems in locked scenarios
1609
+
1610
+ ## 0.9.6 (February 16, 2010)
1611
+
1612
+ Features:
1613
+
1614
+ - allow String group names
1615
+ - a number of improvements in the documentation and error messages
1616
+
1617
+ Bugfixes:
1618
+
1619
+ - set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
1620
+ - ensure Rubygems is fully loaded in Ruby 1.9 before patching it
1621
+ - fix `bundle install` for a locked app without a .bundle directory
1622
+ - require gems in the order that the resolver determines
1623
+ - make the tests platform agnostic so we can confirm that they're green on JRuby
1624
+ - fixes for Ruby 1.9
1625
+
1626
+ ## 0.9.5 (Feburary 12, 2010)
1627
+
1628
+ Features:
1629
+
1630
+ - added support for :path => "relative/path"
1631
+ - added support for older versions of git
1632
+ - added `bundle install --disable-shared-gems`
1633
+ - Bundler.require fails silently if a library does not have a file on the load path with its name
1634
+ - Basic support for multiple rubies by namespacing the default bundle path using the version and engine
1635
+
1636
+ Bugfixes:
1637
+
1638
+ - if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
1639
+ - same if it's not present with `bundle check`
1640
+ - same if it's not present with `bundle install`