mxit-rails 0.2.9 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,18 +22,6 @@ module MxitRailsHelper
22
22
  str.html_safe
23
23
  end
24
24
 
25
- def mxit_link route, label, variables=nil
26
- unless variables.nil?
27
- var_strings = []
28
- #TODO: Use default Rails get encoding
29
- variables.each do |key, value|
30
- var_strings << "#{key}=#{value}"
31
- end
32
- route += "?#{var_strings.join('&')}"
33
- end
34
- output = "<a href=\"#{route}\">#{label}</a>".html_safe
35
- end
36
-
37
25
  def mxit_style *names
38
26
  content = []
39
27
  names.each do |name|
@@ -42,12 +30,34 @@ module MxitRailsHelper
42
30
  content.join(' ').html_safe
43
31
  end
44
32
 
45
- def mxit_nav_link target, label
46
- "#{ mxit_link target, label }<br /><br />".html_safe
47
- end
48
-
49
33
  def mxit_proceed content
50
34
  "<br /><b style=\"#{ mxit_style :link }\"> &gt; #{content}</b><br />".html_safe
51
35
  end
52
36
 
37
+ def mxit_select_row label, value, selected
38
+ @_mxit_select_index ||= 0
39
+ @_mxit_select_index += 1
40
+
41
+ target = "#{request.path}?"
42
+ if @_mxit.multi_select
43
+ # Which input to modify, and which key to toggle for that input
44
+ target += "_mxit_rails_multi_select=#{@_mxit.select}&_mxit_rails_multi_select_value=#{value}"
45
+ else
46
+ target += "_mxit_rails_submit=true&#{@_mxit.select}=#{value}"
47
+ end
48
+
49
+ content = selected ? "<b>#{label}</b>" : label
50
+
51
+ output = "<a href=\"#{target}\">"
52
+ if @_mxit.numbered_list
53
+ output += "#{@_mxit_select_index}</a>) #{content}"
54
+ else
55
+ output += "#{label}</a>"
56
+ output = (selected ? '+ ' : '- ') + output
57
+ end
58
+ output += "<br />"
59
+
60
+ output.html_safe
61
+ end
62
+
53
63
  end
@@ -33,16 +33,33 @@
33
33
 
34
34
  <br />
35
35
  <% if @_mxit.input %>
36
- <%= mxit_proceed @_mxit.input_label %>
36
+ <% if @_mxit.input_label %>
37
+ <%= mxit_proceed @_mxit.input_label %>
38
+ <% end %>
37
39
 
38
40
  <% elsif @_mxit.select %>
39
- <%= mxit_proceed @_mxit.select_label %>
40
- <% @_mxit.select_options.each do |key, value| %>
41
- - <%= mxit_link(request.path, value, {_mxit_rails_submit: 'Proceed', @_mxit.select => key}) %><br />
41
+ <% if @_mxit.multi_select %>
42
+ <% if @_mxit.select_label %>
43
+ <%= @_mxit.select_label %><br />
44
+ <% end %>
45
+
46
+ <% @_mxit.select_options.each do |value, label| %>
47
+ <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
48
+ <% end %>
49
+
50
+ <%= mxit_proceed link_to(@_mxit.multi_select_next, "#{request.path}?_mxit_rails_submit=true&_mxit_rails_multi_select=#{@_mxit.select}") %>
51
+
52
+ <% else %>
53
+ <% if @_mxit.select_label %>
54
+ <%= mxit_proceed @_mxit.select_label %>
55
+ <% end %>
56
+ <% @_mxit.select_options.each do |value, label| %>
57
+ <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
58
+ <% end %>
42
59
  <% end %>
43
60
 
44
61
  <% elsif @_mxit.proceed %>
45
- <%= mxit_proceed mxit_link(request.path, @_mxit.proceed.to_s.capitalize, {_mxit_rails_submit: 'Proceed'}) %>
62
+ <%= mxit_proceed link_to(@_mxit.proceed.to_s.capitalize, "#{request.path}?_mxit_rails_submit=true}") %>
46
63
  <% end %>
47
64
 
48
65
 
@@ -56,7 +73,7 @@
56
73
  <!-- The form must be outside the table - put it right at the bottom of the page -->
57
74
  <form method="POST" action="<%= request.path %>">
58
75
  <input type="text" name="<%= @_mxit.input %>" />
59
- <input type="submit" name="_mxit_rails_submit" value="Proceed" />
76
+ <input type="submit" name="_mxit_rails_submit" value="true" />
60
77
  </form>
61
78
  <% end %>
62
79
 
data/config/routes.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
- if Rails.env.development?
3
+ unless Rails.env.production?
4
4
  match '/emulator(/*path)', :controller => 'emulator', :action => 'index'
5
5
  end
6
6
 
data/lib/mxit-rails.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require "mxit_rails/railtie"
2
2
  require "mxit_rails/exception"
3
- require "mxit_rails/redirect_exception"
4
3
  require "mxit_rails/descriptor"
5
4
  require "mxit_rails/engine"
6
5
  require "mxit_rails/styles"
@@ -15,6 +14,3 @@ require "mxit_rails/mxit_api/api_client"
15
14
  require "mxit_rails/mxit_api/auth_token"
16
15
  require "mxit_rails/mxit_api/mxit_api_exception"
17
16
  require "mxit_rails/mxit_api/request_exception"
18
-
19
- module MxitRails::MXitApi
20
- end
@@ -1,17 +1,5 @@
1
1
  module MxitRails
2
2
  class Descriptor
3
- def self.descr_accessor variable
4
- # Custom accessor macro that will look in a parent descriptor if a value isn't found (i.e. is nil)
5
- attr_writer variable
6
- define_method "#{variable}" do
7
- value = instance_variable_get("@#{variable}")
8
- if value.nil? && !parent_descriptor.nil?
9
- value = parent_descriptor.send("#{variable}")
10
- end
11
- value
12
- end
13
- end
14
-
15
3
  attr_accessor :parent_descriptor
16
4
 
17
5
  attr_accessor :name
@@ -26,6 +14,10 @@ module MxitRails
26
14
  attr_accessor :select
27
15
  attr_accessor :select_label
28
16
  attr_accessor :select_options
17
+ attr_accessor :selected
18
+ attr_accessor :multi_select
19
+ attr_accessor :multi_select_next
20
+ attr_accessor :numbered_list
29
21
 
30
22
  attr_accessor :has_table
31
23
 
@@ -40,10 +32,6 @@ module MxitRails
40
32
  @steps = []
41
33
  end
42
34
 
43
- def url
44
- MxitRails::Router.url "#{name}/#{action}"
45
- end
46
-
47
35
  def form?
48
36
  type == :form
49
37
  end
@@ -7,6 +7,7 @@ module MxitRails
7
7
  end
8
8
 
9
9
  def mxit_form_session
10
+ session[:_mxit_rails_params] ||= {}
10
11
  session[:_mxit_rails_params]
11
12
  end
12
13
 
@@ -22,22 +23,15 @@ module MxitRails
22
23
 
23
24
  included do
24
25
  if self.ancestors.include? ApplicationController
25
- send :rescue_from, MxitRails::Exception, :with => :handle_mxit_exception
26
26
  send :layout, 'mxit'
27
27
  send :before_filter, :setup
28
28
  end
29
29
  end
30
30
 
31
- def redirect! route
32
- exception = MxitRails::RedirectException.new('', :redirect)
33
- exception.route = route
34
- raise exception
35
- end
36
-
37
31
  def get_mxit_header_field key
38
32
  output = request.headers[key]
39
33
  # Only allow cookie-based headers in development
40
- if Rails.env.development?
34
+ unless Rails.env.production?
41
35
  output ||= cookies[key.downcase]
42
36
  end
43
37
  output
@@ -74,37 +68,75 @@ module MxitRails
74
68
  @_mxit_validation_messages = []
75
69
 
76
70
  clean_session
71
+
72
+ # Tidy multi-select if needed
73
+ if params.include? :_mxit_rails_multi_select
74
+ input = params[:_mxit_rails_multi_select].to_sym
75
+ params.delete :_mxit_rails_multi_select
76
+
77
+ array = mxit_form_session[input] || []
78
+ set = Set.new array
79
+
80
+ if params.include? :_mxit_rails_multi_select_value
81
+ value = params[:_mxit_rails_multi_select_value].to_s
82
+ params.delete :_mxit_rails_multi_select_value
83
+ if set.include? value
84
+ set.delete value
85
+ else
86
+ set.add value
87
+ end
88
+ end
89
+
90
+ params[input] = set.to_a
91
+ mxit_form_session[input] = set.to_a
92
+ end
77
93
  end
78
94
 
79
95
  def clean_session
80
96
  # Drop all mxit items from session if the page doesn't match the current one
81
- if (session[:_mxit_rails_page] != "#{controller_name}##{action_name}") || (params[:_mxit_reset])
97
+ page_identifier = request.path
98
+ if (session[:_mxit_rails_page] != page_identifier) || (params[:_mxit_reset])
82
99
  session.each do |key, value|
83
100
  if key.to_s.match(/_mxit_rails_/)
84
101
  session[key] = nil
85
102
  end
86
103
  end
87
- session[:_mxit_rails_page] = "#{controller_name}##{action_name}"
104
+ session[:_mxit_rails_page] = page_identifier
88
105
  params[:first_visit] = true
89
106
  else
90
107
  params[:first_visit] = false
91
108
  end
92
109
  end
93
110
 
94
- def handle_mxit_exception exception
95
- if exception.kind_of? MxitRails::RedirectException
96
- redirect_to(exception.route) and return
97
- end
98
- end
99
-
100
111
  def input input_name, input_label
101
112
  descriptor.input = input_name
102
113
  descriptor.input_label = input_label
103
114
  end
104
- def select select_name, select_label, select_options
115
+ def select select_name, select_label, select_options, options = {}
116
+ descriptor.select = select_name
117
+ descriptor.select_label = select_label
118
+ descriptor.select_options = select_options
119
+ if options.include? :selected
120
+ raise "Invalid :selected options for select - string expected" unless options[:selected].is_a?(String)
121
+ # Store in an array so that the format is the same as multi_select
122
+ descriptor.selected = [ options[:selected] ]
123
+ end
124
+ descriptor.numbered_list = true if options[:numbered_list]
125
+ descriptor.multi_select = false
126
+ end
127
+ def multi_select select_name, select_label, select_options, options = {}
105
128
  descriptor.select = select_name
