clavem 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +6 -0
- data/.travis.yml +8 -0
- data/.yardopts +1 -0
- data/Gemfile +9 -0
- data/README.md +58 -0
- data/Rakefile +18 -0
- data/bin/clavem +41 -0
- data/clavem.gemspec +39 -0
- data/clavem.yml +1 -0
- data/doc/Clavem.html +129 -0
- data/doc/Clavem/Authorizer.html +1976 -0
- data/doc/Clavem/Exceptions.html +125 -0
- data/doc/Clavem/Exceptions/AuthorizationDenied.html +133 -0
- data/doc/Clavem/Exceptions/Failure.html +133 -0
- data/doc/Clavem/Exceptions/Timeout.html +133 -0
- data/doc/Clavem/Version.html +189 -0
- data/doc/_index.html +192 -0
- data/doc/class_list.html +53 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +328 -0
- data/doc/file.README.html +132 -0
- data/doc/file_list.html +55 -0
- data/doc/frames.html +28 -0
- data/doc/index.html +132 -0
- data/doc/js/app.js +214 -0
- data/doc/js/full_list.js +173 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +188 -0
- data/doc/top-level-namespace.html +112 -0
- data/lib/clavem.rb +15 -0
- data/lib/clavem/authorizer.rb +220 -0
- data/lib/clavem/template.html.erb +25 -0
- data/lib/clavem/version.rb +24 -0
- data/locales/en.yml +9 -0
- data/locales/it.yml +9 -0
- data/spec/clavem/authorizer_spec.rb +334 -0
- data/spec/coverage_helper.rb +21 -0
- data/spec/spec_helper.rb +16 -0
- data/test_server.rb +16 -0
- metadata +266 -0
| @@ -0,0 +1,125 @@ | |
| 1 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         | 
| 2 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         | 
| 3 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 4 | 
            +
              <head>
         | 
| 5 | 
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         | 
| 6 | 
            +
            <title>
         | 
| 7 | 
            +
              Module: Clavem::Exceptions
         | 
| 8 | 
            +
              
         | 
| 9 | 
            +
                — Documentation by YARD 0.8.3
         | 
| 10 | 
            +
              
         | 
| 11 | 
            +
            </title>
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              <link rel="stylesheet" href="../css/common.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            <script type="text/javascript" charset="utf-8">
         | 
| 18 | 
            +
              hasFrames = window.top.frames.main ? true : false;
         | 
| 19 | 
            +
              relpath = '../';
         | 
| 20 | 
            +
              framesUrl = "../frames.html#!" + escape(window.location.href);
         | 
| 21 | 
            +
            </script>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 24 | 
            +
              <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
         | 
| 27 | 
            +
             | 
| 28 | 
            +
             | 
| 29 | 
            +
              </head>
         | 
| 30 | 
            +
              <body>
         | 
| 31 | 
            +
                <div id="header">
         | 
| 32 | 
            +
                  <div id="menu">
         | 
| 33 | 
            +
              
         | 
| 34 | 
            +
                <a href="../_index.html">Index (E)</a> »
         | 
| 35 | 
            +
                <span class='title'><span class='object_link'><a href="../Clavem.html" title="Clavem (module)">Clavem</a></span></span>
         | 
| 36 | 
            +
                 » 
         | 
| 37 | 
            +
                <span class="title">Exceptions</span>
         | 
| 38 | 
            +
              
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
         | 
| 41 | 
            +
            </div>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                  <div id="search">
         | 
| 44 | 
            +
              
         | 
| 45 | 
            +
                <a class="full_list_link" id="class_list_link"
         | 
| 46 | 
            +
                    href="../class_list.html">
         | 
| 47 | 
            +
                  Class List
         | 
| 48 | 
            +
                </a>
         | 
| 49 | 
            +
              
         | 
| 50 | 
            +
                <a class="full_list_link" id="method_list_link"
         | 
| 51 | 
            +
                    href="../method_list.html">
         | 
| 52 | 
            +
                  Method List
         | 
| 53 | 
            +
                </a>
         | 
| 54 | 
            +
              
         | 
| 55 | 
            +
                <a class="full_list_link" id="file_list_link"
         | 
| 56 | 
            +
                    href="../file_list.html">
         | 
| 57 | 
            +
                  File List
         | 
| 58 | 
            +
                </a>
         | 
| 59 | 
            +
              
         | 
| 60 | 
            +
            </div>
         | 
| 61 | 
            +
                  <div class="clear"></div>
         | 
