backnob 0.0.1 → 0.0.2

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.
@@ -0,0 +1,137 @@
1
+ body {
2
+ background-color: #001020;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #ffffff;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #f5a900;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #9999FF;
27
+ font-weight: normal;
28
+ text-decoration: underline;
29
+ }
30
+ blockquote {
31
+ font-size: 90%;
32
+ font-style: italic;
33
+ border-left: 1px solid #111;
34
+ padding-left: 1em;
35
+ }
36
+ .caps {
37
+ font-size: 80%;
38
+ }
39
+
40
+ #main {
41
+ width: 45em;
42
+ padding: 0;
43
+ margin: 0 auto;
44
+ }
45
+ .coda {
46
+ text-align: right;
47
+ color: #77f;
48
+ font-size: smaller;
49
+ }
50
+
51
+ table {
52
+ font-size: 90%;
53
+ line-height: 1.4em;
54
+ color: #ff8;
55
+ background-color: #111;
56
+ padding: 2px 10px 2px 10px;
57
+ border-style: dashed;
58
+ }
59
+
60
+ th {
61
+ color: #fff;
62
+ }
63
+
64
+ td {
65
+ padding: 2px 10px 2px 10px;
66
+ }
67
+
68
+ .success {
69
+ color: #0CC52B;
70
+ }
71
+
72
+ .failed {
73
+ color: #E90A1B;
74
+ }
75
+
76
+ .unknown {
77
+ color: #995000;
78
+ }
79
+ pre, code {
80
+ font-family: monospace;
81
+ font-size: 90%;
82
+ line-height: 1.4em;
83
+ color: #ff8;
84
+ background-color: #000;
85
+ padding: 2px 10px 2px 10px;
86
+ }
87
+ .comment { color: #aaa; font-style: italic; }
88
+ .keyword { color: #eff; font-weight: bold; }
89
+ .punct { color: #eee; font-weight: bold; }
90
+ .symbol { color: #0bb; }
91
+ .string { color: #6b4; }
92
+ .ident { color: #ff8; }
93
+ .constant { color: #66f; }
94
+ .regex { color: #ec6; }
95
+ .number { color: #F99; }
96
+ .expr { color: #227; }
97
+
98
+ #version {
99
+ float: right;
100
+ text-align: right;
101
+ font-family: sans-serif;
102
+ font-weight: normal;
103
+ background-color: #B3ABFF;
104
+ color: #141331;
105
+ padding: 15px 20px 10px 20px;
106
+ margin: 0 auto;
107
+ margin-top: 15px;
108
+ border: 3px solid #141331;
109
+ }
110
+
111
+ #version .numbers {
112
+ display: block;
113
+ font-size: 4em;
114
+ line-height: 0.8em;
115
+ letter-spacing: -0.1ex;
116
+ margin-bottom: 15px;
117
+ }
118
+
119
+ #version p {
120
+ text-decoration: none;
121
+ color: #141331;
122
+ background-color: #B3ABFF;
123
+ margin: 0;
124
+ padding: 0;
125
+ }
126
+
127
+ #version a {
128
+ text-decoration: none;
129
+ color: #141331;
130
+ background-color: #B3ABFF;
131
+ }
132
+
133
+ .clickable {
134
+ cursor: pointer;
135
+ cursor: hand;
136
+ }
137
+
@@ -0,0 +1,47 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title_text %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+ <h1><%= title %></h1>
33
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
34
+ <p>Get Version</p>
35
+ <a href="<%= download %>" class="numbers"><%= version %></a>
36
+ </div>
37
+ <%= body %>
38
+ <p class="coda">
39
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, <%= modified.pretty %><br>
40
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
41
+ </p>
42
+ </div>
43
+
44
+ <!-- insert site tracking codes here, like Google Urchin -->
45
+
46
+ </body>
47
+ </html>
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: backnob
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
7
- date: 2007-09-20 00:00:00 +12:00
8
- summary: Background workers
6
+ version: 0.0.2
7
+ date: 2007-09-24 00:00:00 +12:00
8
+ summary: Simple background worker library
9
9
  require_paths:
10
10
  - lib
11
11
  email: jeremy@boost.co.nz
12
12
  homepage: http://backnob.rubyforge.org
13
13
  rubyforge_project: backnob
14
- description: Background workers
14
+ description: Simple background worker library
15
15
  autorequire:
16
16
  default_executable:
17
17
  bindir: bin
@@ -57,6 +57,8 @@ files:
57
57
  - README.txt
58
58
  - Rakefile
59
59
  - bin/backnob
60
+ - config/hoe.rb
61
+ - config/requirements.rb
60
62
  - examples/backnob.yml
61
63
  - lib/backnob.rb
62
64
  - lib/backnob/client.rb
@@ -66,14 +68,35 @@ files:
66
68
  - lib/backnob/version.rb
67
69
  - lib/backnob/worker.rb
68
70
  - lib/backnob_control.rb
71
+ - log/debug.log
72
+ - plugin/LICENSE
73
+ - plugin/README
74
+ - plugin/conf/backnob.yml
75
+ - plugin/conf/test_worker.rb
76
+ - plugin/init.rb
77
+ - plugin/lib/backnob_ext.rb
78
+ - plugin/tasks/backnob_tasks.rake
79
+ - script/destroy
80
+ - script/generate
81
+ - script/txt2html
69
82
  - scripts/txt2html
70
83
  - setup.rb
84
+ - tasks/deployment.rake
85
+ - tasks/environment.rake
86
+ - tasks/website.rake
71
87
  - test/backnob.yml
88
+ - test/single_worker.rb
72
89
  - test/test_client.rb
73
90
  - test/test_controller.rb
74
91
  - test/test_helper.rb
75
92
  - test/test_server.rb
93
+ - test/test_worker.rb
76
94
  - test/worker.rb
95
+ - website/index.html
96
+ - website/index.txt
97
+ - website/javascripts/rounded_corners_lite.inc.js
98
+ - website/stylesheets/screen.css
99
+ - website/template.rhtml
77
100
  test_files:
78
101
  - test/test_client.rb
79
102
  - test/test_controller.rb
@@ -88,11 +111,20 @@ extra_rdoc_files:
88
111
  - License.txt
89
112
  - Manifest.txt
90
113
  - README.txt
114
+ - website/index.txt
91
115
  executables:
92
116
  - backnob
93
117
  extensions: []
94
118
 
95
119
  requirements: []
96
120
 
97
- dependencies: []
98
-
121
+ dependencies:
122
+ - !ruby/object:Gem::Dependency
123
+ name: slave
124
+ version_requirement:
125
+ version_requirements: !ruby/object:Gem::Version::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: 1.2.1
130
+ version:
metadata.gz.sig CHANGED
@@ -1 +1,2 @@
1
- ��0@�� <Jc7#ݪ��H��*���[$�g`%�*�C��4�k��\�Y�Pdj�Ẏ�6 DW����xKò��I|����q:�U����"�/�3�ܾ�S/�y���C���؇��'���e�'���Ԑ���ۙҁ�j�JYKV~hN����miY���}�ڗZ����r�q�36��a+'�>l���(i{i�xb�yN�OFap���Gڠ��iv`�:g��3���iԃ!R0���������d�3�x�W�
1
+ ECZ77R��
2
+ &֤\����<-�X�q�3p�E�Ͷt���ء�YZD��E#���=��N���UYg4����M�"?��`�$WzR�v�=G�I�-����� E�2d��pV�͉Fs��+�c�zY8�rh�guwj$���g�M`��6��M�k� ���"�0�B���~���jc_52�2Y�vlez��'Ѧ���(��f����0�lfN��>�-cDe�@�2n��oZ���X��ϰI�g����t��