ramaze 2009.01 → 2009.02
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +1 -1
- data/cache.yaml +7 -0
- data/doc/CHANGELOG +134 -0
- data/doc/readme_chunks/getting_help.txt +1 -1
- data/doc/tutorial/todolist.html +1 -1
- data/doc/tutorial/todolist.mkd +2 -2
- data/examples/app/wiktacular/template/html_layout.xhtml +1 -1
- data/lib/proto/view/index.xhtml +2 -2
- data/lib/ramaze/contrib/gettext/po.rb +23 -23
- data/lib/ramaze/controller/resolve.rb +1 -1
- data/lib/ramaze/current.rb +0 -59
- data/lib/ramaze/current/request.rb +11 -2
- data/lib/ramaze/current/session/flash.rb +1 -0
- data/lib/ramaze/helper/flash.rb +17 -2
- data/lib/ramaze/helper/paginate.rb +1 -1
- data/lib/ramaze/helper/redirect.rb +1 -1
- data/lib/ramaze/helper/user.rb +1 -1
- data/lib/ramaze/log/syslog.rb +36 -36
- data/lib/ramaze/snippets/ramaze/fiber.rb +3 -4
- data/lib/ramaze/tool/localize.rb +1 -1
- data/lib/ramaze/version.rb +1 -1
- data/rake_tasks/conf.rake +16 -2
- data/rake_tasks/gem.rake +1 -1
- data/ramaze.gemspec +4 -168
- data/spec/ramaze/log/syslog.rb +62 -59
- data/spec/ramaze/view/ezamar/external.xhtml +8 -0
- data/test.out +1588 -0
- metadata +24 -7
- data/ramaze-2008.11.gem +0 -0
data/spec/ramaze/log/syslog.rb
CHANGED
@@ -7,67 +7,70 @@ require 'ramaze/log/syslog'
|
|
7
7
|
|
8
8
|
describe 'Syslog' do
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
10
|
+
# close the syslog, if it was open for some reason before we
|
11
|
+
# start a test.
|
12
|
+
before do
|
13
|
+
if ( Syslog.opened? )
|
14
|
+
::Syslog.close
|
15
|
+
end
|
16
|
+
end
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
18
|
+
it 'should default initialize correctly' do
|
19
|
+
syslog = Ramaze::Logger::Syslog.new
|
20
|
+
::Syslog.opened?.should == true
|
21
|
+
::Syslog.ident.should == $0
|
22
|
+
::Syslog.options.should == ( ::Syslog::LOG_PID | ::Syslog::LOG_CONS )
|
23
|
+
::Syslog.facility.should == ::Syslog::LOG_USER
|
24
|
+
end
|
25
25
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
26
|
+
it 'should handle non default initialization' do
|
27
|
+
syslog = Ramaze::Logger::Syslog.new(
|
28
|
+
'ramaze_syslog_test', ::Syslog::LOG_NDELAY | ::Syslog::LOG_NOWAIT,
|
29
|
+
::Syslog::LOG_DAEMON
|
30
|
+
)
|
31
|
+
::Syslog.opened?.should == true
|
32
|
+
::Syslog.ident.should == 'ramaze_syslog_test'
|
33
|
+
::Syslog.options.should == ( ::Syslog::LOG_NDELAY | ::Syslog::LOG_NOWAIT )
|
34
|
+
::Syslog.facility.should == ::Syslog::LOG_DAEMON
|
35
|
+
end
|
35
36
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
37
|
+
# We test the actual logging using a trick found in te test code of the
|
38
|
+
# syslog module. We create a pipe, fork a child, reroute the childs
|
39
|
+
# stderr to the pipe. Then we open the logging using LOG_PERROR, so all
|
40
|
+
# log messages are written to stderror. In the parent we read the messages
|
41
|
+
# from the pipe and compare them to what we expected.
|
42
|
+
def test_log_msg( type, priority, msg )
|
43
|
+
logpipe = IO::pipe
|
44
|
+
child = fork {
|
45
|
+
logpipe[0].close
|
46
|
+
STDERR.reopen(logpipe[1])
|
47
|
+
syslog = Ramaze::Logger::Syslog.new(
|
48
|
+
'ramaze_syslog_test',
|
49
|
+
::Syslog::LOG_PID | ::Syslog::LOG_NDELAY | ::Syslog::LOG_PERROR,
|
50
|
+
::Syslog::LOG_USER
|
51
|
+
)
|
52
|
+
syslog.send priority, msg
|
53
|
+
Process.exit!( 0 )
|
54
|
+
}
|
55
|
+
logpipe[1].close
|
56
|
+
Process.waitpid(child)
|
54
57
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
58
|
+
logpipe[0].gets.should == "ramaze_syslog_test[#{child}]: #{msg}\n"
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'should handle debug' do
|
62
|
+
test_log_msg :direct, :debug, "Hello Debug World"
|
63
|
+
end
|
64
|
+
it 'should handle dev' do
|
65
|
+
test_log_msg :direct, :dev, "Hello Dev World"
|
66
|
+
end
|
67
|
+
it 'should handle info' do
|
68
|
+
test_log_msg :direct, :info, 'Hello Info World!'
|
69
|
+
end
|
70
|
+
it 'should handle warn' do
|
71
|
+
test_log_msg :direct, :warn, 'Hello Warn World!'
|
72
|
+
end
|
73
|
+
it 'should handle error' do
|
74
|
+
test_log_msg :direct, :error, 'Hello Error World!'
|
75
|
+
end
|
73
76
|
end
|
data/test.out
ADDED
@@ -0,0 +1,1588 @@
|
|
1
|
+
(in /misc/git/ramaze)
|
2
|
+
1/83: spec/ramaze/action/basics.rb [31m 3 tests, 0 assertions, 0 failures, 3 errors[0m
|
3
|
+
EEE
|
4
|
+
NoMethodError: undefined method `Action' for Ramaze:Module
|
5
|
+
spec/ramaze/action/basics.rb:5: Action() basics - should have useful defaults
|
6
|
+
spec/ramaze/action/basics.rb:4
|
7
|
+
spec/ramaze/action/basics.rb:3
|
8
|
+
|
9
|
+
NoMethodError: undefined method `Action' for Ramaze:Module
|
10
|
+
spec/ramaze/action/basics.rb:13: Action() basics - should sanitize parameters
|
11
|
+
spec/ramaze/action/basics.rb:12
|
12
|
+
spec/ramaze/action/basics.rb:3
|
13
|
+
|
14
|
+
NoMethodError: undefined method `Action' for Ramaze:Module
|
15
|
+
spec/ramaze/action/basics.rb:24: Action() basics - should be transformable in an hash
|
16
|
+
spec/ramaze/action/basics.rb:20
|
17
|
+
spec/ramaze/action/basics.rb:3
|
18
|
+
|
19
|
+
3 tests, 0 assertions, 0 failures, 3 errors
|
20
|
+
|
21
|
+
2/83: spec/ramaze/action/cache.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
22
|
+
|
23
|
+
|
24
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
25
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
26
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
27
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
28
|
+
from spec/ramaze/action/cache.rb:10
|
29
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
30
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
31
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
32
|
+
from spec/ramaze/action/cache.rb:10
|
33
|
+
3/83: spec/ramaze/action/render.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
34
|
+
|
35
|
+
|
36
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
37
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
38
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
39
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
40
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
41
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
42
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
43
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
44
|
+
from spec/ramaze/action/render.rb:20
|
45
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
46
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
47
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
48
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
49
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
50
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
51
|
+
from spec/ramaze/action/render.rb:19
|
52
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
53
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
54
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
55
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
56
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
57
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
58
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
59
|
+
from spec/ramaze/action/render.rb:20
|
60
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
61
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
62
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
63
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
64
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
65
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
66
|
+
from spec/ramaze/action/render.rb:19
|
67
|
+
4/83: spec/ramaze/action/file_cache.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
68
|
+
|
69
|
+
|
70
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
71
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
72
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
73
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
74
|
+
from spec/ramaze/action/file_cache.rb:12
|
75
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
76
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
77
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
78
|
+
from spec/ramaze/action/file_cache.rb:12
|
79
|
+
5/83: spec/ramaze/action/layout.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
80
|
+
|
81
|
+
|
82
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
83
|
+
spec/ramaze/action/layout.rb:46: undefined method `deny_layout' for TCActionDenyLayout:Class (NoMethodError)
|
84
|
+
spec/ramaze/action/layout.rb:46: undefined method `deny_layout' for TCActionDenyLayout:Class (NoMethodError)
|
85
|
+
6/83: spec/ramaze/adapter/ebb.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
86
|
+
|
87
|
+
|
88
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
89
|
+
spec/ramaze/adapter/ebb.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
90
|
+
spec/ramaze/adapter/ebb.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
91
|
+
7/83: spec/ramaze/adapter/mongrel.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
92
|
+
|
93
|
+
|
94
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
95
|
+
spec/ramaze/adapter/mongrel.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
96
|
+
spec/ramaze/adapter/mongrel.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
97
|
+
8/83: spec/ramaze/adapter/record.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
98
|
+
|
99
|
+
|
100
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
101
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
102
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
103
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
104
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
105
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
106
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
107
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
108
|
+
from spec/ramaze/adapter/record.rb:16
|
109
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
110
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
111
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
112
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
113
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
114
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
115
|
+
from spec/ramaze/adapter/record.rb:15
|
116
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
117
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
118
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
119
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
120
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
121
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
122
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
123
|
+
from spec/ramaze/adapter/record.rb:16
|
124
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
125
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
126
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
127
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
128
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
129
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
130
|
+
from spec/ramaze/adapter/record.rb:15
|
131
|
+
9/83: spec/ramaze/adapter/webrick.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
132
|
+
|
133
|
+
|
134
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
135
|
+
spec/ramaze/adapter/webrick.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
136
|
+
spec/ramaze/adapter/webrick.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
137
|
+
10/83: spec/ramaze/cache.rb [31m 12 tests, 0 assertions, 0 failures, 12 errors[0m
|
138
|
+
skipping memcached
|
139
|
+
EEEEEEEEEEEE
|
140
|
+
NameError: uninitialized constant Ramaze::Global
|
141
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash setup - should be assignable to Global
|
142
|
+
spec/ramaze/cache.rb:18
|
143
|
+
spec/ramaze/cache.rb:17
|
144
|
+
spec/ramaze/cache.rb:16
|
145
|
+
spec/ramaze/cache.rb:15:in `each'
|
146
|
+
spec/ramaze/cache.rb:15
|
147
|
+
|
148
|
+
NameError: uninitialized constant Ramaze::Global
|
149
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash setup - should do .new
|
150
|
+
spec/ramaze/cache.rb:23
|
151
|
+
spec/ramaze/cache.rb:22
|
152
|
+
spec/ramaze/cache.rb:16
|
153
|
+
spec/ramaze/cache.rb:15:in `each'
|
154
|
+
spec/ramaze/cache.rb:15
|
155
|
+
|
156
|
+
NameError: uninitialized constant Ramaze::Global
|
157
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash modification - should be assignable with #[]=
|
158
|
+
spec/ramaze/cache.rb:30
|
159
|
+
spec/ramaze/cache.rb:38
|
160
|
+
spec/ramaze/cache.rb:28
|
161
|
+
spec/ramaze/cache.rb:15:in `each'
|
162
|
+
spec/ramaze/cache.rb:15
|
163
|
+
|
164
|
+
NameError: uninitialized constant Ramaze::Global
|
165
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash modification - should be retrievable with #[]
|
166
|
+
spec/ramaze/cache.rb:30
|
167
|
+
spec/ramaze/cache.rb:43
|
168
|
+
spec/ramaze/cache.rb:28
|
169
|
+
spec/ramaze/cache.rb:15:in `each'
|
170
|
+
spec/ramaze/cache.rb:15
|
171
|
+
|
172
|
+
NameError: uninitialized constant Ramaze::Global
|
173
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash modification - should delete keys
|
174
|
+
spec/ramaze/cache.rb:30
|
175
|
+
spec/ramaze/cache.rb:48
|
176
|
+
spec/ramaze/cache.rb:28
|
177
|
+
spec/ramaze/cache.rb:15:in `each'
|
178
|
+
spec/ramaze/cache.rb:15
|
179
|
+
|
180
|
+
NameError: uninitialized constant Ramaze::Global
|
181
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Hash modification - should show values for multiple keys
|
182
|
+
spec/ramaze/cache.rb:30
|
183
|
+
spec/ramaze/cache.rb:54
|
184
|
+
spec/ramaze/cache.rb:28
|
185
|
+
spec/ramaze/cache.rb:15:in `each'
|
186
|
+
spec/ramaze/cache.rb:15
|
187
|
+
|
188
|
+
NameError: uninitialized constant Ramaze::Global
|
189
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache setup - should be assignable to Global
|
190
|
+
spec/ramaze/cache.rb:18
|
191
|
+
spec/ramaze/cache.rb:17
|
192
|
+
spec/ramaze/cache.rb:16
|
193
|
+
spec/ramaze/cache.rb:15:in `each'
|
194
|
+
spec/ramaze/cache.rb:15
|
195
|
+
|
196
|
+
NameError: uninitialized constant Ramaze::Global
|
197
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache setup - should do .new
|
198
|
+
spec/ramaze/cache.rb:23
|
199
|
+
spec/ramaze/cache.rb:22
|
200
|
+
spec/ramaze/cache.rb:16
|
201
|
+
spec/ramaze/cache.rb:15:in `each'
|
202
|
+
spec/ramaze/cache.rb:15
|
203
|
+
|
204
|
+
NameError: uninitialized constant Ramaze::Global
|
205
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache modification - should be assignable with #[]=
|
206
|
+
spec/ramaze/cache.rb:30
|
207
|
+
spec/ramaze/cache.rb:38
|
208
|
+
spec/ramaze/cache.rb:28
|
209
|
+
spec/ramaze/cache.rb:15:in `each'
|
210
|
+
spec/ramaze/cache.rb:15
|
211
|
+
|
212
|
+
NameError: uninitialized constant Ramaze::Global
|
213
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache modification - should be retrievable with #[]
|
214
|
+
spec/ramaze/cache.rb:30
|
215
|
+
spec/ramaze/cache.rb:43
|
216
|
+
spec/ramaze/cache.rb:28
|
217
|
+
spec/ramaze/cache.rb:15:in `each'
|
218
|
+
spec/ramaze/cache.rb:15
|
219
|
+
|
220
|
+
NameError: uninitialized constant Ramaze::Global
|
221
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache modification - should delete keys
|
222
|
+
spec/ramaze/cache.rb:30
|
223
|
+
spec/ramaze/cache.rb:48
|
224
|
+
spec/ramaze/cache.rb:28
|
225
|
+
spec/ramaze/cache.rb:15:in `each'
|
226
|
+
spec/ramaze/cache.rb:15
|
227
|
+
|
228
|
+
NameError: uninitialized constant Ramaze::Global
|
229
|
+
/misc/git/ramaze/lib/ramaze/snippets/ramaze/deprecated.rb:19:in `const_missing': Ramaze::YAMLStoreCache modification - should show values for multiple keys
|
230
|
+
spec/ramaze/cache.rb:30
|
231
|
+
spec/ramaze/cache.rb:54
|
232
|
+
spec/ramaze/cache.rb:28
|
233
|
+
spec/ramaze/cache.rb:15:in `each'
|
234
|
+
spec/ramaze/cache.rb:15
|
235
|
+
|
236
|
+
12 tests, 0 assertions, 0 failures, 12 errors
|
237
|
+
spec/ramaze/cache.rb:60: undefined method `file' for nil:NilClass (NoMethodError)
|
238
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
239
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
240
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
241
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
242
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
243
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
244
|
+
from spec/ramaze/cache.rb:28
|
245
|
+
from spec/ramaze/cache.rb:15:in `each'
|
246
|
+
from spec/ramaze/cache.rb:15
|
247
|
+
spec/ramaze/cache.rb:60: undefined method `file' for nil:NilClass (NoMethodError)
|
248
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
249
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
250
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
251
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
252
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
253
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
254
|
+
from spec/ramaze/cache.rb:28
|
255
|
+
from spec/ramaze/cache.rb:15:in `each'
|
256
|
+
from spec/ramaze/cache.rb:15
|
257
|
+
11/83: spec/ramaze/controller/subclass.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
258
|
+
|
259
|
+
|
260
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
261
|
+
spec/ramaze/controller/subclass.rb:7: undefined method `template' for BaseController:Class (NoMethodError)
|
262
|
+
spec/ramaze/controller/subclass.rb:7: undefined method `template' for BaseController:Class (NoMethodError)
|
263
|
+
12/83: spec/ramaze/controller/actionless_templates.rb[31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
264
|
+
|
265
|
+
|
266
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
267
|
+
spec/ramaze/controller/actionless_templates.rb:7: undefined method `template' for MainController:Class (NoMethodError)
|
268
|
+
spec/ramaze/controller/actionless_templates.rb:7: undefined method `template' for MainController:Class (NoMethodError)
|
269
|
+
13/83: spec/ramaze/controller/resolve.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
270
|
+
|
271
|
+
|
272
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
273
|
+
W, [2009-01-29T22:53:24.802482 #20030] WARN -- : Symbol#/ is deprecated, use File::join(sym.to_s) instead - from: "spec/ramaze/controller/resolve.rb:11"
|
274
|
+
W, [2009-01-29T22:53:24.802689 #20030] WARN -- : String#/ is deprecated, use File::join instead - from: "/misc/git/ramaze/lib/ramaze/snippets/divide.rb:20:in `/'"
|
275
|
+
W, [2009-01-29T22:53:24.802786 #20030] WARN -- : String#/ is deprecated, use File::join instead - from: "spec/ramaze/controller/resolve.rb:11"
|
276
|
+
W, [2009-01-29T22:53:24.802879 #20030] WARN -- : String#/ is deprecated, use File::join instead - from: "spec/ramaze/controller/resolve.rb:11"
|
277
|
+
W, [2009-01-29T22:53:24.802977 #20030] WARN -- : Symbol#/ is deprecated, use File::join(sym.to_s) instead - from: "spec/ramaze/controller/resolve.rb:13"
|
278
|
+
W, [2009-01-29T22:53:24.803079 #20030] WARN -- : String#/ is deprecated, use File::join instead - from: "/misc/git/ramaze/lib/ramaze/snippets/divide.rb:20:in `/'"
|
279
|
+
W, [2009-01-29T22:53:24.803174 #20030] WARN -- : String#/ is deprecated, use File::join instead - from: "spec/ramaze/controller/resolve.rb:13"
|
280
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
281
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
282
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
283
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
284
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
285
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
286
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
287
|
+
from spec/ramaze/controller/resolve.rb:17
|
288
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
289
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
290
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
291
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
292
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
293
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
294
|
+
from spec/ramaze/controller/resolve.rb:16
|
295
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
296
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
297
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
298
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
299
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
300
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
301
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
302
|
+
from spec/ramaze/controller/resolve.rb:17
|
303
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
304
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
305
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
306
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
307
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
308
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
309
|
+
from spec/ramaze/controller/resolve.rb:16
|
310
|
+
14/83: spec/ramaze/controller/template_resolving.rb[31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
311
|
+
|
312
|
+
|
313
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
314
|
+
spec/ramaze/controller/template_resolving.rb:18: undefined method `template' for MainController:Class (NoMethodError)
|
315
|
+
spec/ramaze/controller/template_resolving.rb:18: undefined method `template' for MainController:Class (NoMethodError)
|
316
|
+
15/83: spec/ramaze/current/request.rb [32m 3 passed[0m
|
317
|
+
16/83: spec/ramaze/current/session.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
318
|
+
|
319
|
+
|
320
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
321
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
322
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
323
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
324
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
325
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
326
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
327
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
328
|
+
from spec/ramaze/current/session.rb:27
|
329
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
330
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
331
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
332
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
333
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
334
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
335
|
+
from spec/ramaze/current/session.rb:26
|
336
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
337
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
338
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
339
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
340
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
341
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
342
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
343
|
+
from spec/ramaze/current/session.rb:27
|
344
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
345
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
346
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
347
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
348
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
349
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
350
|
+
from spec/ramaze/current/session.rb:26
|
351
|
+
17/83: spec/ramaze/dispatcher.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
352
|
+
|
353
|
+
|
354
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
355
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
356
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
357
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
358
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
359
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
360
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
361
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
362
|
+
from spec/ramaze/dispatcher.rb:15
|
363
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
364
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
365
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
366
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
367
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
368
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
369
|
+
from spec/ramaze/dispatcher.rb:14
|
370
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
371
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
372
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
373
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
374
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
375
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
376
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
377
|
+
from spec/ramaze/dispatcher.rb:15
|
378
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
379
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
380
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
381
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
382
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
383
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
384
|
+
from spec/ramaze/dispatcher.rb:14
|
385
|
+
18/83: spec/ramaze/dispatcher/file.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
386
|
+
|
387
|
+
|
388
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
389
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
390
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
391
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
392
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
393
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
394
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
395
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
396
|
+
from spec/ramaze/dispatcher/file.rb:4
|
397
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
398
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
399
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
400
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
401
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
402
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
403
|
+
from spec/ramaze/dispatcher/file.rb:3
|
404
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
405
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
406
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
407
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
408
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
409
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
410
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
411
|
+
from spec/ramaze/dispatcher/file.rb:4
|
412
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
413
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
414
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
415
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
416
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
417
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
418
|
+
from spec/ramaze/dispatcher/file.rb:3
|
419
|
+
19/83: spec/ramaze/dispatcher/directory.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
420
|
+
|
421
|
+
|
422
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
423
|
+
spec/ramaze/dispatcher/directory.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
424
|
+
spec/ramaze/dispatcher/directory.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
425
|
+
20/83: spec/ramaze/element.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
426
|
+
|
427
|
+
|
428
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
429
|
+
spec/ramaze/element.rb:40: uninitialized constant Ezamar (NameError)
|
430
|
+
spec/ramaze/element.rb:40: uninitialized constant Ezamar (NameError)
|
431
|
+
21/83: spec/ramaze/error.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
432
|
+
|
433
|
+
|
434
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
435
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
436
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
437
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
438
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
439
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
440
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
441
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
442
|
+
from spec/ramaze/error.rb:32
|
443
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
444
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
445
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
446
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
447
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
448
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
449
|
+
from spec/ramaze/error.rb:31
|
450
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
451
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
452
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
453
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
454
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
455
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
456
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
457
|
+
from spec/ramaze/error.rb:32
|
458
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
459
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
460
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
461
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
462
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
463
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
464
|
+
from spec/ramaze/error.rb:31
|
465
|
+
22/83: spec/ramaze/helper/auth.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
466
|
+
|
467
|
+
|
468
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
469
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "browser" (NameError)
|
470
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
471
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
472
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
473
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
474
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
475
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
476
|
+
from spec/ramaze/helper/auth.rb:48
|
477
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
478
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
479
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
480
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
481
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
482
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
483
|
+
from spec/ramaze/helper/auth.rb:47
|
484
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "browser" (NameError)
|
485
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
486
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
487
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
488
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
489
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
490
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
491
|
+
from spec/ramaze/helper/auth.rb:48
|
492
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
493
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
494
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
495
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
496
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
497
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
498
|
+
from spec/ramaze/helper/auth.rb:47
|
499
|
+
23/83: spec/ramaze/helper/cache.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
500
|
+
|
501
|
+
|
502
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
503
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
504
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
505
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
506
|
+
from spec/ramaze/helper/cache.rb:10
|
507
|
+
/misc/git/ramaze/lib/ramaze/helper/cache.rb:51:in `cache': undefined method `[]=' for nil:NilClass (NoMethodError)
|
508
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `each'
|
509
|
+
from /misc/git/ramaze/lib/ramaze/helper/cache.rb:50:in `cache'
|
510
|
+
from spec/ramaze/helper/cache.rb:10
|
511
|
+
24/83: spec/ramaze/helper/form.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
512
|
+
|
513
|
+
|
514
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
515
|
+
spec/ramaze/helper/form.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
516
|
+
spec/ramaze/helper/form.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
517
|
+
25/83: spec/ramaze/helper/flash.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
518
|
+
|
519
|
+
|
520
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
521
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "browser" (NameError)
|
522
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
523
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
524
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
525
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
526
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
527
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
528
|
+
from spec/ramaze/helper/flash.rb:76
|
529
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
530
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
531
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
532
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
533
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
534
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
535
|
+
from spec/ramaze/helper/flash.rb:75
|
536
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "browser" (NameError)
|
537
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
538
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
539
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
540
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
541
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
542
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
543
|
+
from spec/ramaze/helper/flash.rb:76
|
544
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
545
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
546
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
547
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
548
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
549
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
550
|
+
from spec/ramaze/helper/flash.rb:75
|
551
|
+
26/83: spec/ramaze/helper/link.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
552
|
+
|
553
|
+
|
554
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
555
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "resolve" (NameError)
|
556
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
557
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
558
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
559
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
560
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
561
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
562
|
+
from spec/ramaze/helper/link.rb:19
|
563
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
564
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
565
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
566
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
567
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
568
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
569
|
+
from spec/ramaze/helper/link.rb:17
|
570
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "resolve" (NameError)
|
571
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
572
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
573
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
574
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
575
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
576
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
577
|
+
from spec/ramaze/helper/link.rb:19
|
578
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
579
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
580
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
581
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
582
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
583
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
584
|
+
from spec/ramaze/helper/link.rb:17
|
585
|
+
27/83: spec/ramaze/helper/pager.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
586
|
+
|
587
|
+
|
588
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
589
|
+
spec/ramaze/helper/pager.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
590
|
+
spec/ramaze/helper/pager.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
591
|
+
28/83: spec/ramaze/helper/formatting.rb [32m 6 passed[0m
|
592
|
+
29/83: spec/ramaze/helper/simple_captcha.rb [31m 2 tests, 0 assertions, 0 failures, 2 errors[0m
|
593
|
+
EE
|
594
|
+
NoMethodError: private method `eval' called for #<Binding:0xb7727da8>
|
595
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::SimpleCaptcha - should ask question
|
596
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
597
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
598
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
599
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
600
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
601
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
602
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
603
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
604
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
605
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
606
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
607
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
608
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
609
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
610
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
611
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
612
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
613
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
614
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
615
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
616
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
617
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
618
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
619
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
620
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
621
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
622
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
623
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
624
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
625
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
626
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
627
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
628
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
629
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
630
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
631
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
632
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
633
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
634
|
+
spec/ramaze/helper/simple_captcha.rb:29
|
635
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
636
|
+
spec/ramaze/helper/simple_captcha.rb:28
|
637
|
+
spec/ramaze/helper/simple_captcha.rb:27
|
638
|
+
spec/ramaze/helper/simple_captcha.rb:26
|
639
|
+
|
640
|
+
NoMethodError: private method `eval' called for #<Binding:0xb7722ca4>
|
641
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::SimpleCaptcha - should ask custom question
|
642
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
643
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
644
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
645
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
646
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
647
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
648
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
649
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
650
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
651
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
652
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
653
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
654
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
655
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
656
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
657
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
658
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
659
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
660
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
661
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
662
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
663
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
664
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
665
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
666
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
667
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
668
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
669
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
670
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
671
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
672
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
673
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
674
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
675
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
676
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
677
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
678
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
679
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
680
|
+
spec/ramaze/helper/simple_captcha.rb:41
|
681
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
682
|
+
spec/ramaze/helper/simple_captcha.rb:40
|
683
|
+
spec/ramaze/helper/simple_captcha.rb:39
|
684
|
+
spec/ramaze/helper/simple_captcha.rb:26
|
685
|
+
|
686
|
+
2 tests, 0 assertions, 0 failures, 2 errors
|
687
|
+
D, [2009-01-29T22:53:33.471599 #20069] DEBUG -- : Mapped Nodes: {"/"=>SpecSimpleCaptcha, "/fish"=>SpecCustomCaptcha}
|
688
|
+
30/83: spec/ramaze/helper/stack.rb [31m 3 tests, 8 assertions, 0 failures, 3 errors[0m
|
689
|
+
EEE
|
690
|
+
NoMethodError: private method `eval' called for #<Binding:0xb76e4008>
|
691
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::Stack - should login directly
|
692
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
693
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
694
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
695
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
696
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
697
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
698
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
699
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
700
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
701
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
702
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
703
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
704
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
705
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
706
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
707
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
708
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
709
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
710
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
711
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
712
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
713
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
714
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
715
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
716
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
717
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
718
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
719
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
720
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
721
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
722
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
723
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
724
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
725
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
726
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
727
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
728
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
729
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
730
|
+
spec/ramaze/helper/stack.rb:49
|
731
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
732
|
+
/misc/git/innate/lib/innate/spec.rb:34:in `session'
|
733
|
+
spec/ramaze/helper/stack.rb:48
|
734
|
+
spec/ramaze/helper/stack.rb:47
|
735
|
+
spec/ramaze/helper/stack.rb:43
|
736
|
+
|
737
|
+
NoMethodError: private method `eval' called for #<Binding:0xb76d5b84>
|
738
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::Stack - should login via redirects
|
739
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
740
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
741
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
742
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
743
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
744
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
745
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
746
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
747
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
748
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
749
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
750
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
751
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
752
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
753
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
754
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
755
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
756
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
757
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
758
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
759
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
760
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
761
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
762
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
763
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
764
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
765
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
766
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
767
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
768
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
769
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
770
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
771
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
772
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
773
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
774
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
775
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
776
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
777
|
+
spec/ramaze/helper/stack.rb:75
|
778
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
779
|
+
/misc/git/innate/lib/innate/spec.rb:34:in `session'
|
780
|
+
spec/ramaze/helper/stack.rb:66
|
781
|
+
spec/ramaze/helper/stack.rb:65
|
782
|
+
spec/ramaze/helper/stack.rb:43
|
783
|
+
|
784
|
+
NoMethodError: private method `eval' called for #<Binding:0xb76c7214>
|
785
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::Stack - should login with params via redirects
|
786
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
787
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
788
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
789
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
790
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
791
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
792
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
793
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
794
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
795
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
796
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
797
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
798
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
799
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
800
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
801
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
802
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
803
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
804
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
805
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
806
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
807
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
808
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
809
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
810
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
811
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
812
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
813
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
814
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
815
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
816
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
817
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
818
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
819
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
820
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
821
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
822
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
823
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
824
|
+
spec/ramaze/helper/stack.rb:91
|
825
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
826
|
+
/misc/git/innate/lib/innate/spec.rb:34:in `session'
|
827
|
+
spec/ramaze/helper/stack.rb:82
|
828
|
+
spec/ramaze/helper/stack.rb:81
|
829
|
+
spec/ramaze/helper/stack.rb:43
|
830
|
+
|
831
|
+
3 tests, 8 assertions, 0 failures, 3 errors
|
832
|
+
D, [2009-01-29T22:53:34.049821 #20071] DEBUG -- : Mapped Nodes: {"/"=>SpecStackHelper}
|
833
|
+
D, [2009-01-29T22:53:34.050267 #20071] DEBUG -- : Mapped Nodes: {"/"=>SpecStackHelper}
|
834
|
+
D, [2009-01-29T22:53:34.066710 #20071] DEBUG -- : Redirect to: http://example.org/login
|
835
|
+
D, [2009-01-29T22:53:34.070738 #20071] DEBUG -- : Redirect to: http://example.org/logged_in_page
|
836
|
+
D, [2009-01-29T22:53:34.078097 #20071] DEBUG -- : Redirect to: http://example.org/login
|
837
|
+
D, [2009-01-29T22:53:34.083612 #20071] DEBUG -- : Redirect to: http://example.org/logged_in_params?x=y
|
838
|
+
31/83: spec/ramaze/helper/user.rb [31m 1 tests, 0 assertions, 0 failures, 1 errors[0m
|
839
|
+
E
|
840
|
+
NoMethodError: private method `eval' called for #<Binding:0xb79180cc>
|
841
|
+
/misc/git/innate/lib/innate/action.rb:36:in `copy_variables': Ramaze::Helper::User - should login
|
842
|
+
/misc/git/innate/lib/innate/view/erb.rb:9:in `render'
|
843
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
844
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
845
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
846
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
847
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
848
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
849
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
850
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
851
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
852
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
853
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
854
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
855
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
856
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
857
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
858
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
859
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
860
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
861
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
862
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
863
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
864
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
865
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
866
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
867
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
868
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
869
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
870
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
871
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
872
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
873
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
874
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
875
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
876
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
877
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
878
|
+
/misc/git/innate/lib/innate/mock.rb:39:in `extract_cookie'
|
879
|
+
/misc/git/innate/lib/innate/mock.rb:33:in `get'
|
880
|
+
spec/ramaze/helper/user.rb:36
|
881
|
+
/misc/git/innate/lib/innate/mock.rb:21:in `session'
|
882
|
+
/misc/git/innate/lib/innate/spec.rb:34:in `session'
|
883
|
+
spec/ramaze/helper/user.rb:35
|
884
|
+
spec/ramaze/helper/user.rb:34
|
885
|
+
spec/ramaze/helper/user.rb:31
|
886
|
+
|
887
|
+
1 tests, 0 assertions, 0 failures, 1 errors
|
888
|
+
D, [2009-01-29T22:53:34.632083 #20073] DEBUG -- : Mapped Nodes: {"/"=>SpecUserHelper}
|
889
|
+
32/83: spec/ramaze/helper/xhtml.rb [32m 4 passed[0m
|
890
|
+
33/83: spec/ramaze/log/informer.rb [31m 8 tests, 0 assertions, 0 failures, 8 errors[0m
|
891
|
+
EEEEEEEE
|
892
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
893
|
+
spec/ramaze/log/informer.rb:7: Informer - info
|
894
|
+
spec/ramaze/log/informer.rb:15
|
895
|
+
spec/ramaze/log/informer.rb:3
|
896
|
+
|
897
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
898
|
+
spec/ramaze/log/informer.rb:7: Informer - debug
|
899
|
+
spec/ramaze/log/informer.rb:20
|
900
|
+
spec/ramaze/log/informer.rb:3
|
901
|
+
|
902
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
903
|
+
spec/ramaze/log/informer.rb:7: Informer - warn
|
904
|
+
spec/ramaze/log/informer.rb:26
|
905
|
+
spec/ramaze/log/informer.rb:3
|
906
|
+
|
907
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
908
|
+
spec/ramaze/log/informer.rb:7: Informer - error
|
909
|
+
spec/ramaze/log/informer.rb:31
|
910
|
+
spec/ramaze/log/informer.rb:3
|
911
|
+
|
912
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
913
|
+
spec/ramaze/log/informer.rb:7: Informer - should choose stdout on init(stdout,:stdout,STDOUT)
|
914
|
+
spec/ramaze/log/informer.rb:41
|
915
|
+
spec/ramaze/log/informer.rb:3
|
916
|
+
|
917
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
918
|
+
spec/ramaze/log/informer.rb:7: Informer - should choose stderr on init(stderr,:stderr,STDERR)
|
919
|
+
spec/ramaze/log/informer.rb:48
|
920
|
+
spec/ramaze/log/informer.rb:3
|
921
|
+
|
922
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
923
|
+
spec/ramaze/log/informer.rb:7: Informer - should use IO when supplied
|
924
|
+
spec/ramaze/log/informer.rb:55
|
925
|
+
spec/ramaze/log/informer.rb:3
|
926
|
+
|
927
|
+
NameError: uninitialized constant Ramaze::Logger::Informer
|
928
|
+
spec/ramaze/log/informer.rb:7: Informer - should open file otherwise
|
929
|
+
spec/ramaze/log/informer.rb:60
|
930
|
+
spec/ramaze/log/informer.rb:3
|
931
|
+
|
932
|
+
8 tests, 0 assertions, 0 failures, 8 errors
|
933
|
+
|
934
|
+
34/83: spec/ramaze/log/logging.rb [31m 7 tests, 8 assertions, 0 failures, 1 errors[0m
|
935
|
+
....E..
|
936
|
+
NameError: uninitialized constant Ramaze::Logging::Global
|
937
|
+
/misc/git/ramaze/lib/ramaze/log/logging.rb:62:in `error': Ramaze::Logging - should provide #error - which formats exceptions
|
938
|
+
spec/ramaze/log/logging.rb:49
|
939
|
+
spec/ramaze/log/logging.rb:43
|
940
|
+
spec/ramaze/log/logging.rb:17
|
941
|
+
|
942
|
+
7 tests, 8 assertions, 0 failures, 1 errors
|
943
|
+
|
944
|
+
35/83: spec/ramaze/log/syslog.rb [32m 7 passed[0m
|
945
|
+
36/83: spec/ramaze/morpher.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
946
|
+
|
947
|
+
|
948
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
949
|
+
spec/ramaze/morpher.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
950
|
+
spec/ramaze/morpher.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
951
|
+
37/83: spec/ramaze/params.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
952
|
+
|
953
|
+
|
954
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
955
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
956
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
957
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
958
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
959
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
960
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
961
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
962
|
+
from spec/ramaze/params.rb:67
|
963
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
964
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
965
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
966
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
967
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
968
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
969
|
+
from spec/ramaze/params.rb:66
|
970
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
971
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
972
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
973
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
974
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
975
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
976
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
977
|
+
from spec/ramaze/params.rb:67
|
978
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
979
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
980
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
981
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
982
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
983
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
984
|
+
from spec/ramaze/params.rb:66
|
985
|
+
38/83: spec/ramaze/request/ebb.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
986
|
+
|
987
|
+
|
988
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
989
|
+
spec/ramaze/request/ebb.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
990
|
+
spec/ramaze/request/ebb.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
991
|
+
39/83: spec/ramaze/request/mongrel.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
992
|
+
|
993
|
+
|
994
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
995
|
+
spec/ramaze/request/mongrel.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
996
|
+
spec/ramaze/request/mongrel.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
997
|
+
40/83: spec/ramaze/request/thin.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
998
|
+
|
999
|
+
|
1000
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1001
|
+
spec/ramaze/request/thin.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1002
|
+
spec/ramaze/request/thin.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1003
|
+
41/83: spec/ramaze/request/webrick.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1004
|
+
|
1005
|
+
|
1006
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1007
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1008
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1009
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1010
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1011
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1012
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1013
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1014
|
+
from ./spec/ramaze/request.rb:60
|
1015
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1016
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1017
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1018
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1019
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1020
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1021
|
+
from ./spec/ramaze/request.rb:59
|
1022
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1023
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1024
|
+
from spec/ramaze/request/webrick.rb:5
|
1025
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1026
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1027
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1028
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1029
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1030
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1031
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1032
|
+
from ./spec/ramaze/request.rb:60
|
1033
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1034
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1035
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1036
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1037
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1038
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1039
|
+
from ./spec/ramaze/request.rb:59
|
1040
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1041
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1042
|
+
from spec/ramaze/request/webrick.rb:5
|
1043
|
+
42/83: spec/ramaze/session.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1044
|
+
|
1045
|
+
|
1046
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1047
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1048
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1049
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1050
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1051
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1052
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1053
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1054
|
+
from spec/ramaze/session.rb:33
|
1055
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1056
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1057
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1058
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1059
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1060
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1061
|
+
from spec/ramaze/session.rb:32
|
1062
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1063
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1064
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1065
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1066
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1067
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1068
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1069
|
+
from spec/ramaze/session.rb:33
|
1070
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1071
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1072
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1073
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1074
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1075
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1076
|
+
from spec/ramaze/session.rb:32
|
1077
|
+
43/83: spec/ramaze/store/default.rb [31m 6 tests, 1 assertions, 0 failures, 5 errors[0m
|
1078
|
+
.EEEEE
|
1079
|
+
NoMethodError: undefined method `merge!' for #<YAML::Store:0xb7981ea0>
|
1080
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `send': Store::Default - should store and retrieve key/value
|
1081
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `method_missing'
|
1082
|
+
/usr/lib/ruby/1.8/pstore.rb:322:in `transaction'
|
1083
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `catch'
|
1084
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `transaction'
|
1085
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:24:in `method_missing'
|
1086
|
+
spec/ramaze/store/default.rb:15:in `add'
|
1087
|
+
spec/ramaze/store/default.rb:24
|
1088
|
+
spec/ramaze/store/default.rb:23
|
1089
|
+
spec/ramaze/store/default.rb:7
|
1090
|
+
|
1091
|
+
NoMethodError: undefined method `merge!' for #<YAML::Store:0xb7981ea0>
|
1092
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `send': Store::Default - be empty after #clear
|
1093
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `method_missing'
|
1094
|
+
/usr/lib/ruby/1.8/pstore.rb:322:in `transaction'
|
1095
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `catch'
|
1096
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `transaction'
|
1097
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:24:in `method_missing'
|
1098
|
+
spec/ramaze/store/default.rb:15:in `add'
|
1099
|
+
spec/ramaze/store/default.rb:29
|
1100
|
+
spec/ramaze/store/default.rb:28
|
1101
|
+
spec/ramaze/store/default.rb:7
|
1102
|
+
|
1103
|
+
NoMethodError: undefined method `size' for #<YAML::Store:0xb7981ea0>
|
1104
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `send': Store::Default - should have right size
|
1105
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `method_missing'
|
1106
|
+
/usr/lib/ruby/1.8/pstore.rb:322:in `transaction'
|
1107
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `catch'
|
1108
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `transaction'
|
1109
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:24:in `method_missing'
|
1110
|
+
spec/ramaze/store/default.rb:37
|
1111
|
+
spec/ramaze/store/default.rb:36
|
1112
|
+
spec/ramaze/store/default.rb:7
|
1113
|
+
|
1114
|
+
NoMethodError: undefined method `merge!' for #<YAML::Store:0xb7981ea0>
|
1115
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `send': Store::Default - should be Enumerable
|
1116
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `method_missing'
|
1117
|
+
/usr/lib/ruby/1.8/pstore.rb:322:in `transaction'
|
1118
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `catch'
|
1119
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `transaction'
|
1120
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:24:in `method_missing'
|
1121
|
+
spec/ramaze/store/default.rb:15:in `add'
|
1122
|
+
spec/ramaze/store/default.rb:49
|
1123
|
+
spec/ramaze/store/default.rb:48
|
1124
|
+
spec/ramaze/store/default.rb:7
|
1125
|
+
|
1126
|
+
NoMethodError: undefined method `merge!' for #<YAML::Store:0xb7981ea0>
|
1127
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `send': Store::Default - should merge and merge!
|
1128
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:25:in `method_missing'
|
1129
|
+
/usr/lib/ruby/1.8/pstore.rb:322:in `transaction'
|
1130
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `catch'
|
1131
|
+
/usr/lib/ruby/1.8/pstore.rb:321:in `transaction'
|
1132
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/store/default.rb:24:in `method_missing'
|
1133
|
+
spec/ramaze/store/default.rb:15:in `add'
|
1134
|
+
spec/ramaze/store/default.rb:59
|
1135
|
+
spec/ramaze/store/default.rb:57
|
1136
|
+
spec/ramaze/store/default.rb:7
|
1137
|
+
|
1138
|
+
6 tests, 1 assertions, 0 failures, 5 errors
|
1139
|
+
|
1140
|
+
44/83: spec/ramaze/template/liquid.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1141
|
+
|
1142
|
+
|
1143
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1144
|
+
spec/ramaze/template/liquid.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1145
|
+
spec/ramaze/template/liquid.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1146
|
+
45/83: spec/ramaze/template/xslt.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1147
|
+
|
1148
|
+
|
1149
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1150
|
+
spec/ramaze/template/xslt.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1151
|
+
spec/ramaze/template/xslt.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1152
|
+
46/83: spec/ramaze/template/builder.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1153
|
+
|
1154
|
+
|
1155
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1156
|
+
spec/ramaze/template/builder.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1157
|
+
spec/ramaze/template/builder.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1158
|
+
47/83: spec/ramaze/template/markaby.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1159
|
+
|
1160
|
+
|
1161
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1162
|
+
spec/ramaze/template/markaby.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1163
|
+
spec/ramaze/template/markaby.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1164
|
+
48/83: spec/ramaze/template/amrita2.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1165
|
+
|
1166
|
+
|
1167
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1168
|
+
spec/ramaze/template/amrita2.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1169
|
+
spec/ramaze/template/amrita2.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1170
|
+
49/83: spec/ramaze/template/erubis.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1171
|
+
|
1172
|
+
|
1173
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1174
|
+
spec/ramaze/template/erubis.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1175
|
+
spec/ramaze/template/erubis.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1176
|
+
50/83: spec/ramaze/template/ezamar.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1177
|
+
|
1178
|
+
|
1179
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1180
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1181
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1182
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1183
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1184
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1185
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1186
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1187
|
+
from spec/ramaze/template/ezamar.rb:35
|
1188
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1189
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1190
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1191
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1192
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1193
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1194
|
+
from spec/ramaze/template/ezamar.rb:34
|
1195
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1196
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1197
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1198
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1199
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1200
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1201
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1202
|
+
from spec/ramaze/template/ezamar.rb:35
|
1203
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1204
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1205
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1206
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1207
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1208
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1209
|
+
from spec/ramaze/template/ezamar.rb:34
|
1210
|
+
51/83: spec/ramaze/template/nagoro.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1211
|
+
|
1212
|
+
|
1213
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1214
|
+
spec/ramaze/template/nagoro.rb:5: undefined method `spec_require' for main:Object (NoMethodError)
|
1215
|
+
spec/ramaze/template/nagoro.rb:5: undefined method `spec_require' for main:Object (NoMethodError)
|
1216
|
+
52/83: spec/ramaze/template/redcloth.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1217
|
+
|
1218
|
+
|
1219
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1220
|
+
spec/ramaze/template/redcloth.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1221
|
+
spec/ramaze/template/redcloth.rb:3: undefined method `spec_require' for main:Object (NoMethodError)
|
1222
|
+
53/83: spec/ramaze/controller.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1223
|
+
|
1224
|
+
|
1225
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1226
|
+
spec/ramaze/controller.rb:43: undefined method `ramaze' for #<Bacon::Context:0xb76d9c98> (NoMethodError)
|
1227
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1228
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1229
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1230
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1231
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1232
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1233
|
+
from spec/ramaze/controller.rb:30
|
1234
|
+
spec/ramaze/controller.rb:43: undefined method `ramaze' for #<Bacon::Context:0xb76d9c98> (NoMethodError)
|
1235
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1236
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1237
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1238
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1239
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1240
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1241
|
+
from spec/ramaze/controller.rb:30
|
1242
|
+
54/83: spec/ramaze/request.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1243
|
+
|
1244
|
+
|
1245
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1246
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1247
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1248
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1249
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1250
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1251
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1252
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1253
|
+
from spec/ramaze/request.rb:60
|
1254
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1255
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1256
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1257
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1258
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1259
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1260
|
+
from spec/ramaze/request.rb:59
|
1261
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1262
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1263
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1264
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1265
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1266
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1267
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1268
|
+
from spec/ramaze/request.rb:60
|
1269
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1270
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1271
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1272
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1273
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1274
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1275
|
+
from spec/ramaze/request.rb:59
|
1276
|
+
55/83: spec/ramaze/adapter.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1277
|
+
|
1278
|
+
|
1279
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1280
|
+
spec/ramaze/adapter.rb:15: uninitialized constant Ramaze::Logger::Informer (NameError)
|
1281
|
+
spec/ramaze/adapter.rb:15: uninitialized constant Ramaze::Logger::Informer (NameError)
|
1282
|
+
56/83: spec/ramaze/route.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1283
|
+
|
1284
|
+
|
1285
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1286
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1287
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1288
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1289
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1290
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1291
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1292
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1293
|
+
from spec/ramaze/route.rb:26
|
1294
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1295
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1296
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1297
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1298
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1299
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1300
|
+
from spec/ramaze/route.rb:25
|
1301
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1302
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1303
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1304
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1305
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1306
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1307
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1308
|
+
from spec/ramaze/route.rb:26
|
1309
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1310
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1311
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1312
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1313
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1314
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1315
|
+
from spec/ramaze/route.rb:25
|
1316
|
+
57/83: spec/ramaze/struct.rb [32m 9 passed[0m
|
1317
|
+
58/83: spec/ramaze/localize.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1318
|
+
|
1319
|
+
|
1320
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1321
|
+
spec/ramaze/localize.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1322
|
+
spec/ramaze/localize.rb:6: undefined method `spec_require' for main:Object (NoMethodError)
|
1323
|
+
59/83: spec/ramaze/rewrite.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1324
|
+
|
1325
|
+
|
1326
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1327
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1328
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1329
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1330
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1331
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1332
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1333
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1334
|
+
from spec/ramaze/rewrite.rb:14
|
1335
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1336
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1337
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1338
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1339
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1340
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1341
|
+
from spec/ramaze/rewrite.rb:13
|
1342
|
+
/home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:16: no such context: "http" (NameError)
|
1343
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `call'
|
1344
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `default'
|
1345
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `[]'
|
1346
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1347
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `each'
|
1348
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:120:in `behaves_like'
|
1349
|
+
from spec/ramaze/rewrite.rb:14
|
1350
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `instance_eval'
|
1351
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1352
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:56:in `handle_specification'
|
1353
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:113:in `initialize'
|
1354
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `new'
|
1355
|
+
from /home/pistos/.gems/gems/bacon-1.0.0/lib/bacon.rb:250:in `describe'
|
1356
|
+
from spec/ramaze/rewrite.rb:13
|
1357
|
+
60/83: spec/ramaze/template.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1358
|
+
|
1359
|
+
|
1360
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1361
|
+
W, [2009-01-29T22:53:50.437399 #20143] WARN -- : Ramaze::BASEDIR is deprecated, use ROOT instead
|
1362
|
+
W, [2009-01-29T22:53:50.437685 #20143] WARN -- : String#/ is deprecated, use File::join instead - from: "/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/template.rb:14"
|
1363
|
+
W, [2009-01-29T22:53:50.437791 #20143] WARN -- : String#/ is deprecated, use File::join instead - from: "/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/template.rb:14"
|
1364
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/template.rb:16: undefined method `helper' for Ramaze::Template::Template:Class (NoMethodError)
|
1365
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
|
1366
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
|
1367
|
+
from spec/ramaze/template.rb:5
|
1368
|
+
/usr/lib/ruby/gems/1.8/gems/ramaze-0.0.5/lib/ramaze/template.rb:16: undefined method `helper' for Ramaze::Template::Template:Class (NoMethodError)
|
1369
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
|
1370
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
|
1371
|
+
from spec/ramaze/template.rb:5
|
1372
|
+
61/83: spec/ramaze/gestalt.rb [32m 13 passed[0m
|
1373
|
+
62/83: spec/ramaze/view/haml.rb [32m 4 passed[0m
|
1374
|
+
63/83: spec/ramaze/view/remarkably.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1375
|
+
|
1376
|
+
|
1377
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1378
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- remarkably (LoadError)
|
1379
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1380
|
+
from /misc/git/ramaze/lib/ramaze/helper/remarkably.rb:1
|
1381
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1382
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1383
|
+
from /misc/git/innate/lib/innate/helper.rb:178:in `try_require'
|
1384
|
+
from /misc/git/innate/lib/innate/helper.rb:116:in `each'
|
1385
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `map'
|
1386
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `each'
|
1387
|
+
from /misc/git/innate/lib/innate/helper.rb:151:in `each_include'
|
1388
|
+
from /misc/git/innate/lib/innate/helper.rb:36:in `helper'
|
1389
|
+
from spec/ramaze/view/remarkably.rb:12
|
1390
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- remarkably (LoadError)
|
1391
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1392
|
+
from /misc/git/ramaze/lib/ramaze/helper/remarkably.rb:1
|
1393
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1394
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1395
|
+
from /misc/git/innate/lib/innate/helper.rb:178:in `try_require'
|
1396
|
+
from /misc/git/innate/lib/innate/helper.rb:116:in `each'
|
1397
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `map'
|
1398
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `each'
|
1399
|
+
from /misc/git/innate/lib/innate/helper.rb:151:in `each_include'
|
1400
|
+
from /misc/git/innate/lib/innate/helper.rb:36:in `helper'
|
1401
|
+
from spec/ramaze/view/remarkably.rb:12
|
1402
|
+
64/83: spec/ramaze/view/sass.rb [32m 3 passed[0m
|
1403
|
+
65/83: spec/ramaze/view/tagz.rb [31m 0 tests, 0 assertions, 0 failures, 0 errors[0m
|
1404
|
+
|
1405
|
+
|
1406
|
+
0 tests, 0 assertions, 0 failures, 0 errors
|
1407
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- tagz (LoadError)
|
1408
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1409
|
+
from /misc/git/ramaze/lib/ramaze/helper/tagz.rb:4
|
1410
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1411
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1412
|
+
from /misc/git/innate/lib/innate/helper.rb:178:in `try_require'
|
1413
|
+
from /misc/git/innate/lib/innate/helper.rb:116:in `each'
|
1414
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `map'
|
1415
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `each'
|
1416
|
+
from /misc/git/innate/lib/innate/helper.rb:151:in `each_include'
|
1417
|
+
from /misc/git/innate/lib/innate/helper.rb:36:in `helper'
|
1418
|
+
from spec/ramaze/view/tagz.rb:12
|
1419
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- tagz (LoadError)
|
1420
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1421
|
+
from /misc/git/ramaze/lib/ramaze/helper/tagz.rb:4
|
1422
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
|
1423
|
+
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1424
|
+
from /misc/git/innate/lib/innate/helper.rb:178:in `try_require'
|
1425
|
+
from /misc/git/innate/lib/innate/helper.rb:116:in `each'
|
1426
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `map'
|
1427
|
+
from /misc/git/innate/lib/innate/helper.rb:109:in `each'
|
1428
|
+
from /misc/git/innate/lib/innate/helper.rb:151:in `each_include'
|
1429
|
+
from /misc/git/innate/lib/innate/helper.rb:36:in `helper'
|
1430
|
+
from spec/ramaze/view/tagz.rb:12
|
1431
|
+
66/83: spec/ramaze/view/tenjin.rb [31m 3 tests, 0 assertions, 0 failures, 3 errors[0m
|
1432
|
+
EEE
|
1433
|
+
LoadError: no such file to load -- tenjin
|
1434
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': Innate::View::Haml - should render
|
1435
|
+
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
|
1436
|
+
/misc/git/ramaze/lib/ramaze/view/tenjin.rb:1
|
1437
|
+
/misc/git/innate/lib/innate/view.rb:34:in `const_get'
|
1438
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1439
|
+
/misc/git/innate/lib/innate/view.rb:34:in `each'
|
1440
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1441
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `synchronize'
|
1442
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `sync'
|
1443
|
+
/misc/git/innate/lib/innate/view.rb:32:in `obtain'
|
1444
|
+
/misc/git/innate/lib/innate/view.rb:20:in `get'
|
1445
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
1446
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1447
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
1448
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1449
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
1450
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
1451
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
1452
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1453
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1454
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1455
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1456
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1457
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
1458
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
1459
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
1460
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
1461
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
1462
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
1463
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
1464
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1465
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1466
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1467
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
1468
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1469
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
1470
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
1471
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1472
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
1473
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1474
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1475
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1476
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
1477
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
1478
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
1479
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
1480
|
+
/misc/git/innate/lib/innate/mock.rb:8:in `get'
|
1481
|
+
/misc/git/innate/lib/innate/spec.rb:40:in `get'
|
1482
|
+
spec/ramaze/view/tenjin.rb:31
|
1483
|
+
spec/ramaze/view/tenjin.rb:30
|
1484
|
+
spec/ramaze/view/tenjin.rb:27
|
1485
|
+
|
1486
|
+
NameError: uninitialized constant Ramaze::View::Tenjin
|
1487
|
+
/misc/git/innate/lib/innate/view.rb:34:in `const_get': Innate::View::Haml - should use other helper methods
|
1488
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1489
|
+
/misc/git/innate/lib/innate/view.rb:34:in `each'
|
1490
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1491
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `synchronize'
|
1492
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `sync'
|
1493
|
+
/misc/git/innate/lib/innate/view.rb:32:in `obtain'
|
1494
|
+
/misc/git/innate/lib/innate/view.rb:20:in `get'
|
1495
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
1496
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1497
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
1498
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1499
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
1500
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
1501
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
1502
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1503
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1504
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1505
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1506
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1507
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
1508
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
1509
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
1510
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
1511
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
1512
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
1513
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
1514
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1515
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1516
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1517
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
1518
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1519
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
1520
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
1521
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1522
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
1523
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1524
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1525
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1526
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
1527
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
1528
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
1529
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
1530
|
+
/misc/git/innate/lib/innate/mock.rb:8:in `get'
|
1531
|
+
/misc/git/innate/lib/innate/spec.rb:40:in `get'
|
1532
|
+
spec/ramaze/view/tenjin.rb:35
|
1533
|
+
spec/ramaze/view/tenjin.rb:34
|
1534
|
+
spec/ramaze/view/tenjin.rb:27
|
1535
|
+
|
1536
|
+
NameError: uninitialized constant Ramaze::View::Tenjin
|
1537
|
+
/misc/git/innate/lib/innate/view.rb:34:in `const_get': Innate::View::Haml - should render external template
|
1538
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1539
|
+
/misc/git/innate/lib/innate/view.rb:34:in `each'
|
1540
|
+
/misc/git/innate/lib/innate/view.rb:34:in `obtain'
|
1541
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `synchronize'
|
1542
|
+
/misc/git/innate/lib/innate/state/thread.rb:35:in `sync'
|
1543
|
+
/misc/git/innate/lib/innate/view.rb:32:in `obtain'
|
1544
|
+
/misc/git/innate/lib/innate/view.rb:20:in `get'
|
1545
|
+
/misc/git/innate/lib/innate/action.rb:78:in `fulfill_wish'
|
1546
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1547
|
+
/misc/git/innate/lib/innate/action.rb:85:in `wrap_in_layout'
|
1548
|
+
/misc/git/innate/lib/innate/action.rb:59:in `as_html'
|
1549
|
+
/misc/git/innate/lib/innate/action.rb:52:in `send'
|
1550
|
+
/misc/git/innate/lib/innate/action.rb:52:in `render'
|
1551
|
+
/misc/git/innate/lib/innate/action.rb:14:in `call'
|
1552
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1553
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1554
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1555
|
+
/misc/git/innate/lib/innate/node.rb:183:in `catch'
|
1556
|
+
/misc/git/innate/lib/innate/node.rb:183:in `action_found'
|
1557
|
+
/misc/git/innate/lib/innate/node.rb:175:in `try_resolve'
|
1558
|
+
/misc/git/innate/lib/innate/node.rb:162:in `call'
|
1559
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:42:in `call'
|
1560
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `each'
|
1561
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/urlmap.rb:35:in `call'
|
1562
|
+
/misc/git/innate/lib/innate/dynamap.rb:20:in `call'
|
1563
|
+
/misc/git/innate/lib/innate/route.rb:70:in `call'
|
1564
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1565
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1566
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1567
|
+
/misc/git/innate/lib/innate/current.rb:24:in `call'
|
1568
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1569
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `initialize'
|
1570
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `new'
|
1571
|
+
/misc/git/innate/lib/innate/state/thread.rb:29:in `wrap'
|
1572
|
+
/misc/git/innate/lib/innate/current.rb:22:in `call'
|
1573
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:19:in `call'
|
1574
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `each'
|
1575
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/cascade.rb:17:in `call'
|
1576
|
+
/misc/git/innate/lib/rack/middleware_compiler.rb:49:in `call'
|
1577
|
+
/misc/git/innate/lib/innate.rb:137:in `call'
|
1578
|
+
/usr/lib/ruby/gems/1.8/gems/rack-0.9.1/lib/rack/mock.rb:70:in `request'
|
1579
|
+
/misc/git/innate/lib/innate/mock.rb:13:in `mock'
|
1580
|
+
/misc/git/innate/lib/innate/mock.rb:8:in `get'
|
1581
|
+
/misc/git/innate/lib/innate/spec.rb:40:in `get'
|
1582
|
+
spec/ramaze/view/tenjin.rb:44
|
1583
|
+
spec/ramaze/view/tenjin.rb:43
|
1584
|
+
spec/ramaze/view/tenjin.rb:27
|
1585
|
+
|
1586
|
+
3 tests, 0 assertions, 0 failures, 3 errors
|
1587
|
+
|
1588
|
+
67/83: spec/snippets/array/put_within.rb
|