shadow 1 → 1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,4 @@
1
1
 
2
- Shadow changelog
2
+ v1.1. documentation
3
3
 
4
- 1. all done
5
- 0. staking out the gem name
4
+ v1. everything except documentation
data/Manifest CHANGED
@@ -6,10 +6,5 @@
6
6
  ./bin/shadow
7
7
  ./lib/shadow/rake_task_redefine_task.rb
8
8
  ./lib/shadow.rb
9
- ./test/database.yml
10
9
  ./test/integration/test_shadow.rb
11
- ./test/log/mongrel_debug/access.log
12
- ./test/log/mongrel_debug/files.log
13
- ./test/log/mongrel_debug/objects.log
14
- ./test/log/mongrel_debug/threads.log
15
10
  ./test/schema.rb
data/README CHANGED
@@ -1,11 +1,24 @@
1
1
 
2
2
  Shadow
3
3
 
4
- DESCRIPTION
4
+ A zero-configuration YAML RESTful ActiveRecord server.
5
5
 
6
- A zero-configuration RESTful ActiveRecord server.
7
-
8
- COPYRIGHT
6
+ == License
9
7
 
10
8
  Copyright (c) 2007 Cloudburst, LLC. See the included LICENSE
11
9
  file.
10
+
11
+ == Usage
12
+
13
+ Shadow requires a Rails-style <tt>database.yml</tt> configuration.
14
+
15
+ Start the server with:
16
+
17
+ shadow [path_to/database.yml] [environment] [route]
18
+
19
+ Now you can query it at:
20
+
21
+ http://0.0.0.0:2001/route/table_name/record_id
22
+
23
+ You need to make RESTful HTTP requests (GET, POST, PUT, or DELETE), with YAML form payloads for POST and PUT.
24
+
data/Rakefile CHANGED
@@ -1,44 +1,28 @@
1
+
1
2
  require 'rubygems'
2
- require 'rake'
3
- require 'lib/shadow/rake_task_redefine_task'
4
3
 
5
4
  DIR = File.dirname(__FILE__)
6
5
 
7
6
  begin
8
- require 'rake/clean'
9
7
  gem 'echoe', '>= 1.2'
10
8
  require 'echoe'
11
- require 'fileutils'
12
- include FileUtils
13
9
 
14
- CLEAN.include ['**/.*.sw?', '*.gem', '.config']
15
- VERS = `cat CHANGELOG`[/^([\d\.]+)\. /, 1]
10
+ VERS = `cat CHANGELOG`[/^v([\d\.]+)\. /, 1]
16
11
 
17
12
  echoe = Echoe.new("shadow", VERS) do |p|
18
13
  p.author = "Evan Weaver"
19
14
  p.rubyforge_name = "fauna"
20
15
  p.name = "shadow"
21
16
  p.description = "A zero-configuration RESTful ActiveRecord server."
22
- p.changes = `cat CHANGELOG`[/^([\d\.]+\. .*)/, 1]
23
- p.email = "evan at cloudbur dot st"
17
+ p.changes = `cat CHANGELOG`[/^v([\d\.]+\. .*)/, 1]
24
18
  p.summary = p.description
25
- p.url = "http://blog.evanweaver.com"
19
+ p.url = "http://blog.evanweaver.com/pages/code#shadow"
26
20
  p.need_tar = false
27
21
  p.need_tar_gz = true
28
- p.test_globs = ["*_test.rb"]
29
22
  p.extra_deps = ["activerecord", "mongrel"]
30
- p.clean_globs = CLEAN
23
+
24
+ p.rdoc_pattern = /\.\/bin|\.\/lib\/shadow\.rb|README|CHANGELOG|LICENSE/
25
+
31
26
  end
32
27
 
