rook 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +124 -37
- data/bin/rook +8 -902
- data/doc-api/classes/BZ2.html +111 -0
- data/doc-api/classes/BZ2/Reader.html +234 -0
- data/doc-api/classes/Digest.html +107 -0
- data/doc-api/classes/Digest/Base.html +254 -0
- data/doc-api/classes/Enumerable.html +430 -0
- data/doc-api/classes/File.html +208 -0
- data/doc-api/classes/FileUtils.html +758 -0
- data/doc-api/classes/Kernel.html +317 -0
- data/doc-api/classes/Rook.html +148 -0
- data/doc-api/classes/Rook/Assertion.html +164 -0
- data/doc-api/classes/Rook/AssertionError.html +111 -0
- data/doc-api/classes/Rook/CommandOptionError.html +113 -0
- data/doc-api/classes/Rook/Commands.html +1158 -0
- data/doc-api/classes/Rook/Cookbook.html +357 -0
- data/doc-api/classes/Rook/CookbookError.html +161 -0
- data/doc-api/classes/Rook/CookbookValidator.html +215 -0
- data/doc-api/classes/Rook/Kitchen.html +875 -0
- data/doc-api/classes/Rook/KitchenHelper.html +386 -0
- data/doc-api/classes/Rook/Main.html +325 -0
- data/doc-api/classes/Rook/Parameters.html +443 -0
- data/doc-api/classes/Rook/Recipe.html +546 -0
- data/doc-api/classes/Rook/RookError.html +111 -0
- data/doc-api/classes/Rook/Util.html +408 -0
- data/doc-api/classes/Rook/Util/UndefinedPropertyError.html +160 -0
- data/doc-api/created.rid +1 -0
- data/doc-api/files/__/README_txt.html +313 -0
- data/doc-api/files/rook/commands_rb.html +115 -0
- data/doc-api/files/rook/cookbook_rb.html +115 -0
- data/doc-api/files/rook/helper/bz2_rb.html +114 -0
- data/doc-api/files/rook/helper/digest_rb.html +114 -0
- data/doc-api/files/rook/helper/enumerable_rb.html +107 -0
- data/doc-api/files/rook/helper/file_rb.html +107 -0
- data/doc-api/files/rook/helper/fileutils_rb.html +124 -0
- data/doc-api/files/rook/helper/kernel_rb.html +107 -0
- data/doc-api/files/rook/kitchen_rb.html +117 -0
- data/doc-api/files/rook/main_rb.html +117 -0
- data/doc-api/files/rook/recipe_rb.html +114 -0
- data/doc-api/files/rook/util_rb.html +115 -0
- data/doc-api/files/rook_rb.html +122 -0
- data/doc-api/fr_class_index.html +50 -0
- data/doc-api/fr_file_index.html +40 -0
- data/doc-api/fr_method_index.html +181 -0
- data/doc-api/index.html +24 -0
- data/doc-api/rdoc-style.css +208 -0
- data/examples/hello_c/Rookbook.rb +37 -0
- data/examples/hello_c/Rookbook.yaml +45 -0
- data/examples/hello_c/hello.c +6 -3
- data/examples/project/README.txt +8 -0
- data/examples/project/Rookbook.props +1 -0
- data/examples/project/Rookbook.rb +120 -0
- data/examples/project/Rookbook.yaml +117 -0
- data/examples/project/bin/example +12 -0
- data/examples/project/example.gemspec +29 -0
- data/examples/project/lib/example.rb +36 -0
- data/examples/{archive → project}/lib/example/bar.rb +0 -0
- data/examples/{archive → project}/lib/example/baz.rb +0 -0
- data/examples/{archive → project}/lib/example/foo.rb +0 -0
- data/examples/project/setup.rb +1331 -0
- data/examples/project/test/test.rb +27 -0
- data/lib/rook.rb +50 -0
- data/lib/rook/commands.rb +426 -0
- data/lib/rook/cookbook.rb +237 -0
- data/lib/rook/helper/bz2.rb +39 -0
- data/lib/rook/helper/digest.rb +76 -0
- data/lib/rook/helper/enumerable.rb +121 -0
- data/lib/rook/helper/file.rb +50 -0
- data/lib/rook/helper/fileutils.rb +340 -0
- data/lib/rook/helper/kernel.rb +108 -0
- data/lib/rook/kitchen.rb +668 -0
- data/lib/rook/main.rb +280 -0
- data/lib/rook/recipe.rb +259 -0
- data/lib/rook/rookbook.schema.yaml +156 -0
- data/lib/rook/util.rb +172 -0
- data/rook.gemspec +56 -0
- metadata +139 -45
- data/examples/archive/COPYING +0 -340
- data/examples/archive/README.txt +0 -1
- data/examples/archive/Rookbook +0 -56
- data/examples/archive/bin/example +0 -0
- data/examples/archive/doc/index.html +0 -0
- data/examples/archive/doc/index.txt +0 -0
- data/examples/archive/lib/example.rb +0 -0
- data/examples/archive/test/test1.rb +0 -0
- data/examples/archive/test/test2.rb +0 -0
- data/examples/hello_c/Rookbook +0 -24
@@ -0,0 +1,50 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Classes
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Classes</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Classes</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/BZ2.html">BZ2</a><br />
|
24
|
+
<a href="classes/BZ2/Reader.html">BZ2::Reader</a><br />
|
25
|
+
<a href="classes/Digest.html">Digest</a><br />
|
26
|
+
<a href="classes/Digest/Base.html">Digest::Base</a><br />
|
27
|
+
<a href="classes/Enumerable.html">Enumerable</a><br />
|
28
|
+
<a href="classes/File.html">File</a><br />
|
29
|
+
<a href="classes/FileUtils.html">FileUtils</a><br />
|
30
|
+
<a href="classes/Kernel.html">Kernel</a><br />
|
31
|
+
<a href="classes/Rook.html">Rook</a><br />
|
32
|
+
<a href="classes/Rook/Assertion.html">Rook::Assertion</a><br />
|
33
|
+
<a href="classes/Rook/AssertionError.html">Rook::AssertionError</a><br />
|
34
|
+
<a href="classes/Rook/CommandOptionError.html">Rook::CommandOptionError</a><br />
|
35
|
+
<a href="classes/Rook/Commands.html">Rook::Commands</a><br />
|
36
|
+
<a href="classes/Rook/Cookbook.html">Rook::Cookbook</a><br />
|
37
|
+
<a href="classes/Rook/CookbookError.html">Rook::CookbookError</a><br />
|
38
|
+
<a href="classes/Rook/CookbookValidator.html">Rook::CookbookValidator</a><br />
|
39
|
+
<a href="classes/Rook/Kitchen.html">Rook::Kitchen</a><br />
|
40
|
+
<a href="classes/Rook/KitchenHelper.html">Rook::KitchenHelper</a><br />
|
41
|
+
<a href="classes/Rook/Main.html">Rook::Main</a><br />
|
42
|
+
<a href="classes/Rook/Parameters.html">Rook::Parameters</a><br />
|
43
|
+
<a href="classes/Rook/Recipe.html">Rook::Recipe</a><br />
|
44
|
+
<a href="classes/Rook/RookError.html">Rook::RookError</a><br />
|
45
|
+
<a href="classes/Rook/Util.html">Rook::Util</a><br />
|
46
|
+
<a href="classes/Rook/Util/UndefinedPropertyError.html">Rook::Util::UndefinedPropertyError</a><br />
|
47
|
+
</div>
|
48
|
+
</div>
|
49
|
+
</body>
|
50
|
+
</html>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Files
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Files</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Files</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="files/__/README_txt.html">../README.txt</a><br />
|
24
|
+
<a href="files/rook_rb.html">rook.rb</a><br />
|
25
|
+
<a href="files/rook/commands_rb.html">rook/commands.rb</a><br />
|
26
|
+
<a href="files/rook/cookbook_rb.html">rook/cookbook.rb</a><br />
|
27
|
+
<a href="files/rook/helper/bz2_rb.html">rook/helper/bz2.rb</a><br />
|
28
|
+
<a href="files/rook/helper/digest_rb.html">rook/helper/digest.rb</a><br />
|
29
|
+
<a href="files/rook/helper/enumerable_rb.html">rook/helper/enumerable.rb</a><br />
|
30
|
+
<a href="files/rook/helper/file_rb.html">rook/helper/file.rb</a><br />
|
31
|
+
<a href="files/rook/helper/fileutils_rb.html">rook/helper/fileutils.rb</a><br />
|
32
|
+
<a href="files/rook/helper/kernel_rb.html">rook/helper/kernel.rb</a><br />
|
33
|
+
<a href="files/rook/kitchen_rb.html">rook/kitchen.rb</a><br />
|
34
|
+
<a href="files/rook/main_rb.html">rook/main.rb</a><br />
|
35
|
+
<a href="files/rook/recipe_rb.html">rook/recipe.rb</a><br />
|
36
|
+
<a href="files/rook/util_rb.html">rook/util.rb</a><br />
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
</body>
|
40
|
+
</html>
|
@@ -0,0 +1,181 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Methods
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Methods</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Methods</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/Rook/Kitchen.html#M000119">add_material (Rook::Kitchen)</a><br />
|
24
|
+
<a href="classes/Rook/Kitchen.html#M000116">add_precooking (Rook::Kitchen)</a><br />
|
25
|
+
<a href="classes/Enumerable.html#M000145">add_prefix (Enumerable)</a><br />
|
26
|
+
<a href="classes/Rook/Kitchen.html#M000117">add_property (Rook::Kitchen)</a><br />
|
27
|
+
<a href="classes/Rook/Kitchen.html#M000121">add_recipe (Rook::Kitchen)</a><br />
|
28
|
+
<a href="classes/Rook/Kitchen.html#M000120">add_recipe_hash (Rook::Kitchen)</a><br />
|
29
|
+
<a href="classes/Enumerable.html#M000146">add_suffix (Enumerable)</a><br />
|
30
|
+
<a href="classes/Rook/Kitchen.html#M000118">add_variable (Rook::Kitchen)</a><br />
|
31
|
+
<a href="classes/Rook/Recipe.html#M000088">all_ingredients (Rook::Recipe)</a><br />
|
32
|
+
<a href="classes/Rook/Recipe.html#M000087">all_products (Rook::Recipe)</a><br />
|
33
|
+
<a href="classes/Enumerable.html#M000144">apply (Enumerable)</a><br />
|
34
|
+
<a href="classes/Kernel.html#M000142">array_basenames (Kernel)</a><br />
|
35
|
+
<a href="classes/Kernel.html#M000140">array_delete_prefix (Kernel)</a><br />
|
36
|
+
<a href="classes/Kernel.html#M000139">array_delete_suffix (Kernel)</a><br />
|
37
|
+
<a href="classes/Kernel.html#M000143">array_dirnames (Kernel)</a><br />
|
38
|
+
<a href="classes/Kernel.html#M000141">array_join (Kernel)</a><br />
|
39
|
+
<a href="classes/Kernel.html#M000136">array_prefix (Kernel)</a><br />
|
40
|
+
<a href="classes/Kernel.html#M000138">array_sandwich (Kernel)</a><br />
|
41
|
+
<a href="classes/Kernel.html#M000137">array_suffix (Kernel)</a><br />
|
42
|
+
<a href="classes/Rook/Assertion.html#M000061">assert (Rook::Assertion)</a><br />
|
43
|
+
<a href="classes/Rook/Assertion.html#M000062">assert_failed (Rook::Assertion)</a><br />
|
44
|
+
<a href="classes/Enumerable.html#M000151">basenames (Enumerable)</a><br />
|
45
|
+
<a href="classes/Rook/Commands.html#M000026">cd (Rook::Commands)</a><br />
|
46
|
+
<a href="classes/Rook/Commands.html#M000027">chdir (Rook::Commands)</a><br />
|
47
|
+
<a href="classes/Rook/Commands.html#M000028">chmod (Rook::Commands)</a><br />
|
48
|
+
<a href="classes/Rook/Commands.html#M000029">chmod_R (Rook::Commands)</a><br />
|
49
|
+
<a href="classes/Rook/Commands.html#M000030">chown (Rook::Commands)</a><br />
|
50
|
+
<a href="classes/Rook/Commands.html#M000031">chown_R (Rook::Commands)</a><br />
|
51
|
+
<a href="classes/Rook/Commands.html#M000019">cmd (Rook::Commands)</a><br />
|
52
|
+
<a href="classes/Rook/Commands.html#M000020">cmd! (Rook::Commands)</a><br />
|
53
|
+
<a href="classes/Rook/Commands.html#M000018">comment (Rook::Commands)</a><br />
|
54
|
+
<a href="classes/Rook/Kitchen.html#M000126">cook (Rook::Kitchen)</a><br />
|
55
|
+
<a href="classes/Rook/Commands.html#M000039">cp (Rook::Commands)</a><br />
|
56
|
+
<a href="classes/FileUtils.html#M000005">cp_a (FileUtils)</a><br />
|
57
|
+
<a href="classes/Rook/Commands.html#M000043">cp_a (Rook::Commands)</a><br />
|
58
|
+
<a href="classes/Rook/Commands.html#M000040">cp_p (Rook::Commands)</a><br />
|
59
|
+
<a href="classes/FileUtils.html#M000003">cp_p (FileUtils)</a><br />
|
60
|
+
<a href="classes/FileUtils.html#M000004">cp_pr (FileUtils)</a><br />
|
61
|
+
<a href="classes/Rook/Commands.html#M000042">cp_pr (Rook::Commands)</a><br />
|
62
|
+
<a href="classes/Rook/Commands.html#M000041">cp_r (Rook::Commands)</a><br />
|
63
|
+
<a href="classes/Rook/CookbookValidator.html#M000079">create_error (Rook::CookbookValidator)</a><br />
|
64
|
+
<a href="classes/Digest/Base.html#M000153">create_from_file (Digest::Base)</a><br />
|
65
|
+
<a href="classes/Enumerable.html#M000150">delete_suffix (Enumerable)</a><br />
|
66
|
+
<a href="classes/Rook/KitchenHelper.html#M000076">desc (Rook::KitchenHelper)</a><br />
|
67
|
+
<a href="classes/Enumerable.html#M000152">dirnames (Enumerable)</a><br />
|
68
|
+
<a href="classes/Enumerable.html#M000149">each_gsub (Enumerable)</a><br />
|
69
|
+
<a href="classes/Enumerable.html#M000148">each_sub (Enumerable)</a><br />
|
70
|
+
<a href="classes/Rook/Commands.html#M000024">echo (Rook::Commands)</a><br />
|
71
|
+
<a href="classes/Rook/Commands.html#M000025">echo_n (Rook::Commands)</a><br />
|
72
|
+
<a href="classes/File.html#M000001">edit (File)</a><br />
|
73
|
+
<a href="classes/Rook/Commands.html#M000051">edit (Rook::Commands)</a><br />
|
74
|
+
<a href="classes/Rook/Util.html#M000067">evaluate (Rook::Util)</a><br />
|
75
|
+
<a href="classes/Rook/Parameters.html#M000103">evaluate_expr (Rook::Parameters)</a><br />
|
76
|
+
<a href="classes/Rook/Util.html#M000068">evaluate_expr (Rook::Util)</a><br />
|
77
|
+
<a href="classes/Rook/Parameters.html#M000102">evaluate_value (Rook::Parameters)</a><br />
|
78
|
+
<a href="classes/Rook/Main.html#M000093">execute (Rook::Main)</a><br />
|
79
|
+
<a href="classes/Rook/Util.html#M000070">expand_matches (Rook::Util)</a><br />
|
80
|
+
<a href="classes/Rook/Util.html#M000069">expand_properties (Rook::Util)</a><br />
|
81
|
+
<a href="classes/Digest/Base.html#M000155">file_digest (Digest::Base)</a><br />
|
82
|
+
<a href="classes/Digest/Base.html#M000154">file_hexdigest (Digest::Base)</a><br />
|
83
|
+
<a href="classes/Rook/Kitchen.html#M000122">find_generic_recipe (Rook::Kitchen)</a><br />
|
84
|
+
<a href="classes/Rook/Kitchen.html#M000124">find_recipe (Rook::Kitchen)</a><br />
|
85
|
+
<a href="classes/Rook/Kitchen.html#M000123">find_specific_recipe (Rook::Kitchen)</a><br />
|
86
|
+
<a href="classes/Rook/Util.html#M000071">fingerprint (Rook::Util)</a><br />
|
87
|
+
<a href="classes/Rook/Recipe.html#M000084">forced? (Rook::Recipe)</a><br />
|
88
|
+
<a href="classes/Rook/Parameters.html#M000099">get_property (Rook::Parameters)</a><br />
|
89
|
+
<a href="classes/Rook/Kitchen.html#M000110">get_property (Rook::Kitchen)</a><br />
|
90
|
+
<a href="classes/Rook/Parameters.html#M000101">get_value (Rook::Parameters)</a><br />
|
91
|
+
<a href="classes/Rook/Parameters.html#M000100">get_variable (Rook::Parameters)</a><br />
|
92
|
+
<a href="classes/Rook/Kitchen.html#M000111">get_variable (Rook::Kitchen)</a><br />
|
93
|
+
<a href="classes/Rook/Util.html#M000066">has_meta? (Rook::Util)</a><br />
|
94
|
+
<a href="classes/Rook/Kitchen.html#M000108">has_property? (Rook::Kitchen)</a><br />
|
95
|
+
<a href="classes/Rook/Parameters.html#M000095">has_property? (Rook::Parameters)</a><br />
|
96
|
+
<a href="classes/Rook/Kitchen.html#M000109">has_variable? (Rook::Kitchen)</a><br />
|
97
|
+
<a href="classes/Rook/Parameters.html#M000096">has_variable? (Rook::Parameters)</a><br />
|
98
|
+
<a href="classes/Rook/Recipe.html#M000090">invoke (Rook::Recipe)</a><br />
|
99
|
+
<a href="classes/Rook/Commands.html#M000045">ln (Rook::Commands)</a><br />
|
100
|
+
<a href="classes/Rook/Commands.html#M000046">ln_s (Rook::Commands)</a><br />
|
101
|
+
<a href="classes/Rook/Commands.html#M000047">ln_sf (Rook::Commands)</a><br />
|
102
|
+
<a href="classes/Rook/Kitchen.html#M000113">load_book (Rook::Kitchen)</a><br />
|
103
|
+
<a href="classes/Rook/Kitchen.html#M000112">load_books (Rook::Kitchen)</a><br />
|
104
|
+
<a href="classes/Rook/Kitchen.html#M000114">load_script (Rook::Kitchen)</a><br />
|
105
|
+
<a href="classes/Rook/Kitchen.html#M000115">load_script! (Rook::Kitchen)</a><br />
|
106
|
+
<a href="classes/Rook/Cookbook.html#M000129">load_yamlfile (Rook::Cookbook)</a><br />
|
107
|
+
<a href="classes/Rook/Cookbook.html#M000130">load_yamlstr (Rook::Cookbook)</a><br />
|
108
|
+
<a href="classes/Rook/Cookbook.html#M000131">load_ydoc (Rook::Cookbook)</a><br />
|
109
|
+
<a href="classes/Rook/Main.html#M000092">main (Rook::Main)</a><br />
|
110
|
+
<a href="classes/Rook/Recipe.html#M000082">match? (Rook::Recipe)</a><br />
|
111
|
+
<a href="classes/Rook/KitchenHelper.html#M000075">material (Rook::KitchenHelper)</a><br />
|
112
|
+
<a href="classes/Rook/Util.html#M000065">meta2regexp (Rook::Util)</a><br />
|
113
|
+
<a href="classes/Rook/Commands.html#M000032">mkdir (Rook::Commands)</a><br />
|
114
|
+
<a href="classes/Rook/Commands.html#M000033">mkdir_p (Rook::Commands)</a><br />
|
115
|
+
<a href="classes/Rook/Commands.html#M000044">mv (Rook::Commands)</a><br />
|
116
|
+
<a href="classes/BZ2/Reader.html#M000132">new (BZ2::Reader)</a><br />
|
117
|
+
<a href="classes/Rook/Recipe.html#M000081">new (Rook::Recipe)</a><br />
|
118
|
+
<a href="classes/Rook/Main.html#M000091">new (Rook::Main)</a><br />
|
119
|
+
<a href="classes/Rook/Parameters.html#M000094">new (Rook::Parameters)</a><br />
|
120
|
+
<a href="classes/Rook/Util/UndefinedPropertyError.html#M000072">new (Rook::Util::UndefinedPropertyError)</a><br />
|
121
|
+
<a href="classes/Rook/CookbookValidator.html#M000078">new (Rook::CookbookValidator)</a><br />
|
122
|
+
<a href="classes/Rook/Kitchen.html#M000107">new (Rook::Kitchen)</a><br />
|
123
|
+
<a href="classes/Rook/Cookbook.html#M000127">new (Rook::Cookbook)</a><br />
|
124
|
+
<a href="classes/Rook/CookbookError.html#M000106">new (Rook::CookbookError)</a><br />
|
125
|
+
<a href="classes/BZ2/Reader.html#M000133">pos (BZ2::Reader)</a><br />
|
126
|
+
<a href="classes/BZ2/Reader.html#M000134">pos= (BZ2::Reader)</a><br />
|
127
|
+
<a href="classes/Rook/Cookbook.html#M000128">precooking (Rook::Cookbook)</a><br />
|
128
|
+
<a href="classes/Rook/KitchenHelper.html#M000073">property (Rook::KitchenHelper)</a><br />
|
129
|
+
<a href="classes/Rook/Parameters.html#M000104">property_names (Rook::Parameters)</a><br />
|
130
|
+
<a href="classes/Rook/Recipe.html#M000083">public? (Rook::Recipe)</a><br />
|
131
|
+
<a href="classes/Rook/KitchenHelper.html#M000077">recipe (Rook::KitchenHelper)</a><br />
|
132
|
+
<a href="classes/BZ2/Reader.html#M000135">rewind (BZ2::Reader)</a><br />
|
133
|
+
<a href="classes/Rook/Commands.html#M000034">rm (Rook::Commands)</a><br />
|
134
|
+
<a href="classes/Rook/Commands.html#M000035">rm_f (Rook::Commands)</a><br />
|
135
|
+
<a href="classes/Rook/Commands.html#M000036">rm_r (Rook::Commands)</a><br />
|
136
|
+
<a href="classes/Rook/Commands.html#M000037">rm_rf (Rook::Commands)</a><br />
|
137
|
+
<a href="classes/Enumerable.html#M000147">sandwich (Enumerable)</a><br />
|
138
|
+
<a href="classes/Rook/Parameters.html#M000097">set_property (Rook::Parameters)</a><br />
|
139
|
+
<a href="classes/Rook/Parameters.html#M000098">set_variable (Rook::Parameters)</a><br />
|
140
|
+
<a href="classes/Rook/Kitchen.html#M000125">start_cooking (Rook::Kitchen)</a><br />
|
141
|
+
<a href="classes/Rook/Commands.html#M000048">store (Rook::Commands)</a><br />
|
142
|
+
<a href="classes/FileUtils.html#M000006">store (FileUtils)</a><br />
|
143
|
+
<a href="classes/FileUtils.html#M000008">store_a (FileUtils)</a><br />
|
144
|
+
<a href="classes/Rook/Commands.html#M000050">store_a (Rook::Commands)</a><br />
|
145
|
+
<a href="classes/Rook/Commands.html#M000049">store_p (Rook::Commands)</a><br />
|
146
|
+
<a href="classes/FileUtils.html#M000007">store_p (FileUtils)</a><br />
|
147
|
+
<a href="classes/Rook/Recipe.html#M000086">symbolic? (Rook::Recipe)</a><br />
|
148
|
+
<a href="classes/Rook/Commands.html#M000023">sys (Rook::Commands)</a><br />
|
149
|
+
<a href="classes/Rook/Commands.html#M000021">system (Rook::Commands)</a><br />
|
150
|
+
<a href="classes/Rook/Commands.html#M000022">system! (Rook::Commands)</a><br />
|
151
|
+
<a href="classes/FileUtils.html#M000012">tar_cf (FileUtils)</a><br />
|
152
|
+
<a href="classes/Rook/Commands.html#M000055">tar_cf (Rook::Commands)</a><br />
|
153
|
+
<a href="classes/FileUtils.html#M000016">tar_cjf (FileUtils)</a><br />
|
154
|
+
<a href="classes/Rook/Commands.html#M000059">tar_cjf (Rook::Commands)</a><br />
|
155
|
+
<a href="classes/FileUtils.html#M000014">tar_czf (FileUtils)</a><br />
|
156
|
+
<a href="classes/Rook/Commands.html#M000057">tar_czf (Rook::Commands)</a><br />
|
157
|
+
<a href="classes/Rook/Commands.html#M000056">tar_xf (Rook::Commands)</a><br />
|
158
|
+
<a href="classes/FileUtils.html#M000013">tar_xf (FileUtils)</a><br />
|
159
|
+
<a href="classes/FileUtils.html#M000017">tar_xjf (FileUtils)</a><br />
|
160
|
+
<a href="classes/Rook/Commands.html#M000060">tar_xjf (Rook::Commands)</a><br />
|
161
|
+
<a href="classes/Rook/Commands.html#M000058">tar_xzf (Rook::Commands)</a><br />
|
162
|
+
<a href="classes/FileUtils.html#M000015">tar_xzf (FileUtils)</a><br />
|
163
|
+
<a href="classes/Rook/Recipe.html#M000089">to_specific (Rook::Recipe)</a><br />
|
164
|
+
<a href="classes/Rook/Util.html#M000063">to_str (Rook::Util)</a><br />
|
165
|
+
<a href="classes/Rook/Commands.html#M000038">touch (Rook::Commands)</a><br />
|
166
|
+
<a href="classes/Rook/Util.html#M000064">untabify (Rook::Util)</a><br />
|
167
|
+
<a href="classes/Rook/Commands.html#M000054">unzip (Rook::Commands)</a><br />
|
168
|
+
<a href="classes/FileUtils.html#M000011">unzip (FileUtils)</a><br />
|
169
|
+
<a href="classes/Rook/CookbookValidator.html#M000080">validate_hook (Rook::CookbookValidator)</a><br />
|
170
|
+
<a href="classes/Rook/KitchenHelper.html#M000074">variable (Rook::KitchenHelper)</a><br />
|
171
|
+
<a href="classes/Rook/Parameters.html#M000105">variable_names (Rook::Parameters)</a><br />
|
172
|
+
<a href="classes/Rook/Recipe.html#M000085">verbose? (Rook::Recipe)</a><br />
|
173
|
+
<a href="classes/File.html#M000002">write (File)</a><br />
|
174
|
+
<a href="classes/FileUtils.html#M000009">zip (FileUtils)</a><br />
|
175
|
+
<a href="classes/Rook/Commands.html#M000052">zip (Rook::Commands)</a><br />
|
176
|
+
<a href="classes/FileUtils.html#M000010">zip_r (FileUtils)</a><br />
|
177
|
+
<a href="classes/Rook/Commands.html#M000053">zip_r (Rook::Commands)</a><br />
|
178
|
+
</div>
|
179
|
+
</div>
|
180
|
+
</body>
|
181
|
+
</html>
|
data/doc-api/index.html
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
5
|
+
|
6
|
+
<!--
|
7
|
+
|
8
|
+
RDoc Documentation
|
9
|
+
|
10
|
+
-->
|
11
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
12
|
+
<head>
|
13
|
+
<title>RDoc Documentation</title>
|
14
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
15
|
+
</head>
|
16
|
+
<frameset rows="20%, 80%">
|
17
|
+
<frameset cols="25%,35%,45%">
|
18
|
+
<frame src="fr_file_index.html" title="Files" name="Files" />
|
19
|
+
<frame src="fr_class_index.html" name="Classes" />
|
20
|
+
<frame src="fr_method_index.html" name="Methods" />
|
21
|
+
</frameset>
|
22
|
+
<frame src="files/__/README_txt.html" name="docwin" />
|
23
|
+
</frameset>
|
24
|
+
</html>
|
@@ -0,0 +1,208 @@
|
|
1
|
+
|
2
|
+
body {
|
3
|
+
font-family: Verdana,Arial,Helvetica,sans-serif;
|
4
|
+
font-size: 90%;
|
5
|
+
margin: 0;
|
6
|
+
margin-left: 40px;
|
7
|
+
padding: 0;
|
8
|
+
background: white;
|
9
|
+
}
|
10
|
+
|
11
|
+
h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
|
12
|
+
h1 { font-size: 150%; }
|
13
|
+
h2,h3,h4 { margin-top: 1em; }
|
14
|
+
|
15
|
+
a { background: #eef; color: #039; text-decoration: none; }
|
16
|
+
a:hover { background: #039; color: #eef; }
|
17
|
+
|
18
|
+
/* Override the base stylesheet's Anchor inside a table cell */
|
19
|
+
td > a {
|
20
|
+
background: transparent;
|
21
|
+
color: #039;
|
22
|
+
text-decoration: none;
|
23
|
+
}
|
24
|
+
|
25
|
+
/* and inside a section title */
|
26
|
+
.section-title > a {
|
27
|
+
background: transparent;
|
28
|
+
color: #eee;
|
29
|
+
text-decoration: none;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* === Structural elements =================================== */
|
33
|
+
|
34
|
+
div#index {
|
35
|
+
margin: 0;
|
36
|
+
margin-left: -40px;
|
37
|
+
padding: 0;
|
38
|
+
font-size: 90%;
|
39
|
+
}
|
40
|
+
|
41
|
+
|
42
|
+
div#index a {
|
43
|
+
margin-left: 0.7em;
|
44
|
+
}
|
45
|
+
|
46
|
+
div#index .section-bar {
|
47
|
+
margin-left: 0px;
|
48
|
+
padding-left: 0.7em;
|
49
|
+
background: #ccc;
|
50
|
+
font-size: small;
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
div#classHeader, div#fileHeader {
|
55
|
+
width: auto;
|
56
|
+
color: white;
|
57
|
+
padding: 0.5em 1.5em 0.5em 1.5em;
|
58
|
+
margin: 0;
|
59
|
+
margin-left: -40px;
|
60
|
+
border-bottom: 3px solid #006;
|
61
|
+
}
|
62
|
+
|
63
|
+
div#classHeader a, div#fileHeader a {
|
64
|
+
background: inherit;
|
65
|
+
color: white;
|
66
|
+
}
|
67
|
+
|
68
|
+
div#classHeader td, div#fileHeader td {
|
69
|
+
background: inherit;
|
70
|
+
color: white;
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
div#fileHeader {
|
75
|
+
background: #057;
|
76
|
+
}
|
77
|
+
|
78
|
+
div#classHeader {
|
79
|
+
background: #048;
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
.class-name-in-header {
|
84
|
+
font-size: 180%;
|
85
|
+
font-weight: bold;
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
div#bodyContent {
|
90
|
+
padding: 0 1.5em 0 1.5em;
|
91
|
+
}
|
92
|
+
|
93
|
+
div#description {
|
94
|
+
padding: 0.5em 1.5em;
|
95
|
+
background: #efefef;
|
96
|
+
border: 1px dotted #999;
|
97
|
+
}
|
98
|
+
|
99
|
+
div#description h1,h2,h3,h4,h5,h6 {
|
100
|
+
color: #125;;
|
101
|
+
background: transparent;
|
102
|
+
}
|
103
|
+
|
104
|
+
div#validator-badges {
|
105
|
+
text-align: center;
|
106
|
+
}
|
107
|
+
div#validator-badges img { border: 0; }
|
108
|
+
|
109
|
+
div#copyright {
|
110
|
+
color: #333;
|
111
|
+
background: #efefef;
|
112
|
+
font: 0.75em sans-serif;
|
113
|
+
margin-top: 5em;
|
114
|
+
margin-bottom: 0;
|
115
|
+
padding: 0.5em 2em;
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
/* === Classes =================================== */
|
120
|
+
|
121
|
+
table.header-table {
|
122
|
+
color: white;
|
123
|
+
font-size: small;
|
124
|
+
}
|
125
|
+
|
126
|
+
.type-note {
|
127
|
+
font-size: small;
|
128
|
+
color: #DEDEDE;
|
129
|
+
}
|
130
|
+
|
131
|
+
.xxsection-bar {
|
132
|
+
background: #eee;
|
133
|
+
color: #333;
|
134
|
+
padding: 3px;
|
135
|
+
}
|
136
|
+
|
137
|
+
.section-bar {
|
138
|
+
color: #333;
|
139
|
+
border-bottom: 1px solid #999;
|
140
|
+
margin-left: -20px;
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
.section-title {
|
145
|
+
background: #79a;
|
146
|
+
color: #eee;
|
147
|
+
padding: 3px;
|
148
|
+
margin-top: 2em;
|
149
|
+
margin-left: -30px;
|
150
|
+
border: 1px solid #999;
|
151
|
+
}
|
152
|
+
|
153
|
+
.top-aligned-row { vertical-align: top }
|
154
|
+
.bottom-aligned-row { vertical-align: bottom }
|
155
|
+
|
156
|
+
/* --- Context section classes ----------------------- */
|
157
|
+
|
158
|
+
.context-row { }
|
159
|
+
.context-item-name { font-family: monospace; font-weight: bold; color: black; }
|
160
|
+
.context-item-value { font-size: small; color: #448; }
|
161
|
+
.context-item-desc { color: #333; padding-left: 2em; }
|
162
|
+
|
163
|
+
/* --- Method classes -------------------------- */
|
164
|
+
.method-detail {
|
165
|
+
background: #efefef;
|
166
|
+
padding: 0;
|
167
|
+
margin-top: 0.5em;
|
168
|
+
margin-bottom: 1em;
|
169
|
+
border: 1px dotted #ccc;
|
170
|
+
}
|
171
|
+
.method-heading {
|
172
|
+
color: black;
|
173
|
+
background: #ccc;
|
174
|
+
border-bottom: 1px solid #666;
|
175
|
+
padding: 0.2em 0.5em 0 0.5em;
|
176
|
+
}
|
177
|
+
.method-signature { color: black; background: inherit; }
|
178
|
+
.method-name { font-weight: bold; }
|
179
|
+
.method-args { font-style: italic; }
|
180
|
+
.method-description { padding: 0 0.5em 0 0.5em; }
|
181
|
+
|
182
|
+
/* --- Source code sections -------------------- */
|
183
|
+
|
184
|
+
a.source-toggle { font-size: 90%; }
|
185
|
+
div.method-source-code {
|
186
|
+
background: #262626;
|
187
|
+
color: #ffdead;
|
188
|
+
margin: 1em;
|
189
|
+
padding: 0.5em;
|
190
|
+
border: 1px dashed #999;
|
191
|
+
overflow: hidden;
|
192
|
+
}
|
193
|
+
|
194
|
+
div.method-source-code pre { color: #ffdead; overflow: hidden; }
|
195
|
+
|
196
|
+
/* --- Ruby keyword styles --------------------- */
|
197
|
+
|
198
|
+
.standalone-code { background: #221111; color: #ffdead; overflow: hidden; }
|
199
|
+
|
200
|
+
.ruby-constant { color: #7fffd4; background: transparent; }
|
201
|
+
.ruby-keyword { color: #00ffff; background: transparent; }
|
202
|
+
.ruby-ivar { color: #eedd82; background: transparent; }
|
203
|
+
.ruby-operator { color: #00ffee; background: transparent; }
|
204
|
+
.ruby-identifier { color: #ffdead; background: transparent; }
|
205
|
+
.ruby-node { color: #ffa07a; background: transparent; }
|
206
|
+
.ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
|
207
|
+
.ruby-regexp { color: #ffa07a; background: transparent; }
|
208
|
+
.ruby-value { color: #7fffd4; background: transparent; }
|