| 62 | 
            +
                </div>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                <iframe id="search_frame"></iframe>
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                <div id="content"><h1>Module: Clavem::Exceptions
         | 
| 67 | 
            +
              
         | 
| 68 | 
            +
              
         | 
| 69 | 
            +
              
         | 
| 70 | 
            +
            </h1>
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            <dl class="box">
         | 
| 73 | 
            +
              
         | 
| 74 | 
            +
              
         | 
| 75 | 
            +
                
         | 
| 76 | 
            +
              
         | 
| 77 | 
            +
                
         | 
| 78 | 
            +
              
         | 
| 79 | 
            +
              
         | 
| 80 | 
            +
              
         | 
| 81 | 
            +
                <dt class="r1 last">Defined in:</dt>
         | 
| 82 | 
            +
                <dd class="r1 last">lib/clavem/authorizer.rb</dd>
         | 
| 83 | 
            +
              
         | 
| 84 | 
            +
            </dl>
         | 
| 85 | 
            +
            <div class="clear"></div>
         | 
| 86 | 
            +
             | 
| 87 | 
            +
            <h2>Overview</h2><div class="docstring">
         | 
| 88 | 
            +
              <div class="discussion">
         | 
| 89 | 
            +
                <p>Exceptions used by <span class='object_link'><a href="Authorizer.html" title="Clavem::Authorizer (class)">Authorizer</a></span>.</p>
         | 
| 90 | 
            +
             | 
| 91 | 
            +
             | 
| 92 | 
            +
              </div>
         | 
| 93 | 
            +
            </div>
         | 
| 94 | 
            +
            <div class="tags">
         | 
| 95 | 
            +
              
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            </div><h2>Defined Under Namespace</h2>
         | 
| 98 | 
            +
            <p class="children">
         | 
| 99 | 
            +
              
         | 
| 100 | 
            +
                
         | 
| 101 | 
            +
              
         | 
| 102 | 
            +
                
         | 
| 103 | 
            +
                  <strong class="classes">Classes:</strong> <span class='object_link'><a href="Exceptions/AuthorizationDenied.html" title="Clavem::Exceptions::AuthorizationDenied (class)">AuthorizationDenied</a></span>, <span class='object_link'><a href="Exceptions/Failure.html" title="Clavem::Exceptions::Failure (class)">Failure</a></span>, <span class='object_link'><a href="Exceptions/Timeout.html" title="Clavem::Exceptions::Timeout (class)">Timeout</a></span>
         | 
| 104 | 
            +
                
         | 
| 105 | 
            +
              
         | 
| 106 | 
            +
            </p>
         | 
| 107 | 
            +
             | 
| 108 | 
            +
             | 
| 109 | 
            +
             | 
| 110 | 
            +
             | 
| 111 | 
            +
             | 
| 112 | 
            +
             | 
| 113 | 
            +
             | 
| 114 | 
            +
             | 
| 115 | 
            +
             | 
| 116 | 
            +
            </div>
         | 
| 117 | 
            +
             | 
| 118 | 
            +
                <div id="footer">
         | 
| 119 | 
            +
              Generated on Sun Jan 27 14:14:59 2013 by
         | 
| 120 | 
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         | 
| 121 | 
            +
              0.8.3 (ruby-1.9.3).
         | 
| 122 | 
            +
            </div>
         | 
| 123 | 
            +
             | 
| 124 | 
            +
              </body>
         | 
| 125 | 
            +
            </html>
         | 
| @@ -0,0 +1,133 @@ | |
| 1 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         | 
| 2 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         | 
| 3 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 4 | 
            +
              <head>
         | 
| 5 | 
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         | 
| 6 | 
            +
            <title>
         | 
| 7 | 
            +
              Exception: Clavem::Exceptions::AuthorizationDenied
         | 
| 8 | 
            +
              
         | 
| 9 | 
            +
                — Documentation by YARD 0.8.3
         | 
| 10 | 
            +
              
         | 
| 11 | 
            +
            </title>
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            <script type="text/javascript" charset="utf-8">
         | 
| 18 | 
            +
              hasFrames = window.top.frames.main ? true : false;
         | 
| 19 | 
            +
              relpath = '../../';
         | 
| 20 | 
            +
              framesUrl = "../../frames.html#!" + escape(window.location.href);
         | 
| 21 | 
            +
            </script>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 24 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
         | 
| 27 | 
            +
             | 
| 28 | 
            +
             | 
| 29 | 
            +
              </head>
         | 
