<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/syntax_suggest/clean_document.rb, 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>[ruby/syntax_suggest] Fix spelling</title>
<updated>2024-11-15T16:06:24+00:00</updated>
<author>
<name>Schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2024-11-15T16:01:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=03a77c03eb7c21995d062420dd4280b303ade820'/>
<id>03a77c03eb7c21995d062420dd4280b303ade820</id>
<content type='text'>
https://github.com/ruby/syntax_suggest/commit/9c78283363
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/syntax_suggest/commit/9c78283363
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: remove repetitive words (#10573)</title>
<updated>2024-04-18T15:32:34+00:00</updated>
<author>
<name>careworry</name>
<email>167077904+careworry@users.noreply.github.com</email>
</author>
<published>2024-04-18T15:32:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8e08556fa7f2b6e9c43b040f2aea06dccead5d13'/>
<id>8e08556fa7f2b6e9c43b040f2aea06dccead5d13</id>
<content type='text'>
Signed-off-by: careworry &lt;worrycare@outlook.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: careworry &lt;worrycare@outlook.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/syntax_suggest] Update docs, clean up PR</title>
<updated>2023-12-05T17:51:29+00:00</updated>
<author>
<name>Schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2023-12-04T22:59:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6d39d6d2143f7b910f310de0ff92772839ac72a2'/>
<id>6d39d6d2143f7b910f310de0ff92772839ac72a2</id>
<content type='text'>
Removes or updates mentions of Ripper

https://github.com/ruby/syntax_suggest/commit/08aaa3f50a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removes or updates mentions of Ripper

https://github.com/ruby/syntax_suggest/commit/08aaa3f50a
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/syntax_suggest] Update standardrb to Ruby 3.0 standards</title>
<updated>2023-12-04T22:18:40+00:00</updated>
<author>
<name>Schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2023-12-04T22:17:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=13482ab1e61e0c337badd6308412621f807df9c1'/>
<id>13482ab1e61e0c337badd6308412621f807df9c1</id>
<content type='text'>
https://github.com/ruby/syntax_suggest/commit/2771dcabe0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/syntax_suggest/commit/2771dcabe0
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/syntax_suggest] Rollback comment indentation behavior</title>
<updated>2023-04-06T06:45:29+00:00</updated>
<author>
<name>schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2023-03-09T20:13:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=63ea6b0cf2b7fd27e22dc7b468fe65ee2c79b23a'/>
<id>63ea6b0cf2b7fd27e22dc7b468fe65ee2c79b23a</id>
<content type='text'>
Originally I fixed https://github.com/ruby/syntax_suggest/pull/177 by making the process of comment removal indentation aware. The next commit is the more general fix and means we don't need to carry that additional logic/overhead.

Also: Update syntax via linter
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Originally I fixed https://github.com/ruby/syntax_suggest/pull/177 by making the process of comment removal indentation aware. The next commit is the more general fix and means we don't need to carry that additional logic/overhead.

Also: Update syntax via linter
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/syntax_suggest] Preserve whitespace in front of comments</title>
<updated>2023-04-06T06:45:28+00:00</updated>
<author>
<name>schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2023-03-08T14:51:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e5236471c3ce194199a6ceb70012eb2ca243407e'/>
<id>e5236471c3ce194199a6ceb70012eb2ca243407e</id>
<content type='text'>
When removing comments I previously replaced them with a newline. This loses some context and may affect the order of the indent search which in turn affects the final result. By preserving whitespace in front of the comment, we preserve the "natural" indentation order of the line while also allowing the parser/lexer to see and join naturally consecutive (method chain) lines.

close https://github.com/ruby/syntax_suggest/pull/177
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When removing comments I previously replaced them with a newline. This loses some context and may affect the order of the indent search which in turn affects the final result. By preserving whitespace in front of the comment, we preserve the "natural" indentation order of the line while also allowing the parser/lexer to see and join naturally consecutive (method chain) lines.

close https://github.com/ruby/syntax_suggest/pull/177
</pre>
</div>
</content>
</entry>
<entry>
<title>Sync SyntaxSuggest</title>
<updated>2022-08-19T01:02:24+00:00</updated>
<author>
<name>schneems</name>
<email>richard.schneeman+foo@gmail.com</email>
</author>
<published>2022-07-26T20:21:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=490af8dbdb66263f29d0b4e43752fbb298b94862'/>
<id>490af8dbdb66263f29d0b4e43752fbb298b94862</id>
<content type='text'>
```
$ tool/sync_default_gems.rb syntax_suggest
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
$ tool/sync_default_gems.rb syntax_suggest
```
</pre>
</div>
</content>
</entry>
</feed>
