mxit-rails 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,6 +37,12 @@
37
37
  <input type="submit" name="_mxit_rails_submit" value="Proceed" />
38
38
  </form>
39
39
 
40
+ <% elsif @_mxit.select %>
41
+ <%= mxit_proceed @_mxit.select_label %>
42
+ <% @_mxit.select_options.each do |key, value| %>
43
+ - <%= mxit_link(request.path, value, {_mxit_rails_submit: 'Proceed', @_mxit.select => key}) %><br />
44
+ <% end %>
45
+
40
46
  <% elsif @_mxit.proceed %>
41
47
  <%= mxit_proceed mxit_link(request.path, @_mxit.proceed.to_s.capitalize, {_mxit_rails_submit: 'Proceed'}) %>
42
48
  <% end %>
@@ -23,6 +23,10 @@ module MxitRails
23
23
  attr_accessor :input
24
24
  attr_accessor :input_label
25
25
 
26
+ attr_accessor :select
27
+ attr_accessor :select_label
28
+ attr_accessor :select_options
29
+
26
30
  attr_accessor :has_table
27
31
 
28
32
  def initialize name, action, parent=nil
@@ -6,6 +6,11 @@ module MxitRails
6
6
  @_mxit_params
7
7
  end
8
8
 
9
+ def mxit_form_session
10
+ session[:_mxit_rails_params]
11
+ end
12
+
13
+
9
14
  def set_descriptor name, parent_name=:default
10
15
  @descriptors ||= {}
11
16
  @descriptors[name] ||= MxitRails::Descriptor.new controller_name, action_name, @descriptors[parent_name]
@@ -89,6 +94,11 @@ module MxitRails
89
94
  descriptor.input = input_name
90
95
  descriptor.input_label = input_label
91
96
  end
97
+ def select select_name, select_label, select_options
98
+ descriptor.select = select_name
99
+ descriptor.select_label = select_label
100
+ descriptor.select_options = select_options
101
+ end
92
102
  def proceed label
93
103
  descriptor.proceed = label
94
104
  end
@@ -114,8 +124,7 @@ module MxitRails
114
124
  end
115
125
 
116
126
  else
117
- valid = instance_exec params[input], &block
118
- logger.info "Output: #{valid}"
127
+ valid = yield(params[input])
119
128
  end
120
129
 
121
130
  if !valid
@@ -129,10 +138,12 @@ module MxitRails
129
138
  set_descriptor :default
130
139
 
131
140
  if descriptor.form? && next_step?
132
- instance_eval &block
141
+ yield
133
142
 
134
- elsif params.include?(:_mxit_rails_submit)
135
- instance_eval &block if @_mxit_validated
143
+ elsif params.include?(:_mxit_rails_submit)
144
+ if @_mxit_validated
145
+ yield
146
+ end
136
147
  end
137
148
  end
138
149
 
@@ -155,16 +166,20 @@ module MxitRails
155
166
  @next_step = false
156
167
  end
157
168
 
158
- set_descriptor step_name
159
- instance_eval &block
160
-
161
169
  # Process the form if it is the current step
162
170
  if current_step == step_name
171
+ set_descriptor step_name
172
+ yield
173
+
163
174
  if params.include?(:_mxit_rails_submit)
164
175
  if @_mxit_validated
165
- unless descriptor.input.nil?
176
+ if descriptor.input
166
177
  input = descriptor.input.to_sym
167
- session[:_mxit_rails_params][input] = params[input]
178
+ mxit_form_session[input] = params[input]
179
+
180
+ elsif descriptor.select
181
+ select = descriptor.select.to_sym
182
+ mxit_form_session[select] = params[select]
168
183
  end
169
184
 
170
185
  params.delete :_mxit_rails_submit
@@ -179,19 +194,26 @@ module MxitRails
179
194
  end
180
195
  end
181
196
 
197
+ def skip_to step_name
198
+ self.current_step = step_name
199
+ # A redirect might not be absolutely required, but it makes things much simpler
200
+ redirect_to request.path
201
+ end
202
+
182
203
  def form &block
183
204
  descriptor.type = :form
184
205
  session[:_mxit_rails_params] ||= {}
185
206
 
186
207
  # Ensure previous inputs are in the params hash
187
- session[:_mxit_rails_params].each do |key, value|
208
+ mxit_form_session.each do |key, value|
188
209
  params[key.to_sym] = value
189
210
  end
190
211
 
191
212
  # Proceed to the (first) step if no step is in the session
192
- @next_step = true if session[:_mxit_rails_step].nil?
213
+ @next_step = true if current_step.nil?
214
+
215
+ yield
193
216
 
194
- instance_eval &block
195
217
  end
196
218
  end
197
219
  end
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -6,6 +6,7 @@ class FormController < ApplicationController
6
6
  form do
7
7
  step :start do
8
8
  proceed 'Start the form'
9
+ mxit_form_session[:dummy] = 'TEST'
9
10
  end
10
11
 
11
12
  step :name do
@@ -17,6 +18,11 @@ class FormController < ApplicationController
17
18
  end
18
19
 
19
20
  step :surname do
21
+ if params[:name] == 'Linsen'
22
+ skip_to :age
23
+ return
24
+ end
25
+
20
26
  input :surname, 'What is your surname?'
21
27
 
22
28
  @name = params[:name]
@@ -29,12 +35,19 @@ class FormController < ApplicationController
29
35
  validate :max_length, 2, 'Your age cannot be more than 99'
30
36
  end
31
37
 
38
+ step :gender do
39
+ # Any strings can be used as the key
40
+ select :gender, 'What is your gender?', {'male' => 'Male', 'female' => 'Female'}
41
+ end
42
+
32
43
  step :done do
33
44
  proceed 'Submit my information'
34
45
 
35
46
  @name = params[:name]
36
47
  @surname = params[:surname]
37
48
  @age = params[:age]
49
+ @gender = params[:gender]
50
+ @dummy = params[:dummy]
38
51
  end
39
52
 
40
53
  submit do
@@ -1,5 +1,5 @@
1
1
  <%= mxit_table_row :title %>
2
- <b>Step 3 of 3</b>
2
+ <b>Step 3 of 4</b>
3
3
 
4
4
  <%= mxit_table_row %>
5
5
  <%= mxit_nav_link '/', 'Back' %>
@@ -8,3 +8,5 @@
8
8
  <p>First name: <b><%= @name %></b></p>
9
9
  <p>Surname: <b><%= @surname %></b></p>
10
10
  <p>Age: <b><%= @age %></b></p>
11
+ <p>Gender: <b><%= @gender %></b></p>
12
+ <p>Dummy variable: <b><%= @dummy %></b></p>
@@ -0,0 +1,11 @@
1
+ <%= mxit_table_row :title %>
2
+ <b>Step 3 of 4</b>
3
+
4
+ <%= mxit_table_row %>
5
+ <%= mxit_nav_link '/', 'Back' %>
6
+
7
+ <p>Please also indicate your gender</p>
8
+
9
+ <% if mxit_validation_message %>
10
+ <p><%= mxit_validation_message %></p>
11
+ <% end %>
@@ -1,5 +1,5 @@
1
1
  <%= mxit_table_row :title %>