| 30 | 
            +
              <body>
         | 
| 31 | 
            +
                <div id="header">
         | 
| 32 | 
            +
                  <div id="menu">
         | 
| 33 | 
            +
              
         | 
| 34 | 
            +
                <a href="../../_index.html">Index (A)</a> »
         | 
| 35 | 
            +
                <span class='title'><span class='object_link'><a href="../../Clavem.html" title="Clavem (module)">Clavem</a></span></span> » <span class='title'><span class='object_link'><a href="../Exceptions.html" title="Clavem::Exceptions (module)">Exceptions</a></span></span>
         | 
| 36 | 
            +
                 » 
         | 
| 37 | 
            +
                <span class="title">AuthorizationDenied</span>
         | 
| 38 | 
            +
              
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
         | 
| 41 | 
            +
            </div>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                  <div id="search">
         | 
| 44 | 
            +
              
         | 
| 45 | 
            +
                <a class="full_list_link" id="class_list_link"
         | 
| 46 | 
            +
                    href="../../class_list.html">
         | 
| 47 | 
            +
                  Class List
         | 
| 48 | 
            +
                </a>
         | 
| 49 | 
            +
              
         | 
| 50 | 
            +
                <a class="full_list_link" id="method_list_link"
         | 
| 51 | 
            +
                    href="../../method_list.html">
         | 
| 52 | 
            +
                  Method List
         | 
| 53 | 
            +
                </a>
         | 
| 54 | 
            +
              
         | 
| 55 | 
            +
                <a class="full_list_link" id="file_list_link"
         | 
| 56 | 
            +
                    href="../../file_list.html">
         | 
| 57 | 
            +
                  File List
         | 
| 58 | 
            +
                </a>
         | 
| 59 | 
            +
              
         | 
| 60 | 
            +
            </div>
         | 
| 61 | 
            +
                  <div class="clear"></div>
         | 
| 62 | 
            +
                </div>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                <iframe id="search_frame"></iframe>
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                <div id="content"><h1>Exception: Clavem::Exceptions::AuthorizationDenied
         | 
| 67 | 
            +
              
         | 
| 68 | 
            +
              
         | 
| 69 | 
            +
              
         | 
| 70 | 
            +
            </h1>
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            <dl class="box">
         | 
| 73 | 
            +
              
         | 
| 74 | 
            +
                <dt class="r1">Inherits:</dt>
         | 
| 75 | 
            +
                <dd class="r1">
         | 
| 76 | 
            +
                  <span class="inheritName">RuntimeError</span>
         | 
| 77 | 
            +
                  
         | 
| 78 | 
            +
                    <ul class="fullTree">
         | 
| 79 | 
            +
                      <li>Object</li>
         | 
| 80 | 
            +
                      
         | 
| 81 | 
            +
                        <li class="next">RuntimeError</li>
         | 
| 82 | 
            +
                      
         | 
| 83 | 
            +
                        <li class="next">Clavem::Exceptions::AuthorizationDenied</li>
         | 
| 84 | 
            +
                      
         | 
| 85 | 
            +
                    </ul>
         | 
| 86 | 
            +
                    <a href="#" class="inheritanceTree">show all</a>
         | 
| 87 | 
            +
                  
         | 
| 88 | 
            +
                  </dd>
         | 
| 89 | 
            +
                
         | 
| 90 | 
            +
              
         | 
| 91 | 
            +
              
         | 
| 92 | 
            +
                
         | 
| 93 | 
            +
              
         | 
| 94 | 
            +
                
         | 
| 95 | 
            +
              
         | 
| 96 | 
            +
              
         | 
| 97 | 
            +
              
         | 
| 98 | 
            +
                <dt class="r2 last">Defined in:</dt>
         | 
| 99 | 
            +
                <dd class="r2 last">lib/clavem/authorizer.rb</dd>
         | 
| 100 | 
            +
              
         | 
| 101 | 
            +
            </dl>
         | 
| 102 | 
            +
            <div class="clear"></div>
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            <h2>Overview</h2><div class="docstring">
         | 
| 105 | 
            +
              <div class="discussion">
         | 
| 106 | 
            +
                <p>This exception is raised if the authorization was denied.</p>
         | 
| 107 | 
            +
             | 
| 108 | 
            +
             | 
| 109 | 
            +
              </div>
         | 
| 110 | 
            +
            </div>
         | 
| 111 | 
            +
            <div class="tags">
         | 
| 112 | 
            +
              
         | 
