public
Fork of mojombo/god
Description: Ruby process monitor
Homepage: http://god.rubyforge.org
Clone URL: git://github.com/kevinclark/god.git
Search Repo:
Changed version number to 0.7.3, referenced github repo and external 
stylesheet
Bertg (author)
Sat Mar 01 05:51:15 -0800 2008
commit  f43bb13ed51dad95d6ba51de9fe80979d81df0b4
tree    9ed7fc4e9a777df5b9565749a8501149b601ead4
parent  e0f8fdd3ec93c46448b69d5e6746af48ecb58a65
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
 
 
 
 
 
187
188
189
190
...
225
226
227
228
 
229
230
231
 
232
233
234
...
1
2
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
5
6
7
8
9
10
11
12
...
47
48
49
 
50
51
52
 
53
54
55
56
0
@@ -1,189 +1,11 @@
0
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
0
 <html xmlns="http://www.w3.org/1999/xhtml">
0
 <head>
0
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
0
-<title>god - process and task monitoring done right</title>
0
-<link href="styles.css" rel="stylesheet" type="text/css" />
0
-<style type="text/css" media="screen">
0
-* {
0
-  margin: 0;
0
-  font-size: 100%;
0
-}
0
-
0
-body {
0
-  font: normal .8em/1.5em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
-  color: #484848;
0
-  background: #E6EAE9 url(images/bg_grey.gif);
0
-}
0
-
0
-a {
0
-  color: #c75f3e;
0
-  text-decoration: none;
0
-}
0
-
0
-a:hover,
0
-a:active {
0
-  text-decoration: underline;
0
-}
0
-
0
-#mothership {
0
-  width: 307px;
0
-  height: 117px;
0
-  margin: 0 auto;
0
-  background: url(images/god_logo1.gif);
0
-}
0
-
0
-#content {
0
-  width: 700px;
0
-  margin: 3px auto;
0
-  background: white;
0
-  border: 1px solid #444;
0
-  padding: 0 24px;
0
-  background: #f8f8ff;
0
-  overflow: hidden;
0
-}
0
-
0
-.banner {
0
-  margin-top: 24px;
0
-  border: 1px solid #ddd;
0
-  width: 698px;
0
-  height: 150px;
0
-  background: url(images/banner.jpg);
0
-}
0
-
0
-#menu {
0
-  margin-top: 5px;
0
-}
0
-
0
-#menu div.dots {
0
-  background: url(images/red_dot.gif) repeat;
0
-  height: 5px;
0
-  width: 700px;
0
-  font-size: 0;
0
-}
0
-
0
-#menu ul {
0
-  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
-  font-weight: bold;
0
-  text-transform: uppercase;
0
-  color: #4D4D4D;
0
-  font-size: 12px;
0
-  padding: 0;
0
-  margin: 0;
0
-  margin-top: 0 !important;
0
-  margin-top: -2px;
0
-}
0
-
0
-#menu li {
0
-  display: inline;
0
-  margin: 0 30px 0 0;
0
-}
0
-
0
-#menu a:link,
0
-#menu a:visited {
0
-  color: #4D4D4D;
0
-  text-decoration: none;
0
-}
0
-
0
-#menu a:hover,
0
-#menu a:active {
0
-  color: black;
0
-  text-decoration: none;
0
-}
0
-
0
-#page_home #menu li.menu_home a {
0
-  color: #A70000;
0
-}
0
-
0
-.columnleft {
0
-  float: left;
0
-  width: 325px;
0
-  margin-bottom: 20px;
0
-}
0
-
0
-.columnleft p {
0
-    text-align: justify;
0
-}
0
-
0
-.columnright {
0
-  float: right;
0
-  width: 325px;
0
-  margin-bottom: 20px;
0
-}
0
-
0
-h1 {
0
-  font: bold 1.5em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
-  color: #f36e21;
0
-  text-transform: uppercase;
0
-  margin: 1.5em 0 .5em 0;
0
-  clear: both;
0
-}
0
-
0
-p {
0
-  margin-bottom: 1em;
0
-}
0
-
0
-ul {
0
- margin-bottom: 1em;
0
-}
0
-
0
-ul.features {
0
-  padding: 0;
0
-  margin-left: 1.5em !important;
0
-  margin-left: 1.3em;
0
-}
0
-
0
-ul.features li {
0
-  list-style-position: outside;
0
-  list-style-type: circle;
0
-  list-style-image: url(images/bullet.jpg);
0
-  line-height: 1.4em;
0
-}
0
-
0
-#footer {
0
-  text-align: center;
0
-  color: white;
0
-  margin-bottom: 50px;
0
-}
0
-
0
-
0
-
0
-pre {
0
- line-height: 1.3;
0
- border: 1px solid #ccc;
0
- padding: 1em;
0
- background-color: #efefef;
0
- margin: 1em 0;
0
-}
0
-
0
-code {
0
- font-size: 1.2em;
0
-}
0
-
0
-.ruby .keywords {
0
- color: blue;
0
-}
0
-
0
-.ruby .comment {
0
-  color : green;
0
-}
0
-
0
-.ruby .string {
0
-  color : teal;
0
-}
0
-
0
-.ruby .keywords {
0
-  color : navy;
0
-}
0
-
0
-.ruby .brackets {
0
-  color : navy;
0
-}
0
-</style>
0
-
0
-<script type="text/javascript" src="javascripts/code_highlighter.js"></script>
0
-<script type="text/javascript" src="javascripts/ruby.js"></script>
0
-
0
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
0
+ <title>god - process and task monitoring done right</title>
0
+ <link href="stylesheets/layout.css" rel="stylesheet" type="text/css" />
0
+ <script type="text/javascript" src="javascripts/code_highlighter.js"></script>
0
+ <script type="text/javascript" src="javascripts/ruby.js"></script>
0
 </head>
