lifeline 0.3.0 → 0.4.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 +1 -0
- data/README.rdoc +12 -0
- data/VERSION +1 -1
- data/doc/Lifeline.html +473 -0
- data/doc/Lifeline/LifelineRakeTask.html +400 -0
- data/doc/_index.html +101 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +50 -0
- data/doc/css/style.css +273 -0
- data/doc/file.README.html +159 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +159 -0
- data/doc/js/app.js +111 -0
- data/doc/js/full_list.js +117 -0
- data/doc/js/jquery.js +19 -0
- data/doc/method_list.html +75 -0
- data/doc/top-level-namespace.html +87 -0
- data/lifeline.gemspec +76 -0
- metadata +19 -2
@@ -0,0 +1,75 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta name="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
|
7
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
9
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
10
|
+
<base id="base_target" target="_parent" />
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<script type="text/javascript" charset="utf-8">
|
14
|
+
if (window.top.frames.main) {
|
15
|
+
document.getElementById('base_target').target = 'main';
|
16
|
+
document.body.className = 'frames';
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
<div id="content">
|
20
|
+
<h1 id="full_list_header">Method List</h1>
|
21
|
+
<div id="nav">
|
22
|
+
<a target="_self" href="class_list.html">Classes</a> |
|
23
|
+
<a target="_self" href="method_list.html">Methods</a> |
|
24
|
+
<a target="_self" href="file_list.html">Files</a>
|
25
|
+
</div>
|
26
|
+
<div id="search">Search: <input type="text" /></div>
|
27
|
+
|
28
|
+
<ul id="full_list" class="methods">
|
29
|
+
|
30
|
+
|
31
|
+
<li class="r1 ">
|
32
|
+
<a href="Lifeline.html#define_lifeline_tasks-instance_method" title="Lifeline#define_lifeline_tasks (method)">#define_lifeline_tasks</a>
|
33
|
+
|
34
|
+
<small>Lifeline</small>
|
35
|
+
|
36
|
+
</li>
|
37
|
+
|
38
|
+
|
39
|
+
<li class="r2 ">
|
40
|
+
<a href="Lifeline.html#get_process_list-instance_method" title="Lifeline#get_process_list (method)">#get_process_list</a>
|
41
|
+
|
42
|
+
<small>Lifeline</small>
|
43
|
+
|
44
|
+
</li>
|
45
|
+
|
46
|
+
|
47
|
+
<li class="r1 ">
|
48
|
+
<a href="Lifeline/LifelineRakeTask.html#initialize-instance_method" title="Lifeline::LifelineRakeTask#initialize (method)">#initialize</a>
|
49
|
+
|
50
|
+
<small>Lifeline::LifelineRakeTask</small>
|
51
|
+
|
52
|
+
</li>
|
53
|
+
|
54
|
+
|
55
|
+
<li class="r2 ">
|
56
|
+
<a href="Lifeline.html#lifeline-instance_method" title="Lifeline#lifeline (method)">#lifeline</a>
|
57
|
+
|
58
|
+
<small>Lifeline</small>
|
59
|
+
|
60
|
+
</li>
|
61
|
+
|
62
|
+
|
63
|
+
<li class="r1 ">
|
64
|
+
<a href="Lifeline/LifelineRakeTask.html#namespace-instance_method" title="Lifeline::LifelineRakeTask#namespace (method)">#namespace</a>
|
65
|
+
|
66
|
+
<small>Lifeline::LifelineRakeTask</small>
|
67
|
+
|
68
|
+
</li>
|
69
|
+
|
70
|
+
|
71
|
+
</ul>
|
72
|
+
</div>
|
73
|
+
</body>
|
74
|
+
</html>
|
75
|
+
|
@@ -0,0 +1,87 @@
|
|
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 name="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Top Level Namespace</title>
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
9
|
+
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
11
|
+
relpath = '';
|
12
|
+
if (relpath != '') relpath += '/';
|
13
|
+
</script>
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
21
|
+
</script>
|
22
|
+
|
23
|
+
<div id="header">
|
24
|
+
<div id="menu">
|
25
|
+
|
26
|
+
<a href="_index.html">Index</a> »
|
27
|
+
|
28
|
+
|
29
|
+
<span class="title">Top Level Namespace</span>
|
30
|
+
|
31
|
+
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="search">
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="clear"></div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<iframe id="search_frame"></iframe>
|
45
|
+
|
46
|
+
<div id="content"><h1>Top Level Namespace
|
47
|
+
|
48
|
+
|
49
|
+
</h1>
|
50
|
+
|
51
|
+
<dl class="box">
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
</dl>
|
61
|
+
<div class="clear"></div>
|
62
|
+
|
63
|
+
<h2>Defined Under Namespace</h2>
|
64
|
+
<p class="children">
|
65
|
+
|
66
|
+
|
67
|
+
<strong class="modules">Modules:</strong> <a href="Lifeline.html" title="Lifeline (module)">Lifeline</a>
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
</p>
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
</div>
|
79
|
+
|
80
|
+
<div id="footer">
|
81
|
+
Generated on Tue Apr 13 12:07:29 2010 by
|
82
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
|
83
|
+
0.5.4 (ruby-1.8.7).
|
84
|
+
</div>
|
85
|
+
|
86
|
+
</body>
|
87
|
+
</html>
|
data/lifeline.gemspec
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{lifeline}
|
8
|
+
s.version = "0.4.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jacob Harris", "Ben Koski", "Matt Todd"]
|
12
|
+
s.date = %q{2010-04-13}
|
13
|
+
s.description = %q{A cron-based alternative to running daemon scripts}
|
14
|
+
s.email = %q{open@nytimes.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"doc/Lifeline.html",
|
27
|
+
"doc/Lifeline/LifelineRakeTask.html",
|
28
|
+
"doc/_index.html",
|
29
|
+
"doc/class_list.html",
|
30
|
+
"doc/css/common.css",
|
31
|
+
"doc/css/full_list.css",
|
32
|
+
"doc/css/style.css",
|
33
|
+
"doc/file.README.html",
|
34
|
+
"doc/file_list.html",
|
35
|
+
"doc/frames.html",
|
36
|
+
"doc/index.html",
|
37
|
+
"doc/js/app.js",
|
38
|
+
"doc/js/full_list.js",
|
39
|
+
"doc/js/jquery.js",
|
40
|
+
"doc/method_list.html",
|
41
|
+
"doc/top-level-namespace.html",
|
42
|
+
"lib/lifeline.rb",
|
43
|
+
"lifeline.gemspec",
|
44
|
+
"test/helper.rb",
|
45
|
+
"test/test_lifeline.rb"
|
46
|
+
]
|
47
|
+
s.homepage = %q{http://github.com/harrisj/lifeline}
|
48
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
49
|
+
s.require_paths = ["lib"]
|
50
|
+
s.rubygems_version = %q{1.3.6}
|
51
|
+
s.summary = %q{A cron-based alternative to running daemon scripts}
|
52
|
+
s.test_files = [
|
53
|
+
"test/helper.rb",
|
54
|
+
"test/test_lifeline.rb"
|
55
|
+
]
|
56
|
+
|
57
|
+
if s.respond_to? :specification_version then
|
58
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
59
|
+
s.specification_version = 3
|
60
|
+
|
61
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
62
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
63
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
64
|
+
s.add_development_dependency(%q<mocha>, [">= 0"])
|
65
|
+
else
|
66
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
67
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
68
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
69
|
+
end
|
70
|
+
else
|
71
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
72
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
73
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
7
|
+
- 4
|
8
8
|
- 0
|
9
|
-
version: 0.
|
9
|
+
version: 0.4.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jacob Harris
|
@@ -71,7 +71,24 @@ files:
|
|
71
71
|
- README.rdoc
|
72
72
|
- Rakefile
|
73
73
|
- VERSION
|
74
|
+
- doc/Lifeline.html
|
75
|
+
- doc/Lifeline/LifelineRakeTask.html
|
76
|
+
- doc/_index.html
|
77
|
+
- doc/class_list.html
|
78
|
+
- doc/css/common.css
|
79
|
+
- doc/css/full_list.css
|
80
|
+
- doc/css/style.css
|
81
|
+
- doc/file.README.html
|
82
|
+
- doc/file_list.html
|
83
|
+
- doc/frames.html
|
84
|
+
- doc/index.html
|
85
|
+
- doc/js/app.js
|
86
|
+
- doc/js/full_list.js
|
87
|
+
- doc/js/jquery.js
|
88
|
+
- doc/method_list.html
|
89
|
+
- doc/top-level-namespace.html
|
74
90
|
- lib/lifeline.rb
|
91
|
+
- lifeline.gemspec
|
75
92
|
- test/helper.rb
|
76
93
|
- test/test_lifeline.rb
|
77
94
|
has_rdoc: true
|