| 113 | 
            +
             | 
| 114 | 
            +
            </div>
         | 
| 115 | 
            +
             | 
| 116 | 
            +
             | 
| 117 | 
            +
             | 
| 118 | 
            +
             | 
| 119 | 
            +
             | 
| 120 | 
            +
             | 
| 121 | 
            +
             | 
| 122 | 
            +
              
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            </div>
         | 
| 125 | 
            +
             | 
| 126 | 
            +
                <div id="footer">
         | 
| 127 | 
            +
              Generated on Sun Jan 27 14:14:59 2013 by
         | 
| 128 | 
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         | 
| 129 | 
            +
              0.8.3 (ruby-1.9.3).
         | 
| 130 | 
            +
            </div>
         | 
| 131 | 
            +
             | 
| 132 | 
            +
              </body>
         | 
| 133 | 
            +
            </html>
         | 
| @@ -0,0 +1,133 @@ | |
| 1 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         | 
| 2 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         | 
| 3 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 4 | 
            +
              <head>
         | 
| 5 | 
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         | 
| 6 | 
            +
            <title>
         | 
| 7 | 
            +
              Exception: Clavem::Exceptions::Failure
         | 
| 8 | 
            +
              
         | 
| 9 | 
            +
                — Documentation by YARD 0.8.3
         | 
| 10 | 
            +
              
         | 
| 11 | 
            +
            </title>
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            <script type="text/javascript" charset="utf-8">
         | 
| 18 | 
            +
              hasFrames = window.top.frames.main ? true : false;
         | 
| 19 | 
            +
              relpath = '../../';
         | 
| 20 | 
            +
              framesUrl = "../../frames.html#!" + escape(window.location.href);
         | 
| 21 | 
            +
            </script>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 24 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
         | 
| 27 | 
            +
             | 
| 28 | 
            +
             | 
| 29 | 
            +
              </head>
         | 
| 30 | 
            +
              <body>
         | 
| 31 | 
            +
                <div id="header">
         | 
| 32 | 
            +
                  <div id="menu">
         | 
| 33 | 
            +
              
         | 
| 34 | 
            +
                <a href="../../_index.html">Index (F)</a> »
         | 
| 35 | 
            +
                <span class='title'><span class='object_link'><a href="../../Clavem.html" title="Clavem (module)">Clavem</a></span></span> » <span class='title'><span class='object_link'><a href="../Exceptions.html" title="Clavem::Exceptions (module)">Exceptions</a></span></span>
         | 
| 36 | 
            +
                 » 
         | 
| 37 | 
            +
                <span class="title">Failure</span>
         | 
| 38 | 
            +
              
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
         | 
| 41 | 
            +
            </div>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                  <div id="search">
         | 
| 44 | 
            +
              
         | 
| 45 | 
            +
                <a class="full_list_link" id="class_list_link"
         | 
| 46 | 
            +
                    href="../../class_list.html">
         | 
| 47 | 
            +
                  Class List
         | 
| 48 | 
            +
                </a>
         | 
| 49 | 
            +
              
         | 
| 50 | 
            +
                <a class="full_list_link" id="method_list_link"
         | 
| 51 | 
            +
                    href="../../method_list.html">
         | 
| 52 | 
            +
                  Method List
         | 
| 53 | 
            +
                </a>
         | 
| 54 | 
            +
              
         | 
| 55 | 
            +
                <a class="full_list_link" id="file_list_link"
         | 
| 56 | 
            +
                    href="../../file_list.html">
         | 
| 57 | 
            +
                  File List
         | 
| 58 | 
            +
                </a>
         | 
| 59 | 
            +
              
         | 
| 60 | 
            +
            </div>
         | 
| 61 | 
            +
                  <div class="clear"></div>
         | 
| 62 | 
            +
                </div>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                <iframe id="search_frame"></iframe>
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                <div id="content"><h1>Exception: Clavem::Exceptions::Failure
         | 
| 67 | 
            +
              
         | 
| 68 | 
            +
              
         | 
| 69 | 
            +
              
         | 
| 70 | 
            +
            </h1>
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            <dl class="box">
         | 
| 73 | 
            +
              
         | 
| 74 | 
            +
                <dt class="r1">Inherits:</dt>
         | 
| 75 | 
            +
                <dd class="r1">
         | 
| 76 | 
            +
                  <span class="inheritName">Exception</span>
         | 
| 77 | 
            +
                  
         | 
| 78 | 
            +
                    <ul class="fullTree">
         | 
