<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/spec/bundler/cache/git_spec.rb, branch v4.0.3</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/rubygems] Fix triple spacing when generating lockfile</title>
<updated>2025-11-14T00:19:56+00:00</updated>
<author>
<name>Jimmy Lin</name>
<email>jmlntw@gmail.com</email>
</author>
<published>2021-09-05T11:38:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5924765b897dd419bcaf81f34cdfcb49c838af7e'/>
<id>5924765b897dd419bcaf81f34cdfcb49c838af7e</id>
<content type='text'>
https://github.com/ruby/rubygems/commit/d3baf4110e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rubygems/commit/d3baf4110e
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Switch `cache_all` to be `true` by default</title>
<updated>2025-09-19T10:30:10+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>2887858+deivid-rodriguez@users.noreply.github.com</email>
</author>
<published>2025-09-09T17:19:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a4c277733b10ff1ad484689c1a256032c39cea87'/>
<id>a4c277733b10ff1ad484689c1a256032c39cea87</id>
<content type='text'>
And make it a standard setting.

https://github.com/rubygems/rubygems/commit/17e356fa94
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And make it a standard setting.

https://github.com/rubygems/rubygems/commit/17e356fa94
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Build bundler gem just once for specs</title>
<updated>2025-07-25T02:10:37+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2025-07-23T18:09:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e67f595e8f3f76f20d7a6b9fd0498ff7b641391c'/>
<id>e67f595e8f3f76f20d7a6b9fd0498ff7b641391c</id>
<content type='text'>
When we need to reset system gems during specs, there's no need to
rebuild bundler, we can copy over the original gem home.

https://github.com/rubygems/rubygems/commit/7b4f80747b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When we need to reset system gems during specs, there's no need to
rebuild bundler, we can copy over the original gem home.

https://github.com/rubygems/rubygems/commit/7b4f80747b
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Update some reference to Bundler 3 to Bundler 4</title>
<updated>2025-06-30T03:56:50+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2025-06-27T10:07:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=d6bfb73fb6829501fe90f82f39e824282d245f2e'/>
<id>d6bfb73fb6829501fe90f82f39e824282d245f2e</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/53174e0aa6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/53174e0aa6
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Prefer `FileUtils.rm_r` to `FileUtils.rm_rf` for specs</title>
<updated>2025-03-12T09:02:09+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2025-03-07T20:35:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=51958bae66df026823fff159dd7513daf74f5727'/>
<id>51958bae66df026823fff159dd7513daf74f5727</id>
<content type='text'>
Because it does not swallow errors if it fails to remove the given
folders, making issues easier to debug.

https://github.com/rubygems/rubygems/commit/0db12d7afc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because it does not swallow errors if it fails to remove the given
folders, making issues easier to debug.

https://github.com/rubygems/rubygems/commit/0db12d7afc
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Refactor specs to not try to remove folders that don't exist</title>
<updated>2025-03-12T09:02:09+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2025-03-07T19:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f656d34f103d9cc53259239d164ffa86d4117f9c'/>
<id>f656d34f103d9cc53259239d164ffa86d4117f9c</id>
<content type='text'>
This has the following benefits:

* Avoid duplicated work in some specs that first build a repo, and then
  overwrite it with a completely different set of gems.
* Reduce RSpec nesting and improve readability.
* The change also made surfaces several specs that were incorrect since
  they were unintentionally not testing the right thing.

https://github.com/rubygems/rubygems/commit/ed430883e0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This has the following benefits:

* Avoid duplicated work in some specs that first build a repo, and then
  overwrite it with a completely different set of gems.
* Reduce RSpec nesting and improve readability.
* The change also made surfaces several specs that were incorrect since
  they were unintentionally not testing the right thing.

https://github.com/rubygems/rubygems/commit/ed430883e0
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] re-add removed pre-evaluated gemspec test</title>
<updated>2025-01-14T03:24:37+00:00</updated>
<author>
<name>Joshua.LeBlanc</name>
<email>jleblanc@omics.com</email>
</author>
<published>2025-01-10T17:59:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a0e2ed21011ae82cfbd1c17bffe8947375fe6c35'/>
<id>a0e2ed21011ae82cfbd1c17bffe8947375fe6c35</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/b73ee4059b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/b73ee4059b
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Backwards compatibility for 2.5.17-2.5.23 caches</title>
<updated>2024-11-29T15:27:40+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2024-11-26T18:46:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ee7ff4a12b9eefaeced9b6da52f7b21317ab595c'/>
<id>ee7ff4a12b9eefaeced9b6da52f7b21317ab595c</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/9dbfce76cf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/9dbfce76cf
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Restore previous application cache format for git sources</title>
<updated>2024-11-29T15:27:39+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2024-11-22T10:14:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9a4d91fa9507d981a02595d1760628f74396feec'/>
<id>9a4d91fa9507d981a02595d1760628f74396feec</id>
<content type='text'>
And make sure `bundle install --local` can install from it without git.

https://github.com/rubygems/rubygems/commit/7d6b631620
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And make sure `bundle install --local` can install from it without git.

https://github.com/rubygems/rubygems/commit/7d6b631620
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] I _think_ this workaround is no longer necessary</title>
<updated>2024-09-30T05:08:25+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2024-09-26T16:44:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=dbe69a466f71b5f0e4057d48e13686914ffcec32'/>
<id>dbe69a466f71b5f0e4057d48e13686914ffcec32</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/6a76fedfd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/6a76fedfd0
</pre>
</div>
</content>
</entry>
</feed>
