<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/bundler/templates, branch v3_3_11</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.5.18 and Bundler-2.5.18</title>
<updated>2024-09-25T17:56:17+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-09-25T07:53:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ef3c4a7aa7c0a79a00f4daa50e0be1184d9fe536'/>
<id>ef3c4a7aa7c0a79a00f4daa50e0be1184d9fe536</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.5.11 and Bundler 2.5.11 for Ruby 3.3 (#10870)</title>
<updated>2024-06-05T04:36:46+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-06-05T04:36:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=06f470ce66be24f82d3720dd2bb08b18b16753ac'/>
<id>06f470ce66be24f82d3720dd2bb08b18b16753ac</id>
<content type='text'>
Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Merge RubyGems 3.5.9 and Bundler 2.5.9 (Fixed CI at Ruby 3.3) (#10348)</title>
<updated>2024-04-16T02:22:22+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-04-16T02:22:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7227b859a7bf7626ee73de8130796657b7c7f3b5'/>
<id>7227b859a7bf7626ee73de8130796657b7c7f3b5</id>
<content type='text'>
* Merge RubyGems-3.5.6 and Bundler-2.5.6

* Merge RubyGems-3.5.7 and Bundler-2.5.7

* Merge RubyGems-3.5.8 and Bundler-2.5.8

* Partly reverted about https://github.com/rubygems/rubygems/pull/7483

* Merge RubyGems-3.5.9 and Bundler-2.5.9</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Merge RubyGems-3.5.6 and Bundler-2.5.6

* Merge RubyGems-3.5.7 and Bundler-2.5.7

* Merge RubyGems-3.5.8 and Bundler-2.5.8

* Partly reverted about https://github.com/rubygems/rubygems/pull/7483

* Merge RubyGems-3.5.9 and Bundler-2.5.9</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Use match? when regexp match data is unused</title>
<updated>2023-12-13T22:00:26+00:00</updated>
<author>
<name>Samuel Giddins</name>
<email>segiddins@segiddins.me</email>
</author>
<published>2023-12-13T11:46:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=baf2ec2ca8127cd610a3681a1e84ebcb404fe8f2'/>
<id>baf2ec2ca8127cd610a3681a1e84ebcb404fe8f2</id>
<content type='text'>
Improved performance / reduced allocations

https://github.com/rubygems/rubygems/commit/b04726c9a7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Improved performance / reduced allocations

https://github.com/rubygems/rubygems/commit/b04726c9a7
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Use `Minitest::TestTask` in a template file for `minitest`</title>
<updated>2023-12-08T03:25:43+00:00</updated>
<author>
<name>Yuji Yaginuma</name>
<email>yuuji.yaginuma@gmail.com</email>
</author>
<published>2023-12-08T02:10:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8bb90f4d771d287644a3cf21bdda26c637f091e2'/>
<id>8bb90f4d771d287644a3cf21bdda26c637f091e2</id>
<content type='text'>
`minitest` has introduced a rake task for running test on 5.16.0.
https://github.com/minitest/minitest/blob/master/History.rdoc#5160--2022-06-14-

This has some tasks related to running tests and it's useful for
`minitest` user I think.
https://github.com/minitest/minitest#rake-tasks-

This PR changed to use the task in a template file for `minitest`

https://github.com/rubygems/rubygems/commit/7a86d13062
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`minitest` has introduced a rake task for running test on 5.16.0.
https://github.com/minitest/minitest/blob/master/History.rdoc#5160--2022-06-14-

This has some tasks related to running tests and it's useful for
`minitest` user I think.
https://github.com/minitest/minitest#rake-tasks-

This PR changed to use the task in a template file for `minitest`

https://github.com/rubygems/rubygems/commit/7a86d13062
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] update Magnus library in Rust extension gem template</title>
<updated>2023-11-29T02:21:38+00:00</updated>
<author>
<name>Michael Go</name>
<email>michael.go@shopify.com</email>
</author>
<published>2023-11-28T15:37:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bd2b6b702cf43fb25562bdf8b1929d06ed3fcd98'/>
<id>bd2b6b702cf43fb25562bdf8b1929d06ed3fcd98</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/46f09800da
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/46f09800da
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Handle CI configuration on ignore list for Gem::Specification#files</title>
<updated>2023-10-25T00:46:09+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2023-10-24T12:07:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c5861903ac5f89cafb131400835b2e3b207ba928'/>
<id>c5861903ac5f89cafb131400835b2e3b207ba928</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/4bb0ef3e55
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/4bb0ef3e55
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Include gemspec in ExtensionTask for native gem tasks</title>
<updated>2023-10-02T01:34:01+00:00</updated>
<author>
<name>Graham Marlow</name>
<email>graham@onesignal.com</email>
</author>
<published>2023-09-29T16:37:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f3aea74c3d63a9b1e0f597b060bf84c14d1c70fc'/>
<id>f3aea74c3d63a9b1e0f597b060bf84c14d1c70fc</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/042cfb7007
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/042cfb7007
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Bump actions/checkout to v4 in bundler gem template</title>
<updated>2023-09-19T01:06:35+00:00</updated>
<author>
<name>Yoshiki Takagi</name>
<email>yoshiki.tkg@gmail.com</email>
</author>
<published>2023-09-16T07:24:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=465c222ef125a93b1cd457d18e70a7d58454f628'/>
<id>465c222ef125a93b1cd457d18e70a7d58454f628</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/5ed4c600da
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/5ed4c600da
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] update Magnus library in Rust extension gem template</title>
<updated>2023-07-31T06:25:21+00:00</updated>
<author>
<name>Mat Sadler</name>
<email>mat@sourcetagsandcodes.com</email>
</author>
<published>2023-07-29T04:19:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a3c0e9d90d657d9b288fb4a50462684087f4162f'/>
<id>a3c0e9d90d657d9b288fb4a50462684087f4162f</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/19a92a3367
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/19a92a3367
</pre>
</div>
</content>
</entry>
</feed>