| 79 | 
            +
                      <li>Object</li>
         | 
| 80 | 
            +
                      
         | 
| 81 | 
            +
                        <li class="next">Exception</li>
         | 
| 82 | 
            +
                      
         | 
| 83 | 
            +
                        <li class="next">Clavem::Exceptions::Failure</li>
         | 
| 84 | 
            +
                      
         | 
| 85 | 
            +
                    </ul>
         | 
| 86 | 
            +
                    <a href="#" class="inheritanceTree">show all</a>
         | 
| 87 | 
            +
                  
         | 
| 88 | 
            +
                  </dd>
         | 
| 89 | 
            +
                
         | 
| 90 | 
            +
              
         | 
| 91 | 
            +
              
         | 
| 92 | 
            +
                
         | 
| 93 | 
            +
              
         | 
| 94 | 
            +
                
         | 
| 95 | 
            +
              
         | 
| 96 | 
            +
              
         | 
| 97 | 
            +
              
         | 
| 98 | 
            +
                <dt class="r2 last">Defined in:</dt>
         | 
| 99 | 
            +
                <dd class="r2 last">lib/clavem/authorizer.rb</dd>
         | 
| 100 | 
            +
              
         | 
| 101 | 
            +
            </dl>
         | 
| 102 | 
            +
            <div class="clear"></div>
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            <h2>Overview</h2><div class="docstring">
         | 
| 105 | 
            +
              <div class="discussion">
         | 
| 106 | 
            +
                <p>This exception is raised whether an error occurs.</p>
         | 
| 107 | 
            +
             | 
| 108 | 
            +
             | 
| 109 | 
            +
              </div>
         | 
| 110 | 
            +
            </div>
         | 
| 111 | 
            +
            <div class="tags">
         | 
| 112 | 
            +
              
         | 
| 113 | 
            +
             | 
| 114 | 
            +
            </div>
         | 
| 115 | 
            +
             | 
| 116 | 
            +
             | 
| 117 | 
            +
             | 
| 118 | 
            +
             | 
| 119 | 
            +
             | 
| 120 | 
            +
             | 
| 121 | 
            +
             | 
| 122 | 
            +
              
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            </div>
         | 
| 125 | 
            +
             | 
| 126 | 
            +
                <div id="footer">
         | 
| 127 | 
            +
              Generated on Sun Jan 27 14:14:59 2013 by
         | 
| 128 | 
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         | 
| 129 | 
            +
              0.8.3 (ruby-1.9.3).
         | 
| 130 | 
            +
            </div>
         | 
| 131 | 
            +
             | 
| 132 | 
            +
              </body>
         | 
| 133 | 
            +
            </html>
         | 
| @@ -0,0 +1,133 @@ | |
| 1 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         | 
| 2 | 
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         | 
| 3 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 4 | 
            +
              <head>
         | 
| 5 | 
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         | 
| 6 | 
            +
            <title>
         | 
| 7 | 
            +
              Exception: Clavem::Exceptions::Timeout
         | 
| 8 | 
            +
              
         | 
| 9 | 
            +
                — Documentation by YARD 0.8.3
         | 
| 10 | 
            +
              
         | 
| 11 | 
            +
            </title>
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            <script type="text/javascript" charset="utf-8">
         | 
| 18 | 
            +
              hasFrames = window.top.frames.main ? true : false;
         | 
| 19 | 
            +
              relpath = '../../';
         | 
| 20 | 
            +
              framesUrl = "../../frames.html#!" + escape(window.location.href);
         | 
| 21 | 
            +
            </script>
         | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 24 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
         | 
| 27 | 
            +
             | 
| 28 | 
            +
             | 
| 29 | 
            +
              </head>
         | 
| 30 | 
            +
              <body>
         | 
| 31 | 
            +
                <div id="header">
         | 
| 32 | 
            +
                  <div id="menu">
         | 
| 33 | 
            +
              
         | 
| 34 | 
            +
                <a href="../../_index.html">Index (T)</a> »
         | 
| 35 | 
            +
                <span class='title'><span class='object_link'><a href="../../Clavem.html" title="Clavem (module)">Clavem</a></span></span> » <span class='title'><span class='object_link'><a href="../Exceptions.html" title="Clavem::Exceptions (module)">Exceptions</a></span></span>
         | 
| 36 | 
            +
                 » 
         | 
| 37 | 
            +
                <span class="title">Timeout</span>
         | 
| 38 | 
            +
              
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
         | 
