siffer 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/Rakefile +2 -2
  2. data/doc/rdoc/classes/Siffer.html +253 -368
  3. data/doc/rdoc/classes/Siffer/Agent.html +169 -288
  4. data/doc/rdoc/classes/Siffer/Container.html +158 -279
  5. data/doc/rdoc/classes/Siffer/Messages.html +79 -139
  6. data/doc/rdoc/classes/Siffer/Messages/Ack.html +109 -210
  7. data/doc/rdoc/classes/Siffer/Messages/Acl.html +78 -155
  8. data/doc/rdoc/classes/Siffer/Messages/Error.html +151 -242
  9. data/doc/rdoc/classes/Siffer/Messages/Message.html +227 -351
  10. data/doc/rdoc/classes/Siffer/Messages/Message/Header.html +102 -176
  11. data/doc/rdoc/classes/Siffer/Messages/Register.html +147 -250
  12. data/doc/rdoc/classes/Siffer/Messages/RequestBody.html +177 -292
  13. data/doc/rdoc/classes/Siffer/Messages/Status.html +149 -262
  14. data/doc/rdoc/classes/Siffer/Messaging.html +204 -323
  15. data/doc/rdoc/classes/Siffer/Protocol.html +246 -380
  16. data/doc/rdoc/classes/Siffer/Protocol/NonPostRequest.html +53 -110
  17. data/doc/rdoc/classes/Siffer/Protocol/UnknownPath.html +53 -110
  18. data/doc/rdoc/classes/Siffer/Registration.html +243 -383
  19. data/doc/rdoc/classes/Siffer/Request.html +97 -203
  20. data/doc/rdoc/classes/Siffer/RequestLogger.html +102 -204
  21. data/doc/rdoc/classes/Siffer/Response.html +85 -176
  22. data/doc/rdoc/classes/Siffer/Server.html +150 -236
  23. data/doc/rdoc/created.rid +1 -1
  24. data/doc/rdoc/files/LICENSE.html +75 -128
  25. data/doc/rdoc/files/README_rdoc.html +130 -183
  26. data/doc/rdoc/files/lib/siffer/agent_rb.html +49 -0
  27. data/doc/rdoc/files/lib/siffer/container_rb.html +57 -0
  28. data/doc/rdoc/files/lib/siffer/messages/ack_rb.html +49 -0
  29. data/doc/rdoc/files/lib/siffer/messages/acl_rb.html +49 -0
  30. data/doc/rdoc/files/lib/siffer/messages/error_rb.html +49 -0
  31. data/doc/rdoc/files/lib/siffer/messages/message_rb.html +49 -0
  32. data/doc/rdoc/files/lib/siffer/messages/register_rb.html +49 -0
  33. data/doc/rdoc/files/lib/siffer/messages/request_body_rb.html +49 -0
  34. data/doc/rdoc/files/lib/siffer/messages/status_rb.html +49 -0
  35. data/doc/rdoc/files/lib/siffer/messages_rb.html +63 -0
  36. data/doc/rdoc/files/lib/siffer/messaging_rb.html +49 -0
  37. data/doc/rdoc/files/lib/siffer/protocol_rb.html +49 -0
  38. data/doc/rdoc/files/lib/siffer/registration_rb.html +49 -0
  39. data/doc/rdoc/files/lib/siffer/request_logger_rb.html +49 -0
  40. data/doc/rdoc/files/lib/siffer/request_rb.html +49 -0
  41. data/doc/rdoc/files/lib/siffer/response_rb.html +49 -0
  42. data/doc/rdoc/files/lib/siffer/server_rb.html +49 -0
  43. data/doc/rdoc/files/lib/siffer_rb.html +62 -113
  44. data/doc/rdoc/fr_class_index.html +25 -47
  45. data/doc/rdoc/fr_file_index.html +39 -46
  46. data/doc/rdoc/fr_method_index.html +4539 -96
  47. data/doc/rdoc/index.html +14 -23
  48. data/doc/rdoc/rdoc-style.css +314 -203
  49. data/lib/siffer.rb +6 -6
  50. data/lib/{agent.rb → siffer/agent.rb} +5 -3
  51. data/lib/{container.rb → siffer/container.rb} +3 -5
  52. data/lib/siffer/messages.rb +7 -0
  53. data/lib/{messages → siffer/messages}/ack.rb +0 -0
  54. data/lib/{messages → siffer/messages}/acl.rb +0 -0
  55. data/lib/{messages → siffer/messages}/error.rb +0 -0
  56. data/lib/{messages → siffer/messages}/message.rb +0 -0
  57. data/lib/{messages → siffer/messages}/register.rb +0 -0
  58. data/lib/{messages → siffer/messages}/request_body.rb +0 -0
  59. data/lib/{messages → siffer/messages}/status.rb +0 -0
  60. data/lib/{messaging.rb → siffer/messaging.rb} +8 -5
  61. data/lib/{protocol.rb → siffer/protocol.rb} +37 -32
  62. data/lib/{registration.rb → siffer/registration.rb} +2 -2
  63. data/lib/siffer/request.rb +28 -0
  64. data/lib/{request_logger.rb → siffer/request_logger.rb} +8 -7
  65. data/lib/{response.rb → siffer/response.rb} +1 -1
  66. data/lib/{server.rb → siffer/server.rb} +5 -3
  67. data/spec/agent_spec.rb +6 -11
  68. data/spec/container_spec.rb +2 -2
  69. data/spec/default_agent +1 -1
  70. data/spec/messaging_spec.rb +3 -6
  71. data/spec/protocol_spec.rb +27 -26
  72. data/spec/registration_spec.rb +2 -2
  73. data/spec/request_logger_spec.rb +22 -9
  74. data/spec/request_spec.rb +15 -0
  75. data/spec/response_spec.rb +2 -2
  76. data/spec/server_spec.rb +0 -5
  77. data/spec/spec_helper.rb +9 -0
  78. metadata +40 -38
  79. data/doc/rdoc/files/lib/agent_rb.html +0 -101
  80. data/doc/rdoc/files/lib/container_rb.html +0 -108
  81. data/doc/rdoc/files/lib/messages/ack_rb.html +0 -101
  82. data/doc/rdoc/files/lib/messages/acl_rb.html +0 -101
  83. data/doc/rdoc/files/lib/messages/error_rb.html +0 -101
  84. data/doc/rdoc/files/lib/messages/message_rb.html +0 -101
  85. data/doc/rdoc/files/lib/messages/register_rb.html +0 -101
  86. data/doc/rdoc/files/lib/messages/request_body_rb.html +0 -101
  87. data/doc/rdoc/files/lib/messages/status_rb.html +0 -101
  88. data/doc/rdoc/files/lib/messages_rb.html +0 -114
  89. data/doc/rdoc/files/lib/messaging_rb.html +0 -101
  90. data/doc/rdoc/files/lib/protocol_rb.html +0 -101
  91. data/doc/rdoc/files/lib/registration_rb.html +0 -101
  92. data/doc/rdoc/files/lib/request_logger_rb.html +0 -101
  93. data/doc/rdoc/files/lib/request_rb.html +0 -101
  94. data/doc/rdoc/files/lib/response_rb.html +0 -101
  95. data/doc/rdoc/files/lib/server_rb.html +0 -101
  96. data/lib/messages.rb +0 -7
  97. data/lib/request.rb +0 -25
