initial write-up for gauntlt
This commit is contained in:
@@ -127,6 +127,10 @@ class TutorialsController < ApplicationController
|
|||||||
def mass_assignment
|
def mass_assignment
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def guantlt
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
def constantize
|
def constantize
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -97,6 +97,9 @@
|
|||||||
Extras
|
Extras
|
||||||
</a>
|
</a>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li id="gauntlt">
|
||||||
|
<%= link_to "gauntlt", gauntlt_tutorials_path %>
|
||||||
|
</li>
|
||||||
<li id="guard">
|
<li id="guard">
|
||||||
<%= link_to "Guard", guard_tutorials_path %>
|
<%= link_to "Guard", guard_tutorials_path %>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
<div class="dashboard-wrapper">
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span12"> <!-- Begin Span12-->
|
||||||
|
<div class="widget">
|
||||||
|
<div class="widget-header">
|
||||||
|
<div class="title">
|
||||||
|
<span class="fs1" aria-hidden="true" data-icon=""></span> Gauntlet
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="widget-body">
|
||||||
|
<p class="desc">
|
||||||
|
Gauntlt is a tool used for unit testing leveraging third-party tools. We've baked this into Railsgoat so that you can play with it. <br/><br/> To learn more about this tool, please visit their site at: <%= link_to "Gauntlet Github Repository", "https://github.com/gauntlt/gauntlt", {:style =>"color: rgb(181, 121, 158);"} %></p>
|
||||||
|
<p class="desc">
|
||||||
|
All *.attack files are contained under the gauntlt_scripts directory. We have provided a simple.attack file that demonstrates the tool works. If errors occur, please submit a bug through our github powered issue tracking system.
|
||||||
|
</p>
|
||||||
|
<p class="desc">
|
||||||
|
To run this tool type this via the command line: <br/><br/>$ gauntlt
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> <!-- End Span12-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
function openSub(){
|
||||||
|
$('li[id="submenu"]').addClass('active open');
|
||||||
|
};
|
||||||
|
|
||||||
|
$(document).ready(openSub);
|
||||||
|
|
||||||
|
</script>
|
||||||
@@ -21,7 +21,6 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
function openSub(){
|
function openSub(){
|
||||||
$('li[id="submenu"]').addClass('open');
|
|
||||||
$('li[id="submenu"]').addClass('active open');
|
$('li[id="submenu"]').addClass('active open');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ resources :tutorials do
|
|||||||
get "info_disclosure"
|
get "info_disclosure"
|
||||||
get "mass_assignment"
|
get "mass_assignment"
|
||||||
get "constantize"
|
get "constantize"
|
||||||
|
get "gauntlt"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user