<!DOCTYPE html>
<html> <head> <meta charset=“UTF-8”>
<title>class ReVIEW::Line - review-2.2.0 Documentation</title>
<script type=“text/javascript”>
var rdoc_rel_prefix = "../"; var index_rel_prefix = "../";
</script>
<script src=“../js/jquery.js”></script> <script src=“../js/darkfish.js”></script>
<link href=“../css/fonts.css” rel=“stylesheet”> <link href=“../css/rdoc.css” rel=“stylesheet”>
<body id=“top” role=“document” class=“class”> <nav role=“navigation”>
<div id="project-navigation"> <div id="home-section" role="region" title="Quick navigation" class="nav-section"> <h2> <a href="../index.html" rel="home">Home</a> </h2> <div id="table-of-contents-navigation"> <a href="../table_of_contents.html#pages">Pages</a> <a href="../table_of_contents.html#classes">Classes</a> <a href="../table_of_contents.html#methods">Methods</a> </div>
</div>
<div id="search-section" role="search" class="project-section initially-hidden"> <form action="#" method="get" accept-charset="utf-8"> <div id="search-field-wrapper"> <input id="search-field" role="combobox" aria-label="Search" aria-autocomplete="list" aria-controls="search-results" type="text" name="search" placeholder="Search" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"> </div> <ul id="search-results" aria-label="Search Results" aria-busy="false" aria-expanded="false" aria-atomic="false" class="initially-hidden"></ul> </form>
</div>
</div> <div id="class-metadata"> <div id="parent-class-section" class="nav-section"> <h3>Parent</h3> <p class="link"><a href="../Object.html">Object</a>
</div>
<!-- Method Quickref -->
<div id=“method-list-section” class=“nav-section”>
<h3>Methods</h3> <ul class="link-list" role="directory"> <li ><a href="#method-c-new">::new</a> <li ><a href="#method-i-edit">#edit</a> <li ><a href="#method-i-empty-3F">#empty?</a> <li ><a href="#method-i-num_indent">#num_indent</a> </ul>
</div>
</div>
</nav>
<main role=“main” aria-labelledby=“class-ReVIEW::Line”>
<h1 id="class-ReVIEW::Line" class="class"> class ReVIEW::Line </h1> <section class="description"> </section> <section id="5Buntitled-5D" class="documentation-section"> <section class="attribute-method-details" class="method-section"> <header> <h3>Attributes</h3> </header> <div id="attribute-i-number" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">number</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-string" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">string</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> <div id="attribute-i-to_s" class="method-detail"> <div class="method-heading attribute-method-heading"> <span class="method-name">to_s</span><span class="attribute-access-type">[R]</span> </div> <div class="method-description"> </div> </div> </section> <section id="public-class-5Buntitled-5D-method-details" class="method-section"> <header> <h3>Public Class Methods</h3> </header> <div id="method-c-new" class="method-detail "> <div class="method-heading"> <span class="method-name">new</span><span class="method-args">(number, string)</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="new-source"> <pre><span class="ruby-comment"># File lib/review/preprocessor.rb, line 340</span>
<span class=“ruby-keyword”>def</span> <span class=“ruby-identifier”>initialize</span>(<span class=“ruby-identifier”>number</span>, <span class=“ruby-identifier”>string</span>)
<span class="ruby-ivar">@number</span> = <span class="ruby-identifier">number</span> <span class="ruby-ivar">@string</span> = <span class="ruby-identifier">string</span>
<span class=“ruby-keyword”>end</span></pre>
</div> </div> </div> </section> <section id="public-instance-5Buntitled-5D-method-details" class="method-section"> <header> <h3>Public Instance Methods</h3> </header> <div id="method-i-edit" class="method-detail "> <div class="method-heading"> <span class="method-name">edit</span><span class="method-args">() { |string| ... }</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="edit-source"> <pre><span class="ruby-comment"># File lib/review/preprocessor.rb, line 349</span>
<span class=“ruby-keyword”>def</span> <span class=“ruby-identifier”>edit</span>
<span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">new</span>(<span class="ruby-ivar">@number</span>, <span class="ruby-keyword">yield</span>(<span class="ruby-ivar">@string</span>))
<span class=“ruby-keyword”>end</span></pre>
</div> </div> </div> <div id="method-i-empty-3F" class="method-detail "> <div class="method-heading"> <span class="method-name">empty?</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="empty-3F-source"> <pre><span class="ruby-comment"># File lib/review/preprocessor.rb, line 353</span>
<span class=“ruby-keyword”>def</span> <span class=“ruby-identifier”>empty?</span>
<span class="ruby-ivar">@string</span>.<span class="ruby-identifier">strip</span>.<span class="ruby-identifier">empty?</span>
<span class=“ruby-keyword”>end</span></pre>
</div> </div> </div> <div id="method-i-num_indent" class="method-detail "> <div class="method-heading"> <span class="method-name">num_indent</span><span class="method-args">()</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> <div class="method-source-code" id="num_indent-source"> <pre><span class="ruby-comment"># File lib/review/preprocessor.rb, line 357</span>
<span class=“ruby-keyword”>def</span> <span class=“ruby-identifier”>num_indent</span>
<span class="ruby-ivar">@string</span>.<span class="ruby-identifier">slice</span>(<span class="ruby-regexp">/\A\s*/</span>).<span class="ruby-identifier">size</span>
<span class=“ruby-keyword”>end</span></pre>
</div> </div> </div> </section> </section>
</main>
<footer id=“validator-badges” role=“contentinfo”>
<p><a href="http://validator.w3.org/check/referer">Validate</a> <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.2. <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>