mxit-rails 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,6 +15,7 @@ module MxitRails
15
15
  attr_accessor :parent_descriptor
16
16
 
17
17
  attr_accessor :name
18
+ attr_accessor :action
18
19
  attr_accessor :type
19
20
 
20
21
  descr_accessor :proceed
@@ -22,21 +23,16 @@ module MxitRails
22
23
  attr_accessor :input
23
24
  attr_accessor :input_label
24
25
 
25
- attr_accessor :validations
26
-
27
- def initialize name, parent=nil
26
+ def initialize name, action, parent=nil
28
27
  @parent_descriptor = parent
29
- self.name = name.to_sym
28
+ @name = name.to_sym
29
+ @action = action.to_sym
30
30
  @validations = []
31
31
  @steps = []
32
32
  end
33
33
 
34
- def add_validation type, message, parameter
35
- @validations << {type: type, message: message, parameter: parameter}
36
- end
37
-
38
34
  def url
39
- MxitRails::Router.url name
35
+ MxitRails::Router.url "#{name}/#{action}"
40
36
  end
41
37
 
42
38
  def view
@@ -8,7 +8,7 @@ module MxitRails
8
8
 
9
9
  def set_descriptor name, parent_name=:default
10
10
  @descriptors ||= {}
11
- @descriptors[name] ||= MxitRails::Descriptor.new controller_name, @descriptors[parent_name]
11
+ @descriptors[name] ||= MxitRails::Descriptor.new controller_name, action_name, @descriptors[parent_name]
12
12
  @descriptor_name = name
13
13
  end
14
14
  def descriptor
@@ -29,19 +29,6 @@ module MxitRails
29
29
  raise exception
30
30
  end
31
31
 
32
- def validate! input
33
- descriptor.validations.each do |validation|
34
- method = validation[:type].to_s + '?' #All validations are defined with a trailing question mark
35
- parameter = validation[:parameter]
36
- # Call with/out a parameter, depending on whether one is specified
37
- valid = parameter ? MxitRails::Validations.send(method, input, parameter) : MxitRails::Validations.send(method, input)
38
- if !valid
39
- @_mxit_validated = false
40
- @_mxit_validation_messages << validation[:message]
41
- end
42
- end
43
- end
44
-
45
32
  def get_mxit_header_field key
46
33
  request.headers[key] || cookies[key.downcase]
47
34
  end
@@ -101,11 +88,36 @@ module MxitRails
101
88
  descriptor.proceed = label
102
89
  end
103
90
 
104
- def validate *arguments
105
- type = arguments[0]
106
- message = arguments[-1]
107
- parameter = arguments[1..-2][0] # Will return nil if there isn't an argument
108
- descriptor.add_validation type, message, parameter
91
+ def run_validation input, method, parameter
92
+ method = method.to_s + '?' #All validations are defined with a trailing question mark
93
+ # Call with/out a parameter, depending on whether one is specified
94
+ parameter ? MxitRails::Validations.send(method, input, parameter) : MxitRails::Validations.send(method, input)
95
+ end
96
+
97
+ def validate *arguments, &block
98
+ return unless params.include?(:_mxit_rails_submit)
99
+ return if descriptor.input.nil?
100
+
101
+ valid = true
102
+ input = descriptor.input.to_sym
103
+
104
+ if block.nil?
105
+ parameter = arguments[1..-2][0] # Will return nil if there isn't an argument
106
+
107
+ if !descriptor.form? || (current_step == step_name)
108
+ valid = run_validation params[input], arguments.first, parameter
109
+ end
110
+
111
+ else
112
+ valid = instance_exec params[input], &block
113
+ logger.info "Output: #{valid}"
114
+ end
115
+
116
+ if !valid
117
+ @_mxit_validated = false
118
+ @_mxit_validation_messages << arguments.last
119
+ end
120
+
109
121
  end
110
122
 
111
123
  def submit &block
@@ -114,12 +126,7 @@ module MxitRails
114
126
  if descriptor.form? && next_step?
115
127
  instance_eval &block
116
128
 
117
- elsif params.include?(:_mxit_rails_submit)
118
- unless descriptor.input.nil?
119
- input = descriptor.input.to_sym
120
- validate! params[input]
121
- end
122
-
129
+ elsif params.include?(:_mxit_rails_submit)
123
130
  instance_eval &block if @_mxit_validated
124
131
  end
125
132
  end
@@ -149,14 +156,12 @@ module MxitRails
149
156
  # Process the form if it is the current step
150
157
  if current_step == step_name
151
158
  if params.include?(:_mxit_rails_submit)
