Skip to content

Commit 289d03b

Browse files
author
github-actions
committed
Site update
1 parent 6ba9c31 commit 289d03b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/release_notes/0.46.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2 id="rex::test">Rex::Test</h2>
140140

141141
<p>To create a test just create a new file inside a <em>t</em> directory: <em>t/base.t</em>.</p>
142142

143-
<pre><code class="hljs"><span class="hljs-keyword">use</span> <span class="hljs-function">Rex::Test</span>::<span class="hljs-function">Base</span>;
143+
<pre><code class="hljs">use <span class="hljs-function">Rex::Test</span>::<span class="hljs-function">Base</span>;
144144
<span class="hljs-keyword">use</span> <span class="hljs-function">Data::Dumper</span>;
145145
<span class="hljs-keyword">use</span> Rex -base;
146146

docs/release_notes/0.54.3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h4 id="path_map-variablepathmapping">path_map - variable path mapping</h4>
130130

131131
<p>path_map is a new feature developed by Erik Huelsmann to ease the management of files for different hosts. In the past, if you wanted to upload a file (for example /etc/security/access.conf) to your servers and wanted to have different access.conf files per environment, or for a special host, you had to build this logic by yourself. With the <em>path_map</em> feature you only have to define the lookup path and Rex is doing this for you.</p>
132132

133-
<pre><code class="hljs">use Rex -feature =&gt; [&#39;<span class="hljs-string">0.54</span>&#39;];
133+
<pre><code class="hljs"><span class="hljs-keyword">use</span> Rex -feature =&gt; [&#39;<span class="hljs-string">0.54</span>&#39;];
134134

135135
set path_map =&gt; {
136136
&quot;<span class="hljs-string">files/</span>&quot; =&gt; [

docs/release_notes/1.1.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ <h3 id="getservergroupmembership">Get server group membership</h3>
158158

159159
<p>Group membership information for servers are now exposed and can be retrieve directly from the server object with the <code>groups</code> method. It also has an alias called <code>group</code>, but it always returns the list of groups a server is member of:</p>
160160

161-
<pre><code class="hljs">my <span class="hljs-type">@groups</span> = connection-&gt;server-&gt;groups;</code></pre>
161+
<pre><code class="hljs"><span class="hljs-keyword">my</span> <span class="hljs-type">@groups</span> = connection-&gt;server-&gt;groups;</code></pre>
162162

163163
<ul>
164164
<li>this adds a new method to the server objects called group() and fixed - Jan</li>

0 commit comments

Comments
 (0)