0
 
0
 <body id="page_home">
0
0
@@ -225,10 +47,10 @@
0
   </ul>
0
   </div>
0
   
0
-  <h1>Installation (v 0.6)</h1>
0
+  <h1>Installation (v 0.7.3)</h1>
0
   <p>The best way to get god is via rubygems:</p>
0
   <pre>$ sudo gem install god</pre>
0
-  <p>You can also peruse or clone the code from <a href="http://repo.or.cz/w/god.git">http://repo.or.cz/w/god.git</a></p>
0
+  <p>You can also peruse or clone the code from <a href="git://github.com/mojombo/god.git">git://github.com/mojombo/god.git</a></p>
0
   
0
   <h1>Requirements</h1>
0
   
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
0
@@ -1 +1,175 @@
0
+* {
0
+  margin: 0;
0
+  font-size: 100%;
0
+}
0
+
0
+body {
0
+  font: normal .8em/1.5em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
+  color: #484848;
0
+  background: #E6EAE9 url(../images/bg_grey.gif);
0
+}
0
+
0
+a {
0
+  color: #c75f3e;
0
+  text-decoration: none;
0
+}
0
+
0
+a:hover,
0
+a:active {
0
+  text-decoration: underline;
0
+}
0
+
0
+#mothership {
0
+  width: 307px;
0
+  height: 117px;
0
+  margin: 0 auto;
0
+  background: url(../images/god_logo1.gif);
0
+}
0
+
0
+#content {
0
+  width: 700px;
0
+  margin: 3px auto;
0
+  background: white;
0
+  border: 1px solid #444;
0
+  padding: 0 24px;
0
+  background: #f8f8ff;
0
+  overflow: hidden;
0
+}
0
+
0
+.banner {
0
+  margin-top: 24px;
0
+  border: 1px solid #ddd;
0
+  width: 698px;
0
+  height: 150px;
0
+  background: url(../images/banner.jpg);
0
+}
0
+
0
+#menu {
0
+  margin-top: 5px;
0
+}
0
+
0
+#menu div.dots {
0
+  background: url(../images/red_dot.gif) repeat;
0
+  height: 5px;
0
+  width: 700px;
0
+  font-size: 0;
0
+}
0
+
0
+#menu ul {
0
+  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
+  font-weight: bold;
0
+  text-transform: uppercase;
0
+  color: #4D4D4D;
0
+  font-size: 12px;
0
+  padding: 0;
0
+  margin: 0;
0
+  margin-top: 0 !important;
0
+  margin-top: -2px;
0
+}
0
+
0
+#menu li {
0
+  display: inline;
0
+  margin: 0 30px 0 0;
0
+}
0
+
0
+#menu a:link,
0
+#menu a:visited {
0
+  color: #4D4D4D;
0
+  text-decoration: none;
0
+}
0
+
0
+#menu a:hover,
0
+#menu a:active {
0
+  color: black;
0
+  text-decoration: none;
0
+}
0
+
0
+#page_home #menu li.menu_home a {
0
+  color: #A70000;
0
+}
0
+
0
+.columnleft {
0
+  float: left;
0
+  width: 325px;
0
+  margin-bottom: 20px;
0
+}
0
+
0
+.columnleft p {
0
+    text-align: justify;
0
+}
0
+
0
+.columnright {
0
+  float: right;
0
+  width: 325px;
0
+  margin-bottom: 20px;
0
+}
0
+
0
+h1 {
0
+  font: bold 1.5em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
0
+  color: #f36e21;
0
+  text-transform: uppercase;
0
+  margin: 1.5em 0 .5em 0;
0
+  clear: both;
0
+}
0
+
0
+p {
0
+  margin-bottom: 1em;
0
+}
0
+
0
+ul {
0
+ margin-bottom: 1em;
0
+}
0
+
0
+ul.features {
0
+  padding: 0;
0
+  margin-left: 1.5em !important;
0
+  margin-left: 1.3em;
0
+}
0
+
0
+ul.features li {
0
+  list-style-position: outside;
0
+  list-style-type: circle;
0
+  list-style-image: url(../images/bullet.jpg);
0
+  line-height: 1.4em;
0
+}
0
+
0
+#footer {
0
+  text-align: center;
0
+  color: white;
0
+  margin-bottom: 50px;
0
+}
0
+
0
+
0
+
0
+pre {
0
+ line-height: 1.3;
0
+ border: 1px solid #ccc;
0
+ padding: 1em;
0
+ background-color: #efefef;
0
+ margin: 1em 0;
0
+}
0
+
0
+code {
0
+ font-size: 1.2em;
0
+}
0
+
0
+.ruby .keywords {
0
+ color: blue;
0
+}
0
+
0
+.ruby .comment {
0
+  color : green;
0
+}
0
+
0
+.ruby .string {
0
+  color : teal;
0
+}
0
+
0
+.ruby .keywords {
0
+  color : navy;
0
+}
0
+
0
+.ruby .brackets {
0
+  color : navy;
0
+}

Comments

    No one has commented yet.