106
129
  descriptor.select_label = select_label
107
130
  descriptor.select_options = select_options
131
+ if options.include? :selected
132
+ raise "Invalid :selected options for multi_select - array expected" unless options[:selected].is_a?(Array)
133
+ #TODO: Check the array elements are all strings
134
+ end
135
+ mxit_form_session[select_name] ||= options[:selected] || []
136
+ descriptor.selected = mxit_form_session[select_name]
137
+ descriptor.numbered_list = true if options[:numbered_list]
138
+ descriptor.multi_select = true
139
+ descriptor.multi_select_next = options[:submit_label] || 'Next'
108
140
  end
109
141
  def proceed label
110
142
  descriptor.proceed = label
@@ -154,10 +186,15 @@ module MxitRails
154
186
  def submit &block
155
187
  set_descriptor :default
156
188
 
157
- if descriptor.form? && next_step?
158
- yield
189
+ if descriptor.form?
190
+ # Submit if the submit block is reached and the next step should be shown
191
+ # Also submit if current_step is :_submit -> result of calling submit!
192
+ if next_step? || (self.current_step == :_submit)
193
+ yield
194
+ end
159
195
 
160
- elsif (params.include?(:_mxit_rails_submit) && @_mxit_validated) || (self.current_step == :_submit)
196
+ # For non-form pages, just check that something was submitted and validations passed
197
+ elsif (params.include?(:_mxit_rails_submit) && @_mxit_validated)
161
198
  yield
162
199
  end
163
200
  end
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.2.9"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -25,6 +25,24 @@ class WelcomeController < ApplicationController
25
25
  end
26
26
  end
27
27
 
28
+ def single
29
+ select :select, 'Select an option', {'A' => 'Option A', 'B' => 'Option B', 'C' => 'Option C'}, selected: 'B', numbered_list: true
30
+
31
+ submit do
32
+ logger.info "Value: #{params[:select]}"
33
+ redirect_to '/index/success' and return
34
+ end
35
+ end
36
+
37
+ def multi
38
+ multi_select :select, 'Select all that apply', {'A' => 'Option A', 'B' => 'Option B', 'C' => 'Option C'}, selected: ['B', 'C'], numbered_list: true
39
+
40
+ submit do
41
+ logger.info "Value: #{params[:select]}"
42
+ redirect_to '/index/success' and return
43
+ end
44
+ end
45
+
28
46
  def easter_egg
29
47
  end
30
48
 
@@ -11,6 +11,8 @@ This is the root of the dummy app...<br />
11
11
  <% end %>
12
12
  <br />
13
13
 
14
- <%= mxit_link '/welcome', 'Single-page form' %><br />
15
- <%= mxit_link '/form', 'Multi-step form' %><br />
16
- <%= mxit_link '/index', 'An extra link' %><br />
14
+ <%= link_to 'Single-page form', '/welcome' %><br />
15
+ <%= link_to 'Single select', '/welcome/single' %><br />
16
+ <%= link_to 'Multi select', '/welcome/multi' %><br />
17
+ <%= link_to 'Multi-step form', '/form' %><br />
18
+ <%= link_to 'An extra link', '/index' %><br />
@@ -2,6 +2,6 @@
2
2
  <b>Success!</b>
3
3
 
4
4
  <%= mxit_table_row %>
5
- <%= mxit_nav_link '/', 'Done' %>
5
+ <%= link_to 'Done', '/' %><br /><br />
6
6
 
7
7
  Your information was successfully received.<br />
@@ -0,0 +1,6 @@
1
+ <%= mxit_table_row :title %>
2
+ <b>Multi Select</b>
3
+
4
+ <%= mxit_table_row %>
5
+ <%= link_to 'Back', '/' %>
6
+
@@ -0,0 +1,6 @@
1
+ <%= mxit_table_row :title %>
2
+ <b>Single Select</b>
3
+
4
+ <%= mxit_table_row %>
5
+ <%= link_to 'Back', '/' %>
6
+
@@ -58421,3 +58421,2680 @@ Started GET "/" for 127.0.0.1 at 2012-09-27 14:16:53 +0200
58421
58421
  Processing by IndexController#index as HTML
58422
58422
  Rendered index/index.html.erb within layouts/mxit (0.2ms)
58423
58423
  Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58424
