<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/bundler/templates/newgem/newgem.gemspec.tt, branch ruby_3_3</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.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] 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] Stop publishing Gemfile in default gem template</title>
<updated>2023-06-08T15:20:05+00:00</updated>
<author>
<name>Gareth Adams</name>
<email>gareth@bridge-u.com</email>
</author>
<published>2023-06-06T16:18:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=eaf11d3dd45a5be3466d189d7283d7c502e7f17a'/>
<id>eaf11d3dd45a5be3466d189d7283d7c502e7f17a</id>
<content type='text'>
Similarly to how the other ignored files are intended for local
development and not for production, the Gemfile and Gemfile.lock files
for a gem only relate to local development and aren't useful to people
installing the gem.

https://github.com/rubygems/rubygems/commit/59049c04be
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Similarly to how the other ignored files are intended for local
development and not for production, the Gemfile and Gemfile.lock files
for a gem only relate to local development and aren't useful to people
installing the gem.

https://github.com/rubygems/rubygems/commit/59049c04be
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Fix gemspec file filter</title>
<updated>2023-03-07T07:51:36+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2023-03-03T11:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=93f0749a64ae4511bd38358dee238140489526b5'/>
<id>93f0749a64ae4511bd38358dee238140489526b5</id>
<content type='text'>
Explicitly match directory separator to not match files in repo root
accidentally.

https://github.com/rubygems/rubygems/commit/b936805ea9

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Explicitly match directory separator to not match files in repo root
accidentally.

https://github.com/rubygems/rubygems/commit/b936805ea9

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Simplify the gem package file filter in the gemspec template</title>
<updated>2023-03-02T17:05:04+00:00</updated>
<author>
<name>Orien Madgwick</name>
<email>497874+orien@users.noreply.github.com</email>
</author>
<published>2023-02-05T02:58:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=573522bd8481db8d0cb042810b95bd573bd5fb23'/>
<id>573522bd8481db8d0cb042810b95bd573bd5fb23</id>
<content type='text'>
The regular expression is difficult to understand at a glance.
Let's replace it with a much simpler string comparison.

https://github.com/rubygems/rubygems/commit/a3745aa03f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The regular expression is difficult to understand at a glance.
Let's replace it with a much simpler string comparison.

https://github.com/rubygems/rubygems/commit/a3745aa03f
</pre>
</div>
</content>
</entry>
<entry>
<title>[rubygems/rubygems] Properly exclude gemspec file itself from gem</title>
<updated>2023-02-06T16:19:46+00:00</updated>
<author>
<name>Akira Matsuda</name>
<email>ronnie@dio.jp</email>
</author>
<published>2023-02-04T06:29:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=cab8c11611d94adaa86d9ed8322dd372922f94bc'/>
<id>cab8c11611d94adaa86d9ed8322dd372922f94bc</id>
<content type='text'>
by comparing the file names with full path.

Follows up https://github.com/rubygems/rubygems/commit/f444478eaccf

https://github.com/rubygems/rubygems/commit/9637a82d2e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
by comparing the file names with full path.

Follows up https://github.com/rubygems/rubygems/commit/f444478eaccf

https://github.com/rubygems/rubygems/commit/9637a82d2e
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge RubyGems-3.4.0 and Bundler-2.4.0</title>
<updated>2022-12-24T07:57:07+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-12-21T23:20:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f6620037ba1477d2c337d7b511f094d6d0fbb69c'/>
<id>f6620037ba1477d2c337d7b511f094d6d0fbb69c</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/Bundler master</title>
<updated>2022-12-20T04:15:02+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-12-20T00:43:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=18ba89093a0b214cd89f1567c037c239f094496d'/>
<id>18ba89093a0b214cd89f1567c037c239f094496d</id>
<content type='text'>
  Pick from https://github.com/rubygems/rubygems/commit/ba3adad4d80038ffd7bea015da2f11d3e8a2ff82
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Pick from https://github.com/rubygems/rubygems/commit/ba3adad4d80038ffd7bea015da2f11d3e8a2ff82
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge rubygems master 1e4eda741d732ca1bd7031aef0a16c7348adf7a5</title>
<updated>2022-04-28T10:08:49+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-04-01T11:36:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=678d58c8508ec46aa270e3c5d81fc09cd0fee175'/>
<id>678d58c8508ec46aa270e3c5d81fc09cd0fee175</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] Exclude bin directory for newgem template, Because it contains only development script</title>
<updated>2022-01-05T10:16:53+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-01-05T09:02:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8bba6d3d54fb10aa0fe12c3001b520fffc695663'/>
<id>8bba6d3d54fb10aa0fe12c3001b520fffc695663</id>
<content type='text'>
https://github.com/rubygems/rubygems/commit/01017ee8ca
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rubygems/rubygems/commit/01017ee8ca
</pre>
</div>
</content>
</entry>
</feed>