33
- rescue LoadError => boom
34
- puts "You are missing a dependency required for meta-operations on this gem."
35
- puts "#{boom.to_s.capitalize}."
36
-
37
- desc 'Run tests.'
38
- task :default => :test
39
- end
40
-
41
- desc 'Run tests.'
42
- Rake::Task.redefine_task("test") do
43
- system "ruby -Ibin:lib:test test/integration/test_shadow.rb #{ENV['METHOD'] ? "--name=#{ENV['METHOD']}" : ""}"
44
28
  end
data/bin/shadow CHANGED
@@ -1,5 +1,12 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ =begin rdoc
4
+ Start the server.
5
+
6
+ shadow [path_to/database.yml] [environment] [url_path_to_respond_to]
7
+
8
+ =end
9
+
3
10
  require 'rubygems'
4
11
  require 'shadow'
5
12
 
@@ -9,18 +9,19 @@ class Shadow < Mongrel::HttpHandler
9
9
 
10
10
  def initialize(config, environment, name, address = '0.0.0.0', port = '2001', sleep = nil)
11
11
  ActiveRecord::Base.establish_connection(YAML.load_file(config)[environment.to_s])
12
- ActiveRecord::Base.allow_concurrency = false
12
+ ActiveRecord::Base.allow_concurrency = false # AR doesn't release connections fast enough
13
13
  @sleep = sleep
14
14
  @sync = Sync.new
15
15
  @pid = serve(self, name, address, port)
16
16
  end
17
17
 
18
+ # Implement the <tt>mongrel</tt> event handler. Responds to all four HTTP methods.
18
19
  def process(request, response)
19
20
  sleep(rand * @sleep) if @sleep
20
21
  table, id = request.params["PATH_INFO"].split("/")
21
22
 
22
23
  obj, code = nil, 200
23
- @sync.synchronize(:EX) do # fuckin AR
24
+ @sync.synchronize(:EX) do # sad
24
25
  begin
25
26
  obj = find(table, id)
26
27
  case request.params["REQUEST_METHOD"]
@@ -42,13 +43,13 @@ class Shadow < Mongrel::HttpHandler
42
43
  end
43
44
  end
44
45
 
46
+ # Finds and returns an ActiveRecord instance (returns a new record if <tt>id</tt> is nil). Dynamically instantiates an ActiveRecord parent class for each call.
45
47
  def find(table, id)
46
48
  klass = Class.new(ActiveRecord::Base) { self.table_name = table }
47
49
  id ? klass.find(id) : klass.new
48
50
  end
49
-
50
- ### configure mongrel ###
51
-
51
+
52
+ # Configure mongrel and start an instance of ourselves.
52
53
  def serve(me, name, address, port)
53
54
  fork do
54
55
  Mongrel::Configurator.new :host => address, :pid_file => "/tmp/shadow.#{name}.pid" do
@@ -61,7 +62,7 @@ class Shadow < Mongrel::HttpHandler
61
62
  end
62
63
  end
63
64
 
64
- ### debugging ###
65
+ private
65
66
 
66
67
  def self.d
67
68
  require 'ruby-debug'; Debugger.start; debugger
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: shadow
5
5
  version: !ruby/object:Gem::Version
6
- version: "1"
7
- date: 2007-05-15 00:00:00 -07:00
6
+ version: "1.1"
7
+ date: 2007-08-02 00:00:00 -04:00
8
8
  summary: A zero-configuration RESTful ActiveRecord server.
9
9
  require_paths:
10
10
  - lib
11
- email: evan at cloudbur dot st
12
- homepage: http://blog.evanweaver.com
11
+ email: ""
12
+ homepage: http://blog.evanweaver.com/pages/code#shadow
13
13
  rubyforge_project: fauna
14
14
  description: A zero-configuration RESTful ActiveRecord server.
15
15
  autorequire:
@@ -37,15 +37,10 @@ files:
37
37
  - ./bin/shadow
38
38
  - ./lib/shadow/rake_task_redefine_task.rb
39
39
  - ./lib/shadow.rb
40
- - ./test/database.yml
41
40
  - ./test/integration/test_shadow.rb