2
- <b>Step 1 of 3</b>
2
+ <b>Step 1 of 4</b>
3
3
 
4
4
  <%= mxit_table_row %>
5
5
  <%= mxit_nav_link '/', 'Back' %>
@@ -1,5 +1,5 @@
1
1
  <%= mxit_table_row :title %>
2
- <b>Step 2 of 3</b>
2
+ <b>Step 2 of 4</b>
3
3
 
4
4
  <%= mxit_table_row %>
5
5
  <%= mxit_nav_link '/', 'Back' %>
@@ -50097,3 +50097,2177 @@ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50097
50097
 
50098
50098
  Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 10:23:03 +0200
50099
50099
  Served asset /mxit_rails/in.png - 304 Not Modified (0ms)
50100
+
50101
+
50102
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-19 14:43:30 +0200
50103
+ Connecting to database specified by database.yml
50104
+ Processing by EmulatorController#index as HTML
50105
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (37.4ms)
50106
+ Completed 200 OK in 46ms (Views: 45.9ms | ActiveRecord: 0.0ms)
50107
+
50108
+
50109
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:30 +0200
50110
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
50111
+
50112
+
50113
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:30 +0200
50114
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (21ms)
50115
+
50116
+
50117
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50118
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (3ms)
50119
+
50120
+
50121
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50122
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
50123
+
50124
+
50125
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50126
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (7ms)
50127
+
50128
+
50129
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50130
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
50131
+
50132
+
50133
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50134
+ Served asset /mxit_rails/home.png - 304 Not Modified (4ms)
50135
+
50136
+
50137
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50138
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
50139
+
50140
+
50141
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50142
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
50143
+
50144
+
50145
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50146
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
50147
+
50148
+
50149
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50150
+ Processing by IndexController#index as HTML
50151
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
50152
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
50153
+
50154
+
50155
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50156
+ Served asset /mxit_rails/included.css - 200 OK (3ms)
50157
+
50158
+
50159
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:31 +0200
50160
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (3ms)
50161
+
50162
+
50163
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:43:34 +0200
50164
+ Processing by FormController#index as HTML
50165
+ Completed 500 Internal Server Error in 2ms
50166
+
50167
+ NameError (undefined local variable or method `mxit_session' for #<FormController:0x007fd6f56d2760>):
50168
+ app/controllers/form_controller.rb:9:in `block (2 levels) in index'
50169
+ app/controllers/form_controller.rb:7:in `block in index'
50170
+ app/controllers/form_controller.rb:6:in `index'
50171
+
50172
+
50173
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
50174
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
50175
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
50176
+
50177
+
50178
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 14:43:34 +0200
50179
+ Served asset /mxit_rails/in.png - 304 Not Modified (2ms)
50180
+
50181
+
50182
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50183
+ Processing by EmulatorController#index as HTML
50184
+ Parameters: {"path"=>"form"}
50185
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.5ms)
50186
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
50187
+
50188
+
50189
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50190
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
50191
+
50192
+
50193
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50194
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
50195
+
50196
+
50197
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50198
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
50199
+
50200
+
50201
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50202
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
50203
+
50204
+
50205
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50206
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
50207
+
50208
+
50209
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50210
+ Processing by FormController#index as HTML
50211
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
50212
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
50213
+
50214
+
50215
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50216
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
50217
+
50218
+
50219
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50220
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
50221
+
50222
+
50223
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50224
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
50225
+
50226
+
50227
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50228
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
50229
+
50230
+
50231
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50232
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
50233
+
50234
+
50235
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50236
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50237
+
50238
+
50239
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:45 +0200
50240
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50241
+
50242
+
50243
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 14:43:47 +0200
50244
+ Processing by FormController#index as HTML
50245
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
50246
+ Rendered form/index/name.html.erb within layouts/mxit (0.6ms)
50247
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
50248
+
50249
+
50250
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:47 +0200
50251
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50252
+
50253
+
50254
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:47 +0200
50255
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50256
+
50257
+
50258
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 14:43:49 +0200
50259
+ Processing by FormController#index as HTML
50260
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
50261
+ Output: true
50262
+ Rendered form/index/surname.html.erb within layouts/mxit (0.6ms)
50263
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
50264
+
50265
+
50266
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:49 +0200
50267
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50268
+
50269
+
50270
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:49 +0200
50271
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50272
+
50273
+
50274
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 14:43:50 +0200
50275
+ Processing by FormController#index as HTML
50276
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
50277
+ Output: true
50278
+ Rendered form/index/age.html.erb within layouts/mxit (0.5ms)
50279
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
50280
+
50281
+
50282
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:50 +0200
50283
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50284
+
50285
+
50286
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:50 +0200
50287
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50288
+
50289
+
50290
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 14:43:51 +0200
50291
+ Processing by FormController#index as HTML
50292
+ Parameters: {"age"=>"24", "_mxit_rails_submit"=>"Proceed"}
50293
+ Output: true
50294
+ Rendered form/index/done.html.erb within layouts/mxit (0.6ms)
50295
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
50296
+
50297
+
50298
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:51 +0200
50299
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50300
+
50301
+
50302
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:43:51 +0200
50303
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
50304
+
50305
+
50306
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 14:43:52 +0200
50307
+ Processing by FormController#index as HTML
50308
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
50309
+ Output: true
50310
+ Form Completed!
50311
+ name: Linsen; surname: Loots; age: 24
50312
+ ******
50313
+
50314
+
50315
+ Redirected to http://localhost:3000/index/success
50316
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
50317
+
50318
+
50319
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-19 14:43:52 +0200
50320
+ Processing by IndexController#success as HTML
50321
+ Rendered index/success.html.erb within layouts/mxit (0.6ms)
50322
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
50323
+
50324
+
50325
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:43:53 +0200
50326
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50327
+
50328
+
50329
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:50:22 +0200
50330
+ Connecting to database specified by database.yml
50331
+ Processing by IndexController#index as HTML
50332
+ Rendered index/index.html.erb within layouts/mxit (1.9ms)
50333
+ Completed 200 OK in 30ms (Views: 29.9ms | ActiveRecord: 0.0ms)
50334
+
50335
+
50336
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:50:22 +0200
50337
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
50338
+
50339
+
50340
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:50:24 +0200
50341
+ Processing by FormController#index as HTML
50342
+ Before
50343
+ Before skip_to
50344
+ After skip_to
50345
+ After
50346
+ Rendered form/index/age.html.erb within layouts/mxit (0.5ms)
50347
+ Before
50348
+ After
50349
+ Completed 500 Internal Server Error in 4ms
50350
+
50351
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50352
+ app/controllers/form_controller.rb:33:in `block in index'
50353
+ app/controllers/form_controller.rb:6:in `index'
50354
+
50355
+
50356
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
50357
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
50358
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
50359
+
50360
+
50361
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 14:50:24 +0200
50362
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
50363
+
50364
+
50365
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50366
+ Connecting to database specified by database.yml
50367
+ Processing by EmulatorController#index as HTML
50368
+ Parameters: {"path"=>"form"}
50369
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.4ms)
50370
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
50371
+
50372
+
50373
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50374
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
50375
+
50376
+
50377
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50378
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (26ms)
50379
+
50380
+
50381
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50382
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
50383
+
50384
+
50385
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50386
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
50387
+
50388
+
50389
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50390
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (7ms)
50391
+
50392
+
50393
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50394
+ Processing by FormController#index as HTML
50395
+ Before
50396
+ Before skip_to
50397
+ Redirected to http://localhost:3000/form
50398
+ After skip_to
50399
+ After
50400
+ Completed 500 Internal Server Error in 3ms
50401
+
50402
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50403
+ app/controllers/form_controller.rb:7:in `block in index'
50404
+ app/controllers/form_controller.rb:6:in `index'
50405
+
50406
+
50407
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
50408
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
50409
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
50410
+
50411
+
50412
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50413
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
50414
+
50415
+
50416
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50417
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
50418
+
50419
+
50420
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50421
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
50422
+
50423
+
50424
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50425
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
50426
+
50427
+
50428
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50429
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
50430
+
50431
+
50432
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50433
+ Served asset /mxit_rails/in.png - 304 Not Modified (1ms)
50434
+
50435
+
50436
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:53:25 +0200
50437
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
50438
+
50439
+
50440
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:53:28 +0200
50441
+ Processing by IndexController#index as HTML
50442
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
50443
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
50444
+
50445
+
50446
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:53:28 +0200
50447
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
50448
+
50449
+
50450
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:53:30 +0200
50451
+ Processing by FormController#index as HTML
50452
+ Before
50453
+ Before skip_to
50454
+ Redirected to http://localhost:3000/form
50455
+ After skip_to
50456
+ After
50457
+ Completed 500 Internal Server Error in 1ms
50458
+
50459
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50460
+ app/controllers/form_controller.rb:7:in `block in index'
50461
+ app/controllers/form_controller.rb:6:in `index'
50462
+
50463
+
50464
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
50465
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (21.1ms)
50466
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.8ms)
50467
+
50468
+
50469
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50470
+ Connecting to database specified by database.yml
50471
+ Processing by EmulatorController#index as HTML
50472
+ Parameters: {"path"=>"form"}
50473
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.4ms)
50474
+ Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
50475
+
50476
+
50477
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50478
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
50479
+
50480
+
50481
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50482
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (26ms)
50483
+
50484
+
50485
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50486
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
50487
+
50488
+
50489
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50490
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
50491
+
50492
+
50493
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50494
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (8ms)
50495
+
50496
+
50497
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:54:15 +0200
50498
+ Processing by FormController#index as HTML
50499
+ Before
50500
+ Before skip_to
50501
+ Redirected to http://localhost:3000/form
50502
+ After skip_to
50503
+ After
50504
+ Completed 500 Internal Server Error in 1ms
50505
+
50506
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50507
+ app/controllers/form_controller.rb:7:in `block in index'
50508
+ app/controllers/form_controller.rb:6:in `index'
50509
+
50510
+
50511
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
50512
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
50513
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
50514
+
50515
+
50516
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50517
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
50518
+
50519
+
50520
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50521
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
50522
+
50523
+
50524
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50525
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
50526
+
50527
+
50528
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50529
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
50530
+
50531
+
50532
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50533
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
50534
+
50535
+
50536
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50537
+ Served asset /mxit_rails/in.png - 304 Not Modified (1ms)
50538
+
50539
+
50540
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:54:16 +0200
50541
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
50542
+
50543
+
50544
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:54:17 +0200
50545
+ Processing by IndexController#index as HTML
50546
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
50547
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
50548
+
50549
+
50550
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:54:17 +0200
50551
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
50552
+
50553
+
50554
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:54:18 +0200
50555
+ Processing by FormController#index as HTML
50556
+ Before
50557
+ Before skip_to
50558
+ Redirected to http://localhost:3000/form
50559
+ After skip_to
50560
+ After
50561
+ Completed 500 Internal Server Error in 1ms
50562
+
50563
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50564
+ app/controllers/form_controller.rb:7:in `block in index'
50565
+ app/controllers/form_controller.rb:6:in `index'
50566
+
50567
+
50568
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
50569
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
50570
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms)
50571
+
50572
+
50573
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50574
+ Connecting to database specified by database.yml
50575
+ Processing by EmulatorController#index as HTML
50576
+ Parameters: {"path"=>"form"}
50577
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.7ms)
50578
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
50579
+
50580
+
50581
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50582
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
50583
+
50584
+
50585
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50586
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (23ms)
50587
+
50588
+
50589
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50590
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
50591
+
50592
+
50593
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50594
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
50595
+
50596
+
50597
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50598
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (8ms)
50599
+
50600
+
50601
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50602
+ Served asset /mxit_rails/go.png - 304 Not Modified (6ms)
50603
+
50604
+
50605
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50606
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
50607
+
50608
+
50609
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50610
+ Served asset /mxit_rails/home.png - 304 Not Modified (1ms)
50611
+
50612
+
50613
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50614
+ Processing by FormController#index as HTML
50615
+ Before
50616
+ Completed 500 Internal Server Error in 1ms
50617
+
50618
+ ArgumentError (wrong number of arguments(1 for 0)):
50619
+ app/controllers/form_controller.rb:7:in `block in index'
50620
+ app/controllers/form_controller.rb:6:in `index'
50621
+
50622
+
50623
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
50624
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
50625
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
50626
+
50627
+
50628
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50629
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
50630
+
50631
+
50632
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50633
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
50634
+
50635
+
50636
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50637
+ Served asset /mxit_rails/in.png - 304 Not Modified (1ms)
50638
+
50639
+
50640
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 14:55:03 +0200
50641
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
50642
+
50643
+
50644
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:55:04 +0200
50645
+ Processing by IndexController#index as HTML
50646
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
50647
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
50648
+
50649
+
50650
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:55:04 +0200
50651
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
50652
+
50653
+
50654
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-19 14:55:06 +0200
50655
+ Processing by WelcomeController#index as HTML
50656
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
50657
+ Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms)
50658
+
50659
+
50660
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:55:06 +0200
50661
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50662
+
50663
+
50664
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:55:08 +0200
50665
+ Processing by IndexController#index as HTML
50666
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50667
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
50668
+
50669
+
50670
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:55:08 +0200
50671
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50672
+
50673
+
50674
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:55:09 +0200
50675
+ Processing by FormController#index as HTML
50676
+ Before
50677
+ Completed 500 Internal Server Error in 1ms
50678
+
50679
+ ArgumentError (wrong number of arguments(1 for 0)):
50680
+ app/controllers/form_controller.rb:7:in `block in index'
50681
+ app/controllers/form_controller.rb:6:in `index'
50682
+
50683
+
50684
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
50685
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
50686
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
50687
+
50688
+
50689
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:55:31 +0200
50690
+ Connecting to database specified by database.yml
50691
+ Processing by IndexController#index as HTML
50692
+ Rendered index/index.html.erb within layouts/mxit (1.8ms)
50693
+ Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
50694
+
50695
+
50696
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:55:31 +0200
50697
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
50698
+
50699
+
50700
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:55:33 +0200
50701
+ Processing by FormController#index as HTML
50702
+ Before
50703
+ Completed 500 Internal Server Error in 1ms
50704
+
50705
+ TypeError (can't convert Proc into String):
50706
+ app/controllers/form_controller.rb:7:in `block in index'
50707
+ app/controllers/form_controller.rb:6:in `index'
50708
+
50709
+
50710
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
50711
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
50712
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
50713
+
50714
+
50715
+ Started GET "/" for 127.0.0.1 at 2012-09-19 14:56:55 +0200
50716
+ Connecting to database specified by database.yml
50717
+ Processing by IndexController#index as HTML
50718
+ Rendered index/index.html.erb within layouts/mxit (2.6ms)
50719
+ Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.0ms)
50720
+
50721
+
50722
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 14:56:55 +0200
50723
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
50724
+
50725
+
50726
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 14:56:56 +0200
50727
+ Processing by FormController#index as HTML
50728
+ Before
50729
+ Before skip_to
50730
+ Redirected to http://localhost:3000/form
50731
+ After skip_to
50732
+ After
50733
+ Completed 500 Internal Server Error in 1ms
50734
+
50735
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50736
+ app/controllers/form_controller.rb:7:in `block in index'
50737
+ app/controllers/form_controller.rb:6:in `index'
50738
+
50739
+
50740
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
50741
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
50742
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
50743
+
50744
+
50745
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:05:45 +0200
50746
+ Processing by IndexController#index as HTML
50747
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50748
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
50749
+
50750
+
50751
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:05:45 +0200
50752
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50753
+
50754
+
50755
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:05:50 +0200
50756
+ Processing by IndexController#index as HTML
50757
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50758
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
50759
+
50760
+
50761
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:05:50 +0200
50762
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50763
+
50764
+
50765
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:05:52 +0200
50766
+ Processing by FormController#index as HTML
50767
+ Before
50768
+ After
50769
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
50770
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
50771
+
50772
+
50773
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:05:52 +0200
50774
+ Served asset /mxit_rails/included.css - 304 Not Modified (1ms)
50775
+
50776
+
50777
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:05:53 +0200
50778
+ Processing by FormController#index as HTML
50779
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
50780
+ Before
50781
+ After
50782
+ Before
50783
+ After
50784
+ Rendered form/index/name.html.erb within layouts/mxit (0.9ms)
50785
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
50786
+
50787
+
50788
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:05:53 +0200
50789
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50790
+
50791
+
50792
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:06:01 +0200
50793
+ Processing by IndexController#index as HTML
50794
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50795
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
50796
+
50797
+
50798
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:01 +0200
50799
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50800
+
50801
+
50802
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:06:02 +0200
50803
+ Processing by FormController#index as HTML
50804
+ Before
50805
+ Before skip_to
50806
+ Redirected to http://localhost:3000/form
50807
+ After skip_to
50808
+ After
50809
+ Completed 500 Internal Server Error in 2ms
50810
+
50811
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
50812
+ app/controllers/form_controller.rb:7:in `block in index'
50813
+ app/controllers/form_controller.rb:6:in `index'
50814
+
50815
+
50816
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
50817
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
50818
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
50819
+
50820
+
50821
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50822
+ Processing by EmulatorController#index as HTML
50823
+ Parameters: {"path"=>"form"}
50824
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (11.1ms)
50825
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
50826
+
50827
+
50828
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50829
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
50830
+
50831
+
50832
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50833
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (11ms)
50834
+
50835
+
50836
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50837
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
50838
+
50839
+
50840
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50841
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (1ms)
50842
+
50843
+
50844
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50845
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
50846
+
50847
+
50848
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50849
+ Served asset /mxit_rails/home.png - 304 Not Modified (4ms)
50850
+
50851
+
50852
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50853
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
50854
+
50855
+
50856
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50857
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (16ms)
50858
+
50859
+
50860
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50861
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
50862
+
50863
+
50864
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50865
+ Processing by FormController#index as HTML
50866
+ Before
50867
+ After
50868
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
50869
+ Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
50870
+
50871
+
50872
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50873
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
50874
+
50875
+
50876
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50877
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50878
+
50879
+
50880
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:06:10 +0200
50881
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
50882
+
50883
+
50884
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:06:18 +0200
50885
+ Processing by IndexController#index as HTML
50886
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50887
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
50888
+
50889
+
50890
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:18 +0200
50891
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50892
+
50893
+
50894
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:06:19 +0200
50895
+ Processing by FormController#index as HTML
50896
+ Before
50897
+ After
50898
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
50899
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
50900
+
50901
+
50902
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:19 +0200
50903
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50904
+
50905
+
50906
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:06:20 +0200
50907
+ Processing by FormController#index as HTML
50908
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
50909
+ Before
50910
+ After
50911
+ Before
50912
+ After
50913
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
50914
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
50915
+
50916
+
50917
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:20 +0200
50918
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50919
+
50920
+
50921
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:06:22 +0200
50922
+ Processing by IndexController#index as HTML
50923
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
50924
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
50925
+
50926
+
50927
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:06:22 +0200
50928
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
50929
+
50930
+
50931
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-19 15:11:09 +0200
50932
+ Connecting to database specified by database.yml
50933
+ Processing by EmulatorController#index as HTML
50934
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.8ms)
50935
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
50936
+
50937
+
50938
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50939
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
50940
+
50941
+
50942
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50943
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (39ms)
50944
+
50945
+
50946
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50947
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (7ms)
50948
+
50949
+
50950
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50951
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (3ms)
50952
+
50953
+
50954
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50955
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
50956
+
50957
+
50958
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50959
+ Served asset /mxit_rails/go.png - 304 Not Modified (11ms)
50960
+
50961
+
50962
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50963
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
50964
+
50965
+
50966
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50967
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
50968
+
50969
+
50970
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50971
+ Processing by IndexController#index as HTML
50972
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
50973
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
50974
+
50975
+
50976
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50977
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
50978
+
50979
+
50980
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50981
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
50982
+
50983
+
50984
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50985
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
50986
+
50987
+
50988
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:11:10 +0200
50989
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
50990
+
50991
+
50992
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-19 15:11:12 +0200
50993
+ Processing by WelcomeController#index as HTML
50994
+ Rendered welcome/index.html.erb within layouts/mxit (0.7ms)
50995
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
50996
+
50997
+
50998
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:12 +0200
50999
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51000
+
51001
+
51002
+ Started POST "/welcome" for 127.0.0.1 at 2012-09-19 15:11:13 +0200
51003
+ Processing by WelcomeController#index as HTML
51004
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
51005
+ Validation: ""
51006
+ Output: true
51007
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
51008
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
51009
+
51010
+
51011
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:13 +0200
51012
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51013
+
51014
+
51015
+ Started POST "/welcome" for 127.0.0.1 at 2012-09-19 15:11:30 +0200
51016
+ Processing by WelcomeController#index as HTML
51017
+ Parameters: {"phone_number"=>"custom", "_mxit_rails_submit"=>"Proceed"}
51018
+ Validation: "custom"
51019
+ Output: false
51020
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
51021
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
51022
+
51023
+
51024
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:30 +0200
51025
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51026
+
51027
+
51028
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:11:33 +0200
51029
+ Processing by IndexController#index as HTML
51030
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
51031
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
51032
+
51033
+
51034
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:33 +0200
51035
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51036
+
51037
+
51038
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:11:34 +0200
51039
+ Processing by FormController#index as HTML
51040
+ Before
51041
+ Before skip_to
51042
+ Redirected to http://localhost:3000/form
51043
+ After skip_to
51044
+ After
51045
+ Completed 500 Internal Server Error in 1ms
51046
+
51047
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
51048
+ app/controllers/form_controller.rb:7:in `block in index'
51049
+ app/controllers/form_controller.rb:6:in `index'
51050
+
51051
+
51052
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
51053
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
51054
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
51055
+
51056
+
51057
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 15:11:34 +0200
51058
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
51059
+
51060
+
51061
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51062
+ Connecting to database specified by database.yml
51063
+ Processing by EmulatorController#index as HTML
51064
+ Parameters: {"path"=>"form"}
51065
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.0ms)
51066
+ Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
51067
+
51068
+
51069
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51070
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
51071
+
51072
+
51073
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51074
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (32ms)
51075
+
51076
+
51077
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51078
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
51079
+
51080
+
51081
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51082
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
51083
+
51084
+
51085
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51086
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (4ms)
51087
+
51088
+
51089
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51090
+ Processing by FormController#index as HTML
51091
+ Before
51092
+ Before skip_to
51093
+ Redirected to http://localhost:3000/form
51094
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
51095
+
51096
+
51097
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51098
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
51099
+
51100
+
51101
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51102
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
51103
+
51104
+
51105
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51106
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
51107
+
51108
+
51109
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51110
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
51111
+
51112
+
51113
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51114
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
51115
+
51116
+
51117
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51118
+ Processing by FormController#index as HTML
51119
+ Before
51120
+ After
51121
+ Rendered form/index/age.html.erb within layouts/mxit (0.8ms)
51122
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
51123
+
51124
+
51125
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:53 +0200
51126
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
51127
+
51128
+
51129
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:11:54 +0200
51130
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
51131
+
51132
+
51133
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:11:55 +0200
51134
+ Processing by IndexController#index as HTML
51135
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
51136
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
51137
+
51138
+
51139
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:55 +0200
51140
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51141
+
51142
+
51143
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:11:56 +0200
51144
+ Processing by FormController#index as HTML
51145
+ Before
51146
+ Before skip_to
51147
+ Redirected to http://localhost:3000/form
51148
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51149
+
51150
+
51151
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:11:56 +0200
51152
+ Processing by FormController#index as HTML
51153
+ Before
51154
+ After
51155
+ Rendered form/index/age.html.erb within layouts/mxit (0.2ms)
51156
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
51157
+
51158
+
51159
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:11:56 +0200
51160
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51161
+
51162
+
51163
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:13:02 +0200
51164
+ Connecting to database specified by database.yml
51165
+ Processing by IndexController#index as HTML
51166
+ Rendered index/index.html.erb within layouts/mxit (1.7ms)
51167
+ Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
51168
+
51169
+
51170
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:13:02 +0200
51171
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
51172
+
51173
+
51174
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:13:03 +0200
51175
+ Processing by FormController#index as HTML
51176
+ Redirected to http://localhost:3000/form
51177
+ Redirected to
51178
+ Completed 500 Internal Server Error in 1ms
51179
+
51180
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
51181
+ app/controllers/form_controller.rb:12:in `block in index'
51182
+ app/controllers/form_controller.rb:6:in `index'
51183
+
51184
+
51185
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
51186
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
51187
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
51188
+
51189
+
51190
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 15:13:03 +0200
51191
+ Served asset /mxit_rails/in.png - 304 Not Modified (2ms)
51192
+
51193
+
51194
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:14:44 +0200
51195
+ Connecting to database specified by database.yml
51196
+ Processing by IndexController#index as HTML
51197
+ Rendered index/index.html.erb within layouts/mxit (1.7ms)
51198
+ Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
51199
+
51200
+
51201
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:14:44 +0200
51202
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
51203
+
51204
+
51205
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:14:45 +0200
51206
+ Processing by FormController#index as HTML
51207
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
51208
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
51209
+
51210
+
51211
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:14:45 +0200
51212
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51213
+
51214
+
51215
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:14:46 +0200
51216
+ Processing by FormController#index as HTML
51217
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51218
+ Rendered form/index/name.html.erb within layouts/mxit (0.5ms)
51219
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
51220
+
51221
+
51222
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:14:46 +0200
51223
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51224
+
51225
+
51226
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:14:49 +0200
51227
+ Processing by FormController#index as HTML
51228
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
51229
+ Output: true
51230
+ Redirected to http://localhost:3000/form
51231
+ Completed 500 Internal Server Error in 1ms
51232
+
51233
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
51234
+ app/controllers/form_controller.rb:20:in `block in index'
51235
+ app/controllers/form_controller.rb:6:in `index'
51236
+
51237
+
51238
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
51239
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
51240
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
51241
+
51242
+
51243
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:15:05 +0200
51244
+ Processing by IndexController#index as HTML
51245
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51246
+ Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51247
+
51248
+
51249
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:05 +0200
51250
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51251
+
51252
+
51253
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:15:06 +0200
51254
+ Processing by FormController#index as HTML
51255
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
51256
+ Completed 200 OK in 24ms (Views: 2.6ms | ActiveRecord: 0.0ms)
51257
+
51258
+
51259
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:06 +0200
51260
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51261
+
51262
+
51263
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:15:07 +0200
51264
+ Processing by FormController#index as HTML
51265
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51266
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
51267
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
51268
+
51269
+
51270
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:07 +0200
51271
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51272
+
51273
+
51274
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:09 +0200
51275
+ Processing by FormController#index as HTML
51276
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
51277
+ Output: true
51278
+ Redirected to http://localhost:3000/form
51279
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51280
+
51281
+
51282
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:15:09 +0200
51283
+ Processing by FormController#index as HTML
51284
+ Rendered form/index/age.html.erb within layouts/mxit (0.5ms)
51285
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51286
+
51287
+
51288
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:09 +0200
51289
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51290
+
51291
+
51292
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:15:12 +0200
51293
+ Processing by IndexController#index as HTML
51294
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51295
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
51296
+
51297
+
51298
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:12 +0200
51299
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51300
+
51301
+
51302
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:15:20 +0200
51303
+ Processing by FormController#index as HTML
51304
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
51305
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
51306
+
51307
+
51308
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:20 +0200
51309
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51310
+
51311
+
51312
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:15:22 +0200
51313
+ Processing by FormController#index as HTML
51314
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51315
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
51316
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
51317
+
51318
+
51319
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:22 +0200
51320
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51321
+
51322
+
51323
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:24 +0200
51324
+ Processing by FormController#index as HTML
51325
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
51326
+ Output: true
51327
+ Redirected to http://localhost:3000/form
51328
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51329
+
51330
+
51331
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:15:24 +0200
51332
+ Processing by FormController#index as HTML
51333
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
51334
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
51335
+
51336
+
51337
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:24 +0200
51338
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51339
+
51340
+
51341
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:26 +0200
51342
+ Processing by FormController#index as HTML
51343
+ Parameters: {"age"=>"23", "_mxit_rails_submit"=>"Proceed"}
51344
+ Rendered form/index/done.html.erb within layouts/mxit (1.1ms)
51345
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
51346
+
51347
+
51348
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:26 +0200
51349
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51350
+
51351
+
51352
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:15:28 +0200
51353
+ Processing by IndexController#index as HTML
51354
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51355
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
51356
+
51357
+
51358
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:28 +0200
51359
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51360
+
51361
+
51362
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:15:29 +0200
51363
+ Processing by FormController#index as HTML
51364
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
51365
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
51366
+
51367
+
51368
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:29 +0200
51369
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51370
+
51371
+
51372
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:15:31 +0200
51373
+ Processing by FormController#index as HTML
51374
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51375
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
51376
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
51377
+
51378
+
51379
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:31 +0200
51380
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51381
+
51382
+
51383
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:32 +0200
51384
+ Processing by FormController#index as HTML
51385
+ Parameters: {"name"=>"Joe", "_mxit_rails_submit"=>"Proceed"}
51386
+ Output: true
51387
+ Rendered form/index/surname.html.erb within layouts/mxit (0.7ms)
51388
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
51389
+
51390
+
51391
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:32 +0200
51392
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51393
+
51394
+
51395
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:33 +0200
51396
+ Processing by FormController#index as HTML
51397
+ Parameters: {"surname"=>"Soap", "_mxit_rails_submit"=>"Proceed"}
51398
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
51399
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
51400
+
51401
+
51402
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:33 +0200
51403
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51404
+
51405
+
51406
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:15:34 +0200
51407
+ Processing by FormController#index as HTML
51408
+ Parameters: {"age"=>"12", "_mxit_rails_submit"=>"Proceed"}
51409
+ Rendered form/index/done.html.erb within layouts/mxit (0.2ms)
51410
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51411
+
51412
+
51413
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:34 +0200
51414
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51415
+
51416
+
51417
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:15:36 +0200
51418
+ Processing by IndexController#index as HTML
51419
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51420
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
51421
+
51422
+
51423
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:15:36 +0200
51424
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51425
+
51426
+
51427
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51428
+ Connecting to database specified by database.yml
51429
+ Processing by EmulatorController#index as HTML
51430
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (33.3ms)
51431
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
51432
+
51433
+
51434
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51435
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
51436
+
51437
+
51438
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51439
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (9ms)
51440
+
51441
+
51442
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51443
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
51444
+
51445
+
51446
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51447
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
51448
+
51449
+
51450
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51451
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
51452
+
51453
+
51454
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51455
+ Served asset /mxit_rails/go.png - 304 Not Modified (7ms)
51456
+
51457
+
51458
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51459
+ Processing by IndexController#index as HTML
51460
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
51461
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
51462
+
51463
+
51464
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51465
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
51466
+
51467
+
51468
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51469
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
51470
+
51471
+
51472
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51473
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
51474
+
51475
+
51476
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51477
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (20ms)
51478
+
51479
+
51480
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51481
+ Served asset /mxit_rails/included.css - 304 Not Modified (1ms)
51482
+
51483
+
51484
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:17:16 +0200
51485
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (3ms)
51486
+
51487
+
51488
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:17:17 +0200
51489
+ Processing by FormController#index as HTML
51490
+ Redirected to http://localhost:3000/form
51491
+ Completed 500 Internal Server Error in 2ms
51492
+
51493
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
51494
+ app/controllers/form_controller.rb:7:in `block in index'
51495
+ app/controllers/form_controller.rb:6:in `index'
51496
+
51497
+
51498
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
51499
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
51500
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
51501
+
51502
+
51503
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-19 15:17:18 +0200
51504
+ Served asset /mxit_rails/in.png - 304 Not Modified (2ms)
51505
+
51506
+
51507
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:20:15 +0200
51508
+ Connecting to database specified by database.yml
51509
+ Processing by IndexController#index as HTML
51510
+ Rendered index/index.html.erb within layouts/mxit (2.0ms)
51511
+ Completed 200 OK in 32ms (Views: 31.9ms | ActiveRecord: 0.0ms)
51512
+
51513
+
51514
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:16 +0200
51515
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
51516
+
51517
+
51518
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:20:17 +0200
51519
+ Processing by FormController#index as HTML
51520
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
51521
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
51522
+
51523
+
51524
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:17 +0200
51525
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51526
+
51527
+
51528
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:20:18 +0200
51529
+ Processing by FormController#index as HTML
51530
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51531
+ Form Completed!
51532
+ name: ; surname: ; age:
51533
+ ******
51534
+
51535
+
51536
+ Redirected to http://localhost:3000/index/success
51537
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51538
+
51539
+
51540
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-19 15:20:18 +0200
51541
+ Processing by IndexController#success as HTML
51542
+ Rendered index/success.html.erb within layouts/mxit (0.5ms)
51543
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
51544
+
51545
+
51546
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:18 +0200
51547
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51548
+
51549
+
51550
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:20:20 +0200
51551
+ Processing by IndexController#index as HTML
51552
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51553
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
51554
+
51555
+
51556
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:20 +0200
51557
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51558
+
51559
+
51560
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:20:21 +0200
51561
+ Processing by FormController#index as HTML
51562
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
51563
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
51564
+
51565
+
51566
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:21 +0200
51567
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51568
+
51569
+
51570
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:20:23 +0200
51571
+ Processing by FormController#index as HTML
51572
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51573
+ Form Completed!
51574
+ name: ; surname: ; age:
51575
+ ******
51576
+
51577
+
51578
+ Redirected to http://localhost:3000/index/success
51579
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51580
+
51581
+
51582
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-19 15:20:23 +0200
51583
+ Processing by IndexController#success as HTML
51584
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
51585
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51586
+
51587
+
51588
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:23 +0200
51589
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51590
+
51591
+
51592
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:20:24 +0200
51593
+ Processing by IndexController#index as HTML
51594
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51595
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
51596
+
51597
+
51598
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:20:24 +0200
51599
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51600
+
51601
+
51602
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51603
+ Connecting to database specified by database.yml
51604
+ Processing by EmulatorController#index as HTML
51605
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (30.4ms)
51606
+ Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
51607
+
51608
+
51609
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51610
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
51611
+
51612
+
51613
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51614
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (7ms)
51615
+
51616
+
51617
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51618
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
51619
+
51620
+
51621
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51622
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (8ms)
51623
+
51624
+
51625
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51626
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
51627
+
51628
+
51629
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51630
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (4ms)
51631
+
51632
+
51633
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51634
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
51635
+
51636
+
51637
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51638
+ Processing by IndexController#index as HTML
51639
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
51640
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
51641
+
51642
+
51643
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51644
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
51645
+
51646
+
51647
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51648
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
51649
+
51650
+
51651
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51652
+ Served asset /mxit_rails/included.css - 304 Not Modified (21ms)
51653
+
51654
+
51655
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51656
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
51657
+
51658
+
51659
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:21:53 +0200
51660
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
51661
+
51662
+
51663
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:21:54 +0200
51664
+ Processing by FormController#index as HTML
51665
+ Rendered form/index/start.html.erb within layouts/mxit (0.6ms)
51666
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
51667
+
51668
+
51669
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:54 +0200
51670
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51671
+
51672
+
51673
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:21:55 +0200
51674
+ Processing by FormController#index as HTML
51675
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51676
+ Rendered form/index/name.html.erb within layouts/mxit (0.8ms)
51677
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
51678
+
51679
+
51680
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:55 +0200
51681
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51682
+
51683
+
51684
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:21:57 +0200
51685
+ Processing by FormController#index as HTML
51686
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
51687
+ Redirected to http://localhost:3000/form
51688
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51689
+
51690
+
51691
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:21:57 +0200
51692
+ Processing by FormController#index as HTML
51693
+ Rendered form/index/age.html.erb within layouts/mxit (0.6ms)
51694
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
51695
+
51696
+
51697
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:57 +0200
51698
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51699
+
51700
+
51701
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:21:59 +0200
51702
+ Processing by IndexController#index as HTML
51703
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51704
+ Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
51705
+
51706
+
51707
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:21:59 +0200
51708
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51709
+
51710
+
51711
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:22:00 +0200
51712
+ Processing by FormController#index as HTML
51713
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
51714
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51715
+
51716
+
51717
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:00 +0200
51718
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51719
+
51720
+
51721
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:22:01 +0200
51722
+ Processing by FormController#index as HTML
51723
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51724
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
51725
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
51726
+
51727
+
51728
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:01 +0200
51729
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51730
+
51731
+
51732
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:22:01 +0200
51733
+ Processing by FormController#index as HTML
51734
+ Parameters: {"name"=>"", "_mxit_rails_submit"=>"Proceed"}
51735
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
51736
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
51737
+
51738
+
51739
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:01 +0200
51740
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51741
+
51742
+
51743
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:22:05 +0200
51744
+ Processing by FormController#index as HTML
51745
+ Parameters: {"name"=>"L", "_mxit_rails_submit"=>"Proceed"}
51746
+ Rendered form/index/surname.html.erb within layouts/mxit (0.5ms)
51747
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
51748
+
51749
+
51750
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:05 +0200
51751
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51752
+
51753
+
51754
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:22:06 +0200
51755
+ Processing by FormController#index as HTML
51756
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
51757
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
51758
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
51759
+
51760
+
51761
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:06 +0200
51762
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51763
+
51764
+
51765
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:22:08 +0200
51766
+ Processing by FormController#index as HTML
51767
+ Parameters: {"age"=>"21", "_mxit_rails_submit"=>"Proceed"}
51768
+ Rendered form/index/done.html.erb within layouts/mxit (0.6ms)
51769
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
51770
+
51771
+
51772
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:08 +0200
51773
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51774
+
51775
+
51776
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:22:10 +0200
51777
+ Processing by FormController#index as HTML
51778
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51779
+ Form Completed!
51780
+ name: L; surname: Loots; age: 21
51781
+ ******
51782
+
51783
+
51784
+ Redirected to http://localhost:3000/index/success
51785
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
51786
+
51787
+
51788
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-19 15:22:10 +0200
51789
+ Processing by IndexController#success as HTML
51790
+ Rendered index/success.html.erb within layouts/mxit (0.4ms)
51791
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
51792
+
51793
+
51794
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:22:10 +0200
51795
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51796
+
51797
+
51798
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:28:46 +0200
51799
+ Connecting to database specified by database.yml
51800
+ Processing by IndexController#index as HTML
51801
+ Rendered index/index.html.erb within layouts/mxit (2.8ms)
51802
+ Completed 200 OK in 35ms (Views: 34.5ms | ActiveRecord: 0.0ms)
51803
+
51804
+
51805
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:28:46 +0200
51806
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
51807
+
51808
+
51809
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:28:47 +0200
51810
+ Processing by FormController#index as HTML
51811
+ Rendered form/index/start.html.erb within layouts/mxit (0.7ms)
51812
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
51813
+
51814
+
51815
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:28:47 +0200
51816
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51817
+
51818
+
51819
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:28:48 +0200
51820
+ Processing by FormController#index as HTML
51821
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
51822
+ Rendered form/index/name.html.erb within layouts/mxit (0.7ms)
51823
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
51824
+
51825
+
51826
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:28:48 +0200
51827
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51828
+
51829
+
51830
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:29:00 +0200
51831
+ Processing by IndexController#index as HTML
51832
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51833
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
51834
+
51835
+
51836
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:29:00 +0200
51837
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51838
+
51839
+
51840
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:29:07 +0200
51841
+ Processing by FormController#index as HTML
51842
+ Completed 500 Internal Server Error in 26ms
51843
+
51844
+ ActionView::MissingTemplate (Missing template form/index/gender with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
51845
+ * "/Users/linsenloots/Dev/payments/mxit-rails/test/dummy/app/views"
51846
+ * "/Users/linsenloots/Dev/payments/mxit-rails/app/views"
51847
+ * "/Users/linsenloots/Dev/payments/mxit-rails/test/dummy"
51848
+ * "/"
51849
+ ):
51850
+ app/controllers/form_controller.rb:7:in `block in index'
51851
+ app/controllers/form_controller.rb:6:in `index'
51852
+
51853
+
51854
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
51855
+
51856
+
51857
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51858
+ Processing by EmulatorController#index as HTML
51859
+ Parameters: {"path"=>"form"}
51860
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (27.4ms)
51861
+ Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
51862
+
51863
+
51864
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51865
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
51866
+
51867
+
51868
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51869
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
51870
+
51871
+
51872
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51873
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
51874
+
51875
+
51876
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51877
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
51878
+
51879
+
51880
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51881
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
51882
+
51883
+
51884
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:29:34 +0200
51885
+ Processing by FormController#index as HTML
51886
+ Rendered form/index/gender.html.erb within layouts/mxit (0.7ms)
51887
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
51888
+
51889
+
51890
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51891
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
51892
+
51893
+
51894
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51895
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
51896
+
51897
+
51898
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51899
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
51900
+
51901
+
51902
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51903
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
51904
+
51905
+
51906
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51907
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
51908
+
51909
+
51910
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51911
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51912
+
51913
+
51914
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:29:35 +0200
51915
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
51916
+
51917
+
51918
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51919
+ Processing by EmulatorController#index as HTML
51920
+ Parameters: {"path"=>"form"}
51921
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
51922
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
51923
+
51924
+
51925
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51926
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
51927
+
51928
+
51929
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51930
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
51931
+
51932
+
51933
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51934
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
51935
+
51936
+
51937
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51938
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
51939
+
51940
+
51941
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:30:12 +0200
51942
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
51943
+
51944
+
51945
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51946
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
51947
+
51948
+
51949
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51950
+ Served asset /mxit_rails/out.png - 304 Not Modified (4ms)
51951
+
51952
+
51953
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51954
+ Processing by FormController#index as HTML
51955
+ Rendered form/index/gender.html.erb within layouts/mxit (0.1ms)
51956
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
51957
+
51958
+
51959
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51960
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
51961
+
51962
+
51963
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51964
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
51965
+
51966
+
51967
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51968
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
51969
+
51970
+
51971
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51972
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51973
+
51974
+
51975
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:30:13 +0200
51976
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
51977
+
51978
+
51979
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:31:28 +0200
51980
+ Processing by IndexController#index as HTML
51981
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
51982
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
51983
+
51984
+
51985
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:28 +0200
51986
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
51987
+
51988
+
51989
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-19 15:31:28 +0200
51990
+ Processing by EmulatorController#index as HTML
51991
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
51992
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
51993
+
51994
+
51995
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
51996
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
51997
+
51998
+
51999
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52000
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
52001
+
52002
+
52003
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52004
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52005
+
52006
+
52007
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52008
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52009
+
52010
+
52011
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52012
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
52013
+
52014
+
52015
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52016
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
52017
+
52018
+
52019
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52020
+ Processing by IndexController#index as HTML
52021
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
52022
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
52023
+
52024
+
52025
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52026
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52027
+
52028
+
52029
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52030
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52031
+
52032
+
52033
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52034
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52035
+
52036
+
52037
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52038
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
52039
+
52040
+
52041
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52042
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52043
+
52044
+
52045
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-19 15:31:29 +0200
52046
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52047
+
52048
+
52049
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:31:30 +0200
52050
+ Processing by FormController#index as HTML
52051
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
52052
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
52053
+
52054
+
52055
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:30 +0200
52056
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52057
+
52058
+
52059
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:31:31 +0200
52060
+ Processing by FormController#index as HTML
52061
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
52062
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
52063
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
52064
+
52065
+
52066
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:31 +0200
52067
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52068
+
52069
+
52070
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:31:33 +0200
52071
+ Processing by FormController#index as HTML
52072
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
52073
+ Redirected to http://localhost:3000/form
52074
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
52075
+
52076
+
52077
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:31:33 +0200
52078
+ Processing by FormController#index as HTML
52079
+ Rendered form/index/age.html.erb within layouts/mxit (0.5ms)
52080
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
52081
+
52082
+
52083
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:33 +0200
52084
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52085
+
52086
+
52087
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:31:34 +0200
52088
+ Processing by FormController#index as HTML
52089
+ Parameters: {"age"=>"21", "_mxit_rails_submit"=>"Proceed"}
52090
+ Rendered form/index/gender.html.erb within layouts/mxit (0.1ms)
52091
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
52092
+
52093
+
52094
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:31:34 +0200
52095
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52096
+
52097
+
52098
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:34:13 +0200
52099
+ Connecting to database specified by database.yml
52100
+ Processing by IndexController#index as HTML
52101
+ Rendered index/index.html.erb within layouts/mxit (1.8ms)
52102
+ Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
52103
+
52104
+
52105
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:13 +0200
52106
+ Served asset /mxit_rails/included.css - 304 Not Modified (5ms)
52107
+
52108
+
52109
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:34:14 +0200
52110
+ Processing by FormController#index as HTML
52111
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
52112
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
52113
+
52114
+
52115
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:14 +0200
52116
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52117
+
52118
+
52119
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:34:16 +0200
52120
+ Processing by FormController#index as HTML
52121
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
52122
+ Rendered form/index/name.html.erb within layouts/mxit (0.6ms)
52123
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
52124
+
52125
+
52126
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:16 +0200
52127
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52128
+
52129
+
52130
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:34:18 +0200
52131
+ Processing by FormController#index as HTML
52132
+ Parameters: {"name"=>"Joe", "_mxit_rails_submit"=>"Proceed"}
52133
+ Rendered form/index/surname.html.erb within layouts/mxit (0.6ms)
52134
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
52135
+
52136
+
52137
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:18 +0200
52138
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52139
+
52140
+
52141
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:34:20 +0200
52142
+ Processing by FormController#index as HTML
52143
+ Parameters: {"surname"=>"Soap", "_mxit_rails_submit"=>"Proceed"}
52144
+ Rendered form/index/age.html.erb within layouts/mxit (0.5ms)
52145
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
52146
+
52147
+
52148
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:20 +0200
52149
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52150
+
52151
+
52152
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:34:21 +0200
52153
+ Processing by FormController#index as HTML
52154
+ Parameters: {"age"=>"23", "_mxit_rails_submit"=>"Proceed"}
52155
+ Rendered form/index/gender.html.erb within layouts/mxit (0.5ms)
52156
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
52157
+
52158
+
52159
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:21 +0200
52160
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52161
+
52162
+
52163
+ Started GET "/form?_mxit_rails_submit=Proceed&gender=male" for 127.0.0.1 at 2012-09-19 15:34:25 +0200
52164
+ Processing by FormController#index as HTML
52165
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "gender"=>"male"}
52166
+ Rendered form/index/done.html.erb within layouts/mxit (0.7ms)
52167
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
52168
+
52169
+
52170
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:25 +0200
52171
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52172
+
52173
+
52174
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:34:48 +0200
52175
+ Processing by IndexController#index as HTML
52176
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
52177
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
52178
+
52179
+
52180
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:48 +0200
52181
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52182
+
52183
+
52184
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:34:49 +0200
52185
+ Processing by FormController#index as HTML
52186
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
52187
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
52188
+
52189
+
52190
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:49 +0200
52191
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52192
+
52193
+
52194
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:34:51 +0200
52195
+ Processing by FormController#index as HTML
52196
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
52197
+ Rendered form/index/name.html.erb within layouts/mxit (0.6ms)
52198
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
52199
+
52200
+
52201
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:51 +0200
52202
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52203
+
52204
+
52205
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:34:52 +0200
52206
+ Processing by FormController#index as HTML
52207
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
52208
+ Redirected to http://localhost:3000/form
52209
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
52210
+
52211
+
52212
+ Started GET "/form" for 127.0.0.1 at 2012-09-19 15:34:52 +0200
52213
+ Processing by FormController#index as HTML
52214
+ Rendered form/index/age.html.erb within layouts/mxit (0.6ms)
52215
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
52216
+
52217
+
52218
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:52 +0200
52219
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52220
+
52221
+
52222
+ Started POST "/form" for 127.0.0.1 at 2012-09-19 15:34:55 +0200
52223
+ Processing by FormController#index as HTML
52224
+ Parameters: {"age"=>"22", "_mxit_rails_submit"=>"Proceed"}
52225
+ Rendered form/index/gender.html.erb within layouts/mxit (0.5ms)
52226
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
52227
+
52228
+
52229
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:55 +0200
52230
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52231
+
52232
+
52233
+ Started GET "/form?_mxit_rails_submit=Proceed&gender=female" for 127.0.0.1 at 2012-09-19 15:34:57 +0200
52234
+ Processing by FormController#index as HTML
52235
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "gender"=>"female"}
52236
+ Rendered form/index/done.html.erb within layouts/mxit (0.1ms)
52237
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
52238
+
52239
+
52240
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:34:57 +0200
52241
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52242
+
52243
+
52244
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-19 15:35:03 +0200
52245
+ Processing by FormController#index as HTML
52246
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
52247
+ Form Completed!
52248
+ name: Linsen; surname: ; age: 22
52249
+ ******
52250
+
52251
+
52252
+ Redirected to http://localhost:3000/index/success
52253
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
52254
+
52255
+
52256
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-19 15:35:03 +0200
52257
+ Processing by IndexController#success as HTML
52258
+ Rendered index/success.html.erb within layouts/mxit (0.4ms)
52259
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
52260
+
52261
+
52262
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:35:03 +0200
52263
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52264
+
52265
+
52266
+ Started GET "/" for 127.0.0.1 at 2012-09-19 15:35:04 +0200
52267
+ Processing by IndexController#index as HTML
52268
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
52269
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
52270
+
52271
+
52272
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:35:04 +0200
52273
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)