Skip to content

Commit

Permalink
docs: updates from Homebrew/brew
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewTestBot committed Apr 26, 2024
1 parent 22e84ee commit 1e82449
Showing 1 changed file with 77 additions and 21 deletions.
98 changes: 77 additions & 21 deletions docs/Checksum.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collaps
<li class="public ">
<span class="summary_signature">

<a href="#hexdigest-instance_method" title="#hexdigest (instance method)">#<strong>hexdigest</strong> &#x21d2; Object </a>
<a href="#hexdigest-instance_method" title="#hexdigest (instance method)">#<strong>hexdigest</strong> &#x21d2; String </a>


</span>
Expand Down Expand Up @@ -172,7 +172,7 @@ <h2>
<li class="public ">
<span class="summary_signature">

<a href="#==-instance_method" title="#== (instance method)">#<strong>==</strong>(other) &#x21d2; Object </a>
<a href="#==-instance_method" title="#== (instance method)">#<strong>==</strong>(other) &#x21d2; Boolean </a>


</span>
Expand Down Expand Up @@ -238,7 +238,7 @@ <h2>
<li class="public ">
<span class="summary_signature">

<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(hexdigest) &#x21d2; Checksum </a>
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(hexdigest) &#x21d2; void </a>


</span>
Expand All @@ -252,7 +252,7 @@ <h2>

<span class="private note title">private</span>

<span class="summary_desc"><div class='inline'><p>A new instance of Checksum.</p>
<span class="summary_desc"><div class='inline'>
</div></span>

</li>
Expand Down Expand Up @@ -312,7 +312,7 @@ <h2>Constructor Details</h2>
<div class="method_details first">
<h3 class="signature first" id="initialize-instance_method">

#<strong>initialize</strong>(hexdigest) &#x21d2; <tt><span class='object_link'><a href="" title="Checksum (class)">Checksum</a></span></tt>
#<strong>initialize</strong>(hexdigest) &#x21d2; <tt>void</tt>



Expand All @@ -325,29 +325,44 @@ <h3 class="signature first" id="initialize-instance_method">
This method may only be used in the <a href="https://github.com/Homebrew/brew">Homebrew/brew</a> repository.
Third parties should avoid using this method if possible, as it may be removed or changed without warning.
</p>
<p>Returns a new instance of Checksum.</p>



</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">

<li>

<span class='name'>hexdigest</span>


<span class='type'>(<tt><span class='object_link'><a href="String.html" title="String (class)">String</a></span></tt>)</span>



</li>

</ul>


</div><table class="source_code">
<tr>
<td>
<pre class="lines">


12
13
14</pre>
14
15
16</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'checksum.rb', line 12</span>
<pre class="code"><span class="info file"># File 'checksum.rb', line 14</span>

<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_hexdigest'>hexdigest</span><span class='rparen'>)</span>
<span class='ivar'>@hexdigest</span> <span class='op'>=</span> <span class='id identifier rubyid_hexdigest'>hexdigest</span><span class='period'>.</span><span class='id identifier rubyid_downcase'>downcase</span>
<span class='ivar'>@hexdigest</span> <span class='op'>=</span> <span class='const'>T</span><span class='period'>.</span><span class='id identifier rubyid_let'>let</span><span class='lparen'>(</span><span class='id identifier rubyid_hexdigest'>hexdigest</span><span class='period'>.</span><span class='id identifier rubyid_downcase'>downcase</span><span class='comma'>,</span> <span class='const'><span class='object_link'><a href="String.html" title="String (class)">String</a></span></span><span class='rparen'>)</span>
<span class='kw'>end</span></pre>
</td>
</tr>
Expand All @@ -364,7 +379,7 @@ <h2>Instance Attribute Details</h2>
<div class="method_details first">
<h3 class="signature first" id="hexdigest-instance_method">

#<strong>hexdigest</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt> <span class="extras">(readonly)</span>
#<strong>hexdigest</strong> &#x21d2; <tt><span class='object_link'><a href="String.html" title="String (class)">String</a></span></tt> <span class="extras">(readonly)</span>



Expand All @@ -384,19 +399,32 @@ <h3 class="signature first" id="hexdigest-instance_method">
</div>
<div class="tags">

<p class="tag_title">Returns:</p>
<ul class="return">

<li>


<span class='type'>(<tt><span class='object_link'><a href="String.html" title="String (class)">String</a></span></tt>)</span>



</li>

</ul>

</div><table class="source_code">
<tr>
<td>
<pre class="lines">


10
11
12</pre>
12
13</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'checksum.rb', line 10</span>
<pre class="code"><span class="info file"># File 'checksum.rb', line 11</span>

<span class='kw'>def</span> <span class='id identifier rubyid_hexdigest'>hexdigest</span>
<span class='ivar'>@hexdigest</span>
Expand All @@ -416,7 +444,7 @@ <h2>Instance Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="==-instance_method">

#<strong>==</strong>(other) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
#<strong>==</strong>(other) &#x21d2; <tt>Boolean</tt>



Expand All @@ -435,27 +463,55 @@ <h3 class="signature first" id="==-instance_method">
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">

<li>

<span class='name'>other</span>


<span class='type'>(<tt><span class='object_link'><a href="String.html" title="String (class)">String</a></span></tt>, <tt><span class='object_link'><a href="" title="Checksum (class)">Checksum</a></span></tt>, <tt><span class='object_link'><a href="Symbol.html" title="Symbol (class)">Symbol</a></span></tt>)</span>



</li>

</ul>

<p class="tag_title">Returns:</p>
<ul class="return">

<li>


<span class='type'>(<tt>Boolean</tt>)</span>



</li>

</ul>

</div><table class="source_code">
<tr>
<td>
<pre class="lines">


18
19
20
21
22
23
24
25
26
27</pre>
27
28
29
30</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'checksum.rb', line 18</span>
<pre class="code"><span class="info file"># File 'checksum.rb', line 21</span>

<span class='kw'>def</span> <span class='op'>==</span><span class='lparen'>(</span><span class='id identifier rubyid_other'>other</span><span class='rparen'>)</span>
<span class='kw'>case</span> <span class='id identifier rubyid_other'>other</span>
Expand Down

0 comments on commit 1e82449

Please sign in to comment.