+
58425
+
58426
+ Started GET "/emulator" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58427
+ Connecting to database specified by database.yml
58428
+ Processing by EmulatorController#index as HTML
58429
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (44.3ms)
58430
+ Completed 200 OK in 54ms (Views: 54.1ms | ActiveRecord: 0.0ms)
58431
+
58432
+
58433
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58434
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
58435
+
58436
+
58437
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58438
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
58439
+
58440
+
58441
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58442
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
58443
+
58444
+
58445
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58446
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
58447
+
58448
+
58449
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58450
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (9ms)
58451
+
58452
+
58453
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58454
+ Served asset /mxit_rails/go.png - 304 Not Modified (4ms)
58455
+
58456
+
58457
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58458
+ Served asset /mxit_rails/home.png - 304 Not Modified (3ms)
58459
+
58460
+
58461
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58462
+ Processing by IndexController#index as HTML
58463
+ /
58464
+ Rendered index/index.html.erb within layouts/mxit (0.9ms)
58465
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
58466
+
58467
+
58468
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58469
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (7ms)
58470
+
58471
+
58472
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58473
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (10ms)
58474
+
58475
+
58476
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58477
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
58478
+
58479
+
58480
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:14:09 +0200
58481
+ Served asset /mxit_rails/included.css - 200 OK (3ms)
58482
+
58483
+
58484
+ Started GET "/form" for 127.0.0.1 at 2012-10-04 13:14:18 +0200
58485
+ Processing by FormController#index as HTML
58486
+ /form
58487
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
58488
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
58489
+
58490
+
58491
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-10-04 13:14:34 +0200
58492
+ Processing by FormController#index as HTML
58493
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58494
+ /form
58495
+ Rendered form/index/name.html.erb within layouts/mxit (0.7ms)
58496
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
58497
+
58498
+
58499
+ Started POST "/form" for 127.0.0.1 at 2012-10-04 13:14:44 +0200
58500
+ Processing by FormController#index as HTML
58501
+ Parameters: {"name"=>"Lins", "_mxit_rails_submit"=>"Proceed"}
58502
+ /form
58503
+ Validated!
58504
+ Rendered form/index/surname.html.erb within layouts/mxit (0.5ms)
58505
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
58506
+
58507
+
58508
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-10-04 13:14:47 +0200
58509
+ Processing by FormController#index as HTML
58510
+ Parameters: {"reset"=>"true"}
58511
+ /form
58512
+ Redirected to http://localhost:3000/form?_mxit_reset=true
58513
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58514
+
58515
+
58516
+ Started GET "/form?_mxit_reset=true" for 127.0.0.1 at 2012-10-04 13:14:47 +0200
58517
+ Processing by FormController#index as HTML
58518
+ Parameters: {"_mxit_reset"=>"true"}
58519
+ /form
58520
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58521
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
58522
+
58523
+
58524
+ Started GET "/form?_mxit_reset=true" for 127.0.0.1 at 2012-10-04 13:30:49 +0200
58525
+ Processing by FormController#index as HTML
58526
+ Parameters: {"_mxit_reset"=>"true"}
58527
+ /form
58528
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58529
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
58530
+
58531
+
58532
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:30:49 +0200
58533
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58534
+
58535
+
58536
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:30:51 +0200
58537
+ Processing by IndexController#index as HTML
58538
+ /
58539
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58540
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58541
+
58542
+
58543
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:30:51 +0200
58544
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58545
+
58546
+
58547
+ Started GET "/welcome" for 127.0.0.1 at 2012-10-04 13:30:53 +0200
58548
+ Processing by WelcomeController#index as HTML
58549
+ /welcome
58550
+ Rendered welcome/index.html.erb within layouts/mxit (0.6ms)
58551
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.0ms)
58552
+
58553
+
58554
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:30:53 +0200
58555
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58556
+
58557
+
58558
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:30:56 +0200
58559
+ Processing by IndexController#index as HTML
58560
+ /
58561
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
58562
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58563
+
58564
+
58565
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:30:56 +0200
58566
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58567
+
58568
+
58569
+ Started GET "/form" for 127.0.0.1 at 2012-10-04 13:30:57 +0200
58570
+ Processing by FormController#index as HTML
58571
+ /form
58572
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58573
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
58574
+
58575
+
58576
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:30:57 +0200
58577
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58578
+
58579
+
58580
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-10-04 13:31:00 +0200
58581
+ Processing by FormController#index as HTML
58582
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58583
+ /form
58584
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
58585
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
58586
+
58587
+
58588
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:00 +0200
58589
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58590
+
58591
+
58592
+ Started POST "/form" for 127.0.0.1 at 2012-10-04 13:31:03 +0200
58593
+ Processing by FormController#index as HTML
58594
+ Parameters: {"name"=>"Lins", "_mxit_rails_submit"=>"Proceed"}
58595
+ /form
58596
+ Validated!
58597
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
58598
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
58599
+
58600
+
58601
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:03 +0200
58602
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58603
+
58604
+
58605
+ Started POST "/form" for 127.0.0.1 at 2012-10-04 13:31:07 +0200
58606
+ Processing by FormController#index as HTML
58607
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
58608
+ /form
58609
+ Rendered form/index/age.html.erb within layouts/mxit (0.6ms)
58610
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
58611
+
58612
+
58613
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:07 +0200
58614
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58615
+
58616
+
58617
+ Started POST "/form" for 127.0.0.1 at 2012-10-04 13:31:08 +0200
58618
+ Processing by FormController#index as HTML
58619
+ Parameters: {"age"=>"12", "_mxit_rails_submit"=>"Proceed"}
58620
+ /form
58621
+ Rendered form/index/gender.html.erb within layouts/mxit (0.6ms)
58622
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
58623
+
58624
+
58625
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:08 +0200
58626
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58627
+
58628
+
58629
+ Started GET "/form?_mxit_rails_submit=Proceed&gender=female" for 127.0.0.1 at 2012-10-04 13:31:12 +0200
58630
+ Processing by FormController#index as HTML
58631
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "gender"=>"female"}
58632
+ /form
58633
+ Rendered form/index/done.html.erb within layouts/mxit (0.7ms)
58634
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
58635
+
58636
+
58637
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:12 +0200
58638
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58639
+
58640
+
58641
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-10-04 13:31:17 +0200
58642
+ Processing by FormController#index as HTML
58643
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58644
+ /form
58645
+ Form Completed!
58646
+ name: Lins; surname: Loots; age: 12
58647
+ ******
58648
+
58649
+
58650
+ Redirected to http://localhost:3000/index/success
58651
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58652
+
58653
+
58654
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 13:31:17 +0200
58655
+ Processing by IndexController#success as HTML
58656
+ /index/success
58657
+ Rendered index/success.html.erb within layouts/mxit (0.4ms)
58658
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
58659
+
58660
+
58661
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:17 +0200
58662
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58663
+
58664
+
58665
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:31:18 +0200
58666
+ Processing by IndexController#index as HTML
58667
+ /
58668
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58669
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
58670
+
58671
+
58672
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:31:18 +0200
58673
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58674
+
58675
+
58676
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:33:29 +0200
58677
+ Processing by IndexController#index as HTML
58678
+ /
58679
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58680
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58681
+
58682
+
58683
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:33:29 +0200
58684
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58685
+
58686
+
58687
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:33:55 +0200
58688
+ Processing by IndexController#index as HTML
58689
+ /
58690
+ Rendered index/index.html.erb within layouts/mxit (0.9ms)
58691
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
58692
+
58693
+
58694
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:33:55 +0200
58695
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58696
+
58697
+
58698
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:33:56 +0200
58699
+ Processing by WelcomeController#single as HTML
58700
+ /welcome/single
58701
+ Rendered welcome/single.html.erb within layouts/mxit (0.7ms)
58702
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
58703
+
58704
+
58705
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:33:56 +0200
58706
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58707
+
58708
+
58709
+ Started GET "/welcome/single?_mxit_rails_submit=Proceed&select=A" for 127.0.0.1 at 2012-10-04 13:33:59 +0200
58710
+ Processing by WelcomeController#single as HTML
58711
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "select"=>"A"}
58712
+ /welcome/single
58713
+ Value: A
58714
+ Redirected to http://localhost:3000/index/success
58715
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
58716
+
58717
+
58718
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 13:33:59 +0200
58719
+ Processing by IndexController#success as HTML
58720
+ /index/success
58721
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
58722
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58723
+
58724
+
58725
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:33:59 +0200
58726
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58727
+
58728
+
58729
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:34:26 +0200
58730
+ Connecting to database specified by database.yml
58731
+ Processing by IndexController#index as HTML
58732
+ Rendered index/index.html.erb within layouts/mxit (2.5ms)
58733
+ Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms)
58734
+
58735
+
58736
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:27 +0200
58737
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
58738
+
58739
+
58740
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:34:28 +0200
58741
+ Processing by WelcomeController#multi as HTML
58742
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
58743
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
58744
+
58745
+
58746
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:28 +0200
58747
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58748
+
58749
+
58750
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:34:29 +0200
58751
+ Processing by IndexController#index as HTML
58752
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58753
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
58754
+
58755
+
58756
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:29 +0200
58757
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58758
+
58759
+
58760
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:34:30 +0200
58761
+ Processing by WelcomeController#single as HTML
58762
+ Rendered welcome/single.html.erb within layouts/mxit (0.5ms)
58763
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
58764
+
58765
+
58766
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:30 +0200
58767
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58768
+
58769
+
58770
+ Started GET "/welcome/single?_mxit_rails_submit=Proceed&select=B" for 127.0.0.1 at 2012-10-04 13:34:31 +0200
58771
+ Processing by WelcomeController#single as HTML
58772
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "select"=>"B"}
58773
+ Value: B
58774
+ Redirected to http://localhost:3000/index/success
58775
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58776
+
58777
+
58778
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 13:34:31 +0200
58779
+ Processing by IndexController#success as HTML
58780
+ Rendered index/success.html.erb within layouts/mxit (0.4ms)
58781
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
58782
+
58783
+
58784
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:31 +0200
58785
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58786
+
58787
+
58788
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:34:32 +0200
58789
+ Processing by IndexController#index as HTML
58790
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
58791
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
58792
+
58793
+
58794
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:34:32 +0200
58795
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58796
+
58797
+
58798
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:35:13 +0200
58799
+ Processing by WelcomeController#single as HTML
58800
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
58801
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
58802
+
58803
+
58804
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:35:13 +0200
58805
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58806
+
58807
+
58808
+ Started GET "/welcome/single?_mxit_rails_submit=Proceed&select=B" for 127.0.0.1 at 2012-10-04 13:35:15 +0200
58809
+ Processing by WelcomeController#single as HTML
58810
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "select"=>"B"}
58811
+ Value: B
58812
+ Redirected to http://localhost:3000/index/success
58813
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
58814
+
58815
+
58816
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 13:35:15 +0200
58817
+ Processing by IndexController#success as HTML
58818
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
58819
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
58820
+
58821
+
58822
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:35:15 +0200
58823
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58824
+
58825
+
58826
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:35:16 +0200
58827
+ Processing by IndexController#index as HTML
58828
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58829
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
58830
+
58831
+
58832
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:35:16 +0200
58833
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58834
+
58835
+
58836
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:35:58 +0200
58837
+ Processing by WelcomeController#single as HTML
58838
+ Rendered welcome/single.html.erb within layouts/mxit (0.4ms)
58839
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
58840
+
58841
+
58842
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:35:58 +0200
58843
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58844
+
58845
+
58846
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:36:07 +0200
58847
+ Processing by IndexController#index as HTML
58848
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58849
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
58850
+
58851
+
58852
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:36:07 +0200
58853
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58854
+
58855
+
58856
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:36:08 +0200
58857
+ Processing by WelcomeController#multi as HTML
58858
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
58859
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
58860
+
58861
+
58862
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:36:08 +0200
58863
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58864
+
58865
+
58866
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:39:35 +0200
58867
+ Processing by IndexController#index as HTML
58868
+ Rendered index/index.html.erb within layouts/mxit (0.4ms)
58869
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
58870
+
58871
+
58872
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:39:35 +0200
58873
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58874
+
58875
+
58876
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:39:37 +0200
58877
+ Processing by WelcomeController#multi as HTML
58878
+ Completed 500 Internal Server Error in 2ms
58879
+
58880
+ NoMethodError (undefined method `multi_select' for #<WelcomeController:0x007fbf6dbb7ec8>):
58881
+ app/controllers/welcome_controller.rb:38:in `multi'
58882
+
58883
+
58884
+ 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)
58885
+ 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)
58886
+ 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.4ms)
58887
+
58888
+
58889
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-10-04 13:39:37 +0200
58890
+ Served asset /mxit_rails/in.png - 304 Not Modified (4ms)
58891
+
58892
+
58893
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:40:58 +0200
58894
+ Connecting to database specified by database.yml
58895
+ Processing by WelcomeController#multi as HTML
58896
+ Rendered welcome/multi.html.erb within layouts/mxit (2.7ms)
58897
+ Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms)
58898
+
58899
+
58900
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:40:58 +0200
58901
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
58902
+
58903
+
58904
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:41:46 +0200
58905
+ Processing by WelcomeController#multi as HTML
58906
+ Rendered welcome/multi.html.erb within layouts/mxit (0.4ms)
58907
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
58908
+
58909
+
58910
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:41:46 +0200
58911
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58912
+
58913
+
58914
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:42:34 +0200
58915
+ Processing by WelcomeController#multi as HTML
58916
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
58917
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
58918
+
58919
+
58920
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:42:34 +0200
58921
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58922
+
58923
+
58924
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:42:42 +0200
58925
+ Processing by WelcomeController#multi as HTML
58926
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
58927
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
58928
+
58929
+
58930
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:42:42 +0200
58931
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58932
+
58933
+
58934
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:42:49 +0200
58935
+ Processing by WelcomeController#multi as HTML
58936
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
58937
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
58938
+
58939
+
58940
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:42:49 +0200
58941
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58942
+
58943
+
58944
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:46:18 +0200
58945
+ Connecting to database specified by database.yml
58946
+ Processing by WelcomeController#multi as HTML
58947
+ Rendered welcome/multi.html.erb within layouts/mxit (1.6ms)
58948
+ Completed 200 OK in 34ms (Views: 33.9ms | ActiveRecord: 0.0ms)
58949
+
58950
+
58951
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:19 +0200
58952
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
58953
+
58954
+
58955
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:46:21 +0200
58956
+ Processing by IndexController#index as HTML
58957
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
58958
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
58959
+
58960
+
58961
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:21 +0200
58962
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58963
+
58964
+
58965
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:46:22 +0200
58966
+ Processing by WelcomeController#single as HTML
58967
+ Rendered welcome/single.html.erb within layouts/mxit (0.6ms)
58968
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
58969
+
58970
+
58971
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:22 +0200
58972
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58973
+
58974
+
58975
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:46:30 +0200
58976
+ Processing by WelcomeController#single as HTML
58977
+ Completed 500 Internal Server Error in 1ms
58978
+
58979
+ RuntimeError (Invalid :selected options for select - string expected):
58980
+ app/controllers/welcome_controller.rb:29:in `single'
58981
+
58982
+
58983
+ 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)
58984
+ 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)
58985
+ 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.1ms)
58986
+
58987
+
58988
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:46:37 +0200
58989
+ Processing by WelcomeController#single as HTML
58990
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
58991
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
58992
+
58993
+
58994
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:37 +0200
58995
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58996
+
58997
+
58998
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:46:43 +0200
58999
+ Processing by IndexController#index as HTML
59000
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59001
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
59002
+
59003
+
59004
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:43 +0200
59005
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59006
+
59007
+
59008
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:46:44 +0200
59009
+ Processing by WelcomeController#multi as HTML
59010
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59011
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
59012
+
59013
+
59014
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:46:44 +0200
59015
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59016
+
59017
+
59018
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:47:32 +0200
59019
+ Processing by WelcomeController#multi as HTML
59020
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59021
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
59022
+
59023
+
59024
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:47:32 +0200
59025
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59026
+
59027
+
59028
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:48:28 +0200
59029
+ Processing by WelcomeController#multi as HTML
59030
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59031
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
59032
+
59033
+
59034
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:48:28 +0200
59035
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59036
+
59037
+
59038
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:48:44 +0200
59039
+ Processing by WelcomeController#multi as HTML
59040
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59041
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
59042
+
59043
+
59044
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:48:44 +0200
59045
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59046
+
59047
+
59048
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:48:51 +0200
59049
+ Processing by IndexController#index as HTML
59050
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59051
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
59052
+
59053
+
59054
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:48:51 +0200
59055
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59056
+
59057
+
59058
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 13:48:53 +0200
59059
+ Processing by WelcomeController#single as HTML
59060
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59061
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
59062
+
59063
+
59064
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:48:53 +0200
59065
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59066
+
59067
+
59068
+ Started GET "/" for 127.0.0.1 at 2012-10-04 13:48:57 +0200
59069
+ Processing by IndexController#index as HTML
59070
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59071
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
59072
+
59073
+
59074
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:48:57 +0200
59075
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59076
+
59077
+
59078
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 13:49:02 +0200
59079
+ Processing by WelcomeController#multi as HTML
59080
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59081
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
59082
+
59083
+
59084
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 13:49:02 +0200
59085
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59086
+
59087
+
59088
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:14:17 +0200
59089
+ Processing by IndexController#index as HTML
59090
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59091
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
59092
+
59093
+
59094
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:14:17 +0200
59095
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59096
+
59097
+
59098
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:14:18 +0200
59099
+ Processing by WelcomeController#single as HTML
59100
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59101
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
59102
+
59103
+
59104
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:14:18 +0200
59105
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59106
+
59107
+
59108
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:16:48 +0200
59109
+ Processing by WelcomeController#single as HTML
59110
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59111
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
59112
+
59113
+
59114
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:16:48 +0200
59115
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59116
+
59117
+
59118
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:17:03 +0200
59119
+ Processing by WelcomeController#single as HTML
59120
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59121
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
59122
+
59123
+
59124
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:17:03 +0200
59125
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59126
+
59127
+
59128
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:17:15 +0200
59129
+ Processing by WelcomeController#single as HTML
59130
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59131
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
59132
+
59133
+
59134
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:17:15 +0200
59135
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59136
+
59137
+
59138
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:17:20 +0200
59139
+ Processing by WelcomeController#single as HTML
59140
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59141
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
59142
+
59143
+
59144
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:17:20 +0200
59145
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59146
+
59147
+
59148
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:18:46 +0200
59149
+ Processing by WelcomeController#single as HTML
59150
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59151
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
59152
+
59153
+
59154
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:18:46 +0200
59155
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59156
+
59157
+
59158
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:21:34 +0200
59159
+ Processing by WelcomeController#single as HTML
59160
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59161
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
59162
+
59163
+
59164
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:21:34 +0200
59165
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59166
+
59167
+
59168
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:21:35 +0200
59169
+ Processing by IndexController#index as HTML
59170
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59171
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
59172
+
59173
+
59174
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:21:35 +0200
59175
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59176
+
59177
+
59178
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:21:37 +0200
59179
+ Processing by WelcomeController#multi as HTML
59180
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59181
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
59182
+
59183
+
59184
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:21:37 +0200
59185
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59186
+
59187
+
59188
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:21:38 +0200
59189
+ Processing by IndexController#index as HTML
59190
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59191
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
59192
+
59193
+
59194
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:21:38 +0200
59195
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59196
+
59197
+
59198
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:22:17 +0200
59199
+ Processing by IndexController#index as HTML
59200
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59201
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59202
+
59203
+
59204
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:22:17 +0200
59205
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59206
+
59207
+
59208
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:22:20 +0200
59209
+ Processing by WelcomeController#single as HTML
59210
+ Rendered welcome/single.html.erb within layouts/mxit (0.2ms)
59211
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
59212
+
59213
+
59214
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:22:20 +0200
59215
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59216
+
59217
+
59218
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:45:51 +0200
59219
+ Processing by IndexController#index as HTML
59220
+ Rendered index/index.html.erb within layouts/mxit (11.8ms)
59221
+ Completed 500 Internal Server Error in 14ms
59222
+
59223
+ ActionView::Template::Error (undefined method `mxit_link' for #<#<Class:0x007fc2fc32f5c0>:0x007fc2fae09808>):
59224
+ 11: <% end %>
59225
+ 12: <br />
59226
+ 13:
59227
+ 14: <%= mxit_link '/welcome', 'Single-page form' %><br />
59228
+ 15: <%= mxit_link '/welcome/single', 'Single select' %><br />
59229
+ 16: <%= mxit_link '/welcome/multi', 'Multi select' %><br />
59230
+ 17: <%= mxit_link '/form', 'Multi-step form' %><br />
59231
+ app/views/index/index.html.erb:14:in `_app_views_index_index_html_erb__2806981718803784741_70237696402320'
59232
+
59233
+
59234
+ 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.6ms)
59235
+ 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)
59236
+ 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/template_error.erb within rescues/layout (8.2ms)
59237
+
59238
+
59239
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:46:24 +0200
59240
+ Processing by IndexController#index as HTML
59241
+ Rendered index/index.html.erb within layouts/mxit (0.9ms)
59242
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
59243
+
59244
+
59245
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:46:24 +0200
59246
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59247
+
59248
+
59249
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:46:57 +0200
59250
+ Processing by IndexController#index as HTML
59251
+ Rendered index/index.html.erb within layouts/mxit (0.9ms)
59252
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
59253
+
59254
+
59255
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:46:57 +0200
59256
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59257
+
59258
+
59259
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:47:00 +0200
59260
+ Processing by WelcomeController#single as HTML
59261
+ Rendered welcome/single.html.erb within layouts/mxit (5.4ms)
59262
+ Completed 500 Internal Server Error in 8ms
59263
+
59264
+ ActionView::Template::Error (undefined method `mxit_nav_link' for #<#<Class:0x007fc2fb274ac8>:0x007fc2fb076870>):
59265
+ 2: <b>Single Select</b>
59266
+ 3:
59267
+ 4: <%= mxit_table_row %>
59268
+ 5: <%= mxit_nav_link '/', 'Back' %>
59269
+ app/views/welcome/single.html.erb:5:in `_app_views_welcome_single_html_erb___1820452879728914977_70237730418560'
59270
+
59271
+
59272
+ 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)
59273
+ 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)
59274
+ 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/template_error.erb within rescues/layout (7.5ms)
59275
+
59276
+
59277
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:47:19 +0200
59278
+ Processing by IndexController#index as HTML
59279
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59280
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59281
+
59282
+
59283
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:47:19 +0200
59284
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59285
+
59286
+
59287
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:47:21 +0200
59288
+ Processing by WelcomeController#single as HTML
59289
+ Rendered welcome/single.html.erb within layouts/mxit (0.5ms)
59290
+ Completed 500 Internal Server Error in 5ms
59291
+
59292
+ ActionView::Template::Error (undefined method `numbered_list' for #<MxitRails::Descriptor:0x007fc2fdec45b0>):
59293
+ 48:
59294
+ 49: <% else %>
59295
+ 50: <%= mxit_proceed @_mxit.select_label %>
59296
+ 51: <%= '<br />' if @_mxit.numbered_list %>
59297
+ 52: <% @_mxit.select_options.each do |value, label| %>
59298
+ 53: <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
59299
+ 54: <% end %>
59300
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:51:in `___sers_linsenloots__ev_payments_mxit_rails_app_views_layouts_mxit_html_erb__540330154353222320_70237717160580'
59301
+ actionpack (3.2.8) lib/action_view/template.rb:145:in `block in render'
59302
+ activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
59303
+ actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
59304
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
59305
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
59306
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
59307
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
59308
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
59309
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
59310
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
59311
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
59312
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
59313
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
59314
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
59315
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
59316
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
59317
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
59318
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
59319
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
59320
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
59321
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
59322
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
59323
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
59324
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
59325
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
59326
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
59327
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
59328
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
59329
+ activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__4184868978348711688__process_action__1371197441625798300__callbacks'
59330
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59331
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
59332
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59333
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
59334
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
59335
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
59336
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
59337
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
59338
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
59339
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
59340
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
59341
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
59342
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
59343
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
59344
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
59345
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
59346
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
59347
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
59348
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
59349
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
59350
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
59351
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
59352
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
59353
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
59354
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
59355
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
59356
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
59357
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
59358
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
59359
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
59360
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
59361
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
59362
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
59363
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
59364
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
59365
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
59366
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3350423599005020190__call__2998562568599986209__callbacks'
59367
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59368
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
59369
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59370
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
59371
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
59372
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
59373
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
59374
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
59375
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
59376
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
59377
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
59378
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
59379
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
59380
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
59381
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
59382
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
59383
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
59384
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
59385
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
59386
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
59387
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
59388
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
59389
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
59390
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
59391
+
59392
+
59393
+ 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)
59394
+ 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)
59395
+ 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/template_error.erb within rescues/layout (6.7ms)
59396
+
59397
+
59398
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:48:30 +0200
59399
+ Connecting to database specified by database.yml
59400
+ Processing by IndexController#index as HTML
59401
+ Rendered index/index.html.erb within layouts/mxit (2.3ms)
59402
+ Completed 200 OK in 35ms (Views: 34.7ms | ActiveRecord: 0.0ms)
59403
+
59404
+
59405
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:48:31 +0200
59406
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
59407
+
59408
+
59409
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:48:32 +0200
59410
+ Processing by WelcomeController#single as HTML
59411
+ Rendered welcome/single.html.erb within layouts/mxit (0.5ms)
59412
+ Completed 500 Internal Server Error in 18ms
59413
+
59414
+ ActionView::Template::Error (undefined local variable or method `_mxit_select_index' for #<#<Class:0x007f93ade8f920>:0x007f93b04d5940>):
59415
+ 50: <%= mxit_proceed @_mxit.select_label %>
59416
+ 51: <%= '<br />' if @_mxit.numbered_list %>
59417
+ 52: <% @_mxit.select_options.each do |value, label| %>
59418
+ 53: <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
59419
+ 54: <% end %>
59420
+ 55: <% end %>
59421
+ 56:
59422
+ /Users/linsenloots/Dev/payments/mxit-rails/app/helpers/mxit_rails_helper.rb:51:in `mxit_select_row'
59423
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:53:in `block in ___sers_linsenloots__ev_payments_mxit_rails_app_views_layouts_mxit_html_erb___4120092257097151297_70136112591780'
59424
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:52:in `each'
59425
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:52:in `___sers_linsenloots__ev_payments_mxit_rails_app_views_layouts_mxit_html_erb___4120092257097151297_70136112591780'
59426
+ actionpack (3.2.8) lib/action_view/template.rb:145:in `block in render'
59427
+ activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
59428
+ actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
59429
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
59430
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
59431
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
59432
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
59433
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
59434
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
59435
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
59436
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
59437
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
59438
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
59439
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
59440
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
59441
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
59442
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
59443
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
59444
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
59445
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
59446
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
59447
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
59448
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
59449
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
59450
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
59451
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
59452
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
59453
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
59454
+ activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__2617456264409826450__process_action__750004257171730227__callbacks'
59455
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59456
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
59457
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59458
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
59459
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
59460
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
59461
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
59462
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
59463
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
59464
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
59465
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
59466
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
59467
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
59468
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
59469
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
59470
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
59471
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
59472
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
59473
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
59474
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
59475
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
59476
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
59477
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
59478
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
59479
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
59480
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
59481
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
59482
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
59483
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
59484
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
59485
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
59486
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
59487
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
59488
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
59489
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
59490
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
59491
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2089047619096620641__call__2036217430064376335__callbacks'
59492
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59493
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
59494
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59495
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
59496
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
59497
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
59498
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
59499
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
59500
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
59501
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
59502
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
59503
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
59504
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
59505
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
59506
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
59507
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
59508
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
59509
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
59510
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
59511
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
59512
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
59513
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
59514
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
59515
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
59516
+
59517
+
59518
+ 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)
59519
+ 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)
59520
+ 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/template_error.erb within rescues/layout (7.5ms)
59521
+
59522
+
59523
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:48:52 +0200
59524
+ Processing by WelcomeController#single as HTML
59525
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59526
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59527
+
59528
+
59529
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:48:52 +0200
59530
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59531
+
59532
+
59533
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:49:06 +0200
59534
+ Processing by WelcomeController#single as HTML
59535
+ Rendered welcome/single.html.erb within layouts/mxit (0.2ms)
59536
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
59537
+
59538
+
59539
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:49:06 +0200
59540
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59541
+
59542
+
59543
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:49:07 +0200
59544
+ Processing by WelcomeController#single as HTML
59545
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59546
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
59547
+
59548
+
59549
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:49:07 +0200
59550
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59551
+
59552
+
59553
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:49:23 +0200
59554
+ Processing by WelcomeController#single as HTML
59555
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59556
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
59557
+
59558
+
59559
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:49:23 +0200
59560
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59561
+
59562
+
59563
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:49:43 +0200
59564
+ Processing by WelcomeController#single as HTML
59565
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59566
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
59567
+
59568
+
59569
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:49:43 +0200
59570
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59571
+
59572
+
59573
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:49:55 +0200
59574
+ Processing by WelcomeController#single as HTML
59575
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59576
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
59577
+
59578
+
59579
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:49:55 +0200
59580
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59581
+
59582
+
59583
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:50:07 +0200
59584
+ Processing by IndexController#index as HTML
59585
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59586
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59587
+
59588
+
59589
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:50:07 +0200
59590
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59591
+
59592
+
59593
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:50:08 +0200
59594
+ Processing by WelcomeController#multi as HTML
59595
+ Rendered welcome/multi.html.erb within layouts/mxit (8.2ms)
59596
+ Completed 500 Internal Server Error in 11ms
59597
+
59598
+ ActionView::Template::Error (undefined method `mxit_nav_link' for #<#<Class:0x007f93af0c2ae8>:0x007f93ac6244f8>):
59599
+ 2: <b>Multi Select</b>
59600
+ 3:
59601
+ 4: <%= mxit_table_row %>
59602
+ 5: <%= mxit_nav_link '/', 'Back' %>
59603
+ app/views/welcome/multi.html.erb:5:in `_app_views_welcome_multi_html_erb__923768613742945342_70136127312100'
59604
+
59605
+
59606
+ 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 (2.1ms)
59607
+ 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)
59608
+ 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/template_error.erb within rescues/layout (8.6ms)
59609
+
59610
+
59611
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:50:33 +0200
59612
+ Processing by WelcomeController#multi as HTML
59613
+ Rendered welcome/multi.html.erb within layouts/mxit (0.4ms)
59614
+ Completed 500 Internal Server Error in 15ms
59615
+
59616
+ ActionView::Template::Error (undefined method `mxit_link' for #<#<Class:0x007f93af1aa9b0>:0x007f93acb82c10>):
59617
+ 44: <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
59618
+ 45: <% end %>
59619
+ 46:
59620
+ 47: <%= mxit_proceed mxit_link(request.path, 'Proceed', {_mxit_rails_submit: true}) %>
59621
+ 48:
59622
+ 49: <% else %>
59623
+ 50: <%= mxit_proceed @_mxit.select_label %>
59624
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:47:in `___sers_linsenloots__ev_payments_mxit_rails_app_views_layouts_mxit_html_erb___4120092257097151297_70136125881240'
59625
+ actionpack (3.2.8) lib/action_view/template.rb:145:in `block in render'
59626
+ activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
59627
+ actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
59628
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
59629
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
59630
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
59631
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
59632
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
59633
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
59634
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
59635
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
59636
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
59637
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
59638
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
59639
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
59640
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
59641
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
59642
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
59643
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
59644
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
59645
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
59646
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
59647
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
59648
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
59649
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
59650
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
59651
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
59652
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
59653
+ activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__2617456264409826450__process_action__2541744362395164343__callbacks'
59654
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59655
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
59656
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59657
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
59658
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
59659
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
59660
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
59661
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
59662
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
59663
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
59664
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
59665
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
59666
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
59667
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
59668
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
59669
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
59670
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
59671
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
59672
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
59673
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
59674
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
59675
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
59676
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
59677
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
59678
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
59679
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
59680
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
59681
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
59682
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
59683
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
59684
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
59685
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
59686
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
59687
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
59688
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
59689
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
59690
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2089047619096620641__call__2036217430064376335__callbacks'
59691
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
59692
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
59693
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
59694
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
59695
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
59696
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
59697
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
59698
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
59699
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
59700
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
59701
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
59702
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
59703
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
59704
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
59705
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
59706
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
59707
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
59708
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
59709
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
59710
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
59711
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
59712
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
59713
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
59714
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
59715
+
59716
+
59717
+ 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)
59718
+ 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)
59719
+ 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/template_error.erb within rescues/layout (7.0ms)
59720
+
59721
+
59722
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:51:31 +0200
59723
+ Processing by WelcomeController#multi as HTML
59724
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59725
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
59726
+
59727
+
59728
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:51:31 +0200
59729
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59730
+
59731
+
59732
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:51:43 +0200
59733
+ Processing by WelcomeController#multi as HTML
59734
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59735
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
59736
+
59737
+
59738
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:51:43 +0200
59739
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59740
+
59741
+
59742
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:52:20 +0200
59743
+ Processing by WelcomeController#multi as HTML
59744
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59745
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
59746
+
59747
+
59748
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:52:20 +0200
59749
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59750
+
59751
+
59752
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:53:45 +0200
59753
+ Processing by WelcomeController#multi as HTML
59754
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59755
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
59756
+
59757
+
59758
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:53:45 +0200
59759
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59760
+
59761
+
59762
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:53:58 +0200
59763
+ Processing by IndexController#index as HTML
59764
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59765
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
59766
+
59767
+
59768
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:53:58 +0200
59769
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59770
+
59771
+
59772
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:54:00 +0200
59773
+ Processing by WelcomeController#single as HTML
59774
+ Rendered welcome/single.html.erb within layouts/mxit (0.2ms)
59775
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
59776
+
59777
+
59778
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:00 +0200
59779
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59780
+
59781
+
59782
+ Started GET "/welcome/single?_mxit_rails_submit=true&select=C" for 127.0.0.1 at 2012-10-04 14:54:04 +0200
59783
+ Processing by WelcomeController#single as HTML
59784
+ Parameters: {"_mxit_rails_submit"=>"true", "select"=>"C"}
59785
+ Value: C
59786
+ Redirected to http://localhost:3000/index/success
59787
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
59788
+
59789
+
59790
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 14:54:04 +0200
59791
+ Processing by IndexController#success as HTML
59792
+ Rendered index/success.html.erb within layouts/mxit (6.0ms)
59793
+ Completed 500 Internal Server Error in 8ms
59794
+
59795
+ ActionView::Template::Error (undefined method `mxit_nav_link' for #<#<Class:0x007f93ac8d6f98>:0x007f93ade39598>):
59796
+ 2: <b>Success!</b>
59797
+ 3:
59798
+ 4: <%= mxit_table_row %>
59799
+ 5: <%= mxit_nav_link '/', 'Done' %>
59800
+ 6:
59801
+ 7: Your information was successfully received.<br />
59802
+ app/views/index/success.html.erb:5:in `_app_views_index_success_html_erb__710995948937614733_70136116913160'
59803
+
59804
+
59805
+ 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)
59806
+ 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)
59807
+ 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/template_error.erb within rescues/layout (7.1ms)
59808
+
59809
+
59810
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 14:54:19 +0200
59811
+ Processing by IndexController#success as HTML
59812
+ Rendered index/success.html.erb within layouts/mxit (0.5ms)
59813
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
59814
+
59815
+
59816
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:19 +0200
59817
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59818
+
59819
+
59820
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 14:54:32 +0200
59821
+ Processing by IndexController#success as HTML
59822
+ Rendered index/success.html.erb within layouts/mxit (0.5ms)
59823
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
59824
+
59825
+
59826
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:32 +0200
59827
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59828
+
59829
+
59830
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:54:44 +0200
59831
+ Processing by IndexController#index as HTML
59832
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59833
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
59834
+
59835
+
59836
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:44 +0200
59837
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59838
+
59839
+
59840
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:54:45 +0200
59841
+ Processing by WelcomeController#single as HTML
59842
+ Rendered welcome/single.html.erb within layouts/mxit (0.5ms)
59843
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
59844
+
59845
+
59846
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:45 +0200
59847
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59848
+
59849
+
59850
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:54:58 +0200
59851
+ Processing by WelcomeController#single as HTML
59852
+ Rendered welcome/single.html.erb within layouts/mxit (0.5ms)
59853
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
59854
+
59855
+
59856
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:54:58 +0200
59857
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59858
+
59859
+
59860
+ Started GET "/welcome/single?_mxit_rails_submit=true&select=A" for 127.0.0.1 at 2012-10-04 14:55:05 +0200
59861
+ Processing by WelcomeController#single as HTML
59862
+ Parameters: {"_mxit_rails_submit"=>"true", "select"=>"A"}
59863
+ Value: A
59864
+ Redirected to http://localhost:3000/index/success
59865
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
59866
+
59867
+
59868
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 14:55:05 +0200
59869
+ Processing by IndexController#success as HTML
59870
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
59871
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
59872
+
59873
+
59874
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:55:05 +0200
59875
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59876
+
59877
+
59878
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:55:13 +0200
59879
+ Processing by IndexController#index as HTML
59880
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59881
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
59882
+
59883
+
59884
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:55:13 +0200
59885
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59886
+
59887
+
59888
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:55:19 +0200
59889
+ Processing by WelcomeController#single as HTML
59890
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59891
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
59892
+
59893
+
59894
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:55:19 +0200
59895
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59896
+
59897
+
59898
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:56:21 +0200
59899
+ Processing by WelcomeController#single as HTML
59900
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59901
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59902
+
59903
+
59904
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:21 +0200
59905
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59906
+
59907
+
59908
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:56:23 +0200
59909
+ Processing by IndexController#index as HTML
59910
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59911
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
59912
+
59913
+
59914
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:23 +0200
59915
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59916
+
59917
+
59918
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:56:25 +0200
59919
+ Processing by WelcomeController#multi as HTML
59920
+ Rendered welcome/multi.html.erb within layouts/mxit (0.7ms)
59921
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
59922
+
59923
+
59924
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:25 +0200
59925
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59926
+
59927
+
59928
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:56:36 +0200
59929
+ Processing by WelcomeController#multi as HTML
59930
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59931
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
59932
+
59933
+
59934
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:36 +0200
59935
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59936
+
59937
+
59938
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:56:41 +0200
59939
+ Processing by IndexController#index as HTML
59940
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59941
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
59942
+
59943
+
59944
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:41 +0200
59945
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59946
+
59947
+
59948
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:56:42 +0200
59949
+ Processing by WelcomeController#single as HTML
59950
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
59951
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
59952
+
59953
+
59954
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:42 +0200
59955
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59956
+
59957
+
59958
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:56:44 +0200
59959
+ Processing by IndexController#index as HTML
59960
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
59961
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59962
+
59963
+
59964
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:45 +0200
59965
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59966
+
59967
+
59968
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:56:46 +0200
59969
+ Processing by WelcomeController#multi as HTML
59970
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59971
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
59972
+
59973
+
59974
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:46 +0200
59975
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59976
+
59977
+
59978
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:56:52 +0200
59979
+ Processing by IndexController#index as HTML
59980
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
59981
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
59982
+
59983
+
59984
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:52 +0200
59985
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59986
+
59987
+
59988
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:56:53 +0200
59989
+ Processing by WelcomeController#multi as HTML
59990
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
59991
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
59992
+
59993
+
59994
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:56:53 +0200
59995
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
59996
+
59997
+
59998
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:57:05 +0200
59999
+ Processing by WelcomeController#multi as HTML
60000
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60001
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
60002
+
60003
+
60004
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:57:05 +0200
60005
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60006
+
60007
+
60008
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:58:02 +0200
60009
+ Processing by WelcomeController#multi as HTML
60010
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60011
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
60012
+
60013
+
60014
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:02 +0200
60015
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60016
+
60017
+
60018
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:58:06 +0200
60019
+ Processing by IndexController#index as HTML
60020
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60021
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
60022
+
60023
+
60024
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:06 +0200
60025
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60026
+
60027
+
60028
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:58:07 +0200
60029
+ Processing by WelcomeController#single as HTML
60030
+ Rendered welcome/single.html.erb within layouts/mxit (0.2ms)
60031
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
60032
+
60033
+
60034
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:07 +0200
60035
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60036
+
60037
+
60038
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:58:18 +0200
60039
+ Processing by IndexController#index as HTML
60040
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60041
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60042
+
60043
+
60044
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:18 +0200
60045
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60046
+
60047
+
60048
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:58:19 +0200
60049
+ Processing by WelcomeController#multi as HTML
60050
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60051
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60052
+
60053
+
60054
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:19 +0200
60055
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60056
+
60057
+
60058
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:58:21 +0200
60059
+ Processing by IndexController#index as HTML
60060
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60061
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
60062
+
60063
+
60064
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:21 +0200
60065
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60066
+
60067
+
60068
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:58:23 +0200
60069
+ Processing by WelcomeController#single as HTML
60070
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60071
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
60072
+
60073
+
60074
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:58:23 +0200
60075
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60076
+
60077
+
60078
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:59:07 +0200
60079
+ Processing by WelcomeController#single as HTML
60080
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60081
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
60082
+
60083
+
60084
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:59:07 +0200
60085
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60086
+
60087
+
60088
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:59:16 +0200
60089
+ Processing by IndexController#index as HTML
60090
+ Rendered index/index.html.erb within layouts/mxit (0.4ms)
60091
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
60092
+
60093
+
60094
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:59:16 +0200
60095
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60096
+
60097
+
60098
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 14:59:17 +0200
60099
+ Processing by WelcomeController#multi as HTML
60100
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60101
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
60102
+
60103
+
60104
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:59:17 +0200
60105
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60106
+
60107
+
60108
+ Started GET "/" for 127.0.0.1 at 2012-10-04 14:59:24 +0200
60109
+ Processing by IndexController#index as HTML
60110
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60111
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
60112
+
60113
+
60114
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:59:24 +0200
60115
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60116
+
60117
+
60118
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 14:59:26 +0200
60119
+ Processing by WelcomeController#single as HTML
60120
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60121
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60122
+
60123
+
60124
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 14:59:26 +0200
60125
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60126
+
60127
+
60128
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 15:02:20 +0200
60129
+ Processing by WelcomeController#single as HTML
60130
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60131
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
60132
+
60133
+
60134
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:02:20 +0200
60135
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60136
+
60137
+
60138
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 15:02:30 +0200
60139
+ Processing by WelcomeController#single as HTML
60140
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60141
+ Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
60142
+
60143
+
60144
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:02:30 +0200
60145
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60146
+
60147
+
60148
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 15:05:17 +0200
60149
+ Processing by WelcomeController#single as HTML
60150
+ Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
60151
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
60152
+
60153
+
60154
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:05:17 +0200
60155
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60156
+
60157
+
60158
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 15:05:37 +0200
60159
+ Processing by WelcomeController#single as HTML
60160
+ Rendered welcome/single.html.erb within layouts/mxit (0.2ms)
60161
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
60162
+
60163
+
60164
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:05:37 +0200
60165
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60166
+
60167
+
60168
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:05:39 +0200
60169
+ Processing by IndexController#index as HTML
60170
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
60171
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60172
+
60173
+
60174
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:05:39 +0200
60175
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60176
+
60177
+
60178
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:05:40 +0200
60179
+ Processing by WelcomeController#multi as HTML
60180
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60181
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60182
+
60183
+
60184
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:05:40 +0200
60185
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60186
+
60187
+
60188
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:05:42 +0200
60189
+ Processing by WelcomeController#multi as HTML
60190
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60191
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60192
+
60193
+
60194
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:05:42 +0200
60195
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60196
+
60197
+
60198
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:05:55 +0200
60199
+ Processing by WelcomeController#multi as HTML
60200
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60201
+ Completed 500 Internal Server Error in 6ms
60202
+
60203
+ ActionView::Template::Error (undefined method `multi_select_next' for #<MxitRails::Descriptor:0x007f93af01cd50>):
60204
+ 47: <%= mxit_select_row label, value, @_mxit.selected.include?(value) %>
60205
+ 48: <% end %>
60206
+ 49:
60207
+ 50: <%= mxit_proceed link_to(@_mxit.multi_select_next, "#{request.path}?_mxit_rails_submit=true}") %>
60208
+ 51:
60209
+ 52: <% else %>
60210
+ 53: <% if @_mxit.select_label %>
60211
+ /Users/linsenloots/Dev/payments/mxit-rails/app/views/layouts/mxit.html.erb:50:in `___sers_linsenloots__ev_payments_mxit_rails_app_views_layouts_mxit_html_erb___4120092257097151297_70136136531740'
60212
+ actionpack (3.2.8) lib/action_view/template.rb:145:in `block in render'
60213
+ activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
60214
+ actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
60215
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
60216
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
60217
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
60218
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
60219
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
60220
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
60221
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
60222
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
60223
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
60224
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
60225
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
60226
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
60227
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
60228
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
60229
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
60230
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
60231
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
60232
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
60233
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
60234
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
60235
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
60236
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
60237
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
60238
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
60239
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
60240
+ activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__2617456264409826450__process_action__2541744362395164343__callbacks'
60241
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
60242
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
60243
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
60244
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
60245
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
60246
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
60247
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
60248
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
60249
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
60250
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
60251
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
60252
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
60253
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
60254
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
60255
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
60256
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
60257
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
60258
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
60259
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
60260
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
60261
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
60262
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
60263
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
60264
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
60265
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
60266
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
60267
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
60268
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
60269
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
60270
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
60271
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
60272
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
60273
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
60274
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
60275
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
60276
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
60277
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2089047619096620641__call__2036217430064376335__callbacks'
60278
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
60279
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
60280
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
60281
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
60282
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
60283
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
60284
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
60285
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
60286
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
60287
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
60288
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
60289
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
60290
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
60291
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
60292
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
60293
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
60294
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
60295
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
60296
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
60297
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
60298
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
60299
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
60300
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
60301
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
60302
+
60303
+
60304
+ 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)
60305
+ 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)
60306
+ 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/template_error.erb within rescues/layout (7.9ms)
60307
+
60308
+
60309
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:06:03 +0200
60310
+ Connecting to database specified by database.yml
60311
+ Processing by WelcomeController#multi as HTML
60312
+ Rendered welcome/multi.html.erb within layouts/mxit (2.6ms)
60313
+ Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
60314
+
60315
+
60316
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:06:03 +0200
60317
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60318
+
60319
+
60320
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:06:19 +0200
60321
+ Processing by WelcomeController#multi as HTML
60322
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60323
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
60324
+
60325
+
60326
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:06:19 +0200
60327
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60328
+
60329
+
60330
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:06:27 +0200
60331
+ Processing by WelcomeController#multi as HTML
60332
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60333
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
60334
+
60335
+
60336
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:06:27 +0200
60337
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60338
+
60339
+
60340
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:14:30 +0200
60341
+ Connecting to database specified by database.yml
60342
+ Processing by IndexController#index as HTML
60343
+ Rendered index/index.html.erb within layouts/mxit (2.4ms)
60344
+ Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.0ms)
60345
+
60346
+
60347
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:14:30 +0200
60348
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60349
+
60350
+
60351
+ Started GET "/welcome/single" for 127.0.0.1 at 2012-10-04 15:14:32 +0200
60352
+ Processing by WelcomeController#single as HTML
60353
+ Rendered welcome/single.html.erb within layouts/mxit (0.4ms)
60354
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
60355
+
60356
+
60357
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:14:32 +0200
60358
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60359
+
60360
+
60361
+ Started GET "/welcome/single?_mxit_rails_submit=true&select=A" for 127.0.0.1 at 2012-10-04 15:14:34 +0200
60362
+ Processing by WelcomeController#single as HTML
60363
+ Parameters: {"_mxit_rails_submit"=>"true", "select"=>"A"}
60364
+ Value: A
60365
+ Redirected to http://localhost:3000/index/success
60366
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
60367
+
60368
+
60369
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 15:14:34 +0200
60370
+ Processing by IndexController#success as HTML
60371
+ Rendered index/success.html.erb within layouts/mxit (0.4ms)
60372
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
60373
+
60374
+
60375
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:14:34 +0200
60376
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60377
+
60378
+
60379
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:14:38 +0200
60380
+ Processing by IndexController#index as HTML
60381
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
60382
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60383
+
60384
+
60385
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:14:38 +0200
60386
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60387
+
60388
+
60389
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:14:39 +0200
60390
+ Processing by WelcomeController#multi as HTML
60391
+ Completed 500 Internal Server Error in 1ms
60392
+
60393
+ NoMethodError (undefined method `[]' for nil:NilClass):
60394
+ app/controllers/welcome_controller.rb:38:in `multi'
60395
+
60396
+
60397
+ 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)
60398
+ 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)
60399
+ 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.6ms)
60400
+
60401
+
60402
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:15:35 +0200
60403
+ Processing by WelcomeController#multi as HTML
60404
+ Completed 500 Internal Server Error in 0ms
60405
+
60406
+ NoMethodError (undefined method `[]' for nil:NilClass):
60407
+ app/controllers/welcome_controller.rb:38:in `multi'
60408
+
60409
+
60410
+ 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)
60411
+ 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)
60412
+ 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.8ms)
60413
+
60414
+
60415
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:15:42 +0200
60416
+ Connecting to database specified by database.yml
60417
+ Processing by IndexController#index as HTML
60418
+ Rendered index/index.html.erb within layouts/mxit (2.2ms)
60419
+ Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.0ms)
60420
+
60421
+
60422
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:15:42 +0200
60423
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60424
+
60425
+
60426
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:15:43 +0200
60427
+ Processing by WelcomeController#multi as HTML
60428
+ Value: nil
60429
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
60430
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
60431
+
60432
+
60433
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:15:43 +0200
60434
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60435
+
60436
+
60437
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:15:46 +0200
60438
+ Processing by WelcomeController#multi as HTML
60439
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60440
+ Completed 500 Internal Server Error in 0ms
60441
+
60442
+ TypeError (can't convert Symbol into Integer):
60443
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:77:in `[]'
60444
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:77:in `setup'
60445
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__3449974621895987449__process_action__4325327107590063051__callbacks'
60446
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
60447
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
60448
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
60449
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
60450
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
60451
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
60452
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
60453
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
60454
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
60455
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
60456
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
60457
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
60458
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
60459
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
60460
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
60461
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
60462
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
60463
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
60464
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
60465
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
60466
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
60467
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
60468
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
60469
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
60470
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
60471
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
60472
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
60473
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
60474
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
60475
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
60476
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
60477
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
60478
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
60479
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
60480
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
60481
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
60482
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3627859587572181359__call__3667870472944325311__callbacks'
60483
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
60484
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
60485
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
60486
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
60487
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
60488
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
60489
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
60490
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
60491
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
60492
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
60493
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
60494
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
60495
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
60496
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
60497
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
60498
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
60499
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
60500
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
60501
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
60502
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
60503
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
60504
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
60505
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
60506
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
60507
+
60508
+
60509
+ 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)
60510
+ 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)
60511
+ 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.8ms)
60512
+
60513
+
60514
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:19:45 +0200
60515
+ Connecting to database specified by database.yml
60516
+ Processing by IndexController#index as HTML
60517
+ Rendered index/index.html.erb within layouts/mxit (2.2ms)
60518
+ Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms)
60519
+
60520
+
60521
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:19:45 +0200
60522
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
60523
+
60524
+
60525
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:19:46 +0200
60526
+ Processing by WelcomeController#multi as HTML
60527
+ Value: nil
60528
+ Rendered welcome/multi.html.erb within layouts/mxit (0.4ms)
60529
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
60530
+
60531
+
60532
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:19:46 +0200
60533
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60534
+
60535
+
60536
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:19:48 +0200
60537
+ Processing by WelcomeController#multi as HTML
60538
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60539
+ Value: []
60540
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60541
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60542
+
60543
+
60544
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:19:48 +0200
60545
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60546
+
60547
+
60548
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:20:25 +0200
60549
+ Processing by WelcomeController#multi as HTML
60550
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60551
+ Value1: []
60552
+ Value2: []
60553
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60554
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
60555
+
60556
+
60557
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:20:25 +0200
60558
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60559
+
60560
+
60561
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:21:24 +0200
60562
+ Connecting to database specified by database.yml
60563
+ Processing by IndexController#index as HTML
60564
+ Rendered index/index.html.erb within layouts/mxit (2.0ms)
60565
+ Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms)
60566
+
60567
+
60568
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:24 +0200
60569
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60570
+
60571
+
60572
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:21:26 +0200
60573
+ Processing by WelcomeController#multi as HTML
60574
+ Value1: nil
60575
+ Value2: nil
60576
+ Rendered welcome/multi.html.erb within layouts/mxit (0.6ms)
60577
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.0ms)
60578
+
60579
+
60580
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:26 +0200
60581
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60582
+
60583
+
60584
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:21:28 +0200
60585
+ Processing by WelcomeController#multi as HTML
60586
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60587
+ Session: {}
60588
+ Value1: [:A]
60589
+ Value2: [:A]
60590
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60591
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
60592
+
60593
+
60594
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:28 +0200
60595
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60596
+
60597
+
60598
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:21:50 +0200
60599
+ Connecting to database specified by database.yml
60600
+ Processing by IndexController#index as HTML
60601
+ Rendered index/index.html.erb within layouts/mxit (2.0ms)
60602
+ Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 0.0ms)
60603
+
60604
+
60605
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:50 +0200
60606
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60607
+
60608
+
60609
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:21:51 +0200
60610
+ Processing by WelcomeController#multi as HTML
60611
+ Value1: nil
60612
+ Value2: nil
60613
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
60614
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
60615
+
60616
+
60617
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:51 +0200
60618
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60619
+
60620
+
60621
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=B" for 127.0.0.1 at 2012-10-04 15:21:53 +0200
60622
+ Processing by WelcomeController#multi as HTML
60623
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"B"}
60624
+ Value1: ["B"]
60625
+ Value2: ["B"]
60626
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60627
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
60628
+
60629
+
60630
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:53 +0200
60631
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60632
+
60633
+
60634
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=C" for 127.0.0.1 at 2012-10-04 15:21:56 +0200
60635
+ Processing by WelcomeController#multi as HTML
60636
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"C"}
60637
+ Value1: ["B", "C"]
60638
+ Value2: ["B", "C"]
60639
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60640
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
60641
+
60642
+
60643
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:56 +0200
60644
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60645
+
60646
+
60647
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=B" for 127.0.0.1 at 2012-10-04 15:21:57 +0200
60648
+ Processing by WelcomeController#multi as HTML
60649
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"B"}
60650
+ Value1: ["C"]
60651
+ Value2: ["C"]
60652
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60653
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
60654
+
60655
+
60656
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:57 +0200
60657
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60658
+
60659
+
60660
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=C" for 127.0.0.1 at 2012-10-04 15:21:59 +0200
60661
+ Processing by WelcomeController#multi as HTML
60662
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"C"}
60663
+ Value1: []
60664
+ Value2: []
60665
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60666
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60667
+
60668
+
60669
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:21:59 +0200
60670
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60671
+
60672
+
60673
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:22:30 +0200
60674
+ Connecting to database specified by database.yml
60675
+ Processing by IndexController#index as HTML
60676
+ Rendered index/index.html.erb within layouts/mxit (2.1ms)
60677
+ Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.0ms)
60678
+
60679
+
60680
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:30 +0200
60681
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
60682
+
60683
+
60684
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:22:31 +0200
60685
+ Processing by WelcomeController#multi as HTML
60686
+ Value1: nil
60687
+ Value2: nil
60688
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
60689
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
60690
+
60691
+
60692
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:31 +0200
60693
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60694
+
60695
+
60696
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:22:33 +0200
60697
+ Processing by WelcomeController#multi as HTML
60698
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60699
+ Value1: ["B", "C", "A"]
60700
+ Value2: ["B", "C", "A"]
60701
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60702
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
60703
+
60704
+
60705
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:33 +0200
60706
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60707
+
60708
+
60709
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=B" for 127.0.0.1 at 2012-10-04 15:22:35 +0200
60710
+ Processing by WelcomeController#multi as HTML
60711
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"B"}
60712
+ Value1: ["C", "A"]
60713
+ Value2: ["C", "A"]
60714
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60715
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
60716
+
60717
+
60718
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:35 +0200
60719
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60720
+
60721
+
60722
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=C" for 127.0.0.1 at 2012-10-04 15:22:36 +0200
60723
+ Processing by WelcomeController#multi as HTML
60724
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"C"}
60725
+ Value1: ["A"]
60726
+ Value2: ["A"]
60727
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60728
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60729
+
60730
+
60731
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:36 +0200
60732
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60733
+
60734
+
60735
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:22:54 +0200
60736
+ Processing by IndexController#index as HTML
60737
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60738
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
60739
+
60740
+
60741
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:54 +0200
60742
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60743
+
60744
+
60745
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:22:55 +0200
60746
+ Processing by WelcomeController#multi as HTML
60747
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60748
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
60749
+
60750
+
60751
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:55 +0200
60752
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60753
+
60754
+
60755
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:22:58 +0200
60756
+ Processing by WelcomeController#multi as HTML
60757
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60758
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60759
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60760
+
60761
+
60762
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:58 +0200
60763
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60764
+
60765
+
60766
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=C" for 127.0.0.1 at 2012-10-04 15:22:59 +0200
60767
+ Processing by WelcomeController#multi as HTML
60768
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"C"}
60769
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60770
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
60771
+
60772
+
60773
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:22:59 +0200
60774
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60775
+
60776
+
60777
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:23:23 +0200
60778
+ Processing by IndexController#index as HTML
60779
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
60780
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
60781
+
60782
+
60783
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:23:23 +0200
60784
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60785
+
60786
+
60787
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:23:25 +0200
60788
+ Processing by WelcomeController#multi as HTML
60789
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60790
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
60791
+
60792
+
60793
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:23:25 +0200
60794
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60795
+
60796
+
60797
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:23:27 +0200
60798
+ Processing by WelcomeController#multi as HTML
60799
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60800
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60801
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
60802
+
60803
+
60804
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:23:27 +0200
60805
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60806
+
60807
+
60808
+ Started GET "/welcome/multi?_mxit_rails_submit=true" for 127.0.0.1 at 2012-10-04 15:23:28 +0200
60809
+ Processing by WelcomeController#multi as HTML
60810
+ Parameters: {"_mxit_rails_submit"=>"true"}
60811
+ Value:
60812
+ Redirected to http://localhost:3000/index/success
60813
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
60814
+
60815
+
60816
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 15:23:28 +0200
60817
+ Processing by IndexController#success as HTML
60818
+ Rendered index/success.html.erb within layouts/mxit (0.6ms)
60819
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
60820
+
60821
+
60822
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:23:28 +0200
60823
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60824
+
60825
+
60826
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:26:04 +0200
60827
+ Processing by IndexController#index as HTML
60828
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
60829
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
60830
+
60831
+
60832
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:04 +0200
60833
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60834
+
60835
+
60836
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:26:11 +0200
60837
+ Connecting to database specified by database.yml
60838
+ Processing by WelcomeController#multi as HTML
60839
+ Rendered welcome/multi.html.erb within layouts/mxit (1.9ms)
60840
+ Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.0ms)
60841
+
60842
+
60843
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:11 +0200
60844
+ Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
60845
+
60846
+
60847
+ Started GET "/welcome/multi?_mxit_rails_submit=true&_mxit_rails_multi_select=select" for 127.0.0.1 at 2012-10-04 15:26:12 +0200
60848
+ Processing by WelcomeController#multi as HTML
60849
+ Parameters: {"_mxit_rails_submit"=>"true", "_mxit_rails_multi_select"=>"select"}
60850
+ Value: ["B", "C"]
60851
+ Redirected to http://localhost:3000/index/success
60852
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
60853
+
60854
+
60855
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 15:26:12 +0200
60856
+ Processing by IndexController#success as HTML
60857
+ Rendered index/success.html.erb within layouts/mxit (0.6ms)
60858
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
60859
+
60860
+
60861
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:12 +0200
60862
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60863
+
60864
+
60865
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:26:17 +0200
60866
+ Processing by IndexController#index as HTML
60867
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
60868
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
60869
+
60870
+
60871
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:17 +0200
60872
+ Served asset /mxit_rails/included.css - 304 Not Modified (1ms)
60873
+
60874
+
60875
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:26:19 +0200
60876
+ Processing by WelcomeController#multi as HTML
60877
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60878
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
60879
+
60880
+
60881
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:19 +0200
60882
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60883
+
60884
+
60885
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:26:20 +0200
60886
+ Processing by WelcomeController#multi as HTML
60887
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60888
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60889
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
60890
+
60891
+
60892
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:20 +0200
60893
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60894
+
60895
+
60896
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=C" for 127.0.0.1 at 2012-10-04 15:26:23 +0200
60897
+ Processing by WelcomeController#multi as HTML
60898
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"C"}
60899
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60900
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
60901
+
60902
+
60903
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:26:23 +0200
60904
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60905
+
60906
+
60907
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=B" for 127.0.0.1 at 2012-10-04 15:27:08 +0200
60908
+ Processing by WelcomeController#multi as HTML
60909
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"B"}
60910
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60911
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60912
+
60913
+
60914
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:08 +0200
60915
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60916
+
60917
+
60918
+ Started GET "/welcome/multi?_mxit_rails_input=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:27:22 +0200
60919
+ Processing by WelcomeController#multi as HTML
60920
+ Parameters: {"_mxit_rails_input"=>"select", "_mxit_rails_toggle"=>"A"}
60921
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60922
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
60923
+
60924
+
60925
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:22 +0200
60926
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60927
+
60928
+
60929
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_toggle=A" for 127.0.0.1 at 2012-10-04 15:27:23 +0200
60930
+ Processing by WelcomeController#multi as HTML
60931
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_toggle"=>"A"}
60932
+ Rendered welcome/multi.html.erb within layouts/mxit (0.2ms)
60933
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
60934
+
60935
+
60936
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:23 +0200
60937
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60938
+
60939
+
60940
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_toggle=B" for 127.0.0.1 at 2012-10-04 15:27:24 +0200
60941
+ Processing by WelcomeController#multi as HTML
60942
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_toggle"=>"B"}
60943
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60944
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
60945
+
60946
+
60947
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:24 +0200
60948
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60949
+
60950
+
60951
+ Started GET "/welcome/multi?_mxit_rails_submit=true&_mxit_rails_multi_select=select" for 127.0.0.1 at 2012-10-04 15:27:25 +0200
60952
+ Processing by WelcomeController#multi as HTML
60953
+ Parameters: {"_mxit_rails_submit"=>"true", "_mxit_rails_multi_select"=>"select"}
60954
+ Value: ["C", "A"]
60955
+ Redirected to http://localhost:3000/index/success
60956
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
60957
+
60958
+
60959
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 15:27:25 +0200
60960
+ Processing by IndexController#success as HTML
60961
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
60962
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60963
+
60964
+
60965
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:25 +0200
60966
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60967
+
60968
+
60969
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:27:32 +0200
60970
+ Processing by IndexController#index as HTML
60971
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
60972
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
60973
+
60974
+
60975
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:27:32 +0200
60976
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60977
+
60978
+
60979
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:28:18 +0200
60980
+ Processing by WelcomeController#multi as HTML
60981
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
60982
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
60983
+
60984
+
60985
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:28:18 +0200
60986
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
60987
+
60988
+
60989
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:34:50 +0200
60990
+ Connecting to database specified by database.yml
60991
+ Processing by IndexController#index as HTML
60992
+ Rendered index/index.html.erb within layouts/mxit (2.5ms)
60993
+ Completed 200 OK in 35ms (Views: 34.5ms | ActiveRecord: 0.0ms)
60994
+
60995
+
60996
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:50 +0200
60997
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
60998
+
60999
+
61000
+ Started GET "/welcome/multi" for 127.0.0.1 at 2012-10-04 15:34:51 +0200
61001
+ Processing by WelcomeController#multi as HTML
61002
+ Rendered welcome/multi.html.erb within layouts/mxit (0.5ms)
61003
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
61004
+
61005
+
61006
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:51 +0200
61007
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61008
+
61009
+
61010
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_multi_select_value=A" for 127.0.0.1 at 2012-10-04 15:34:54 +0200
61011
+ Processing by WelcomeController#multi as HTML
61012
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_multi_select_value"=>"A"}
61013
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
61014
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
61015
+
61016
+
61017
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:54 +0200
61018
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61019
+
61020
+
61021
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_multi_select_value=A" for 127.0.0.1 at 2012-10-04 15:34:55 +0200
61022
+ Processing by WelcomeController#multi as HTML
61023
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_multi_select_value"=>"A"}
61024
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
61025
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
61026
+
61027
+
61028
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:55 +0200
61029
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61030
+
61031
+
61032
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_multi_select_value=B" for 127.0.0.1 at 2012-10-04 15:34:56 +0200
61033
+ Processing by WelcomeController#multi as HTML
61034
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_multi_select_value"=>"B"}
61035
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
61036
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
61037
+
61038
+
61039
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:56 +0200
61040
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61041
+
61042
+
61043
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_multi_select_value=C" for 127.0.0.1 at 2012-10-04 15:34:57 +0200
61044
+ Processing by WelcomeController#multi as HTML
61045
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_multi_select_value"=>"C"}
61046
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
61047
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
61048
+
61049
+
61050
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:57 +0200
61051
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61052
+
61053
+
61054
+ Started GET "/welcome/multi?_mxit_rails_multi_select=select&_mxit_rails_multi_select_value=A" for 127.0.0.1 at 2012-10-04 15:34:58 +0200
61055
+ Processing by WelcomeController#multi as HTML
61056
+ Parameters: {"_mxit_rails_multi_select"=>"select", "_mxit_rails_multi_select_value"=>"A"}
61057
+ Rendered welcome/multi.html.erb within layouts/mxit (0.1ms)
61058
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
61059
+
61060
+
61061
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:58 +0200
61062
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61063
+
61064
+
61065
+ Started GET "/welcome/multi?_mxit_rails_submit=true&_mxit_rails_multi_select=select" for 127.0.0.1 at 2012-10-04 15:34:59 +0200
61066
+ Processing by WelcomeController#multi as HTML
61067
+ Parameters: {"_mxit_rails_submit"=>"true", "_mxit_rails_multi_select"=>"select"}
61068
+ Value: ["A"]
61069
+ Redirected to http://localhost:3000/index/success
61070
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
61071
+
61072
+
61073
+ Started GET "/index/success" for 127.0.0.1 at 2012-10-04 15:34:59 +0200
61074
+ Processing by IndexController#success as HTML
61075
+ Rendered index/success.html.erb within layouts/mxit (0.5ms)
61076
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
61077
+
61078
+
61079
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:34:59 +0200
61080
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61081
+
61082
+
61083
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:37:26 +0200
61084
+ Processing by IndexController#index as HTML
61085
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
61086
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
61087
+
61088
+
61089
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:37:26 +0200
61090
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
61091
+
61092
+
61093
+ Started GET "/" for 127.0.0.1 at 2012-10-04 15:37:39 +0200
61094
+ Processing by IndexController#index as HTML
61095
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
61096
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
61097
+
61098
+
61099
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 15:37:39 +0200
61100
+ Served asset /mxit_rails/included.css - 304 Not Modified (31ms)