<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/.gitattributes, branch v4.0.2</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Tell GitHub that `*.inc.rs` files are generated</title>
<updated>2025-04-18T12:52:59+00:00</updated>
<author>
<name>Alan Wu</name>
<email>XrXr@users.noreply.github.com</email>
</author>
<published>2025-03-05T16:18:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9e31d29e0ee20ef1fcbcb4b71112002dad3bcc1d'/>
<id>9e31d29e0ee20ef1fcbcb4b71112002dad3bcc1d</id>
<content type='text'>
... and rename hir_type_generated.rs so it gets picked up by the
glob.

This mostly changes how GitHub renders diffs for generated files on
the web interface.

See: https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... and rename hir_type_generated.rs so it gets picked up by the
glob.

This mostly changes how GitHub renders diffs for generated files on
the web interface.

See: https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tool/leaked-globals to .gitattributes [ci skip]</title>
<updated>2019-07-15T04:45:14+00:00</updated>
<author>
<name>Kazuhiro NISHIYAMA</name>
<email>zn@mbf.nifty.com</email>
</author>
<published>2019-07-15T04:44:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=929fa856ef8a9217b58dc43c9883c3202603c18e'/>
<id>929fa856ef8a9217b58dc43c9883c3202603c18e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tool/format-release to .gitattributes</title>
<updated>2019-04-23T05:09:45+00:00</updated>
<author>
<name>Kazuhiro NISHIYAMA</name>
<email>zn@mbf.nifty.com</email>
</author>
<published>2019-04-23T05:09:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=4946c3e4b5e465c743da3050169fdb1f7b060c95'/>
<id>4946c3e4b5e465c743da3050169fdb1f7b060c95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rename ruby-runner as bin/ruby</title>
<updated>2017-09-15T17:42:00+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2017-09-15T17:42:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=86888f9cecc30ebad241fd144bab6ff6380640ed'/>
<id>86888f9cecc30ebad241fd144bab6ff6380640ed</id>
<content type='text'>
* Makefile.in, configure.in, tool/runruby.rb: rename ruby-runner
  executable file as $(RUBY_INSTALL_NAME) under bin, to mimic
  dirty `#!/usr/bin/env` hack.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Makefile.in, configure.in, tool/runruby.rb: rename ruby-runner
  executable file as $(RUBY_INSTALL_NAME) under bin, to mimic
  dirty `#!/usr/bin/env` hack.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>add .gitattributes</title>
<updated>2015-11-19T22:09:47+00:00</updated>
<author>
<name>normal</name>
<email>normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2015-11-19T22:09:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c2088414102bcd95d551219cfef2b01f90724ddd'/>
<id>c2088414102bcd95d551219cfef2b01f90724ddd</id>
<content type='text'>
This improves method detection for Ruby source files;
making output of "git diff" and "git log -p -W" more
readable for git users looking at our Ruby code.

git will automatically notice this file and start using
it when generating diff output.

See the gitattributes(5) manpage for more details.
Ruby pattern definitions reside in userdiff.c of the
git sources at git://git.kernel.org/pub/scm/git/git.git

* .gitattributes: new file for git users
  [ruby-core:71578] [Feature #11713]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This improves method detection for Ruby source files;
making output of "git diff" and "git log -p -W" more
readable for git users looking at our Ruby code.

git will automatically notice this file and start using
it when generating diff output.

See the gitattributes(5) manpage for more details.
Ruby pattern definitions reside in userdiff.c of the
git sources at git://git.kernel.org/pub/scm/git/git.git

* .gitattributes: new file for git users
  [ruby-core:71578] [Feature #11713]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
