carat 1.9.9.pre1

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