152
- # Validate the current input if present
153
- unless descriptor.input.nil?
154
- input = descriptor.input.to_sym
155
- validate! params[input]
156
- session[:_mxit_rails_params][input] = params[input] if @_mxit_validated
157
- end
158
-
159
159
  if @_mxit_validated
160
+ unless descriptor.input.nil?
161
+ input = descriptor.input.to_sym
162
+ session[:_mxit_rails_params][input] = params[input]
163
+ end
164
+
160
165
  params.delete :_mxit_rails_submit
161
166
  @next_step = true
162
167
  return
@@ -9,6 +9,10 @@ module MxitRails
9
9
  return !input.blank? && input.match(/^[0-9]+$/)
10
10
  end
11
11
 
12
+ def self.length? input, len
13
+ return !input.blank? && (input.length == len)
14
+ end
15
+
12
16
  def self.min_length? input, max
13
17
  return !input.blank? && (input.length >= max)
14
18
  end
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
@@ -11,6 +11,9 @@ class FormController < ApplicationController
11
11
  step :name do
12
12
  input :name, 'What is your name?'
13
13
  validate :not_blank, 'You must enter a name'
14
+ validate 'That is not a cool enough name' do |input|
15
+ input != 'Steve'
16
+ end
14
17
  end
15
18
 
16
19
  step :surname do
@@ -5,6 +5,11 @@ class WelcomeController < ApplicationController
5
5
  def index
6
6
  input :phone_number, 'Enter your cellphone number'
7
7
 
8
+ validate 'Custom validation message' do |input|
9
+ logger.info "Validation: #{input.inspect}"
10
+ # NB Don't put a return here - it causes much unhappiness
11
+ input != 'custom'
12
+ end
8
13
  validate :numeric, 'Please enter a numeric digits only'
9
14
  validate :min_length, 10, 'Numbers must be at least 10 digits long'
10
15
  validate :max_length, 11, 'Numbers cannot be longer than 11 digits'
@@ -29443,3 +29443,1530 @@ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29443
29443
 
29444
29444
  Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 10:15:30 +0200
29445
29445
  Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29446