| 41 | 
            +
            </div>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                  <div id="search">
         | 
| 44 | 
            +
              
         | 
| 45 | 
            +
                <a class="full_list_link" id="class_list_link"
         | 
| 46 | 
            +
                    href="../../class_list.html">
         | 
| 47 | 
            +
                  Class List
         | 
| 48 | 
            +
                </a>
         | 
| 49 | 
            +
              
         | 
| 50 | 
            +
                <a class="full_list_link" id="method_list_link"
         | 
| 51 | 
            +
                    href="../../method_list.html">
         | 
| 52 | 
            +
                  Method List
         | 
| 53 | 
            +
                </a>
         | 
| 54 | 
            +
              
         | 
| 55 | 
            +
                <a class="full_list_link" id="file_list_link"
         | 
| 56 | 
            +
                    href="../../file_list.html">
         | 
| 57 | 
            +
                  File List
         | 
| 58 | 
            +
                </a>
         | 
| 59 | 
            +
              
         | 
| 60 | 
            +
            </div>
         | 
| 61 | 
            +
                  <div class="clear"></div>
         | 
| 62 | 
            +
                </div>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                <iframe id="search_frame"></iframe>
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                <div id="content"><h1>Exception: Clavem::Exceptions::Timeout
         | 
| 67 | 
            +
              
         | 
| 68 | 
            +
              
         | 
| 69 | 
            +
              
         | 
| 70 | 
            +
            </h1>
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            <dl class="box">
         | 
| 73 | 
            +
              
         | 
| 74 | 
            +
                <dt class="r1">Inherits:</dt>
         | 
| 75 | 
            +
                <dd class="r1">
         | 
| 76 | 
            +
                  <span class="inheritName">Exception</span>
         | 
| 77 | 
            +
                  
         | 
| 78 | 
            +
                    <ul class="fullTree">
         | 
| 79 | 
            +
                      <li>Object</li>
         | 
| 80 | 
            +
                      
         | 
| 81 | 
            +
                        <li class="next">Exception</li>
         | 
| 82 | 
            +
                      
         | 
| 83 | 
            +
                        <li class="next">Clavem::Exceptions::Timeout</li>
         | 
| 84 | 
            +
                      
         | 
| 85 | 
            +
                    </ul>
         | 
| 86 | 
            +
                    <a href="#" class="inheritanceTree">show all</a>
         | 
| 87 | 
            +
                  
         | 
| 88 | 
            +
                  </dd>
         | 
| 89 | 
            +
                
         | 
| 90 | 
            +
              
         | 
| 91 | 
            +
              
         | 
| 92 | 
            +
                
         | 
| 93 | 
            +
              
         | 
| 94 | 
            +
                
         | 
| 95 | 
            +
              
         | 
| 96 | 
            +
              
         | 
| 97 | 
            +
              
         | 
| 98 | 
            +
                <dt class="r2 last">Defined in:</dt>
         | 
| 99 | 
            +
                <dd class="r2 last">lib/clavem/authorizer.rb</dd>
         | 
| 100 | 
            +
              
         | 
| 101 | 
            +
            </dl>
         | 
| 102 | 
            +
            <div class="clear"></div>
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            <h2>Overview</h2><div class="docstring">
         | 
| 105 | 
            +
              <div class="discussion">
         | 
| 106 | 
            +
                <p>This exception is raised if the timeout expired.</p>
         | 
| 107 | 
            +
             | 
| 108 | 
            +
             | 
| 109 | 
            +
              </div>
         | 
| 110 | 
            +
            </div>
         | 
| 111 | 
            +
            <div class="tags">
         | 
| 112 | 
            +
              
         | 
| 113 | 
            +
             | 
| 114 | 
            +
            </div>
         | 
| 115 | 
            +
             | 
| 116 | 
            +
             | 
| 117 | 
            +
             | 
| 118 | 
            +
             | 
| 119 | 
            +
             | 
| 120 | 
            +
             | 
| 121 | 
            +
             | 
| 122 | 
            +
              
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            </div>
         | 
| 125 | 
            +
             | 
| 126 | 
            +
                <div id="footer">
         | 
| 127 | 
            +
              Generated on Sun Jan 27 14:14:59 2013 by
         | 
| 128 | 
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         | 
| 129 | 
            +
              0.8.3 (ruby-1.9.3).
         | 
| 130 | 
            +
            </div>
         | 
| 131 | 
            +
             | 
| 132 | 
            +
              </body>
         | 
| 133 | 
            +
            </html>
         |