@@ -1 +1 @@
1
- Mon, 19 Jan 2009 19:38:07 -0700
1
+ Sun, 25 Jan 2009 18:28:29 -0700
@@ -1,129 +1,76 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>File: LICENSE</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="fileHeader">
50
- <h1>LICENSE</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>LICENSE
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Fri Dec 19 07:32:30 -0700 2008</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
- <div id="description">
72
- <p>
73
- Copyright (c) 2008 h3o(software)
74
- </p>
75
- <p>
76
- Permission is hereby granted, free of charge, to any person obtaining a
77
- copy of this software and associated documentation files (the
78
- &quot;Software&quot;), to deal in the Software without restriction,
79
- including without limitation the rights to use, copy, modify, merge,
80
- publish, distribute, sublicense, and/or sell copies of the Software, and to
81
- permit persons to whom the Software is furnished to do so, subject to the
82
- following conditions:
83
- </p>
84
- <p>
85
- The above copyright notice and this permission notice shall be included in
86
- all copies or substantial portions of the Software.
87
- </p>
88
- <p>
89
- THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
90
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
91
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
92
- NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
93
- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
94
- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
95
- USE OR OTHER DEALINGS IN THE SOFTWARE.
96
- </p>
97
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html lang='en'>
3
+ <head>
4
+ <title>File: LICENSE [Siffer == h3o(software) SIF]</title>
5
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
6
+ <link href='.././rdoc-style.css' media='screen' rel='stylesheet' type='text/css'>
7
+ <script type='text/javascript'>
8
+ //<![CDATA[
9
+ function popupCode(url) {
10
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
11
+ }
12
+
13
+ function toggleCode(id) {
14
+ var code = document.getElementById(id)
15
+
16
+ code.style.display = code.style.display != 'block' ? 'block' : 'none'
17
+ return true
18
+ }
19
+
20
+ // Make codeblocks hidden by default
21
+ document.writeln('<' + 'style type="text/css">.method .source pre { display: none }<\/style>')
22
+ //]]>
23
+ </script>
24
+ </head>
25
+ <body class='page'>
26
+ <div class='file' id='wrapper'>
27
+ <div class='header'>
28
+ <h1 class='name'>LICENSE</h1>
29
+ <div class='paths'>
30
+ LICENSE
31
+ </div>
32
+ <div class='last-update'>
33
+ Last Update:
34
+ <span class='datetime'>Fri Dec 19 07:32:30 -0700 2008</span>
35
+ </div>
36
+ </div>
37
+ <div id='content'>
38
+ <div id='text'>
39
+ <div id='description'>
40
+ <p>
41
+ Copyright &#169; 2008 h3o(software)
42
+ </p>
43
+ <p>
44
+ Permission is hereby granted, free of charge, to any person obtaining a
45
+ copy of this software and associated documentation files (the
46
+ &#8220;Software&#8221;), to deal in the Software without restriction,
47
+ including without limitation the rights to use, copy, modify, merge,
48
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
49
+ permit persons to whom the Software is furnished to do so, subject to the
50
+ following conditions:
51
+ </p>
52
+ <p>
53
+ The above copyright notice and this permission notice shall be included in
54
+ all copies or substantial portions of the Software.
55
+ </p>
56
+ <p>
57
+ THE SOFTWARE IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND,
58
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
59
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
60
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
61
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
62
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
63
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
64
+ </p>
65
+ </div>
66
+ <div id='section'>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ <div id='footer-push'></div>
98
71
  </div>
99
-
100
-
101
- </div>
102
-
103
-
104
- </div>
105
-
106
-
107
- <!-- if includes -->
108
-
109
- <div id="section">
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
- <!-- if method_list -->
119
-
120
-
121
- </div>
122
-
123
-
124
- <div id="validator-badges">
125
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
126
- </div>
127
-
128
- </body>
129
- </html>
72
+ <div id='footer'>
73
+ <a href="http://github.com/mislav/hanna/tree/master"><strong>Hanna</strong> RDoc template</a>
74
+ </div>
75
+ </body>
76
+ </html>
@@ -1,184 +1,131 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>File: README.rdoc</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="fileHeader">
50
- <h1>README.rdoc</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>README.rdoc
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Sun Dec 21 20:02:32 -0700 2008</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
- <div id="description">
72
- <h1>Project: <a href="../classes/Siffer.html">Siffer</a> - h3o(software) SIF Implementation</h1>
73
- <h2>Welcome to <a href="../classes/Siffer.html">Siffer</a></h2>
74
- <p>
75
- This is the h3o(software) implementation of the SIF (School
76
- Interoperability Framework) in Ruby. The project is Ruby based and includes
77
- all of the SIF infrastructure (Data Model, Agents, Zone Integration Servers
78
- and even database stores).
79
- </p>
80
- <h2>Goal</h2>
81
- <p>
82
- The overriding goal of this project is to provide anyone in the education
83
- industry a quick, easy and simple SIF implementation tool. The entire
84
- system can be managed by a browser.
85
- </p>
86
- <h3>Setup and Deployment</h3>
87
- <p>
88
- <a href="../classes/Siffer.html">Siffer</a> is easy to install and setup.
89
- Zone Integration Servers and Agents can be created from the browser.
90
- Administrators will be able to manage all components of their deployment
91
- from a command line or browser.
92
- </p>
93
- <h2>Philosophy</h2>
94
- <p>
95
- Remove the complexity from the implementation. Make the execution and
96
- deployment of SIF easy.
97
- </p>
98
- <h2>Implementation Information (sifinfo.org)</h2>
99
- <p>
100
- This implementation is based on version 2.2 of the SIF Specification. The
101
- Specification is in <a
102
- href="../../SIF%20ImplementationSpecification.pdf">PDF</a> format inside
103
- the doc folder.
104
- </p>
105
- <p>
106
- More information here: <a href="http://sifinfo.org">sifinfo.org</a>.
107
- </p>
108
- <h2>Description of Contents</h2>
109
- <h2>Useage</h2>
110
- <h2>License</h2>
111
- <p>
112
- <a href="../classes/Siffer.html">Siffer</a> is released under the MIT
113
- License
114
- </p>
115
- <h2>Installation</h2>
116
- <p>
117
- <a href="../classes/Siffer.html">Siffer</a> can be installed from the
118
- siffer gem:
119
- </p>
120
- <p>
121
- % [sudo] gem install siffer
122
- </p>
123
- <h2>Support</h2>
124
- <p>
125
- Please contact the author (<a
126
- href="mailto://clint.hill@h3osoftware.com">clint.hill@h3osoftware.com</a>)
127
- for support issues. If you want to contribute do the same.
128
- </p>
129
- <h3>Contributors</h3>
130
- <p>
131
- This project is developed by spec. Build spec tests for all of your
132
- features. Document everything.
133
- </p>
134
- <h2>Contact</h2>
135
- <ul>
136
- <li>Author:: {Clint Hill} <a
137
- href="mailto://clint.hill@h3osoftware.com">clint.hill@h3osoftware.com</a>
138
-
139
- </li>
140
- <li>Home Page:: <a
141
- href="http://h3osoftware.com/siffer">h3osoftware.com/siffer</a>
142
-
143
- </li>
144
- <li>GitHub:: git://github.com/clinth3o/siffer.git
145
-
146
- </li>
147
- <li>RubyForge:: <a
148
- href="http://rubyforge.org/projects/siffer">rubyforge.org/projects/siffer</a>/
149
-
150
- </li>
151
- </ul>
152
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html lang='en'>
3
+ <head>
4
+ <title>File: README.rdoc [Siffer == h3o(software) SIF]</title>
5
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
6
+ <link href='.././rdoc-style.css' media='screen' rel='stylesheet' type='text/css'>
7
+ <script type='text/javascript'>
8
+ //<![CDATA[
9
+ function popupCode(url) {
10
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
11
+ }
12
+
13
+ function toggleCode(id) {
14
+ var code = document.getElementById(id)
15
+
16
+ code.style.display = code.style.display != 'block' ? 'block' : 'none'
17
+ return true
18
+ }
19
+
20
+ // Make codeblocks hidden by default
21
+ document.writeln('<' + 'style type="text/css">.method .source pre { display: none }<\/style>')
22
+ //]]>
23
+ </script>
24
+ </head>
25
+ <body class='page'>
26
+ <div class='file' id='wrapper'>
27
+ <div class='header'>
28
+ <div class='name'>README.rdoc</div>
29
+ <div class='paths'>
30
+ README.rdoc
31
+ </div>
32
+ <div class='last-update'>
33
+ Last Update:
34
+ <span class='datetime'>Sun Dec 21 20:02:32 -0700 2008</span>
35
+ </div>
36
+ </div>
37
+ <div id='content'>
38
+ <div id='text'>
39
+ <div id='description'>
40
+ <h1>Project: <a href="../classes/Siffer.html">Siffer</a> - h3o(software) SIF Implementation</h1>
41
+ <h2>Welcome to <a href="../classes/Siffer.html">Siffer</a></h2>
42
+ <p>
43
+ This is the h3o(software) implementation of the SIF (School
44
+ Interoperability Framework) in Ruby. The project is Ruby based and includes
45
+ all of the SIF infrastructure (Data Model, Agents, Zone Integration Servers
46
+ and even database stores).
47
+ </p>
48
+ <h2>Goal</h2>
49
+ <p>
50
+ The overriding goal of this project is to provide anyone in the education
51
+ industry a quick, easy and simple SIF implementation tool. The entire
52
+ system can be managed by a browser.
53
+ </p>
54
+ <h3>Setup and Deployment</h3>
55
+ <p>
56
+ <a href="../classes/Siffer.html">Siffer</a> is easy to install and setup.
57
+ Zone Integration Servers and Agents can be created from the browser.
58
+ Administrators will be able to manage all components of their deployment
59
+ from a command line or browser.
60
+ </p>
61
+ <h2>Philosophy</h2>
62
+ <p>
63
+ Remove the complexity from the implementation. Make the execution and
64
+ deployment of SIF easy.
65
+ </p>
66
+ <h2>Implementation Information (sifinfo.org)</h2>
67
+ <p>
68
+ This implementation is based on version 2.2 of the SIF Specification. The
69
+ Specification is in <a
70
+ href="../../SIF%20ImplementationSpecification.pdf">PDF</a> format inside
71
+ the doc folder.
72
+ </p>
73
+ <p>
74
+ More information here: <a href="http://sifinfo.org.">sifinfo.org.</a>
75
+ </p>
76
+ <h2>Description of Contents</h2>
77
+ <h2>Useage</h2>
78
+ <h2>License</h2>
79
+ <p>
80
+ <a href="../classes/Siffer.html">Siffer</a> is released under the MIT
81
+ License
82
+ </p>
83
+ <h2>Installation</h2>
84
+ <p>
85
+ <a href="../classes/Siffer.html">Siffer</a> can be installed from the
86
+ siffer gem:
87
+ </p>
88
+ <p>
89
+ % [sudo] gem install siffer
90
+ </p>
91
+ <h2>Support</h2>
92
+ <p>
93
+ Please contact the author (<a
94
+ href="mailto://clint.hill@h3osoftware.com">clint.hill@h3osoftware.com</a>)
95
+ for support issues. If you want to contribute do the same.
96
+ </p>
97
+ <h3>Contributors</h3>
98
+ <p>
99
+ This project is developed by spec. Build spec tests for all of your
100
+ features. Document everything.
101
+ </p>
102
+ <h2>Contact</h2>
103
+ <ul>
104
+ <li>Author:: {Clint Hill} <a
105
+ href="mailto://clint.hill@h3osoftware.com">clint.hill@h3osoftware.com</a>
106
+
107
+ </li>
108
+ <li>Home Page:: <a
109
+ href="http://h3osoftware.com/siffer">h3osoftware.com/siffer</a>
110
+
111
+ </li>
112
+ <li>GitHub:: git://github.com/clinth3o/siffer.git
113
+
114
+ </li>
115
+ <li>RubyForge:: <a
116
+ href="http://rubyforge.org/projects/siffer/">rubyforge.org/projects/siffer/</a>
117
+
118
+ </li>
119
+ </ul>
120
+ </div>
121
+ <div id='section'>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ <div id='footer-push'></div>
153
126
  </div>
154
-
155
-
156
- </div>
157
-
158
-
159
- </div>
160
-
161
-
162
- <!-- if includes -->
163
-
164
- <div id="section">
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
- <!-- if method_list -->
174
-
175
-
176
- </div>
177
-
178
-
179
- <div id="validator-badges">
180
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
181
- </div>
182
-
183
- </body>
184
- </html>
127
+ <div id='footer'>
128
+ <a href="http://github.com/mislav/hanna/tree/master"><strong>Hanna</strong> RDoc template</a>
129
+ </div>
130
+ </body>
131
+ </html>