+
29447
+
29448
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29449
+ Connecting to database specified by database.yml
29450
+ Processing by EmulatorController#index as HTML
29451
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.8ms)
29452
+ Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms)
29453
+
29454
+
29455
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29456
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
29457
+
29458
+
29459
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29460
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (6ms)
29461
+
29462
+
29463
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29464
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
29465
+
29466
+
29467
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29468
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
29469
+
29470
+
29471
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29472
+ Served asset /mxit_rails/go.png - 304 Not Modified (28ms)
29473
+
29474
+
29475
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29476
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
29477
+
29478
+
29479
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29480
+ Processing by IndexController#index as HTML
29481
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
29482
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
29483
+
29484
+
29485
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29486
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
29487
+
29488
+
29489
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29490
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
29491
+
29492
+
29493
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:06:34 +0200
29494
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
29495
+
29496
+
29497
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:06:36 +0200
29498
+ Processing by WelcomeController#index as HTML
29499
+ Completed 500 Internal Server Error in 1ms
29500
+
29501
+ ArgumentError (wrong number of arguments (1 for 0)):
29502
+ app/controllers/welcome_controller.rb:8:in `index'
29503
+
29504
+
29505
+ 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)
29506
+ 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)
29507
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
29508
+
29509
+
29510
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:06:36 +0200
29511
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29512
+
29513
+
29514
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-14 12:06:45 +0200
29515
+ Served asset /mxit_rails/in.png - 304 Not Modified (4ms)
29516
+
29517
+
29518
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29519
+ Connecting to database specified by database.yml
29520
+ Processing by EmulatorController#index as HTML
29521
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.4ms)
29522
+ Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
29523
+
29524
+
29525
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29526
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
29527
+
29528
+
29529
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29530
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
29531
+
29532
+
29533
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29534
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
29535
+
29536
+
29537
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29538
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
29539
+
29540
+
29541
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29542
+ Processing by IndexController#index as HTML
29543
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
29544
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
29545
+
29546
+
29547
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29548
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
29549
+
29550
+
29551
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29552
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
29553
+
29554
+
29555
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29556
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
29557
+
29558
+
29559
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:07:51 +0200
29560
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
29561
+
29562
+
29563
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:07:52 +0200
29564
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
29565
+
29566
+
29567
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:07:53 +0200
29568
+ Processing by WelcomeController#index as HTML
29569
+ Rendered welcome/index.html.erb within layouts/mxit (0.6ms)
29570
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
29571
+
29572
+
29573
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:07:53 +0200
29574
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29575
+
29576
+
29577
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:07:53 +0200
29578
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29579
+
29580
+
29581
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:07:55 +0200
29582
+ Processing by WelcomeController#index as HTML
29583
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29584
+ Completed 500 Internal Server Error in 1ms
29585
+
29586
+ ArgumentError (wrong number of arguments (1 for 0)):
29587
+ app/controllers/welcome_controller.rb:8:in `index'
29588
+
29589
+
29590
+ 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)
29591
+ 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)
29592
+ 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)
29593
+
29594
+
29595
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:07:55 +0200
29596
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29597
+
29598
+
29599
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-14 12:07:57 +0200
29600
+ Served asset /mxit_rails/in.png - 304 Not Modified (1ms)
29601
+
29602
+
29603
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29604
+ Connecting to database specified by database.yml
29605
+ Processing by EmulatorController#index as HTML
29606
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (12.0ms)
29607
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
29608
+
29609
+
29610
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29611
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
29612
+
29613
+
29614
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29615
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (8ms)
29616
+
29617
+
29618
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29619
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
29620
+
29621
+
29622
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29623
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
29624
+
29625
+
29626
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:09:41 +0200
29627
+ Served asset /mxit_rails/go.png - 304 Not Modified (30ms)
29628
+
29629
+
29630
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:09:42 +0200
29631
+ Processing by IndexController#index as HTML
29632
+ Rendered index/index.html.erb within layouts/mxit (0.7ms)
29633
+ Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.0ms)
29634
+
29635
+
29636
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:09:42 +0200
29637
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
29638
+
29639
+
29640
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:09:42 +0200
29641
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
29642
+
29643
+
29644
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:09:42 +0200
29645
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
29646
+
29647
+
29648
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:09:42 +0200
29649
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
29650
+
29651
+
29652
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:09:43 +0200
29653
+ Processing by WelcomeController#index as HTML
29654
+ Rendered welcome/index.html.erb within layouts/mxit (0.9ms)
29655
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
29656
+
29657
+
29658
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:09:43 +0200
29659
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29660
+
29661
+
29662
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:09:43 +0200
29663
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29664
+
29665
+
29666
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:09:44 +0200
29667
+ Processing by WelcomeController#index as HTML
29668
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29669
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29670
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
29671
+
29672
+
29673
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:09:44 +0200
29674
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29675
+
29676
+
29677
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:09:44 +0200
29678
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29679
+
29680
+
29681
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:09:46 +0200
29682
+ Processing by WelcomeController#index as HTML
29683
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29684
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29685
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
29686
+
29687
+
29688
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:09:46 +0200
29689
+ Served asset /mxit_rails/included.css - 304 Not Modified (16ms)
29690
+
29691
+
29692
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:09:46 +0200
29693
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29694
+
29695
+
29696
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29697
+ Connecting to database specified by database.yml
29698
+ Processing by EmulatorController#index as HTML
29699
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (12.5ms)
29700
+ Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms)
29701
+
29702
+
29703
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29704
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
29705
+
29706
+
29707
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29708
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
29709
+
29710
+
29711
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29712
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
29713
+
29714
+
29715
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29716
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
29717
+
29718
+
29719
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29720
+ Processing by IndexController#index as HTML
29721
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
29722
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
29723
+
29724
+
29725
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29726
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
29727
+
29728
+
29729
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29730
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
29731
+
29732
+
29733
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29734
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
29735
+
29736
+
29737
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:11:55 +0200
29738
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
29739
+
29740
+
29741
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:11:56 +0200
29742
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
29743
+
29744
+
29745
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:11:57 +0200
29746
+ Processing by WelcomeController#index as HTML
29747
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
29748
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
29749
+
29750
+
29751
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:11:57 +0200
29752
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29753
+
29754
+
29755
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:11:57 +0200
29756
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29757
+
29758
+
29759
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:11:59 +0200
29760
+ Processing by WelcomeController#index as HTML
29761
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29762
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29763
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
29764
+
29765
+
29766
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:11:59 +0200
29767
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29768
+
29769
+
29770
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:11:59 +0200
29771
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29772
+
29773
+
29774
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:12:00 +0200
29775
+ Processing by WelcomeController#index as HTML
29776
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29777
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29778
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
29779
+
29780
+
29781
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:12:00 +0200
29782
+ Served asset /mxit_rails/included.css - 304 Not Modified (17ms)
29783
+
29784
+
29785
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:12:00 +0200
29786
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29787
+
29788
+
29789
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:12:00 +0200
29790
+ Processing by WelcomeController#index as HTML
29791
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29792
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29793
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
29794
+
29795
+
29796
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:12:00 +0200
29797
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29798
+
29799
+
29800
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:12:01 +0200
29801
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29802
+
29803
+
29804
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:12:06 +0200
29805
+ Processing by WelcomeController#index as HTML
29806
+ Parameters: {"phone_number"=>"custom", "_mxit_rails_submit"=>"Proceed"}
29807
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29808
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
29809
+
29810
+
29811
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:12:06 +0200
29812
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29813
+
29814
+
29815
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:12:06 +0200
29816
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29817
+
29818
+
29819
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29820
+ Connecting to database specified by database.yml
29821
+ Processing by EmulatorController#index as HTML
29822
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (11.6ms)
29823
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
29824
+
29825
+
29826
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29827
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
29828
+
29829
+
29830
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29831
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
29832
+
29833
+
29834
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29835
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
29836
+
29837
+
29838
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29839
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
29840
+
29841
+
29842
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29843
+ Served asset /mxit_rails/go.png - 304 Not Modified (8ms)
29844
+
29845
+
29846
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29847
+ Processing by IndexController#index as HTML
29848
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
29849
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
29850
+
29851
+
29852
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29853
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
29854
+
29855
+
29856
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29857
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
29858
+
29859
+
29860
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29861
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
29862
+
29863
+
29864
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:13:31 +0200
29865
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
29866
+
29867
+
29868
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:13:33 +0200
29869
+ Processing by WelcomeController#index as HTML
29870
+ Rendered welcome/index.html.erb within layouts/mxit (0.7ms)
29871
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
29872
+
29873
+
29874
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:33 +0200
29875
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29876
+
29877
+
29878
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:13:33 +0200
29879
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29880
+
29881
+
29882
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:13:34 +0200
29883
+ Processing by WelcomeController#index as HTML
29884
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29885
+ Validation: ""
29886
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
29887
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
29888
+
29889
+
29890
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:34 +0200
29891
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29892
+
29893
+
29894
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:13:34 +0200
29895
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29896
+
29897
+
29898
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:13:37 +0200
29899
+ Processing by WelcomeController#index as HTML
29900
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29901
+ Validation: ""
29902
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
29903
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
29904
+
29905
+
29906
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:37 +0200
29907
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29908
+
29909
+
29910
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:13:37 +0200
29911
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29912
+
29913
+
29914
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:13:38 +0200
29915
+ Processing by WelcomeController#index as HTML
29916
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
29917
+ Validation: ""
29918
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
29919
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
29920
+
29921
+
29922
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:13:38 +0200
29923
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29924
+
29925
+
29926
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:13:38 +0200
29927
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29928
+
29929
+
29930
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29931
+ Processing by EmulatorController#index as HTML
29932
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
29933
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
29934
+
29935
+
29936
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29937
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
29938
+
29939
+
29940
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29941
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
29942
+
29943
+
29944
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29945
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
29946
+
29947
+
29948
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29949
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
29950
+
29951
+
29952
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29953
+ Processing by IndexController#index as HTML
29954
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
29955
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
29956
+
29957
+
29958
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29959
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
29960
+
29961
+
29962
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29963
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
29964
+
29965
+
29966
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29967
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
29968
+
29969
+
29970
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29971
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
29972
+
29973
+
29974
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:17:07 +0200
29975
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
29976
+
29977
+
29978
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
29979
+ Connecting to database specified by database.yml
29980
+ Processing by EmulatorController#index as HTML
29981
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (12.1ms)
29982
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
29983
+
29984
+
29985
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
29986
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
29987
+
29988
+
29989
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
29990
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (6ms)
29991
+
29992
+
29993
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
29994
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
29995
+
29996
+
29997
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
29998
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
29999
+
30000
+
30001
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
30002
+ Served asset /mxit_rails/go.png - 304 Not Modified (29ms)
30003
+
30004
+
30005
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
30006
+ Processing by IndexController#index as HTML
30007
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
30008
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
30009
+
30010
+
30011
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
30012
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
30013
+
30014
+
30015
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
30016
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
30017
+
30018
+
30019
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:13 +0200
30020
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
30021
+
30022
+
30023
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:17:14 +0200
30024
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
30025
+
30026
+
30027
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:17:14 +0200
30028
+ Processing by WelcomeController#index as HTML
30029
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
30030
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
30031
+
30032
+
30033
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:14 +0200
30034
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30035
+
30036
+
30037
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:17:14 +0200
30038
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30039
+
30040
+
30041
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:17:15 +0200
30042
+ Processing by WelcomeController#index as HTML
30043
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30044
+ Validation: ""
30045
+ Output: true
30046
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30047
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
30048
+
30049
+
30050
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:17:15 +0200
30051
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30052
+
30053
+
30054
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:17:15 +0200
30055
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30056
+
30057
+
30058
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:19:07 +0200
30059
+ Connecting to database specified by database.yml
30060
+ Processing by EmulatorController#index as HTML
30061
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (11.9ms)
30062
+ Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
30063
+
30064
+
30065
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30066
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (4ms)
30067
+
30068
+
30069
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30070
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (27ms)
30071
+
30072
+
30073
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30074
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
30075
+
30076
+
30077
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30078
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
30079
+
30080
+
30081
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30082
+ Served asset /mxit_rails/go.png - 304 Not Modified (4ms)
30083
+
30084
+
30085
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30086
+ Processing by IndexController#index as HTML
30087
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
30088
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
30089
+
30090
+
30091
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30092
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
30093
+
30094
+
30095
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30096
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
30097
+
30098
+
30099
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30100
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
30101
+
30102
+
30103
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:08 +0200
30104
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
30105
+
30106
+
30107
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:19:09 +0200
30108
+ Processing by WelcomeController#index as HTML
30109
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
30110
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
30111
+
30112
+
30113
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:09 +0200
30114
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30115
+
30116
+
30117
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:09 +0200
30118
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30119
+
30120
+
30121
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:19:10 +0200
30122
+ Processing by WelcomeController#index as HTML
30123
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30124
+ Validation: ""
30125
+ Output: true
30126
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30127
+ Completed 200 OK in 17ms (Views: 2.6ms | ActiveRecord: 0.0ms)
30128
+
30129
+
30130
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:10 +0200
30131
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30132
+
30133
+
30134
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:10 +0200
30135
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30136
+
30137
+
30138
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:19:47 +0200
30139
+ Connecting to database specified by database.yml
30140
+ Processing by EmulatorController#index as HTML
30141
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (11.5ms)
30142
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
30143
+
30144
+
30145
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:47 +0200
30146
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
30147
+
30148
+
30149
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:47 +0200
30150
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
30151
+
30152
+
30153
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:47 +0200
30154
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
30155
+
30156
+
30157
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:19:47 +0200
30158
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
30159
+
30160
+
30161
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30162
+ Served asset /mxit_rails/go.png - 304 Not Modified (25ms)
30163
+
30164
+
30165
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30166
+ Processing by IndexController#index as HTML
30167
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
30168
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
30169
+
30170
+
30171
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30172
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
30173
+
30174
+
30175
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30176
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
30177
+
30178
+
30179
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30180
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
30181
+
30182
+
30183
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:48 +0200
30184
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
30185
+
30186
+
30187
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:19:49 +0200
30188
+ Processing by WelcomeController#index as HTML
30189
+ Rendered welcome/index.html.erb within layouts/mxit (0.7ms)
30190
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
30191
+
30192
+
30193
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:49 +0200
30194
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30195
+
30196
+
30197
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:49 +0200
30198
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30199
+
30200
+
30201
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:19:50 +0200
30202
+ Processing by WelcomeController#index as HTML
30203
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30204
+ Validation: ""
30205
+ Output: true
30206
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30207
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
30208
+
30209
+
30210
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:19:50 +0200
30211
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30212
+
30213
+
30214
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:19:50 +0200
30215
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30216
+
30217
+
30218
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30219
+ Connecting to database specified by database.yml
30220
+ Processing by EmulatorController#index as HTML
30221
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.0ms)
30222
+ Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.0ms)
30223
+
30224
+
30225
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30226
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
30227
+
30228
+
30229
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30230
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (22ms)
30231
+
30232
+
30233
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30234
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (6ms)
30235
+
30236
+
30237
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30238
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
30239
+
30240
+
30241
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30242
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
30243
+
30244
+
30245
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30246
+ Processing by IndexController#index as HTML
30247
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
30248
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
30249
+
30250
+
30251
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30252
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
30253
+
30254
+
30255
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30256
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
30257
+
30258
+
30259
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30260
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
30261
+
30262
+
30263
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:26 +0200
30264
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
30265
+
30266
+
30267
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:20:29 +0200
30268
+ Processing by WelcomeController#index as HTML
30269
+ Rendered welcome/index.html.erb within layouts/mxit (0.6ms)
30270
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
30271
+
30272
+
30273
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:29 +0200
30274
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30275
+
30276
+
30277
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:29 +0200
30278
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30279
+
30280
+
30281
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:20:30 +0200
30282
+ Processing by WelcomeController#index as HTML
30283
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30284
+ input:
30285
+ Validation: ""
30286
+ Output: true
30287
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30288
+ Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
30289
+
30290
+
30291
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:30 +0200
30292
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30293
+
30294
+
30295
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:30 +0200
30296
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30297
+
30298
+
30299
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30300
+ Connecting to database specified by database.yml
30301
+ Processing by EmulatorController#index as HTML
30302
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.4ms)
30303
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
30304
+
30305
+
30306
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30307
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (5ms)
30308
+
30309
+
30310
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30311
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
30312
+
30313
+
30314
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30315
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
30316
+
30317
+
30318
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30319
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
30320
+
30321
+
30322
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30323
+ Processing by IndexController#index as HTML
30324
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
30325
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
30326
+
30327
+
30328
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30329
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
30330
+
30331
+
30332
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30333
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
30334
+
30335
+
30336
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30337
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
30338
+
30339
+
30340
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:50 +0200
30341
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
30342
+
30343
+
30344
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:51 +0200
30345
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
30346
+
30347
+
30348
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:20:51 +0200
30349
+ Processing by WelcomeController#index as HTML
30350
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
30351
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
30352
+
30353
+
30354
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:51 +0200
30355
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30356
+
30357
+
30358
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:51 +0200
30359
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30360
+
30361
+
30362
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:20:52 +0200
30363
+ Processing by WelcomeController#index as HTML
30364
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30365
+ Output: true
30366
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30367
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
30368
+
30369
+
30370
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:52 +0200
30371
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30372
+
30373
+
30374
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:52 +0200
30375
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30376
+
30377
+
30378
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:20:55 +0200
30379
+ Processing by WelcomeController#index as HTML
30380
+ Parameters: {"phone_number"=>"custom", "_mxit_rails_submit"=>"Proceed"}
30381
+ Output: false
30382
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30383
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
30384
+
30385
+
30386
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:55 +0200
30387
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30388
+
30389
+
30390
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:55 +0200
30391
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30392
+
30393
+
30394
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:20:57 +0200
30395
+ Processing by WelcomeController#index as HTML
30396
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30397
+ Output: true
30398
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30399
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
30400
+
30401
+
30402
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:20:57 +0200
30403
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30404
+
30405
+
30406
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:20:57 +0200
30407
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30408
+
30409
+
30410
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:21:02 +0200
30411
+ Processing by WelcomeController#index as HTML
30412
+ Parameters: {"phone_number"=>"12", "_mxit_rails_submit"=>"Proceed"}
30413
+ Output: true
30414
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30415
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
30416
+
30417
+
30418
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:02 +0200
30419
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30420
+
30421
+
30422
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:02 +0200
30423
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30424
+
30425
+
30426
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:21:06 +0200
30427
+ Processing by WelcomeController#index as HTML
30428
+ Parameters: {"phone_number"=>"0829267557", "_mxit_rails_submit"=>"Proceed"}
30429
+ Output: true
30430
+ This won't execute if an error occurred or if error! or redirect! was called
30431
+ Redirected to http://localhost:3000/mxit/index/success
30432
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
30433
+
30434
+
30435
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 12:21:06 +0200
30436
+ Processing by IndexController#success as HTML
30437
+ Rendered index/success.html.erb within layouts/mxit (0.6ms)
30438
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
30439
+
30440
+
30441
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:06 +0200
30442
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30443
+
30444
+
30445
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:06 +0200
30446
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30447
+
30448
+
30449
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:21:07 +0200
30450
+ Processing by IndexController#index as HTML
30451
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
30452
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
30453
+
30454
+
30455
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:07 +0200
30456
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30457
+
30458
+
30459
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:07 +0200
30460
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30461
+
30462
+
30463
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30464
+ Processing by EmulatorController#index as HTML
30465
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.1ms)
30466
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
30467
+
30468
+
30469
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30470
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
30471
+
30472
+
30473
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30474
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
30475
+
30476
+
30477
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30478
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
30479
+
30480
+
30481
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30482
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
30483
+
30484
+
30485
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30486
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
30487
+
30488
+
30489
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30490
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
30491
+
30492
+
30493
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30494
+ Processing by IndexController#index as HTML
30495
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
30496
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
30497
+
30498
+
30499
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30500
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
30501
+
30502
+
30503
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30504
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30505
+
30506
+
30507
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:42 +0200
30508
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30509
+
30510
+
30511
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:21:43 +0200
30512
+ Processing by WelcomeController#index as HTML
30513
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30514
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
30515
+
30516
+
30517
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:43 +0200
30518
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30519
+
30520
+
30521
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:43 +0200
30522
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30523
+
30524
+
30525
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:21:45 +0200
30526
+ Processing by WelcomeController#index as HTML
30527
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30528
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30529
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
30530
+
30531
+
30532
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:45 +0200
30533
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30534
+
30535
+
30536
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:45 +0200
30537
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30538
+
30539
+
30540
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:21:46 +0200
30541
+ Processing by WelcomeController#index as HTML
30542
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30543
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30544
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
30545
+
30546
+
30547
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:21:46 +0200
30548
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30549
+
30550
+
30551
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:21:46 +0200
30552
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30553
+
30554
+
30555
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:23:01 +0200
30556
+ Connecting to database specified by database.yml
30557
+ Processing by EmulatorController#index as HTML
30558
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (12.3ms)
30559
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
30560
+
30561
+
30562
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30563
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
30564
+
30565
+
30566
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30567
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (27ms)
30568
+
30569
+
30570
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30571
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
30572
+
30573
+
30574
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30575
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (7ms)
30576
+
30577
+
30578
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30579
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
30580
+
30581
+
30582
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30583
+ Processing by IndexController#index as HTML
30584
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
30585
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.0ms)
30586
+
30587
+
30588
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30589
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
30590
+
30591
+
30592
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30593
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
30594
+
30595
+
30596
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30597
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
30598
+
30599
+
30600
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:02 +0200
30601
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
30602
+
30603
+
30604
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:23:03 +0200
30605
+ Processing by WelcomeController#index as HTML
30606
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
30607
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
30608
+
30609
+
30610
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:03 +0200
30611
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30612
+
30613
+
30614
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:03 +0200
30615
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30616
+
30617
+
30618
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:23:04 +0200
30619
+ Processing by WelcomeController#index as HTML
30620
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30621
+ Validation: ""
30622
+ Output: true
30623
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30624
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
30625
+
30626
+
30627
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:04 +0200
30628
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30629
+
30630
+
30631
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:04 +0200
30632
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30633
+
30634
+
30635
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:23:08 +0200
30636
+ Processing by WelcomeController#index as HTML
30637
+ Parameters: {"phone_number"=>"custom", "_mxit_rails_submit"=>"Proceed"}
30638
+ Validation: "custom"
30639
+ Output: false
30640
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30641
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
30642
+
30643
+
30644
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:08 +0200
30645
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30646
+
30647
+
30648
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:08 +0200
30649
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30650
+
30651
+
30652
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:23:19 +0200
30653
+ Processing by EmulatorController#index as HTML
30654
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.7ms)
30655
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
30656
+
30657
+
30658
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:19 +0200
30659
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
30660
+
30661
+
30662
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:19 +0200
30663
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
30664
+
30665
+
30666
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:19 +0200
30667
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
30668
+
30669
+
30670
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30671
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
30672
+
30673
+
30674
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30675
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
30676
+
30677
+
30678
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30679
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
30680
+
30681
+
30682
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30683
+ Processing by IndexController#index as HTML
30684
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
30685
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
30686
+
30687
+
30688
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30689
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
30690
+
30691
+
30692
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30693
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30694
+
30695
+
30696
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:20 +0200
30697
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30698
+
30699
+
30700
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:23:21 +0200
30701
+ Processing by WelcomeController#index as HTML
30702
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
30703
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
30704
+
30705
+
30706
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:21 +0200
30707
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30708
+
30709
+
30710
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:21 +0200
30711
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30712
+
30713
+
30714
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:23:22 +0200
30715
+ Processing by WelcomeController#index as HTML
30716
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30717
+ Validation: ""
30718
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30719
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
30720
+
30721
+
30722
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:23:22 +0200
30723
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30724
+
30725
+
30726
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:23:22 +0200
30727
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30728
+
30729
+
30730
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30731
+ Connecting to database specified by database.yml
30732
+ Processing by EmulatorController#index as HTML
30733
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (12.4ms)
30734
+ Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms)
30735
+
30736
+
30737
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30738
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (4ms)
30739
+
30740
+
30741
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30742
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
30743
+
30744
+
30745
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30746
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
30747
+
30748
+
30749
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30750
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
30751
+
30752
+
30753
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30754
+ Served asset /mxit_rails/go.png - 304 Not Modified (25ms)
30755
+
30756
+
30757
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30758
+ Processing by IndexController#index as HTML
30759
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
30760
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
30761
+
30762
+
30763
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30764
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
30765
+
30766
+
30767
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30768
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
30769
+
30770
+
30771
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30772
+ Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
30773
+
30774
+
30775
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:19 +0200
30776
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
30777
+
30778
+
30779
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 12:24:20 +0200
30780
+ Processing by WelcomeController#index as HTML
30781
+ Rendered welcome/index.html.erb within layouts/mxit (0.9ms)
30782
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
30783
+
30784
+
30785
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:20 +0200
30786
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30787
+
30788
+
30789
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:20 +0200
30790
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30791
+
30792
+
30793
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:24:23 +0200
30794
+ Processing by WelcomeController#index as HTML
30795
+ Parameters: {"phone_number"=>"custom", "_mxit_rails_submit"=>"Proceed"}
30796
+ Validation: "custom"
30797
+ Output: false
30798
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30799
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
30800
+
30801
+
30802
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:23 +0200
30803
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30804
+
30805
+
30806
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:23 +0200
30807
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30808
+
30809
+
30810
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 12:24:24 +0200
30811
+ Processing by WelcomeController#index as HTML
30812
+ Parameters: {"phone_number"=>"", "_mxit_rails_submit"=>"Proceed"}
30813
+ Validation: ""
30814
+ Output: true
30815
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
30816
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
30817
+
30818
+
30819
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:24 +0200
30820
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30821
+
30822
+
30823
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:25 +0200
30824
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30825
+
30826
+
30827
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 12:24:25 +0200
30828
+ Processing by IndexController#index as HTML
30829
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
30830
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
30831
+
30832
+
30833
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:25 +0200
30834
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30835
+
30836
+
30837
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:25 +0200
30838
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30839
+
30840
+
30841
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 12:24:26 +0200
30842
+ Processing by FormController#index as HTML
30843
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
30844
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
30845
+
30846
+
30847
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:26 +0200
30848
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30849
+
30850
+
30851
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:26 +0200
30852
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30853
+
30854
+
30855
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 12:24:27 +0200
30856
+ Processing by FormController#index as HTML
30857
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
30858
+ Rendered form/index/name.html.erb within layouts/mxit (0.6ms)
30859
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
30860
+
30861
+
30862
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:27 +0200
30863
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30864
+
30865
+
30866
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:27 +0200
30867
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30868
+
30869
+
30870
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 12:24:28 +0200
30871
+ Processing by FormController#index as HTML
30872
+ Parameters: {"name"=>"", "_mxit_rails_submit"=>"Proceed"}
30873
+ Output: true
30874
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
30875
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
30876
+
30877
+
30878
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:28 +0200
30879
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30880
+
30881
+
30882
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:28 +0200
30883
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30884
+
30885
+
30886
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 12:24:31 +0200
30887
+ Processing by FormController#index as HTML
30888
+ Parameters: {"name"=>"steve", "_mxit_rails_submit"=>"Proceed"}
30889
+ Output: true
30890
+ Rendered form/index/surname.html.erb within layouts/mxit (0.6ms)
30891
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
30892
+
30893
+
30894
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:31 +0200
30895
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30896
+
30897
+
30898
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:31 +0200
30899
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30900
+
30901
+
30902
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 12:24:33 +0200
30903
+ Processing by IndexController#index as HTML
30904
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
30905
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
30906
+
30907
+
30908
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:33 +0200
30909
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30910
+
30911
+
30912
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:33 +0200
30913
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30914
+
30915
+
30916
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 12:24:40 +0200
30917
+ Processing by FormController#index as HTML
30918
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
30919
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
30920
+
30921
+
30922
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:40 +0200
30923
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30924
+
30925
+
30926
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:40 +0200
30927
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30928
+
30929
+
30930
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 12:24:41 +0200
30931
+ Processing by FormController#index as HTML
30932
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
30933
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
30934
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
30935
+
30936
+
30937
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:41 +0200
30938
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30939
+
30940
+
30941
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:41 +0200
30942
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30943
+
30944
+
30945
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 12:24:43 +0200
30946
+ Processing by FormController#index as HTML
30947
+ Parameters: {"name"=>"Steve", "_mxit_rails_submit"=>"Proceed"}
30948
+ Output: false
30949
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
30950
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
30951
+
30952
+
30953
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:43 +0200
30954
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30955
+
30956
+
30957
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:43 +0200
30958
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
30959
+
30960
+
30961
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 12:24:45 +0200
30962
+ Processing by IndexController#index as HTML
30963
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
30964
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
30965
+
30966
+
30967
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 12:24:45 +0200
30968
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
30969
+
30970
+
30971
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 12:24:45 +0200
30972
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)