42
- - ./test/log/mongrel_debug/access.log
43
- - ./test/log/mongrel_debug/files.log
44
- - ./test/log/mongrel_debug/objects.log
45
- - ./test/log/mongrel_debug/threads.log
46
41
  - ./test/schema.rb
47
- test_files: []
48
-
42
+ test_files:
43
+ - test/integration/test_shadow.rb
49
44
  rdoc_options: []
50
45
 
51
46
  extra_rdoc_files: []
@@ -1,7 +0,0 @@
1
-
2
- test:
3
- adapter: mysql
4
- database: shadow_test
5
- host: localhost
6
- username: root
7
- password:
@@ -1,7 +0,0 @@
1
- # Logfile created on Tue May 15 01:44:24 -0700 2007 by /
2
- TRACING ON Tue May 15 01:44:24 -0700 2007
3
- TRACING ON Tue May 15 01:45:48 -0700 2007
4
- TRACING ON Tue May 15 01:46:03 -0700 2007
5
- TRACING ON Tue May 15 01:46:19 -0700 2007
6
- TRACING ON Tue May 15 01:46:41 -0700 2007
7
- TRACING ON Tue May 15 01:47:30 -0700 2007
@@ -1,575 +0,0 @@
1
- # Logfile created on Tue May 15 01:44:24 -0700 2007 by /
2
- TRACING ON Tue May 15 01:44:24 -0700 2007
3
- TRACING ON Tue May 15 01:45:48 -0700 2007
4
- TRACING ON Tue May 15 01:46:03 -0700 2007
5
- TRACING ON Tue May 15 01:46:19 -0700 2007
6
- TRACING ON Tue May 15 01:46:41 -0700 2007
7
- TRACING ON Tue May 15 01:47:30 -0700 2007
8
- Tue May 15 01:47:30 -0700 2007 FILES OPEN BEFORE REQUEST dogs/1
9
- ---
10
- log/mongrel_debug/objects.log: 1
11
- log/mongrel_debug/files.log: 1
12
- log/mongrel_debug/threads.log: 1
13
- log/mongrel_debug/access.log: 1
14
- /tmp/shadow.menagerie.pid: 1
15
-
16
- Tue May 15 01:47:31 -0700 2007 FILES OPEN BEFORE REQUEST dogs/1
17
- ---
18
- log/mongrel_debug/objects.log: 1
19
- log/mongrel_debug/files.log: 1
20
- log/mongrel_debug/threads.log: 1
21
- log/mongrel_debug/access.log: 1
22
- /tmp/shadow.menagerie.pid: 1
23
-
24
- Tue May 15 01:47:31 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
25
- ---
26
- log/mongrel_debug/objects.log: 1
27
- log/mongrel_debug/files.log: 1
28
- log/mongrel_debug/threads.log: 1
29
- log/mongrel_debug/access.log: 1
30
- /tmp/shadow.menagerie.pid: 1
31
-
32
- Tue May 15 01:47:32 -0700 2007 FILES OPEN BEFORE REQUEST cats/25
33
- ---
34
- log/mongrel_debug/objects.log: 1
35
- log/mongrel_debug/files.log: 1
36
- log/mongrel_debug/threads.log: 1
37
- log/mongrel_debug/access.log: 1
38
- /tmp/shadow.menagerie.pid: 1
39
-
40
- Tue May 15 01:47:33 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
41
- ---
42
- log/mongrel_debug/objects.log: 1
43
- log/mongrel_debug/files.log: 1
44
- log/mongrel_debug/threads.log: 1
45
- log/mongrel_debug/access.log: 1
46
- /tmp/shadow.menagerie.pid: 1
47
-
48
- Tue May 15 01:47:33 -0700 2007 FILES OPEN BEFORE REQUEST cats
49
- ---
50
- log/mongrel_debug/objects.log: 1
51
- log/mongrel_debug/files.log: 1
52
- log/mongrel_debug/threads.log: 1
53
- log/mongrel_debug/access.log: 1
54
- /tmp/shadow.menagerie.pid: 1
55
-
56
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
57
- ---
58
- log/mongrel_debug/objects.log: 1
59
- log/mongrel_debug/files.log: 1
60
- log/mongrel_debug/threads.log: 1
61
- log/mongrel_debug/access.log: 1
62
- /tmp/shadow.menagerie.pid: 1
63
-
64
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
65
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
66
- ---
67
- log/mongrel_debug/objects.log: 1
68
- log/mongrel_debug/files.log: 1
69
- log/mongrel_debug/threads.log: 1
70
- log/mongrel_debug/access.log: 1
71
- /tmp/shadow.menagerie.pid: 1
72
-
73
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
74
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
75
- ---
76
- log/mongrel_debug/objects.log: 1
77
- log/mongrel_debug/files.log: 1
78
- log/mongrel_debug/threads.log: 1
79
- log/mongrel_debug/access.log: 1
80
- /tmp/shadow.menagerie.pid: 1
81
-
82
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
83
- ---
84
- log/mongrel_debug/objects.log: 1
85
- log/mongrel_debug/files.log: 1
86
- log/mongrel_debug/threads.log: 1
87
- log/mongrel_debug/access.log: 1
88
- /tmp/shadow.menagerie.pid: 1
89
-
90
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
91
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
92
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
93
- ---
94
- log/mongrel_debug/objects.log: 1
95
- log/mongrel_debug/files.log: 1
96
- log/mongrel_debug/threads.log: 1
97
- log/mongrel_debug/access.log: 1
98
- /tmp/shadow.menagerie.pid: 1
99
-
100
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
101
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
102
- ---
103
- log/mongrel_debug/objects.log: 1
104
- log/mongrel_debug/files.log: 1
105
- log/mongrel_debug/threads.log: 1
106
- log/mongrel_debug/access.log: 1
107
- /tmp/shadow.menagerie.pid: 1
108
-
109
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
110
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
111
- ---
112
- log/mongrel_debug/objects.log: 1
113
- log/mongrel_debug/files.log: 1
114
- log/mongrel_debug/threads.log: 1
115
- log/mongrel_debug/access.log: 1
116
- /tmp/shadow.menagerie.pid: 1
117
-
118
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
119
- ---
120
- log/mongrel_debug/objects.log: 1
121
- log/mongrel_debug/files.log: 1
122
- log/mongrel_debug/threads.log: 1
123
- log/mongrel_debug/access.log: 1
124
- /tmp/shadow.menagerie.pid: 1
125
-
126
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
127
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
128
- ---
129
- log/mongrel_debug/objects.log: 1
130
- log/mongrel_debug/files.log: 1
131
- log/mongrel_debug/threads.log: 1
132
- log/mongrel_debug/access.log: 1
133
- /tmp/shadow.menagerie.pid: 1
134
-
135
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
136
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
137
- ---
138
- log/mongrel_debug/objects.log: 1
139
- log/mongrel_debug/files.log: 1
140
- log/mongrel_debug/threads.log: 1
141
- log/mongrel_debug/access.log: 1
142
- /tmp/shadow.menagerie.pid: 1
143
-
144
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
145
- ---
146
- log/mongrel_debug/objects.log: 1
147
- log/mongrel_debug/files.log: 1
148
- log/mongrel_debug/threads.log: 1
149
- log/mongrel_debug/access.log: 1
150
- /tmp/shadow.menagerie.pid: 1
151
-
152
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
153
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
154
- ---
155
- log/mongrel_debug/objects.log: 1
156
- log/mongrel_debug/files.log: 1
157
- log/mongrel_debug/threads.log: 1
158
- log/mongrel_debug/access.log: 1
159
- /tmp/shadow.menagerie.pid: 1
160
-
161
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
162
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
163
- ---
164
- log/mongrel_debug/objects.log: 1
165
- log/mongrel_debug/files.log: 1
166
- log/mongrel_debug/threads.log: 1
167
- log/mongrel_debug/access.log: 1
168
- /tmp/shadow.menagerie.pid: 1
169
-
170
- Tue May 15 01:47:34 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
171
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
172
- ---
173
- log/mongrel_debug/objects.log: 1
174
- log/mongrel_debug/files.log: 1
175
- log/mongrel_debug/threads.log: 1
176
- log/mongrel_debug/access.log: 1
177
- /tmp/shadow.menagerie.pid: 1
178
-
179
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
180
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
181
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
182
- ---
183
- log/mongrel_debug/objects.log: 1
184
- log/mongrel_debug/files.log: 1
185
- log/mongrel_debug/threads.log: 1
186
- log/mongrel_debug/access.log: 1
187
- /tmp/shadow.menagerie.pid: 1
188
-
189
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
190
- ---
191
- log/mongrel_debug/objects.log: 1
192
- log/mongrel_debug/files.log: 1
193
- log/mongrel_debug/threads.log: 1
194
- log/mongrel_debug/access.log: 1
195
- /tmp/shadow.menagerie.pid: 1
196
-
197
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
198
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
199
- ---
200
- log/mongrel_debug/objects.log: 1
201
- log/mongrel_debug/files.log: 1
202
- log/mongrel_debug/threads.log: 1
203
- log/mongrel_debug/access.log: 1
204
- /tmp/shadow.menagerie.pid: 1
205
-
206
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
207
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
208
- ---
209
- log/mongrel_debug/objects.log: 1
210
- log/mongrel_debug/files.log: 1
211
- log/mongrel_debug/threads.log: 1
212
- log/mongrel_debug/access.log: 1
213
- /tmp/shadow.menagerie.pid: 1
214
-
215
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
216
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
217
- ---
218
- log/mongrel_debug/objects.log: 1
219
- log/mongrel_debug/files.log: 1
220
- log/mongrel_debug/threads.log: 1
221
- log/mongrel_debug/access.log: 1
222
- /tmp/shadow.menagerie.pid: 1
223
-
224
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
225
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
226
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
227
- ---
228
- log/mongrel_debug/objects.log: 1
229
- log/mongrel_debug/files.log: 1
230
- log/mongrel_debug/threads.log: 1
231
- log/mongrel_debug/access.log: 1
232
- /tmp/shadow.menagerie.pid: 1
233
-
234
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
235
- ---
236
- log/mongrel_debug/objects.log: 1
237
- log/mongrel_debug/files.log: 1
238
- log/mongrel_debug/threads.log: 1
239
- log/mongrel_debug/access.log: 1
240
- /tmp/shadow.menagerie.pid: 1
241
-
242
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
243
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
244
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
245
- ---
246
- log/mongrel_debug/objects.log: 1
247
- log/mongrel_debug/files.log: 1
248
- log/mongrel_debug/threads.log: 1
249
- log/mongrel_debug/access.log: 1
250
- /tmp/shadow.menagerie.pid: 1
251
-
252
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
253
- ---
254
- log/mongrel_debug/objects.log: 1
255
- log/mongrel_debug/files.log: 1
256
- log/mongrel_debug/threads.log: 1
257
- log/mongrel_debug/access.log: 1
258
- /tmp/shadow.menagerie.pid: 1
259
-
260
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
261
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
262
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
263
- ---
264
- log/mongrel_debug/objects.log: 1
265
- log/mongrel_debug/files.log: 1
266
- log/mongrel_debug/threads.log: 1
267
- log/mongrel_debug/access.log: 1
268
- /tmp/shadow.menagerie.pid: 1
269
-
270
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
271
- ---
272
- log/mongrel_debug/objects.log: 1
273
- log/mongrel_debug/files.log: 1
274
- log/mongrel_debug/threads.log: 1
275
- log/mongrel_debug/access.log: 1
276
- /tmp/shadow.menagerie.pid: 1
277
-
278
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
279
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
280
- ---
281
- log/mongrel_debug/objects.log: 1
282
- log/mongrel_debug/files.log: 1
283
- log/mongrel_debug/threads.log: 1
284
- log/mongrel_debug/access.log: 1
285
- /tmp/shadow.menagerie.pid: 1
286
-
287
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
288
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
289
- ---
290
- log/mongrel_debug/objects.log: 1
291
- log/mongrel_debug/files.log: 1
292
- log/mongrel_debug/threads.log: 1
293
- log/mongrel_debug/access.log: 1
294
- /tmp/shadow.menagerie.pid: 1
295
-
296
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
297
- ---
298
- log/mongrel_debug/objects.log: 1
299
- log/mongrel_debug/files.log: 1
300
- log/mongrel_debug/threads.log: 1
301
- log/mongrel_debug/access.log: 1
302
- /tmp/shadow.menagerie.pid: 1
303
-
304
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
305
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
306
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
307
- ---
308
- log/mongrel_debug/objects.log: 1
309
- log/mongrel_debug/files.log: 1
310
- log/mongrel_debug/threads.log: 1
311
- log/mongrel_debug/access.log: 1
312
- /tmp/shadow.menagerie.pid: 1
313
-
314
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
315
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
316
- ---
317
- log/mongrel_debug/objects.log: 1
318
- log/mongrel_debug/files.log: 1
319
- log/mongrel_debug/threads.log: 1
320
- log/mongrel_debug/access.log: 1
321
- /tmp/shadow.menagerie.pid: 1
322
-
323
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
324
- ---
325
- log/mongrel_debug/objects.log: 1
326
- log/mongrel_debug/files.log: 1
327
- log/mongrel_debug/threads.log: 1
328
- log/mongrel_debug/access.log: 1
329
- /tmp/shadow.menagerie.pid: 1
330
-
331
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
332
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
333
- Tue May 15 01:47:35 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
334
- ---
335
- log/mongrel_debug/objects.log: 1
336
- log/mongrel_debug/files.log: 1
337
- log/mongrel_debug/threads.log: 1
338
- log/mongrel_debug/access.log: 1
339
- /tmp/shadow.menagerie.pid: 1
340
-
341
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
342
- ---
343
- log/mongrel_debug/objects.log: 1
344
- log/mongrel_debug/files.log: 1
345
- log/mongrel_debug/threads.log: 1
346
- log/mongrel_debug/access.log: 1
347
- /tmp/shadow.menagerie.pid: 1
348
-
349
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
350
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
351
- Tue May 15 01:47:36 -0700 2007 FILES OPEN BEFORE REQUEST cats/1
352
- ---
353
- log/mongrel_debug/objects.log: 1
354
- log/mongrel_debug/files.log: 1
355
- log/mongrel_debug/threads.log: 1
356
- log/mongrel_debug/access.log: 1
357
- /tmp/shadow.menagerie.pid: 1
358
-
359
- ---
360
- log/mongrel_debug/objects.log: 1
361
- log/mongrel_debug/files.log: 1
362
- log/mongrel_debug/threads.log: 1
363
- log/mongrel_debug/access.log: 1
364
- /tmp/shadow.menagerie.pid: 1
365
-
366
- ---
367
- log/mongrel_debug/objects.log: 1
368
- log/mongrel_debug/files.log: 1
369
- log/mongrel_debug/threads.log: 1
370
- log/mongrel_debug/access.log: 1
371
- /tmp/shadow.menagerie.pid: 1
372
-
373
- ---
374
- log/mongrel_debug/objects.log: 1
375
- log/mongrel_debug/files.log: 1
376
- log/mongrel_debug/threads.log: 1
377
- log/mongrel_debug/access.log: 1
378
- /tmp/shadow.menagerie.pid: 1
379
-
380
- ---
381
- log/mongrel_debug/objects.log: 1
382
- log/mongrel_debug/files.log: 1
383
- log/mongrel_debug/threads.log: 1
384
- log/mongrel_debug/access.log: 1
385
- /tmp/shadow.menagerie.pid: 1
386
-
387
- ---
388
- log/mongrel_debug/objects.log: 1
389
- log/mongrel_debug/files.log: 1
390
- log/mongrel_debug/threads.log: 1
391
- log/mongrel_debug/access.log: 1
392
- /tmp/shadow.menagerie.pid: 1
393
-
394
- ---
395
- log/mongrel_debug/objects.log: 1
396
- log/mongrel_debug/files.log: 1
397
- log/mongrel_debug/threads.log: 1
398
- log/mongrel_debug/access.log: 1
399
- /tmp/shadow.menagerie.pid: 1
400
-
401
- ---
402
- log/mongrel_debug/objects.log: 1
403
- log/mongrel_debug/files.log: 1
404
- log/mongrel_debug/threads.log: 1
405
- log/mongrel_debug/access.log: 1
406
- /tmp/shadow.menagerie.pid: 1
407
-
408
- ---
409
- log/mongrel_debug/objects.log: 1
410
- log/mongrel_debug/files.log: 1
411
- log/mongrel_debug/threads.log: 1
412
- log/mongrel_debug/access.log: 1
413
- /tmp/shadow.menagerie.pid: 1
414
-
415
- ---
416
- log/mongrel_debug/objects.log: 1
417
- log/mongrel_debug/files.log: 1
418
- log/mongrel_debug/threads.log: 1
419
- log/mongrel_debug/access.log: 1
420
- /tmp/shadow.menagerie.pid: 1
421
-
422
- ---
423
- log/mongrel_debug/objects.log: 1
424
- log/mongrel_debug/files.log: 1
425
- log/mongrel_debug/threads.log: 1
426
- log/mongrel_debug/access.log: 1
427
- /tmp/shadow.menagerie.pid: 1
428
-
429
- ---
430
- log/mongrel_debug/objects.log: 1
431
- log/mongrel_debug/files.log: 1
432
- log/mongrel_debug/threads.log: 1
433
- log/mongrel_debug/access.log: 1
434
- /tmp/shadow.menagerie.pid: 1
435
-
436
- ---
437
- log/mongrel_debug/objects.log: 1
438
- log/mongrel_debug/files.log: 1
439
- log/mongrel_debug/threads.log: 1
440
- log/mongrel_debug/access.log: 1
441
- /tmp/shadow.menagerie.pid: 1
442
-
443
- ---
444
- log/mongrel_debug/objects.log: 1
445
- log/mongrel_debug/files.log: 1
446
- log/mongrel_debug/threads.log: 1
447
- log/mongrel_debug/access.log: 1
448
- /tmp/shadow.menagerie.pid: 1
449
-
450
- ---
451
- log/mongrel_debug/objects.log: 1
452
- log/mongrel_debug/files.log: 1
453
- log/mongrel_debug/threads.log: 1
454
- log/mongrel_debug/access.log: 1
455
- /tmp/shadow.menagerie.pid: 1
456
-
457
- ---
458
- log/mongrel_debug/objects.log: 1
459
- log/mongrel_debug/files.log: 1
460
- log/mongrel_debug/threads.log: 1
461
- log/mongrel_debug/access.log: 1
462
- /tmp/shadow.menagerie.pid: 1
463
-
464
- ---
465
- log/mongrel_debug/objects.log: 1
466
- log/mongrel_debug/files.log: 1
467
- log/mongrel_debug/threads.log: 1
468
- log/mongrel_debug/access.log: 1
469
- /tmp/shadow.menagerie.pid: 1
470
-
471
- ---
472
- log/mongrel_debug/objects.log: 1
473
- log/mongrel_debug/files.log: 1
474
- log/mongrel_debug/threads.log: 1
475
- log/mongrel_debug/access.log: 1
476
- /tmp/shadow.menagerie.pid: 1
477
-
478
- ---
479
- log/mongrel_debug/objects.log: 1
480
- log/mongrel_debug/files.log: 1
481
- log/mongrel_debug/threads.log: 1
482
- log/mongrel_debug/access.log: 1
483
- /tmp/shadow.menagerie.pid: 1
484
-
485
- ---
486
- log/mongrel_debug/objects.log: 1
487
- log/mongrel_debug/files.log: 1
488
- log/mongrel_debug/threads.log: 1
489
- log/mongrel_debug/access.log: 1
490
- /tmp/shadow.menagerie.pid: 1
491
-
492
- ---
493
- log/mongrel_debug/objects.log: 1
494
- log/mongrel_debug/files.log: 1
495
- log/mongrel_debug/threads.log: 1
496
- log/mongrel_debug/access.log: 1
497
- /tmp/shadow.menagerie.pid: 1
498
-
499
- ---
500
- log/mongrel_debug/objects.log: 1
501
- log/mongrel_debug/files.log: 1
502
- log/mongrel_debug/threads.log: 1
503
- log/mongrel_debug/access.log: 1
504
- /tmp/shadow.menagerie.pid: 1
505
-
506
- ---
507
- log/mongrel_debug/objects.log: 1
508
- log/mongrel_debug/files.log: 1
509
- log/mongrel_debug/threads.log: 1
510
- log/mongrel_debug/access.log: 1
511
- /tmp/shadow.menagerie.pid: 1
512
-
513
- ---
514
- log/mongrel_debug/objects.log: 1
515
- log/mongrel_debug/files.log: 1
516
- log/mongrel_debug/threads.log: 1
517
- log/mongrel_debug/access.log: 1
518
- /tmp/shadow.menagerie.pid: 1
519
-
520
- ---
521
- log/mongrel_debug/objects.log: 1
522
- log/mongrel_debug/files.log: 1
523
- log/mongrel_debug/threads.log: 1
524
- log/mongrel_debug/access.log: 1
525
- /tmp/shadow.menagerie.pid: 1
526
-
527
- ---
528
- log/mongrel_debug/objects.log: 1
529
- log/mongrel_debug/files.log: 1
530
- log/mongrel_debug/threads.log: 1
531
- log/mongrel_debug/access.log: 1
532
- /tmp/shadow.menagerie.pid: 1
533
-
534
- ---
535
- log/mongrel_debug/objects.log: 1
536
- log/mongrel_debug/files.log: 1
537
- log/mongrel_debug/threads.log: 1
538
- log/mongrel_debug/access.log: 1
539
- /tmp/shadow.menagerie.pid: 1
540
-
541
- ---
542
- log/mongrel_debug/objects.log: 1
543
- log/mongrel_debug/files.log: 1
544
- log/mongrel_debug/threads.log: 1
545
- log/mongrel_debug/access.log: 1
546
- /tmp/shadow.menagerie.pid: 1
547
-
548
- ---
549
- log/mongrel_debug/objects.log: 1
550
- log/mongrel_debug/files.log: 1
551
- log/mongrel_debug/threads.log: 1
552
- log/mongrel_debug/access.log: 1
553
- /tmp/shadow.menagerie.pid: 1
554
-
555
- ---
556
- log/mongrel_debug/objects.log: 1
557
- log/mongrel_debug/files.log: 1
558
- log/mongrel_debug/threads.log: 1
559
- log/mongrel_debug/access.log: 1
560
- /tmp/shadow.menagerie.pid: 1
561
-
562
- ---
563
- log/mongrel_debug/objects.log: 1
564
- log/mongrel_debug/files.log: 1
565
- log/mongrel_debug/threads.log: 1
566
- log/mongrel_debug/access.log: 1
567
- /tmp/shadow.menagerie.pid: 1
568
-
569
- ---
570
- log/mongrel_debug/objects.log: 1
571
- log/mongrel_debug/files.log: 1
572
- log/mongrel_debug/threads.log: 1
573
- log/mongrel_debug/access.log: 1
574
- /tmp/shadow.menagerie.pid: 1
575
-