-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45d94e6
commit 9be6876
Showing
33 changed files
with
1,070 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | ||
<html lang='en'> | ||
<head> | ||
<title>Sequel::MySQL::Adapter</title> | ||
<meta name='viewport' content='width=device-width, initial-scale=1'> | ||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'> | ||
<link href='../../../css/style.css' media='screen' rel='stylesheet' type='text/css'> | ||
<script type='text/javascript'> | ||
function popupCode(url) { | ||
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") | ||
} | ||
|
||
function toggleCode(id) { | ||
var code = document.getElementById(id) | ||
|
||
code.style.display = code.style.display != 'block' ? 'block' : 'none' | ||
return true | ||
} | ||
|
||
// Make codeblocks hidden by default | ||
document.writeln('<' + 'style type="text/css">.method .source pre { display: none }<\/style>') | ||
</script> | ||
</head> | ||
<body class='page'> | ||
<div class='class' id='wrapper'> | ||
<div class='header'> | ||
<h1 class='name'><span class='type'>class</span> | ||
Sequel::MySQL::Adapter | ||
</h1> | ||
<ol class='paths'> | ||
<li> | ||
<a href="../../../files/lib/sequel/adapters/mysql_rb.html">lib/sequel/adapters/mysql.rb</a> | ||
</li> | ||
</ol> | ||
<div class='parent'> | ||
Superclass: | ||
<strong>Mysql</strong> | ||
</div> | ||
</div> | ||
<div id='content'> | ||
<div id='text'> | ||
<div id='description'></div> | ||
<div id='method-list'> | ||
<h2>Methods</h2> | ||
<h3>Public Class</h3> | ||
<ol> | ||
<li><a href="#method-c-new">new</a></li> | ||
</ol> | ||
</div> | ||
<div id='context'> | ||
</div> | ||
<div id='section'> | ||
<div id='methods'> | ||
<h2>Public Class methods</h2> | ||
<div class='method public-class' id='method-method-c-new'> | ||
<a name='method-c-new'></a> | ||
<div class='synopsis'> | ||
<span class='name'>new</span><span class='arguments'>(**opts)</span> | ||
|
||
</div> | ||
<div class='description'> | ||
|
||
</div> | ||
<div class='source'> | ||
<a class='source-toggle' href='#' onclick='toggleCode('method-c-new-source'); return false'> | ||
[show source] | ||
</a> | ||
<pre id='method-c-new-source'> <span class="ruby-comment"># File lib/sequel/adapters/mysql.rb</span> | ||
<span class="line-num">40</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">initialize</span>(<span class="ruby-operator">**</span><span class="ruby-identifier">opts</span>) | ||
<span class="line-num">41</span> <span class="ruby-keyword">super</span>(<span class="ruby-operator">**</span><span class="ruby-identifier">opts</span>.<span class="ruby-identifier">merge</span>(<span class="ruby-value">:cast</span><span class="ruby-operator">=></span><span class="ruby-keyword">false</span>)) | ||
<span class="line-num">42</span> <span class="ruby-keyword">end</span></pre> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div id='footer-push'></div> | ||
</div> | ||
<div id='footer'> | ||
<a href="https://github.com/jeremyevans/hanna-nouveau"><strong>Hanna Nouveau</strong> RDoc template</a> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.