rkh-bundler 1.2.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +22 -0
- data/.travis.yml +42 -0
- data/CHANGELOG.md +1105 -0
- data/ISSUES.md +67 -0
- data/LICENSE +23 -0
- data/README.md +31 -0
- data/Rakefile +208 -0
- data/UPGRADING.md +103 -0
- data/bin/bundle +31 -0
- data/bundler.gemspec +31 -0
- data/lib/bundler.rb +353 -0
- data/lib/bundler/capistrano.rb +11 -0
- data/lib/bundler/cli.rb +693 -0
- data/lib/bundler/definition.rb +568 -0
- data/lib/bundler/dep_proxy.rb +43 -0
- data/lib/bundler/dependency.rb +134 -0
- data/lib/bundler/deployment.rb +58 -0
- data/lib/bundler/dsl.rb +256 -0
- data/lib/bundler/endpoint_specification.rb +78 -0
- data/lib/bundler/environment.rb +47 -0
- data/lib/bundler/fetcher.rb +225 -0
- data/lib/bundler/gem_helper.rb +162 -0
- data/lib/bundler/gem_helpers.rb +23 -0
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/gem_tasks.rb +2 -0
- data/lib/bundler/graph.rb +148 -0
- data/lib/bundler/index.rb +187 -0
- data/lib/bundler/installer.rb +190 -0
- data/lib/bundler/lazy_specification.rb +79 -0
- data/lib/bundler/lockfile_parser.rb +127 -0
- data/lib/bundler/match_platform.rb +13 -0
- data/lib/bundler/psyched_yaml.rb +15 -0
- data/lib/bundler/remote_specification.rb +57 -0
- data/lib/bundler/resolver.rb +486 -0
- data/lib/bundler/ruby_version.rb +94 -0
- data/lib/bundler/rubygems_ext.rb +153 -0
- data/lib/bundler/rubygems_integration.rb +394 -0
- data/lib/bundler/runtime.rb +233 -0
- data/lib/bundler/settings.rb +128 -0
- data/lib/bundler/setup.rb +23 -0
- data/lib/bundler/shared_helpers.rb +71 -0
- data/lib/bundler/source.rb +869 -0
- data/lib/bundler/spec_set.rb +137 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Executable.standalone +12 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.tt +22 -0
- data/lib/bundler/templates/newgem/README.md.tt +29 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +2 -0
- data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/gitignore.tt +17 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +9 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +17 -0
- data/lib/bundler/ui.rb +88 -0
- data/lib/bundler/vendor/net/http/faster.rb +27 -0
- data/lib/bundler/vendor/net/http/persistent.rb +468 -0
- data/lib/bundler/vendor/thor.rb +358 -0
- data/lib/bundler/vendor/thor/actions.rb +314 -0
- data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
- data/lib/bundler/vendor/thor/actions/create_link.rb +57 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +270 -0
- data/lib/bundler/vendor/thor/actions/inject_into_file.rb +109 -0
- data/lib/bundler/vendor/thor/base.rb +576 -0
- data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
- data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
- data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
- data/lib/bundler/vendor/thor/error.rb +30 -0
- data/lib/bundler/vendor/thor/group.rb +273 -0
- data/lib/bundler/vendor/thor/invocation.rb +168 -0
- data/lib/bundler/vendor/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
- data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
- data/lib/bundler/vendor/thor/parser/option.rb +120 -0
- data/lib/bundler/vendor/thor/parser/options.rb +172 -0
- data/lib/bundler/vendor/thor/rake_compat.rb +66 -0
- data/lib/bundler/vendor/thor/runner.rb +309 -0
- data/lib/bundler/vendor/thor/shell.rb +88 -0
- data/lib/bundler/vendor/thor/shell/basic.rb +302 -0
- data/lib/bundler/vendor/thor/shell/color.rb +108 -0
- data/lib/bundler/vendor/thor/shell/html.rb +121 -0
- data/lib/bundler/vendor/thor/task.rb +113 -0
- data/lib/bundler/vendor/thor/util.rb +229 -0
- data/lib/bundler/vendor/thor/version.rb +3 -0
- data/lib/bundler/vendored_thor.rb +7 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +11 -0
- data/man/bundle-config.ronn +130 -0
- data/man/bundle-exec.ronn +111 -0
- data/man/bundle-install.ronn +335 -0
- data/man/bundle-package.ronn +59 -0
- data/man/bundle-update.ronn +176 -0
- data/man/bundle.ronn +83 -0
- data/man/gemfile.5.ronn +324 -0
- data/man/index.txt +6 -0
- data/spec/bundler/dsl_spec.rb +48 -0
- data/spec/bundler/gem_helper_spec.rb +174 -0
- data/spec/bundler/source_spec.rb +25 -0
- data/spec/cache/gems_spec.rb +239 -0
- data/spec/cache/git_spec.rb +124 -0
- data/spec/cache/path_spec.rb +103 -0
- data/spec/cache/platform_spec.rb +57 -0
- data/spec/install/deploy_spec.rb +211 -0
- data/spec/install/gems/c_ext_spec.rb +48 -0
- data/spec/install/gems/dependency_api_spec.rb +402 -0
- data/spec/install/gems/env_spec.rb +107 -0
- data/spec/install/gems/flex_spec.rb +313 -0
- data/spec/install/gems/groups_spec.rb +268 -0
- data/spec/install/gems/packed_spec.rb +84 -0
- data/spec/install/gems/platform_spec.rb +208 -0
- data/spec/install/gems/post_install_spec.rb +47 -0
- data/spec/install/gems/resolving_spec.rb +72 -0
- data/spec/install/gems/simple_case_spec.rb +814 -0
- data/spec/install/gems/standalone_spec.rb +260 -0
- data/spec/install/gems/sudo_spec.rb +74 -0
- data/spec/install/gems/win32_spec.rb +26 -0
- data/spec/install/gemspec_spec.rb +170 -0
- data/spec/install/git_spec.rb +796 -0
- data/spec/install/invalid_spec.rb +35 -0
- data/spec/install/path_spec.rb +405 -0
- data/spec/install/upgrade_spec.rb +26 -0
- data/spec/lock/git_spec.rb +35 -0
- data/spec/lock/lockfile_spec.rb +809 -0
- data/spec/other/check_spec.rb +265 -0
- data/spec/other/clean_spec.rb +492 -0
- data/spec/other/config_spec.rb +138 -0
- data/spec/other/console_spec.rb +54 -0
- data/spec/other/exec_spec.rb +229 -0
- data/spec/other/ext_spec.rb +37 -0
- data/spec/other/help_spec.rb +39 -0
- data/spec/other/init_spec.rb +40 -0
- data/spec/other/newgem_spec.rb +87 -0
- data/spec/other/open_spec.rb +35 -0
- data/spec/other/outdated_spec.rb +93 -0
- data/spec/other/platform_spec.rb +881 -0
- data/spec/other/show_spec.rb +88 -0
- data/spec/quality_spec.rb +62 -0
- data/spec/realworld/edgecases_spec.rb +177 -0
- data/spec/resolver/basic_spec.rb +20 -0
- data/spec/resolver/platform_spec.rb +82 -0
- data/spec/runtime/executable_spec.rb +120 -0
- data/spec/runtime/load_spec.rb +107 -0
- data/spec/runtime/platform_spec.rb +90 -0
- data/spec/runtime/require_spec.rb +261 -0
- data/spec/runtime/setup_spec.rb +755 -0
- data/spec/runtime/with_clean_env_spec.rb +80 -0
- data/spec/spec_helper.rb +98 -0
- data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint.rb +54 -0
- data/spec/support/artifice/endpoint_500.rb +37 -0
- data/spec/support/artifice/endpoint_api_missing.rb +16 -0
- data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint_extra.rb +27 -0
- data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
- data/spec/support/artifice/endpoint_fallback.rb +18 -0
- data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
- data/spec/support/artifice/endpoint_redirect.rb +15 -0
- data/spec/support/builders.rb +604 -0
- data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
- data/spec/support/fakeweb/windows.rb +23 -0
- data/spec/support/helpers.rb +317 -0
- data/spec/support/indexes.rb +112 -0
- data/spec/support/matchers.rb +77 -0
- data/spec/support/path.rb +73 -0
- data/spec/support/platforms.rb +86 -0
- data/spec/support/ruby_ext.rb +20 -0
- data/spec/support/rubygems_ext.rb +37 -0
- data/spec/support/rubygems_hax/platform.rb +22 -0
- data/spec/support/sudo.rb +21 -0
- data/spec/update/gems_spec.rb +134 -0
- data/spec/update/git_spec.rb +196 -0
- data/spec/update/source_spec.rb +51 -0
- metadata +338 -0
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# system crap
|
2
|
+
.DS_Store
|
3
|
+
.*.swp
|
4
|
+
|
5
|
+
# files created by running the specs
|
6
|
+
tmp
|
7
|
+
|
8
|
+
# built gems
|
9
|
+
pkg
|
10
|
+
*.gem
|
11
|
+
|
12
|
+
# rubinius bytecode
|
13
|
+
*.rbc
|
14
|
+
|
15
|
+
# output from ronn
|
16
|
+
lib/bundler/man
|
17
|
+
|
18
|
+
# output from ci_reporter
|
19
|
+
spec/reports
|
20
|
+
|
21
|
+
# Netbeans
|
22
|
+
nbproject
|
data/.travis.yml
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
before_script:
|
2
|
+
- sudo apt-get install groff -y
|
3
|
+
- rake spec:deps
|
4
|
+
|
5
|
+
env:
|
6
|
+
- RGV=v1.3.6
|
7
|
+
- RGV=v1.3.7
|
8
|
+
- RGV=v1.4.2
|
9
|
+
- RGV=v1.5.3
|
10
|
+
- RGV=v1.6.2
|
11
|
+
- RGV=v1.7.2
|
12
|
+
- RGV=v1.8.10
|
13
|
+
|
14
|
+
language: ruby
|
15
|
+
|
16
|
+
matrix:
|
17
|
+
exclude:
|
18
|
+
- rvm: 1.9.2
|
19
|
+
env: RGV=v1.3.6
|
20
|
+
- rvm: 1.9.2
|
21
|
+
env: RGV=v1.3.7
|
22
|
+
- rvm: 1.9.2
|
23
|
+
env: RGV=v1.4.2
|
24
|
+
- rvm: 1.9.3
|
25
|
+
env: RGV=v1.3.6
|
26
|
+
- rvm: 1.9.3
|
27
|
+
env: RGV=v1.3.7
|
28
|
+
- rvm: 1.9.3
|
29
|
+
env: RGV=v1.4.2
|
30
|
+
|
31
|
+
notifications:
|
32
|
+
email:
|
33
|
+
- travis-ci@andrearko.com
|
34
|
+
- hone02@gmail.com
|
35
|
+
- sferik@gmail.com
|
36
|
+
|
37
|
+
rvm:
|
38
|
+
- 1.8.7
|
39
|
+
- 1.9.2
|
40
|
+
- 1.9.3
|
41
|
+
|
42
|
+
script: rake spec:travis
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,1105 @@
|
|
1
|
+
## 1.2.0.pre (May 4, 2012)
|
2
|
+
|
3
|
+
Features:
|
4
|
+
|
5
|
+
- bundle package now accepts --all to package git and path dependencies
|
6
|
+
- bundle config now accepts --local, --global and --delete options
|
7
|
+
- It is possible to override a git repository via configuration.
|
8
|
+
For instance, if you have a git dependency on rack, you can force
|
9
|
+
it to use a local repo with `bundle config local.rack ~/path/to/rack`
|
10
|
+
- Cache gemspec loads for performance (@dekellum, #1635)
|
11
|
+
- add --full-index flag to `bundle update` (@fluxx, #1829)
|
12
|
+
- add --quiet flag to `bundle update` (@nashby, #1654)
|
13
|
+
- Add Bundler::GemHelper.gemspec (@knu, #1637)
|
14
|
+
- Graceful handling of Gemfile syntax errors (@koraktor, #1661)
|
15
|
+
- `bundle platform` command
|
16
|
+
- add ruby to DSL, to specify version of ruby
|
17
|
+
- error out if the ruby version doesn't match
|
18
|
+
|
19
|
+
Performance:
|
20
|
+
|
21
|
+
- bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
|
22
|
+
|
23
|
+
Bugfixes:
|
24
|
+
|
25
|
+
- Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
|
26
|
+
- Use the same ruby to run subprocesses as is running rake (@brixen)
|
27
|
+
|
28
|
+
Documentation:
|
29
|
+
|
30
|
+
- Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
|
31
|
+
- Add docs for the --no-cache option (@fluxx, #1796)
|
32
|
+
- Add basic documentation for bin_path and bundle_path (@radar)
|
33
|
+
- Add documentation for the run method in Bundler::Installer
|
34
|
+
|
35
|
+
|
36
|
+
## 1.1.3 (March 23, 2012)
|
37
|
+
|
38
|
+
Bugfixes:
|
39
|
+
|
40
|
+
- escape the bundler root path (@tenderlove, #1789)
|
41
|
+
|
42
|
+
## 1.1.2 (March 20, 2012)
|
43
|
+
|
44
|
+
Bugfixes:
|
45
|
+
|
46
|
+
- Fix --deployment for multiple PATH sections of the same source (#1782)
|
47
|
+
|
48
|
+
## 1.1.1 (March 14, 2012)
|
49
|
+
|
50
|
+
Bugfixes:
|
51
|
+
|
52
|
+
- Rescue EAGAIN so the fetcher works on JRuby on Windows
|
53
|
+
- Stop asking users to report gem installation errors
|
54
|
+
- Clarify "no sources" message
|
55
|
+
- Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
|
56
|
+
- URI-encode gem names for dependency API (@rohit, #1672)
|
57
|
+
- Fix `cache` edge case in rubygems 1.3.7 (#1202)
|
58
|
+
|
59
|
+
Performance:
|
60
|
+
|
61
|
+
- Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
|
62
|
+
|
63
|
+
## 1.1.0 (Mar 7, 2012)
|
64
|
+
|
65
|
+
Bugfixes:
|
66
|
+
|
67
|
+
- Clean up corrupted lockfiles on bundle installs
|
68
|
+
- Prevent duplicate GIT sources
|
69
|
+
- Fix post_install_message when uing the endpoint API
|
70
|
+
|
71
|
+
## 1.1.rc.8 (Mar 3, 2012)
|
72
|
+
|
73
|
+
Performance:
|
74
|
+
|
75
|
+
- don't resolve if the Gemfile.lock and Gemfile haven't changed
|
76
|
+
|
77
|
+
Bugfixes:
|
78
|
+
|
79
|
+
- Load gemspecs from git even when a released gem has the same version (#1609)
|
80
|
+
- Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
|
81
|
+
- handle gemspec development dependencies correctly (@raggi, #1639)
|
82
|
+
- Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
|
83
|
+
|
84
|
+
## 1.1.rc.7 (Dec 29, 2011)
|
85
|
+
|
86
|
+
Bugfixes:
|
87
|
+
|
88
|
+
- Fix bug where `clean` would break when using :path with no gemspec
|
89
|
+
|
90
|
+
## 1.1.rc.6 (Dec 22, 2011)
|
91
|
+
|
92
|
+
Bugfixes:
|
93
|
+
|
94
|
+
- Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
|
95
|
+
- Load gems correctly when GEM_HOME is blank
|
96
|
+
- Refresh gems so Bundler works from inside a bundle
|
97
|
+
- Handle empty .bundle/config files without an error
|
98
|
+
|
99
|
+
## 1.1.rc.5 (Dec 14, 2011)
|
100
|
+
|
101
|
+
Bugfixes:
|
102
|
+
|
103
|
+
- Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
|
104
|
+
|
105
|
+
## 1.1.rc.4 (Dec 14, 2011)
|
106
|
+
|
107
|
+
Features:
|
108
|
+
|
109
|
+
- `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
|
110
|
+
|
111
|
+
Bugfixes:
|
112
|
+
|
113
|
+
- Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
|
114
|
+
- fix `bundle viz` (@hirochachacha, #1586)
|
115
|
+
|
116
|
+
## 1.1.rc.3 (Dec 8, 2011)
|
117
|
+
|
118
|
+
Bugfixes:
|
119
|
+
|
120
|
+
- fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
|
121
|
+
- fix bundle outdated doesn't list all gems (@joelmoss, #1521)
|
122
|
+
|
123
|
+
## 1.1.rc.2 (Dec 6, 2011)
|
124
|
+
|
125
|
+
Features:
|
126
|
+
|
127
|
+
- Added README.md to `newgem` (@ognevsky, #1574)
|
128
|
+
- Added LICENSE (MIT) to newgem (@ognevsky, #1571)
|
129
|
+
|
130
|
+
Bugfixes:
|
131
|
+
|
132
|
+
- only auto-namespace requires for implied requires (#1531)
|
133
|
+
- fix bundle clean output for git repos (#1473)
|
134
|
+
- use Gem.bindir for bundle clean (#1544, #1532)
|
135
|
+
- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
|
136
|
+
- differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
|
137
|
+
- `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
|
138
|
+
- fix Psych loading issues
|
139
|
+
- Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
|
140
|
+
- 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)
|
141
|
+
- `newgem` now uses https://rubygems.org (#1562)
|
142
|
+
- `bundle init` now uses https://rubygems.org (@jjb, #1522)
|
143
|
+
- `bundle install/update` does not autoclean when using --path for semver
|
144
|
+
|
145
|
+
Documentation:
|
146
|
+
|
147
|
+
- added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
|
148
|
+
|
149
|
+
## 1.1.rc (Oct 3, 2011)
|
150
|
+
|
151
|
+
Features:
|
152
|
+
|
153
|
+
- add `--shebang` option to bundle install (@bensie, #1467)
|
154
|
+
- build passes on ruby 1.9.3rc1 (#1458, #1469)
|
155
|
+
- hide basic auth credentials for custom sources (#1440, #1463)
|
156
|
+
|
157
|
+
Bugfixes:
|
158
|
+
|
159
|
+
- fix index search result caching (#1446, #1466)
|
160
|
+
- fix fetcher prints multiple times during install (#1445, #1462)
|
161
|
+
- don't mention API errors from non-rubygems.org sources
|
162
|
+
- fix autoclean so it doesn't remove bins that are used (#1459, #1460)
|
163
|
+
|
164
|
+
Documentation:
|
165
|
+
|
166
|
+
- add :require => [...] to the gemfile(5) manpage (@nono, #1468)
|
167
|
+
|
168
|
+
## 1.1.pre.10 (Sep 27, 2011)
|
169
|
+
|
170
|
+
Features:
|
171
|
+
|
172
|
+
- `config system_bindir foo` added, works like "-n foo" in your .gemrc file
|
173
|
+
|
174
|
+
## 1.1.pre.9 (Sep 18, 2011)
|
175
|
+
|
176
|
+
Features:
|
177
|
+
|
178
|
+
- `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
|
179
|
+
- `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
|
180
|
+
- `clean` now takes a `--force` option (#1247, #1426)
|
181
|
+
- `clean` will clean up cached git dirs in bundle clean (#1390)
|
182
|
+
- remove deprecations from DSL (#1119)
|
183
|
+
- autorequire tries directories for gems with dashed names (#1205)
|
184
|
+
- adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
|
185
|
+
- load rubygems plugins in the bundle binary (@tpope, #1364)
|
186
|
+
- make `--standalone` respect `--path` (@cowboyd, #1361)
|
187
|
+
|
188
|
+
Bugfixes:
|
189
|
+
|
190
|
+
- Fix `clean` to handle nested gems in a git repo (#1329)
|
191
|
+
- Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
|
192
|
+
- Fix fatal error when unable to connect to gem source (#1269)
|
193
|
+
- Fix `outdated` to find pre-release gems that are installed. (#1359)
|
194
|
+
- Fix color for ui. (#1374)
|
195
|
+
- Fix installing to user-owned system gems on OS X
|
196
|
+
- Fix caching issue in the resolver (#1353, #1421)
|
197
|
+
- Fix :github DSL option
|
198
|
+
|
199
|
+
## 1.1.pre.8 (Aug 13, 2011)
|
200
|
+
|
201
|
+
Bugfixes:
|
202
|
+
|
203
|
+
- Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
|
204
|
+
- Fix require_sudo when Gem.bindir isn't writeable (#1352)
|
205
|
+
- Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
|
206
|
+
- Fix `install --binstubs` when using --path (#1332)
|
207
|
+
|
208
|
+
## 1.1.pre.7 (Aug 8, 2011)
|
209
|
+
|
210
|
+
Bugfixes:
|
211
|
+
|
212
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
213
|
+
- Fixed exception when sudo was needed to install gems (@spastorino)
|
214
|
+
|
215
|
+
## 1.1.pre.6 (Aug 8, 2011)
|
216
|
+
|
217
|
+
Bugfixes:
|
218
|
+
|
219
|
+
- Fix cross repository dependencies (#1138)
|
220
|
+
- Fix git dependency fetching from API endpoint (#1254)
|
221
|
+
- Fixes for bundle outdated (@joelmoss, #1238)
|
222
|
+
- Fix bundle standalone when using the endpoint (#1240)
|
223
|
+
|
224
|
+
Features:
|
225
|
+
|
226
|
+
- Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
|
227
|
+
- bundle clean removes old .gem files (@cldwalker, #1293)
|
228
|
+
- Correcly identify missing child dependency in error message
|
229
|
+
- Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
|
230
|
+
- create Gemfile.lock for empty Gemfile (#1218)
|
231
|
+
|
232
|
+
## 1.1.pre.5 (June 11, 2011)
|
233
|
+
|
234
|
+
Bugfixes:
|
235
|
+
|
236
|
+
- Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
|
237
|
+
- Fix HTTP proxy support (@leobessa, #878)
|
238
|
+
|
239
|
+
Features:
|
240
|
+
|
241
|
+
- Speed up `install --deployment` by using the API endpoint
|
242
|
+
- Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
|
243
|
+
- Add `install --full-index` to disable the API endpoint, just in case
|
244
|
+
- Significantly speed up install by removing unneeded gemspec fetches
|
245
|
+
- `outdated` command shows outdated gems (@joelmoss, #1130)
|
246
|
+
- Print gem post install messages (@csquared, #1155)
|
247
|
+
- Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
|
248
|
+
- Allow `check --path`
|
249
|
+
|
250
|
+
## 1.1.pre.4 (May 5, 2011)
|
251
|
+
|
252
|
+
Bugfixes:
|
253
|
+
|
254
|
+
- Fix bug that could prevent installing new gems
|
255
|
+
|
256
|
+
## 1.1.pre.3 (May 4, 2011)
|
257
|
+
|
258
|
+
Features:
|
259
|
+
|
260
|
+
- Add `bundle outdated` to show outdated gems (@joelmoss)
|
261
|
+
- Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
|
262
|
+
- Add Bundler.clean_system, and clean_exec (@wuputah)
|
263
|
+
- Use git config for gem author name and email (@krekoten)
|
264
|
+
|
265
|
+
Bugfixes:
|
266
|
+
|
267
|
+
- Fix error calling Bundler.rubygems.gem_path
|
268
|
+
- Fix error when Gem.path returns Gem::FS instead of String
|
269
|
+
|
270
|
+
## 1.1.pre.2 (April 28, 2011)
|
271
|
+
|
272
|
+
Features:
|
273
|
+
|
274
|
+
- Add :github option to Gemfile DSL for easy git repos
|
275
|
+
- Merge all fixes from 1.0.12 and 1.0.13
|
276
|
+
|
277
|
+
## 1.1.pre.1 (February 2, 2011)
|
278
|
+
|
279
|
+
Bugfixes:
|
280
|
+
|
281
|
+
- Compatibility with changes made by Rubygems 1.5
|
282
|
+
|
283
|
+
## 1.1.pre (January 21, 2011)
|
284
|
+
|
285
|
+
Features:
|
286
|
+
|
287
|
+
- Add bundle clean. Removes unused gems from --path directory
|
288
|
+
- Initial Gemcutter Endpoint API work, BAI Fetching source index
|
289
|
+
- Added bundle install --standalone
|
290
|
+
- Ignore Gemfile.lock when buliding new gems
|
291
|
+
- Make it possible to override a .gemspec dependency's source in the
|
292
|
+
Gemfile
|
293
|
+
|
294
|
+
Removed:
|
295
|
+
|
296
|
+
- Removed bundle lock
|
297
|
+
- Removed bundle install <path>
|
298
|
+
- Removed bundle install --production
|
299
|
+
- Removed bundle install --disable-shared-gems
|
300
|
+
|
301
|
+
## 1.0.21 (September 30, 2011)
|
302
|
+
|
303
|
+
- No changes from RC
|
304
|
+
|
305
|
+
## 1.0.21.rc (September 29, 2011)
|
306
|
+
|
307
|
+
Bugfixes:
|
308
|
+
|
309
|
+
- Load Psych unless Syck is defined, because 1.9.2 defines YAML
|
310
|
+
|
311
|
+
## 1.0.20 (September 27, 2011)
|
312
|
+
|
313
|
+
Features:
|
314
|
+
|
315
|
+
- Add platform :maglev (@timfel, #1444)
|
316
|
+
|
317
|
+
Bugfixes:
|
318
|
+
|
319
|
+
- Ensure YAML is required even if Psych is found
|
320
|
+
- Handle directory names that contain invalid regex characters
|
321
|
+
|
322
|
+
## 1.0.20.rc (September 18, 2011)
|
323
|
+
|
324
|
+
Features:
|
325
|
+
|
326
|
+
- Rescue interrupts to `bundle` while loading bundler.rb (#1395)
|
327
|
+
- Allow clearing without groups by passing `--without ''` (#1259)
|
328
|
+
|
329
|
+
Bugfixes:
|
330
|
+
|
331
|
+
- Manually sort requirements in the lockfile (#1375)
|
332
|
+
- Remove several warnings generated by ruby -w (@stephencelis)
|
333
|
+
- Handle trailing slashes on names passed to `gem` (#1372)
|
334
|
+
- Name modules for gems like 'test-foo_bar' correctly (#1303)
|
335
|
+
- Don't require Psych if Syck is already loaded (#1239)
|
336
|
+
|
337
|
+
## 1.0.19.rc (September 13, 2011)
|
338
|
+
|
339
|
+
Features:
|
340
|
+
|
341
|
+
- Compatability with Rubygems 1.8.10 installer changes
|
342
|
+
- Report gem installation failures clearly (@rwilcox, #1380)
|
343
|
+
- Useful error for cap and vlad on first deploy (@nexmat, @kirs)
|
344
|
+
|
345
|
+
Bugfixes:
|
346
|
+
|
347
|
+
- `exec` now works when the command contains 'exec'
|
348
|
+
- Only touch lock after changes on Windows (@robertwahler, #1358)
|
349
|
+
- Keep load paths when #setup is called multiple times (@radsaq, #1379)
|
350
|
+
|
351
|
+
## 1.0.18 (August 16, 2011)
|
352
|
+
|
353
|
+
Bugfixes:
|
354
|
+
|
355
|
+
- Fix typo in DEBUG_RESOLVER (@geemus)
|
356
|
+
- Fixes rake 0.9.x warning (@mtylty, #1333)
|
357
|
+
- Fix `bundle cache` again for rubygems 1.3.x
|
358
|
+
|
359
|
+
Features:
|
360
|
+
|
361
|
+
- Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
|
362
|
+
- Support hidden gemspec (@trans, @cldwalker, #827)
|
363
|
+
- Make fetch_specs faster (@zeha, #1294)
|
364
|
+
- Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
|
365
|
+
|
366
|
+
## 1.0.17 (August 8, 2011)
|
367
|
+
|
368
|
+
Bugfixes:
|
369
|
+
|
370
|
+
- Fix rake issues with rubygems 1.3.x (#1342)
|
371
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
372
|
+
|
373
|
+
## 1.0.16 (August 8, 2011)
|
374
|
+
|
375
|
+
Features:
|
376
|
+
|
377
|
+
- Performance fix for MRI 1.9 (@efficientcloud, #1288)
|
378
|
+
- Shortcuts (like `bundle i`) for all commands (@amatsuda)
|
379
|
+
- Correcly identify missing child dependency in error message
|
380
|
+
|
381
|
+
Bugfixes:
|
382
|
+
|
383
|
+
- Allow Windows network share paths with forward slashes (@mtscout6, #1253)
|
384
|
+
- Check for rubygems.org credentials so `rake release` doesn't hang (#980)
|
385
|
+
- Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
|
386
|
+
- Fix `bundle install --without` on kiji (@tmm1, #1287)
|
387
|
+
- Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
|
388
|
+
|
389
|
+
Documentation:
|
390
|
+
|
391
|
+
- Documentation for `gem ..., :require => false` (@kmayer, #1292)
|
392
|
+
- Gems provide "executables", they are rarely also binaries (@fxn, #1242)
|
393
|
+
|
394
|
+
## 1.0.15 (June 9, 2011)
|
395
|
+
|
396
|
+
Features:
|
397
|
+
|
398
|
+
- Improved Rubygems integration, removed many deprecation notices
|
399
|
+
|
400
|
+
Bugfixes:
|
401
|
+
|
402
|
+
- Escape URL arguments to git correctly on Windows (1.0.14 regression)
|
403
|
+
|
404
|
+
## 1.0.14 (May 27, 2011)
|
405
|
+
|
406
|
+
Features:
|
407
|
+
|
408
|
+
- Rubinius platform :rbx (@rkbodenner)
|
409
|
+
- Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
|
410
|
+
- Include user name and email from git config in new gemspec (@ognevsky)
|
411
|
+
|
412
|
+
Bugfixes:
|
413
|
+
|
414
|
+
- Set file permissions after checking out git repos (@tissak)
|
415
|
+
- Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
|
416
|
+
- Require the version file in new gemspecs (@rubiii)
|
417
|
+
- Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
|
418
|
+
- Install gems that contain 'bundler', e.g. guard-bundler (@hone)
|
419
|
+
- Display installed path correctly on Windows (@tadman)
|
420
|
+
- Escape quotes in git URIs (@mheffner)
|
421
|
+
- Improve Rake 0.9 support (@quix)
|
422
|
+
- Handle certain directories already existing (@raggi)
|
423
|
+
- Escape filenames containing regex characters (@indirect)
|
424
|
+
|
425
|
+
## 1.0.13 (May 4, 2011)
|
426
|
+
|
427
|
+
Features:
|
428
|
+
|
429
|
+
- Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
|
430
|
+
- Informative error when --path points to a broken symlink
|
431
|
+
- Support Rake 0.9 and greater (@e2)
|
432
|
+
- Output full errors for non-TTYs e.g. pow (@josh)
|
433
|
+
|
434
|
+
Bugfixes:
|
435
|
+
|
436
|
+
- Allow spaces in gem path names for gem tasks (@rslifka)
|
437
|
+
- Have cap run bundle install from release_path (@martinjagusch)
|
438
|
+
- Quote git refspec so zsh doesn't expand it (@goneflyin)
|
439
|
+
|
440
|
+
## 1.0.12 (April 8, 2011)
|
441
|
+
|
442
|
+
Features:
|
443
|
+
|
444
|
+
- Add --no-deployment option to `install` for disabling it on dev machines
|
445
|
+
- Better error message when git fails and cache is present (@parndt)
|
446
|
+
- Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
|
447
|
+
|
448
|
+
Bugfixes:
|
449
|
+
|
450
|
+
- Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
|
451
|
+
- Fix changing gem order in lock (@gucki)
|
452
|
+
- Remove color escape sequences when displaying man pages (@bgreenlee)
|
453
|
+
- Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
|
454
|
+
- Fix gems without a gemspec and directories in bin/ (@epall)
|
455
|
+
- Fix --no-prune option for `bundle install` (@cmeiklejohn)
|
456
|
+
|
457
|
+
## 1.0.11 (April 1, 2011)
|
458
|
+
|
459
|
+
Features:
|
460
|
+
|
461
|
+
- Compatibility with Rubygems 1.6 and 1.7
|
462
|
+
- Better error messages when a git command fails
|
463
|
+
|
464
|
+
Bugfixes:
|
465
|
+
|
466
|
+
- Don't always update gemspec gems (@carllerche)
|
467
|
+
- Remove ivar warnings (@jackdempsey)
|
468
|
+
- Fix occasional git failures in zsh (@jonah-carbonfive)
|
469
|
+
- Consistent lock for gems with double deps like Cap (@akahn)
|
470
|
+
|
471
|
+
## 1.0.10 (February 1, 2011)
|
472
|
+
|
473
|
+
Bugfixes:
|
474
|
+
|
475
|
+
- Fix a regression loading YAML gemspecs from :git and :path gems
|
476
|
+
- Requires, namespaces, etc. to work with changes in Rubygems 1.5
|
477
|
+
|
478
|
+
## 1.0.9 (January 19, 2011)
|
479
|
+
|
480
|
+
Bugfixes:
|
481
|
+
|
482
|
+
- Fix a bug where Bundler.require could remove gems from the load
|
483
|
+
path. In Rails apps with a default application.rb, this removed
|
484
|
+
all gems in groups other than :default and Rails.env
|
485
|
+
|
486
|
+
## 1.0.8 (January 18, 2011)
|
487
|
+
|
488
|
+
Features:
|
489
|
+
|
490
|
+
- Allow overriding gemspec() deps with :git deps
|
491
|
+
- Add --local option to `bundle update`
|
492
|
+
- Ignore Gemfile.lock in newly generated gems
|
493
|
+
- Use `less` as help pager instead of `more`
|
494
|
+
- Run `bundle exec rake` instead of `rake` in Capistrano tasks
|
495
|
+
|
496
|
+
Bugfixes:
|
497
|
+
|
498
|
+
- Fix --no-cache option for `bundle install`
|
499
|
+
- Allow Vlad deploys to work without Capistrano gem installed
|
500
|
+
- Fix group arguments to `bundle console`
|
501
|
+
- Allow groups to be loaded even if other groups were loaded
|
502
|
+
- Evaluate gemspec() gemspecs in their directory not the cwd
|
503
|
+
- Count on Rake to chdir to the right place in GemHelper
|
504
|
+
- Change Pathnames to Strings for MacRuby
|
505
|
+
- Check git process exit status correctly
|
506
|
+
- Fix some warnings in 1.9.3-trunk (thanks tenderlove)
|
507
|
+
|
508
|
+
## 1.0.7 (November 17, 2010)
|
509
|
+
|
510
|
+
Bugfixes:
|
511
|
+
|
512
|
+
- Remove Bundler version from the lockfile because it broke
|
513
|
+
backwards compatibility with 1.0.0-1.0.5. Sorry. :(
|
514
|
+
|
515
|
+
## 1.0.6 (November 16, 2010)
|
516
|
+
|
517
|
+
Bugfixes:
|
518
|
+
|
519
|
+
- Fix regression in `update` that caused long/wrong results
|
520
|
+
- Allow git gems on other platforms while installing (#579)
|
521
|
+
|
522
|
+
Features:
|
523
|
+
|
524
|
+
- Speed up `install` command using various optimizations
|
525
|
+
- Significantly increase performance of resolver
|
526
|
+
- Use upcoming Rubygems performance improvements (@tmm1)
|
527
|
+
- Warn if the lockfile was generated by a newer version
|
528
|
+
- Set generated gems' homepage to "", so Rubygems will warn
|
529
|
+
|
530
|
+
## 1.0.5 (November 13, 2010)
|
531
|
+
|
532
|
+
Bugfixes:
|
533
|
+
|
534
|
+
- Fix regression disabling all operations that employ sudo
|
535
|
+
|
536
|
+
## 1.0.4 (November 12, 2010)
|
537
|
+
|
538
|
+
Bugfixes:
|
539
|
+
|
540
|
+
- Expand relative :paths from Bundler.root (eg ./foogem)
|
541
|
+
- Allow git gems in --without groups while --frozen
|
542
|
+
- Allow gem :ref to be a symbol as well as a string
|
543
|
+
- Fix exception when Gemfile needs a newer Bundler version
|
544
|
+
- Explanation when the current Bundler version conflicts
|
545
|
+
- Explicit error message if Gemfile needs newer Bundler
|
546
|
+
- Ignore an empty string BUNDLE_GEMFILE
|
547
|
+
- Skeleton gemspec now works with older versions of git
|
548
|
+
- Fix shell quoting and ref fetching in GemHelper
|
549
|
+
- Disable colored output in --deployment
|
550
|
+
- Preserve line endings in lock file
|
551
|
+
|
552
|
+
Features:
|
553
|
+
|
554
|
+
- Add support for 'mingw32' platform (aka RubyInstaller)
|
555
|
+
- Large speed increase when Gemfile.lock is already present
|
556
|
+
- Huge speed increase when many (100+) system gems are present
|
557
|
+
- Significant expansion of ISSUES, man pages, and docs site
|
558
|
+
- Remove Open3 from GemHelper (now it works on Windows™®©)
|
559
|
+
- Allow setting roles in built-in cap and vlad tasks
|
560
|
+
|
561
|
+
## 1.0.3 (October 15, 2010)
|
562
|
+
|
563
|
+
Bugfixes:
|
564
|
+
|
565
|
+
- Use bitwise or in #hash to reduce the chance of overflow
|
566
|
+
- `bundle update` now works with :git + :tag updates
|
567
|
+
- Record relative :path options in the Gemfile.lock
|
568
|
+
- :groups option on gem method in Gemfile now works
|
569
|
+
- Add #platform method and :platform option to Gemfile DSL
|
570
|
+
- --without now accepts a quoted, space-separated list
|
571
|
+
- Installing after --deployment with no lock is now possible
|
572
|
+
- Binstubs can now be symlinked
|
573
|
+
- Print warning if cache for --local install is missing gems
|
574
|
+
- Improve output when installing to a path
|
575
|
+
- The tests all pass! Yay!
|
576
|
+
|
577
|
+
## 1.0.2 (October 2, 2010)
|
578
|
+
|
579
|
+
Bugfix:
|
580
|
+
|
581
|
+
- Actually include the man pages in the gem, so help works
|
582
|
+
|
583
|
+
## 1.0.1 (October 1, 2010)
|
584
|
+
|
585
|
+
Features:
|
586
|
+
|
587
|
+
- Vlad deployment recipe, `require 'bundler/vlad'`
|
588
|
+
- Prettier bundle graphs
|
589
|
+
- Improved gem skeleton for `bundle gem`
|
590
|
+
- Prompt on file clashes when generating a gem
|
591
|
+
- Option to generate binary with gem skeleton
|
592
|
+
- Allow subclassing of GemHelper for custom tasks
|
593
|
+
- Chdir to gem directory during `bundle open`
|
594
|
+
|
595
|
+
Bugfixes:
|
596
|
+
|
597
|
+
- Allow gemspec requirements with a list of versions
|
598
|
+
- Accept lockfiles with windows line endings
|
599
|
+
- Respect BUNDLE_WITHOUT env var
|
600
|
+
- Allow `gem "foo", :platform => :jruby`
|
601
|
+
- Specify loaded_from path in fake gemspec
|
602
|
+
- Flesh out gem_helper tasks, raise errors correctly
|
603
|
+
- Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
|
604
|
+
|
605
|
+
## 1.0.0 (August 29, 2010)
|
606
|
+
|
607
|
+
Features:
|
608
|
+
|
609
|
+
- You can now define `:bundle_cmd` in the capistrano task
|
610
|
+
|
611
|
+
Bugfixes:
|
612
|
+
|
613
|
+
- Various bugfixes to the built-in rake helpers
|
614
|
+
- Fix a bug where shortrefs weren't unique enough and were
|
615
|
+
therfore colliding
|
616
|
+
- Fix a small bug involving checking whether a local git
|
617
|
+
clone is up to date
|
618
|
+
- Correctly handle explicit '=' dependencies with gems
|
619
|
+
pinned to a git source
|
620
|
+
- Fix an issue with Windows-generated lockfiles by reading
|
621
|
+
and writing the lockfile in binary mode
|
622
|
+
- Fix an issue with shelling out to git in Windows by
|
623
|
+
using double quotes around paths
|
624
|
+
- Detect new Rubygems sources in the Gemfile and update
|
625
|
+
the lockfile
|
626
|
+
|
627
|
+
## 1.0.0.rc.6 (August 23, 2010)
|
628
|
+
|
629
|
+
Features:
|
630
|
+
|
631
|
+
- Much better documentation for most of the commands and Gemfile
|
632
|
+
format
|
633
|
+
|
634
|
+
Bugfixes:
|
635
|
+
|
636
|
+
- Don't attempt to create directories if they already exist
|
637
|
+
- Fix the capistrano task so that it actually runs
|
638
|
+
- Update the Gemfile template to reference rubygems.org instead
|
639
|
+
of :gemcutter
|
640
|
+
- bundle exec should exit with a non zero exit code when the gem
|
641
|
+
binary does not exist or the file is not executable.
|
642
|
+
- Expand paths in Gemfile relative to the Gemfile and not the current
|
643
|
+
working directory.
|
644
|
+
|
645
|
+
## 1.0.0.rc.5 (August 10, 2010)
|
646
|
+
|
647
|
+
Features:
|
648
|
+
|
649
|
+
- Make the Capistrano task more concise.
|
650
|
+
|
651
|
+
Bugfixes:
|
652
|
+
|
653
|
+
- Fix a regression with determining whether or not to use sudo
|
654
|
+
- Allow using the --gemfile flag with the --deployment flag
|
655
|
+
|
656
|
+
## 1.0.0.rc.4 (August 9, 2010)
|
657
|
+
|
658
|
+
Features:
|
659
|
+
|
660
|
+
- `bundle gem NAME` command to generate a new gem with Gemfile
|
661
|
+
- Bundle config file location can be specified by BUNDLE_APP_CONFIG
|
662
|
+
- Add --frozen to disable updating the Gemfile.lock at runtime
|
663
|
+
(default with --deployment)
|
664
|
+
- Basic Capistrano task now added as 'bundler/capistrano'
|
665
|
+
|
666
|
+
Bugfixes:
|
667
|
+
|
668
|
+
- Multiple bundler process no longer share a tmp directory
|
669
|
+
- `bundle update GEM` always updates dependencies of GEM as well
|
670
|
+
- Deleting the cache directory no longer causes errors
|
671
|
+
- Moving the bundle after installation no longer causes git errors
|
672
|
+
- Bundle path is now correctly remembered on a read-only filesystem
|
673
|
+
- Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
|
674
|
+
- Fetch gems from vendor/cache, even without --local
|
675
|
+
- Sort lockfile by platform as well as spec
|
676
|
+
|
677
|
+
## 1.0.0.rc.3 (August 3, 2010)
|
678
|
+
|
679
|
+
Features:
|
680
|
+
|
681
|
+
- Deprecate --production flag for --deployment, since the former
|
682
|
+
was causing confusion with the :production group
|
683
|
+
- Add --gemfile option to `bundle check`
|
684
|
+
- Reduce memory usage of `bundle install` by 2-4x
|
685
|
+
- Improve message from `bundle check` under various conditions
|
686
|
+
- Better error when a changed Gemfile conflicts with Gemfile.lock
|
687
|
+
|
688
|
+
Bugfixes:
|
689
|
+
|
690
|
+
- Create bin/ directory if it is missing, then install binstubs
|
691
|
+
- Error nicely on the edge case of a pinned gem with no spec
|
692
|
+
- Do not require gems for other platforms
|
693
|
+
- Update git sources along with the gems they contain
|
694
|
+
|
695
|
+
## 1.0.0.rc.2 (July 29, 2010)
|
696
|
+
|
697
|
+
- `bundle install path` was causing confusion, so we now print
|
698
|
+
a clarifying warning. The preferred way to install to a path
|
699
|
+
(which will not print the warning) is
|
700
|
+
`bundle install --path path/to/install`.
|
701
|
+
- `bundle install --system` installs to the default system
|
702
|
+
location ($BUNDLE_PATH or $GEM_HOME) even if you previously
|
703
|
+
used `bundle install --path`
|
704
|
+
- completely remove `--disable-shared-gems`. If you install to
|
705
|
+
system, you will not be isolated, while if you install to
|
706
|
+
another path, you will be isolated from gems installed to
|
707
|
+
the system. This was mostly an internal option whose naming
|
708
|
+
and semantics were extremely confusing.
|
709
|
+
- Add a `--production` option to `bundle install`:
|
710
|
+
- by default, installs to `vendor/bundle`. This can be
|
711
|
+
overridden with the `--path` option
|
712
|
+
- uses `--local` if `vendor/cache` is found. This will
|
713
|
+
guarantee that Bundler does not attempt to connect to
|
714
|
+
Rubygems and will use the gems cached in `vendor/cache`
|
715
|
+
instead
|
716
|
+
- Raises an exception if a Gemfile.lock is not found
|
717
|
+
- Raises an exception if you modify your Gemfile in development
|
718
|
+
but do not check in an updated Gemfile.lock
|
719
|
+
- Fixes a bug where switching a source from Rubygems to git
|
720
|
+
would always say "the git source is not checked out" when
|
721
|
+
running `bundle install`
|
722
|
+
|
723
|
+
NOTE: We received several reports of "the git source has not
|
724
|
+
been checked out. Please run bundle install". As far as we
|
725
|
+
can tell, these problems have two possible causes:
|
726
|
+
|
727
|
+
1. `bundle install ~/.bundle` in one user, but actually running
|
728
|
+
the application as another user. Never install gems to a
|
729
|
+
directory scoped to a user (`~` or `$HOME`) in deployment.
|
730
|
+
2. A bug that happened when changing a gem to a git source.
|
731
|
+
|
732
|
+
To mitigate several common causes of `(1)`, please use the
|
733
|
+
new `--production` flag. This flag is simply a roll-up of
|
734
|
+
the best practices we have been encouraging people to use
|
735
|
+
for deployment.
|
736
|
+
|
737
|
+
If you want to share gems across deployments, and you use
|
738
|
+
Capistrano, symlink release_path/current/vendor/bundle to
|
739
|
+
release_path/shared/bundle. This will keep deployments
|
740
|
+
snappy while maintaining the benefits of clean, deploy-time
|
741
|
+
isolation.
|
742
|
+
|
743
|
+
## 1.0.0.rc.1 (July 26, 2010)
|
744
|
+
|
745
|
+
- Fixed a bug with `bundle install` on multiple machines and git
|
746
|
+
|
747
|
+
## 1.0.0.beta.10 (July 25, 2010)
|
748
|
+
|
749
|
+
- Last release before 1.0.0.rc.1
|
750
|
+
- Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
|
751
|
+
- Fix `bundle install` immediately after modifying the :submodule option
|
752
|
+
- Don't write to Gemfile.lock if nothing has changed, fixing situations
|
753
|
+
where bundle install was run with a different user than the app
|
754
|
+
itself
|
755
|
+
- Fix a bug where other platforms were being wiped on `bundle update`
|
756
|
+
- Don't ask for root password on `bundle install` if not needed
|
757
|
+
- Avoid setting `$GEM_HOME` where not needed
|
758
|
+
- First solid pass of `bundle config`
|
759
|
+
- Add build options
|
760
|
+
- `bundle config build.mysql --with-mysql-config=/path/to/config`
|
761
|
+
|
762
|
+
## 1.0.0.beta.9 (July 21, 2010)
|
763
|
+
|
764
|
+
- Fix install failure when switching from a path to git source
|
765
|
+
- Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
|
766
|
+
- Fix `bundle *` from inside a bundle with --disable-shared-gem
|
767
|
+
- Shim Gem.refresh. This is used by Unicorn
|
768
|
+
- Fix install failure when a path's dependencies changed
|
769
|
+
|
770
|
+
## 1.0.0.beta.8 (July 20, 2010)
|
771
|
+
|
772
|
+
- Fix a Beta 7 bug involving Ruby 1.9
|
773
|
+
|
774
|
+
## 1.0.0.beta.7 (July 20, 2010, yanked)
|
775
|
+
|
776
|
+
- Running `bundle install` twice in a row with a git source always crashed
|
777
|
+
|
778
|
+
## 1.0.0.beta.6 (July 20, 2010, yanked)
|
779
|
+
|
780
|
+
- Create executables with bundle install --binstubs
|
781
|
+
- You can customize the location (default is app/bin) with --binstubs other/location
|
782
|
+
- Fix a bug where the Gemfile.lock would be deleted even if the update was exited
|
783
|
+
- Fix a bug where cached gems for other platforms were sometimes deleted
|
784
|
+
- Clean up output when nothing was deleted from cache (it previously said
|
785
|
+
"Removing outdated gems ...")
|
786
|
+
- Improve performance of bundle install if the git gem was already checked out,
|
787
|
+
and the revision being used already exists locally
|
788
|
+
- Fix bundle show bundler in some cases
|
789
|
+
- Fix bugs with bundle update
|
790
|
+
- Don't ever run git commands at runtime (fixes a number of common passenger issues)
|
791
|
+
- Fixes an obscure bug where switching the source of a gem could fail to correctly
|
792
|
+
change the source of its dependencies
|
793
|
+
- Support multiple version dependencies in the Gemfile
|
794
|
+
(gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
|
795
|
+
- Raise an exception for ambiguous uses of multiple declarations of the same gem
|
796
|
+
(for instance, with different versions or sources).
|
797
|
+
- Fix cases where the same dependency appeared several times in the Gemfile.lock
|
798
|
+
- Fix a bug where require errors were being swallowed during Bundler.require
|
799
|
+
|
800
|
+
## 1.0.0.beta.1
|
801
|
+
|
802
|
+
- No `bundle lock` command. Locking happens automatically on install or update
|
803
|
+
- No .bundle/environment.rb. Require 'bundler/setup' instead.
|
804
|
+
- $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
|
805
|
+
- Remove lockfiles generated by 0.9
|
806
|
+
|
807
|
+
## 0.9.26
|
808
|
+
|
809
|
+
Features:
|
810
|
+
|
811
|
+
- error nicely on incompatible 0.10 lockfiles
|
812
|
+
|
813
|
+
## 0.9.25 (May 3, 2010)
|
814
|
+
|
815
|
+
Bugfixes:
|
816
|
+
|
817
|
+
- explicitly coerce Pathname objects to Strings for Ruby 1.9
|
818
|
+
- fix some newline weirdness in output from install command
|
819
|
+
|
820
|
+
## 0.9.24 (April 22, 2010)
|
821
|
+
|
822
|
+
Features:
|
823
|
+
|
824
|
+
- fetch submodules for git sources
|
825
|
+
- limit the bundled version of bundler to the same as the one installing
|
826
|
+
- force relative paths in git gemspecs to avoid raising Gem::NameTooLong
|
827
|
+
- serialize GemCache sources correctly, so locking works
|
828
|
+
- raise Bundler::GemNotFound instead of calling exit! inside library code
|
829
|
+
- Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
|
830
|
+
|
831
|
+
Bugfixes:
|
832
|
+
|
833
|
+
- don't try to regenerate environment.rb if it is read-only
|
834
|
+
- prune outdated gems with the platform "ruby"
|
835
|
+
- prune cache without errors when there are directories or non-gem files
|
836
|
+
- don't re-write environment.rb if running after it has been loaded
|
837
|
+
- do not monkeypatch Specification#load_paths twice when inside a bundle
|
838
|
+
|
839
|
+
## 0.9.23 (April 20, 2010)
|
840
|
+
|
841
|
+
Bugfixes:
|
842
|
+
|
843
|
+
- cache command no longer prunes gems created by an older rubygems version
|
844
|
+
- cache command no longer prunes gems that are for other platforms
|
845
|
+
|
846
|
+
## 0.9.22 (April 20, 2010)
|
847
|
+
|
848
|
+
Features:
|
849
|
+
|
850
|
+
- cache command now prunes stale .gem files from vendor/cache
|
851
|
+
- init --gemspec command now generates development dependencies
|
852
|
+
- handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
|
853
|
+
- remove .gem files generated after installing a gem from a :path (#286)
|
854
|
+
- improve install/lock messaging (#284)
|
855
|
+
|
856
|
+
Bugfixes:
|
857
|
+
|
858
|
+
- ignore cached gems that are for another platform (#288)
|
859
|
+
- install Windows gems that have no architecture set, like rcov (#277)
|
860
|
+
- exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
|
861
|
+
- fix the `rake install` task
|
862
|
+
- add GemspecError so it can be raised without (further) error (#292)
|
863
|
+
- create a parent directory before cloning for git 1.5 compatibility (#285)
|
864
|
+
|
865
|
+
## 0.9.21 (April 16, 2010)
|
866
|
+
|
867
|
+
Bugfixes:
|
868
|
+
|
869
|
+
- don't raise 'omg wtf' when lockfile is outdated
|
870
|
+
|
871
|
+
## 0.9.20 (April 15, 2010)
|
872
|
+
|
873
|
+
Features:
|
874
|
+
|
875
|
+
- load YAML format gemspecs
|
876
|
+
- no backtraces when calling Bundler.setup if gems are missing
|
877
|
+
- no backtraces when trying to exec a file without the executable bit
|
878
|
+
|
879
|
+
Bugfixes:
|
880
|
+
|
881
|
+
- fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
|
882
|
+
- request install instead of lock when env.rb is out of sync with Gemfile.lock
|
883
|
+
|
884
|
+
## 0.9.19 (April 12, 2010)
|
885
|
+
|
886
|
+
Features:
|
887
|
+
|
888
|
+
- suggest `bundle install --relock` when the Gemfile has changed (#272)
|
889
|
+
- source support for Rubygems servers without prerelease gem indexes (#262)
|
890
|
+
|
891
|
+
Bugfixes:
|
892
|
+
|
893
|
+
- don't set up all groups every time Bundler.setup is called while locked (#263)
|
894
|
+
- fix #full_gem_path for git gems while locked (#268)
|
895
|
+
- eval gemspecs at the top level, not inside the Bundler class (#269)
|
896
|
+
|
897
|
+
|
898
|
+
## 0.9.18 (April 8, 2010)
|
899
|
+
|
900
|
+
Features:
|
901
|
+
|
902
|
+
- console command that runs irb with bundle (and optional group) already loaded
|
903
|
+
|
904
|
+
Bugfixes:
|
905
|
+
|
906
|
+
- Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
|
907
|
+
- fixes Yard, which found plugins in Gem.source_index that it could not load
|
908
|
+
- makes behaviour of `Bundler.require` consistent between locked and unlocked loads
|
909
|
+
|
910
|
+
## 0.9.17 (April 7, 2010)
|
911
|
+
|
912
|
+
Features:
|
913
|
+
|
914
|
+
- Bundler.require now calls Bundler.setup automatically
|
915
|
+
- Gem::Specification#add_bundler_dependencies added for gemspecs
|
916
|
+
|
917
|
+
Bugfixes:
|
918
|
+
|
919
|
+
- Gem paths are not longer duplicated while loading bundler
|
920
|
+
- exec no longer duplicates RUBYOPT if it is already set correctly
|
921
|
+
|
922
|
+
## 0.9.16 (April 3, 2010)
|
923
|
+
|
924
|
+
Features:
|
925
|
+
|
926
|
+
- exit gracefully on INT signal
|
927
|
+
- resolver output now indicates whether remote sources were checked
|
928
|
+
- print error instead of backtrace when exec cannot find a binary (#241)
|
929
|
+
|
930
|
+
Bugfixes:
|
931
|
+
|
932
|
+
- show, check, and open commands work again while locked (oops)
|
933
|
+
- show command for git gems
|
934
|
+
- outputs branch names other than master
|
935
|
+
- gets the correct sha from the checkout
|
936
|
+
- doesn't print sha twice if :ref is set
|
937
|
+
- report errors from bundler/setup.rb without backtraces (#243)
|
938
|
+
- fix Gem::Spec#git_version to not error on unloaded specs
|
939
|
+
- improve deprecation, Gemfile, and command error messages (#242)
|
940
|
+
|
941
|
+
## 0.9.15 (April 1, 2010)
|
942
|
+
|
943
|
+
Features:
|
944
|
+
|
945
|
+
- use the env_file if possible instead of doing a runtime resolve
|
946
|
+
- huge speedup when calling Bundler.setup while locked
|
947
|
+
- ensures bundle exec is fast while locked
|
948
|
+
- regenerates env_file if it was generated by an older version
|
949
|
+
- update cached/packed gems when you update gems via bundle install
|
950
|
+
|
951
|
+
Bugfixes:
|
952
|
+
|
953
|
+
- prep for Rubygems 1.3.7 changes
|
954
|
+
- install command now pulls git branches correctly (#211)
|
955
|
+
- raise errors on invalid options in the Gemfile
|
956
|
+
|
957
|
+
## 0.9.14 (March 30, 2010)
|
958
|
+
|
959
|
+
Features:
|
960
|
+
|
961
|
+
- install command output vastly improved
|
962
|
+
- installation message now accurate, with 'using' and 'installing'
|
963
|
+
- bundler gems no longer listed as 'system gems'
|
964
|
+
- show command output now includes sha and branch name for git gems
|
965
|
+
- init command now takes --gemspec option for bootstrapping gem Gemfiles
|
966
|
+
- Bundler.with_clean_env for shelling out to ruby scripts
|
967
|
+
- show command now aliased as 'list'
|
968
|
+
- VISUAL env var respected for GUI editors
|
969
|
+
|
970
|
+
Bugfixes:
|
971
|
+
|
972
|
+
- exec command now finds binaries from gems with no gemspec
|
973
|
+
- note source of Gemfile resolver errors
|
974
|
+
- don't blow up if git urls are changed
|
975
|
+
|
976
|
+
## 0.9.13 (March 23, 2010)
|
977
|
+
|
978
|
+
Bugfixes:
|
979
|
+
|
980
|
+
- exec command now finds binaries from gems installed via :path
|
981
|
+
- gem dependencies are pulled in even if their type is nil
|
982
|
+
- paths with spaces have double-quotes to work on Windows
|
983
|
+
- set GEM_PATH in environment.rb so generators work with Rails 2
|
984
|
+
|
985
|
+
## 0.9.12 (March 17, 2010)
|
986
|
+
|
987
|
+
- refactoring, internal cleanup, more solid specs
|
988
|
+
|
989
|
+
Features:
|
990
|
+
|
991
|
+
- check command takes a --without option
|
992
|
+
- check command exits 1 if the check fails
|
993
|
+
|
994
|
+
Bugfixes:
|
995
|
+
|
996
|
+
- perform a topological sort on resolved gems (#191)
|
997
|
+
- gems from git work even when paths or repos have spaces (#196)
|
998
|
+
- Specification#loaded_from returns a String, like Gem::Specification (#197)
|
999
|
+
- specs eval from inside the gem directory, even when locked
|
1000
|
+
- virtual gemspecs are now saved in environment.rb for use when loading
|
1001
|
+
- unify the Installer's local index and the runtime index (#204)
|
1002
|
+
|
1003
|
+
## 0.9.11 (March 9, 2010)
|
1004
|
+
|
1005
|
+
- added roadmap with future development plans
|
1006
|
+
|
1007
|
+
Features:
|
1008
|
+
|
1009
|
+
- install command can take the path to the gemfile with --gemfile (#125)
|
1010
|
+
- unknown command line options are now rejected (#163)
|
1011
|
+
- exec command hugely sped up while locked (#177)
|
1012
|
+
- show command prints the install path if you pass it a gem name (#148)
|
1013
|
+
- open command edits an installed gem with $EDITOR (#148)
|
1014
|
+
- Gemfile allows assigning an array of groups to a gem (#114)
|
1015
|
+
- Gemfile allows :tag option on :git sources
|
1016
|
+
- improve backtraces when a gemspec is invalid
|
1017
|
+
- improve performance by installing gems from the cache if present
|
1018
|
+
|
1019
|
+
Bugfixes:
|
1020
|
+
|
1021
|
+
- normalize parameters to Bundler.require (#153)
|
1022
|
+
- check now checks installed gems rather than cached gems (#162)
|
1023
|
+
- don't update the gem index when installing after locking (#169)
|
1024
|
+
- bundle parenthesises arguments for 1.8.6 (#179)
|
1025
|
+
- gems can now be assigned to multiple groups without problems (#135)
|
1026
|
+
- fix the warning when building extensions for a gem from git with Rubygems 1.3.6
|
1027
|
+
- fix a Dependency.to_yaml error due to accidentally including sources and groups
|
1028
|
+
- don't reinstall packed gems
|
1029
|
+
- fix gems with git sources that are private repositories
|
1030
|
+
|
1031
|
+
## 0.9.10 (March 1, 2010)
|
1032
|
+
|
1033
|
+
- depends on Rubygems 1.3.6
|
1034
|
+
|
1035
|
+
Bugfixes:
|
1036
|
+
|
1037
|
+
- support locking after install --without
|
1038
|
+
- don't reinstall gems from the cache if they're already in the bundle
|
1039
|
+
- fixes for Ruby 1.8.7 and 1.9
|
1040
|
+
|
1041
|
+
## 0.9.9 (February 25, 2010)
|
1042
|
+
|
1043
|
+
Bugfixes:
|
1044
|
+
|
1045
|
+
- don't die if GEM_HOME is an empty string
|
1046
|
+
- fixes for Ruby 1.8.6 and 1.9
|
1047
|
+
|
1048
|
+
## 0.9.8 (February 23, 2010)
|
1049
|
+
|
1050
|
+
Features:
|
1051
|
+
|
1052
|
+
- pack command which both caches and locks
|
1053
|
+
- descriptive error if a cached gem is missing
|
1054
|
+
- remember the --without option after installing
|
1055
|
+
- expand paths given in the Gemfile via the :path option
|
1056
|
+
- add block syntax to the git and group options in the Gemfile
|
1057
|
+
- support gems with extensions that don't admit they depend on rake
|
1058
|
+
- generate gems using gem build gemspec so git gems can have native extensions
|
1059
|
+
- print a useful warning if building a gem fails
|
1060
|
+
- allow manual configuration via BUNDLE_PATH
|
1061
|
+
|
1062
|
+
Bugfixes:
|
1063
|
+
|
1064
|
+
- eval gemspecs in the gem directory so relative paths work
|
1065
|
+
- make default spec for git sources valid
|
1066
|
+
- don't reinstall gems that are already packed
|
1067
|
+
|
1068
|
+
## 0.9.7 (February 17, 2010)
|
1069
|
+
|
1070
|
+
Bugfixes:
|
1071
|
+
|
1072
|
+
- don't say that a gem from an excluded group is "installing"
|
1073
|
+
- improve crippling rubygems in locked scenarios
|
1074
|
+
|
1075
|
+
## 0.9.6 (February 16, 2010)
|
1076
|
+
|
1077
|
+
Features:
|
1078
|
+
|
1079
|
+
- allow String group names
|
1080
|
+
- a number of improvements in the documentation and error messages
|
1081
|
+
|
1082
|
+
Bugfixes:
|
1083
|
+
|
1084
|
+
- set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
|
1085
|
+
- ensure Rubygems is fully loaded in Ruby 1.9 before patching it
|
1086
|
+
- fix `bundle install` for a locked app without a .bundle directory
|
1087
|
+
- require gems in the order that the resolver determines
|
1088
|
+
- make the tests platform agnostic so we can confirm that they're green on JRuby
|
1089
|
+
- fixes for Ruby 1.9
|
1090
|
+
|
1091
|
+
## 0.9.5 (Feburary 12, 2010)
|
1092
|
+
|
1093
|
+
Features:
|
1094
|
+
|
1095
|
+
- added support for :path => "relative/path"
|
1096
|
+
- added support for older versions of git
|
1097
|
+
- added `bundle install --disable-shared-gems`
|
1098
|
+
- Bundler.require fails silently if a library does not have a file on the load path with its name
|
1099
|
+
- Basic support for multiple rubies by namespacing the default bundle path using the version and engine
|
1100
|
+
|
1101
|
+
Bugfixes:
|
1102
|
+
|
1103
|
+
- if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
|
1104
|
+
- same if it's not present with `bundle check`
|
1105
|
+
- same if it's not present with `bundle install`
|