ruby-inotify 1.0.0 → 1.0.1

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.
Files changed (48) hide show
  1. data/doc/classes/Inotify/Event.html +206 -0
  2. data/doc/classes/Inotify/Event.src/M000005.html +18 -0
  3. data/doc/classes/Inotify/Event.src/M000006.html +18 -0
  4. data/doc/classes/Inotify/Event.src/M000007.html +18 -0
  5. data/doc/classes/Inotify/Event.src/M000008.html +18 -0
  6. data/doc/classes/Inotify/Event.src/M000009.html +18 -0
  7. data/doc/classes/Inotify/Event.src/M000010.html +18 -0
  8. data/doc/classes/Inotify/Event.src/M000011.html +18 -0
  9. data/doc/classes/Inotify/Event.src/M000012.html +23 -0
  10. data/doc/classes/Inotify/Event.src/M000013.html +23 -0
  11. data/doc/classes/Inotify/Event.src/M000014.html +18 -0
  12. data/doc/classes/Inotify/Event.src/M000015.html +23 -0
  13. data/doc/classes/Inotify/EventStruct.html +117 -0
  14. data/doc/classes/Inotify.html +476 -0
  15. data/doc/classes/Inotify.src/M000001.html +18 -0
  16. data/doc/classes/Inotify.src/M000002.html +18 -0
  17. data/doc/classes/Inotify.src/M000003.html +18 -0
  18. data/doc/classes/Inotify.src/M000004.html +22 -0
  19. data/doc/classes/Inotify.src/M000005.html +21 -0
  20. data/doc/classes/Inotify.src/M000006.html +21 -0
  21. data/doc/classes/Inotify.src/M000007.html +19 -0
  22. data/doc/classes/Inotify.src/M000008.html +18 -0
  23. data/doc/classes/Inotify.src/M000009.html +18 -0
  24. data/doc/classes/Inotify.src/M000010.html +18 -0
  25. data/doc/classes/Inotify.src/M000011.html +21 -0
  26. data/doc/classes/Inotify.src/M000012.html +21 -0
  27. data/doc/classes/Test1.html +212 -0
  28. data/doc/classes/Test1.src/M000001.html +18 -0
  29. data/doc/classes/Test1.src/M000002.html +18 -0
  30. data/doc/classes/Test1.src/M000003.html +18 -0
  31. data/doc/classes/Test1.src/M000004.html +20 -0
  32. data/doc/classes/Test1.src/M000005.html +30 -0
  33. data/doc/classes/Test1.src/M000006.html +18 -0
  34. data/doc/created.rid +1 -0
  35. data/doc/files/examples/watcher_rb.html +109 -0
  36. data/doc/files/lib/inotify/inotify_native_rb.html +109 -0
  37. data/doc/files/lib/inotify/version_rb.html +108 -0
  38. data/doc/files/lib/inotify_rb.html +108 -0
  39. data/doc/files/tests/test_1_rb.html +109 -0
  40. data/doc/fr_class_index.html +28 -0
  41. data/doc/fr_file_index.html +27 -0
  42. data/doc/fr_method_index.html +34 -0
  43. data/doc/index.html +24 -0
  44. data/doc/rdoc-style.css +208 -0
  45. data/lib/inotify/inotify_native.rb +103 -23
  46. data/ruby-inotify.gemspec +1 -1
  47. metadata +47 -4
  48. data/lib/inotify/version.rb +0 -3
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>rm_watch (Inotify)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/inotify/inotify_native.rb, line 67</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">rm_watch</span>(<span class="ruby-identifier">uint32</span>)
15
+ <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">inotify_rm_watch</span>(<span class="ruby-ivar">@fd</span>, <span class="ruby-identifier">uint32</span>)
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>close (Inotify)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/inotify/inotify_native.rb, line 70</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">close</span>
15
+ <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">inotify_close</span>(<span class="ruby-ivar">@fd</span>)
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,21 @@
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>
7
+ <head>
8
+ <title>each_event (Inotify)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/inotify/inotify_native.rb, line 73</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">each_event</span>
15
+ <span class="ruby-identifier">loop</span> <span class="ruby-keyword kw">do</span>
16
+ <span class="ruby-identifier">ready</span> = <span class="ruby-constant">IO</span>.<span class="ruby-identifier">select</span>([<span class="ruby-ivar">@io</span>], <span class="ruby-keyword kw">nil</span>, <span class="ruby-keyword kw">nil</span>, <span class="ruby-keyword kw">nil</span>)
17
+ <span class="ruby-keyword kw">yield</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">read_event</span>
18
+ <span class="ruby-keyword kw">end</span>
19
+ <span class="ruby-keyword kw">end</span></pre>
20
+ </body>
21
+ </html>
@@ -0,0 +1,21 @@
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>
7
+ <head>
8
+ <title>read_event (Inotify)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/inotify/inotify_native.rb, line 79</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">read_event</span>
15
+ <span class="ruby-identifier">buf</span> = <span class="ruby-constant">FFI</span><span class="ruby-operator">::</span><span class="ruby-constant">Buffer</span>.<span class="ruby-identifier">alloc_out</span>(<span class="ruby-constant">EventStruct</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">+</span> <span class="ruby-constant">MAX_NAME_SIZE</span>, <span class="ruby-value">1</span>, <span class="ruby-keyword kw">false</span>)
16
+ <span class="ruby-identifier">ev</span> = <span class="ruby-constant">EventStruct</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">buf</span>)
17
+ <span class="ruby-identifier">n</span> = <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">read</span>(<span class="ruby-ivar">@fd</span>, <span class="ruby-identifier">buf</span>, <span class="ruby-identifier">buf</span>.<span class="ruby-identifier">total</span>)
18
+ <span class="ruby-constant">Event</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">ev</span>, <span class="ruby-identifier">buf</span>)
19
+ <span class="ruby-keyword kw">end</span></pre>
20
+ </body>
21
+ </html>
@@ -0,0 +1,212 @@
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>Class: Test1</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="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Class</strong></td>
53
+ <td class="class-name-in-header">Test1</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../files/tests/test_1_rb.html">
59
+ tests/test_1.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ <tr class="top-aligned-row">
66
+ <td><strong>Parent:</strong></td>
67
+ <td>
68
+ Test::Unit::TestCase
69
+ </td>
70
+ </tr>
71
+ </table>
72
+ </div>
73
+ <!-- banner header -->
74
+
75
+ <div id="bodyContent">
76
+
77
+
78
+
79
+ <div id="contextContent">
80
+
81
+
82
+
83
+ </div>
84
+
85
+ <div id="method-list">
86
+ <h3 class="section-bar">Methods</h3>
87
+
88
+ <div class="name-list">
89
+ <a href="#M000001">setup</a>&nbsp;&nbsp;
90
+ <a href="#M000006">teardown</a>&nbsp;&nbsp;
91
+ <a href="#M000002">test1</a>&nbsp;&nbsp;
92
+ <a href="#M000003">test2</a>&nbsp;&nbsp;
93
+ <a href="#M000004">test3</a>&nbsp;&nbsp;
94
+ <a href="#M000005">test4</a>&nbsp;&nbsp;
95
+ </div>
96
+ </div>
97
+
98
+ </div>
99
+
100
+
101
+ <!-- if includes -->
102
+
103
+ <div id="section">
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+ <!-- if method_list -->
113
+ <div id="methods">
114
+ <h3 class="section-bar">Public Instance methods</h3>
115
+
116
+ <div id="method-M000001" class="method-detail">
117
+ <a name="M000001"></a>
118
+
119
+ <div class="method-heading">
120
+ <a href="Test1.src/M000001.html" target="Code" class="method-signature"
121
+ onclick="popupCode('Test1.src/M000001.html');return false;">
122
+ <span class="method-name">setup</span><span class="method-args">()</span>
123
+ </a>
124
+ </div>
125
+
126
+ <div class="method-description">
127
+ </div>
128
+ </div>
129
+
130
+ <div id="method-M000006" class="method-detail">
131
+ <a name="M000006"></a>
132
+
133
+ <div class="method-heading">
134
+ <a href="Test1.src/M000006.html" target="Code" class="method-signature"
135
+ onclick="popupCode('Test1.src/M000006.html');return false;">
136
+ <span class="method-name">teardown</span><span class="method-args">()</span>
137
+ </a>
138
+ </div>
139
+
140
+ <div class="method-description">
141
+ </div>
142
+ </div>
143
+
144
+ <div id="method-M000002" class="method-detail">
145
+ <a name="M000002"></a>
146
+
147
+ <div class="method-heading">
148
+ <a href="Test1.src/M000002.html" target="Code" class="method-signature"
149
+ onclick="popupCode('Test1.src/M000002.html');return false;">
150
+ <span class="method-name">test1</span><span class="method-args">()</span>
151
+ </a>
152
+ </div>
153
+
154
+ <div class="method-description">
155
+ </div>
156
+ </div>
157
+
158
+ <div id="method-M000003" class="method-detail">
159
+ <a name="M000003"></a>
160
+
161
+ <div class="method-heading">
162
+ <a href="Test1.src/M000003.html" target="Code" class="method-signature"
163
+ onclick="popupCode('Test1.src/M000003.html');return false;">
164
+ <span class="method-name">test2</span><span class="method-args">()</span>
165
+ </a>
166
+ </div>
167
+
168
+ <div class="method-description">
169
+ </div>
170
+ </div>
171
+
172
+ <div id="method-M000004" class="method-detail">
173
+ <a name="M000004"></a>
174
+
175
+ <div class="method-heading">
176
+ <a href="Test1.src/M000004.html" target="Code" class="method-signature"
177
+ onclick="popupCode('Test1.src/M000004.html');return false;">
178
+ <span class="method-name">test3</span><span class="method-args">()</span>
179
+ </a>
180
+ </div>
181
+
182
+ <div class="method-description">
183
+ </div>
184
+ </div>
185
+
186
+ <div id="method-M000005" class="method-detail">
187
+ <a name="M000005"></a>
188
+
189
+ <div class="method-heading">
190
+ <a href="Test1.src/M000005.html" target="Code" class="method-signature"
191
+ onclick="popupCode('Test1.src/M000005.html');return false;">
192
+ <span class="method-name">test4</span><span class="method-args">()</span>
193
+ </a>
194
+ </div>
195
+
196
+ <div class="method-description">
197
+ </div>
198
+ </div>
199
+
200
+
201
+ </div>
202
+
203
+
204
+ </div>
205
+
206
+
207
+ <div id="validator-badges">
208
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
209
+ </div>
210
+
211
+ </body>
212
+ </html>
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>setup (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 5</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">setup</span>
15
+ <span class="ruby-ivar">@inotify</span> = <span class="ruby-constant">Inotify</span>.<span class="ruby-identifier">new</span>
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>test1 (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 8</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test1</span>
15
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-constant">Inotify</span>, <span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">class</span>)
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>test2 (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 11</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test2</span>
15
+ <span class="ruby-identifier">assert</span>(<span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">add_watch</span>(<span class="ruby-value str">&quot;/tmp&quot;</span>, <span class="ruby-constant">Inotify</span><span class="ruby-operator">::</span><span class="ruby-constant">CREATE</span>))
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,20 @@
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>
7
+ <head>
8
+ <title>test3 (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 14</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test3</span>
15
+ <span class="ruby-identifier">wd</span> = <span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">add_watch</span>(<span class="ruby-value str">&quot;/tmp&quot;</span>, <span class="ruby-constant">Inotify</span><span class="ruby-operator">::</span><span class="ruby-constant">CREATE</span>)
16
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-constant">Fixnum</span>, <span class="ruby-identifier">wd</span>.<span class="ruby-identifier">class</span>)
17
+ <span class="ruby-identifier">assert</span>(<span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">rm_watch</span>(<span class="ruby-identifier">wd</span>))
18
+ <span class="ruby-keyword kw">end</span></pre>
19
+ </body>
20
+ </html>
@@ -0,0 +1,30 @@
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>
7
+ <head>
8
+ <title>test4 (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 19</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test4</span>
15
+ <span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">add_watch</span>(<span class="ruby-value str">&quot;/tmp&quot;</span>, <span class="ruby-constant">Inotify</span><span class="ruby-operator">::</span><span class="ruby-constant">CREATE</span>)
16
+ <span class="ruby-keyword kw">begin</span>
17
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-value str">&quot;/tmp&quot;</span>, <span class="ruby-value str">&quot;ruby-inotify-test-4&quot;</span>), <span class="ruby-value str">'w'</span>)
18
+ <span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">each_event</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">ev</span><span class="ruby-operator">|</span>
19
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-identifier">ev</span>.<span class="ruby-identifier">class</span>, <span class="ruby-constant">Inotify</span><span class="ruby-operator">::</span><span class="ruby-constant">Event</span>)
20
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-identifier">ev</span>.<span class="ruby-identifier">inspect</span>, <span class="ruby-value str">&quot;&lt;Inotify::Event name=ruby-inotify-test-4 mask=256 wd=1&gt;&quot;</span>)
21
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-identifier">ev</span>.<span class="ruby-identifier">name</span>, <span class="ruby-value str">&quot;ruby-inotify-test-4&quot;</span>)
22
+ <span class="ruby-identifier">assert_equal</span>(<span class="ruby-identifier">ev</span>.<span class="ruby-identifier">mask</span>, <span class="ruby-constant">Inotify</span><span class="ruby-operator">::</span><span class="ruby-constant">CREATE</span>)
23
+ <span class="ruby-keyword kw">break</span>
24
+ <span class="ruby-keyword kw">end</span>
25
+ <span class="ruby-keyword kw">ensure</span>
26
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">unlink</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-value str">&quot;/tmp&quot;</span>, <span class="ruby-value str">&quot;ruby-inotify-test-4&quot;</span>))
27
+ <span class="ruby-keyword kw">end</span>
28
+ <span class="ruby-keyword kw">end</span></pre>
29
+ </body>
30
+ </html>
@@ -0,0 +1,18 @@
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>
7
+ <head>
8
+ <title>teardown (Test1)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File tests/test_1.rb, line 34</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">teardown</span>
15
+ <span class="ruby-ivar">@inotify</span>.<span class="ruby-identifier">close</span>
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
data/doc/created.rid ADDED
@@ -0,0 +1 @@
1
+ Tue, 06 Sep 2011 19:11:58 -0400
@@ -0,0 +1,109 @@
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: watcher.rb</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>watcher.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>examples/watcher.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Tue Sep 06 14:57:13 -0400 2011</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+
72
+ <div id="requires-list">
73
+ <h3 class="section-bar">Required files</h3>
74
+
75
+ <div class="name-list">
76
+ inotify&nbsp;&nbsp;
77
+ find&nbsp;&nbsp;
78
+ </div>
79
+ </div>
80
+
81
+ </div>
82
+
83
+
84
+ </div>
85
+
86
+
87
+ <!-- if includes -->
88
+
89
+ <div id="section">
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+ <!-- if method_list -->
99
+
100
+
101
+ </div>
102
+
103
+
104
+ <div id="validator-badges">
105
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
106
+ </div>
107
+
108
+ </body>
109
+ </html>
@@ -0,0 +1,109 @@
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: inotify_native.rb</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>inotify_native.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/inotify/inotify_native.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Tue Sep 06 19:11:53 -0400 2011</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+
72
+ <div id="requires-list">
73
+ <h3 class="section-bar">Required files</h3>
74
+
75
+ <div class="name-list">
76
+ rubygems&nbsp;&nbsp;
77
+ ffi&nbsp;&nbsp;
78
+ </div>
79
+ </div>
80
+
81
+ </div>
82
+
83
+
84
+ </div>
85
+
86
+
87
+ <!-- if includes -->
88
+
89
+ <div id="section">
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+ <!-- if method_list -->
99
+
100
+
101
+ </div>
102
+
103
+
104
+ <div id="validator-badges">
105
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
106
+ </div>
107
+
108
+ </body>
109
+ </html>