<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/bundler/gem_helper.rb, branch v4.0.4</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[rubygems/rubygems] Fix typo in description of build:checksum task</title>
<updated>2024-05-26T21:42:45+00:00</updated>
<author>
<name>Marcus Stollsteimer</name>
<email>sto.mar@web.de</email>
</author>
<published>2024-05-26T12:36:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=4949f0a928da079b07c73a5eccfdde0cb121ca1e'/>
<id>4949f0a928da079b07c73a5eccfdde0cb121ca1e</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/351ff2512f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/351ff2512f
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Use modern hashes consistently</title>
<updated>2023-12-07T22:29:33+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2023-12-07T21:10:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2755cb1b2fbc4a5f08ca56345b5945bd452da74e'/>
<id>2755cb1b2fbc4a5f08ca56345b5945bd452da74e</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/bb66253f2c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/bb66253f2c
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge RubyGems/Bundler master</title>
<updated>2022-12-26T06:09:21+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-12-26T05:00:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b7ad60a79440f65cf883d3ff9dbdde701666ef56'/>
<id>b7ad60a79440f65cf883d3ff9dbdde701666ef56</id>
<content type='text'>
  from https://github.com/rubygems/rubygems/commit/72fd3dd2096af16d797ad0cd8e0d2a8869e240b3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  from https://github.com/rubygems/rubygems/commit/72fd3dd2096af16d797ad0cd8e0d2a8869e240b3
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Append a newline to the checksum file</title>
<updated>2022-01-04T05:59:17+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-01-03T15:56:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8f9623741a2cfe8d26af44c3a4f13dffc88fe834'/>
<id>8f9623741a2cfe8d26af44c3a4f13dffc88fe834</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/48ea2778e9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/48ea2778e9
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Fix checksum</title>
<updated>2022-01-04T05:59:16+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-01-03T15:24:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c2e8e1f6a43b867c8e08efa55467bcabd0f6ab6b'/>
<id>c2e8e1f6a43b867c8e08efa55467bcabd0f6ab6b</id>
<content type='text'>
Calculate the checksum of the content, not the given pathname at
the build time itself.

https://github.com/rubygems/rubygems/commit/b60ee97ee9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Calculate the checksum of the content, not the given pathname at
the build time itself.

https://github.com/rubygems/rubygems/commit/b60ee97ee9
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Use `shellsplit` instead of array of strings</title>
<updated>2021-11-09T01:56:17+00:00</updated>
<author>
<name>Nicholas Lee</name>
<email>nicholas.lee@appfolio.com</email>
</author>
<published>2021-11-08T23:52:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=d7432fdee585257686f381a5cf04ea53847bd6b8'/>
<id>d7432fdee585257686f381a5cf04ea53847bd6b8</id>
<content type='text'>
Previously, the command string to be used for the shell command
was first generated and then split using shellsplit. This change
reverts the current behavior as it breaks if the value of remote
contains a space.

https://github.com/rubygems/rubygems/commit/6649ee10b0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the command string to be used for the shell command
was first generated and then split using shellsplit. This change
reverts the current behavior as it breaks if the value of remote
contains a space.

https://github.com/rubygems/rubygems/commit/6649ee10b0
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Vendor a pure ruby implementation of SHA1</title>
<updated>2021-10-25T11:24:32+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2021-10-18T08:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5af3f7f3574c16ec76fb44b21beec17a74f4417a'/>
<id>5af3f7f3574c16ec76fb44b21beec17a74f4417a</id>
<content type='text'>
This allows `Source::Git` to no longer load the `digest` gem as it is causing
issues on Ruby 3.1.

https://github.com/rubygems/rubygems/pull/4989/commits/c19a9f2ff7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows `Source::Git` to no longer load the `digest` gem as it is causing
issues on Ruby 3.1.

https://github.com/rubygems/rubygems/pull/4989/commits/c19a9f2ff7
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Remove unnecessary method</title>
<updated>2021-10-13T14:30:13+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2021-08-26T11:00:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=058cd3a6dfab3b357e001a44456889d72b099a18'/>
<id>058cd3a6dfab3b357e001a44456889d72b099a18</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/97241e0ea4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/97241e0ea4
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Reuse `sh` helper for `git push` too</title>
<updated>2021-10-13T14:30:13+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2021-08-26T10:57:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=621fe09016b06ee8bfb05511416e7138a24b3b37'/>
<id>621fe09016b06ee8bfb05511416e7138a24b3b37</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/32aa540163
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/32aa540163
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Simplify some code</title>
<updated>2021-10-13T14:30:12+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2021-08-25T12:49:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=df21600b98dfe58528e1ace9961b8eb6bbad5b46'/>
<id>df21600b98dfe58528e1ace9961b8eb6bbad5b46</id>
<content type='text'>
This method always receives an array, and we require `shellwords`
unconditionally at the top of the file, so `shelljoin` will always be
available.

https://github.com/rubygems/rubygems/commit/05c8ac641d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This method always receives an array, and we require `shellwords`
unconditionally at the top of the file, so `shelljoin` will always be
available.

https://github.com/rubygems/rubygems/commit/05c8ac641d
</pre>
</div>
</content>
</entry>
</feed>
