<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/test/rubocops, branch 1.2.3</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>Revert "audit: Port audit_checksum method to rubocop and add tests"</title>
<updated>2017-06-09T08:16:11+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-06-09T08:16:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=113a7a81d031bc060aa9e83f334e52bed75b79c3'/>
<id>113a7a81d031bc060aa9e83f334e52bed75b79c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>audit: Port audit_checksum method to rubocop and add tests</title>
<updated>2017-06-08T16:23:46+00:00</updated>
<author>
<name>Gautham Goli</name>
</author>
<published>2017-05-31T19:27:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=d09d5ecc559c4971fae77769cb1a203bb20c7a97'/>
<id>d09d5ecc559c4971fae77769cb1a203bb20c7a97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>formula_desc_cop: tweak some rules.</title>
<updated>2017-06-08T12:13:10+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-06-08T12:13:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=c572081f8b56f3be24f24e85497ae780a25cbcba'/>
<id>c572081f8b56f3be24f24e85497ae780a25cbcba</id>
<content type='text'>
Allow some specific lowercase words and provide an autocorrect for some
of these rules.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow some specific lowercase words and provide an autocorrect for some
of these rules.
</pre>
</div>
</content>
</entry>
<entry>
<title>Re-revert "Fix operator spacing."</title>
<updated>2017-06-02T17:22:05+00:00</updated>
<author>
<name>Markus Reiter</name>
</author>
<published>2017-06-01T14:06:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=2d6ae61314558b383cfa641e2de0839d5606afca'/>
<id>2d6ae61314558b383cfa641e2de0839d5606afca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>audit: Port audit_caveats method to rubocop and add tests</title>
<updated>2017-05-31T17:29:48+00:00</updated>
<author>
<name>Gautham Goli</name>
</author>
<published>2017-05-22T07:39:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=cf848a14d2de60b425d6e279051a919ff6ad1e43'/>
<id>cf848a14d2de60b425d6e279051a919ff6ad1e43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>audit: Port audit_text method to rubocop and add tests</title>
<updated>2017-05-30T09:58:05+00:00</updated>
<author>
<name>Gautham Goli</name>
</author>
<published>2017-05-23T18:38:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=51f2338dd57eed5a7f18e147ccd4f4b9da19fb52'/>
<id>51f2338dd57eed5a7f18e147ccd4f4b9da19fb52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Match the "formula name in description" on word boundaries</title>
<updated>2017-05-28T23:26:47+00:00</updated>
<author>
<name>Isabell Long</name>
</author>
<published>2017-05-27T22:17:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=279a4df6c3fa41f0b660d67f880ed2bc7c0be848'/>
<id>279a4df6c3fa41f0b660d67f880ed2bc7c0be848</id>
<content type='text'>
- The regexp for the "check if formula name is used in formula's
  description" cop matches every instance of the formula name if it
  exists, whether it's in a word or not.
- For example, the formula `mon` has the description "Monitor
  hosts/services/whatever and alert about problems". This makes
  `brew audit --strict` complain because it matches "Monitor",
  which isn't the formula name! The formula `pass` has the description
  "Password manager".  Again, the strict audit matches "Password",
  which isn't an issue.
- Instead, this change matches on a word boundary, so it will match
  `mon:`, or `mon `, but not "Monitor", or, for example, "harmony".
- I've changed the tests to account for this change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- The regexp for the "check if formula name is used in formula's
  description" cop matches every instance of the formula name if it
  exists, whether it's in a word or not.
- For example, the formula `mon` has the description "Monitor
  hosts/services/whatever and alert about problems". This makes
  `brew audit --strict` complain because it matches "Monitor",
  which isn't the formula name! The formula `pass` has the description
  "Password manager".  Again, the strict audit matches "Password",
  which isn't an issue.
- Instead, this change matches on a word boundary, so it will match
  `mon:`, or `mon `, but not "Monitor", or, for example, "harmony".
- I've changed the tests to account for this change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2631 from GauthamGoli/audit_homepage_rubocop</title>
<updated>2017-05-15T09:02:47+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-05-15T09:02:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=ea8be174f6009bc9bdec67b13ca501b5b83fc4b8'/>
<id>ea8be174f6009bc9bdec67b13ca501b5b83fc4b8</id>
<content type='text'>
audit: Port audit_homepage method to rubocop and add tests</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
audit: Port audit_homepage method to rubocop and add tests</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2628 from GauthamGoli/formula_desc_cop_fix</title>
<updated>2017-05-15T09:01:38+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-05-15T09:01:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=9889b42ec4396dca190fb0823453e259344ee015'/>
<id>9889b42ec4396dca190fb0823453e259344ee015</id>
<content type='text'>
audit: Detect multiline and interpolated strings in formula desc cop</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
audit: Detect multiline and interpolated strings in formula desc cop</pre>
</div>
</content>
</entry>
<entry>
<title>Port audit_homepage method to rubocop and add tests</title>
<updated>2017-05-14T16:35:46+00:00</updated>
<author>
<name>Gautham Goli</name>
</author>
<published>2017-05-14T08:19:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=91efcb045e687301a8440d91e55ddbc1c053b757'/>
<id>91efcb045e687301a8440d91e55ddbc1c053b757</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
