<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/spec/bundler/cache/git_spec.rb, branch v3_4_9</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Merge RubyGems-3.6.6 and Bundler-2.6.6</title>
<updated>2025-04-09T00:54:29+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2025-04-09T00:19:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=db2bf9f078c21b9e0234a736214ed74642d9f795'/>
<id>db2bf9f078c21b9e0234a736214ed74642d9f795</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge RubyGems-3.6.3 and Bundler-2.6.3</title>
<updated>2025-02-21T00:50:20+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2025-02-21T00:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=19c69f382baa13cac3bf36b861067bdc424e1be1'/>
<id>19c69f382baa13cac3bf36b861067bdc424e1be1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
<entry>
<title>[rubygems/rubygems] Ensure refs directory in cached git source</title>
<updated>2024-09-23T10:49:21+00:00</updated>
<author>
<name>Daniel Colson</name>
<email>danieljamescolson@gmail.com</email>
</author>
<published>2024-09-19T18:48:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=d0925c075b5c9de9702adf1949f77faf8fbfc3b8'/>
<id>d0925c075b5c9de9702adf1949f77faf8fbfc3b8</id>
<content type='text'>
See https://github.com/rubygems/rubygems/issues/8046 for details

Prior to this commit a cached git source without a specific ref wouldn't
survive pushing to a remote and then pulling on a different machine.
We'd end up without a refs directory in the cache, at which point git
won't recognize it as a repo.

This commit fixes the problem by adding a refs directory if it's not
already there. This needs to be done as early as possible, so any git
commands will work as expected, so this commit adds it before creating
the app cached git proxy.

https://github.com/rubygems/rubygems/commit/8c89f0b065
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://github.com/rubygems/rubygems/issues/8046 for details

Prior to this commit a cached git source without a specific ref wouldn't
survive pushing to a remote and then pulling on a different machine.
We'd end up without a refs directory in the cache, at which point git
won't recognize it as a repo.

This commit fixes the problem by adding a refs directory if it's not
already there. This needs to be done as early as possible, so any git
commands will work as expected, so this commit adds it before creating
the app cached git proxy.

https://github.com/rubygems/rubygems/commit/8c89f0b065
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Don't include hook templates in cached git source</title>
<updated>2024-09-09T11:59:52+00:00</updated>
<author>
<name>Daniel Colson</name>
<email>danieljamescolson@gmail.com</email>
</author>
<published>2024-09-06T17:10:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=966901b39dd7b37eec68dd6e8a76a79827dc522f'/>
<id>966901b39dd7b37eec68dd6e8a76a79827dc522f</id>
<content type='text'>
With a default git setup, each cloned repo in the cache will end up with
~60K of sample git hooks. These files all end in `.sample`, and they are
disabled by default. Deleting them should be a no-op, and makes the
cache a bit smaller.

https://github.com/rubygems/rubygems/commit/d2149999cd
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With a default git setup, each cloned repo in the cache will end up with
~60K of sample git hooks. These files all end in `.sample`, and they are
disabled by default. Deleting them should be a no-op, and makes the
cache a bit smaller.

https://github.com/rubygems/rubygems/commit/d2149999cd
</pre>
</div>
</content>
</entry>
<entry>
<title>bundle install with git repo needs to be run under the git environment</title>
<updated>2024-08-26T10:36:04+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-08-26T09:44:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=03475e5533551f4e65d3fab901dde7187865ef3a'/>
<id>03475e5533551f4e65d3fab901dde7187865ef3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Regeneration previous git application caches that didn't include bare repos</title>
<updated>2024-08-21T12:06:28+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2024-08-07T19:14:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=54b6025887f46b5317c6917fe8c5d630013f923a'/>
<id>54b6025887f46b5317c6917fe8c5d630013f923a</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/417319ecb1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/417319ecb1
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Remove some `file_uri_for` calls</title>
<updated>2024-07-31T20:03:18+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2024-07-31T14:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=290089c1a22dc9f75b8a3c606687b5d658b0c56b'/>
<id>290089c1a22dc9f75b8a3c606687b5d658b0c56b</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/3570ba20ed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/3570ba20ed
</pre>
</div>
</content>
</entry>
</feed>
