mxit-rails 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -100,3 +100,16 @@ navigating to their corresponding URL.
100
100
  To set the root URL of the emulator, add the following line to `config/application.rb`:
101
101
 
102
102
  config.mxit_root = 'mxit'
103
+
104
+
105
+ Mxit Headers
106
+ ------------
107
+ The gem automatically parses (some) Mxit headers and makes them available in the `mxit_params` hash. When using the emulator these values are spoofed with cookies, but in a way transparent to the app itself. Currently the following are available:
108
+
109
+ - `:mxit_id` - The user's Mxit ID (m-ID). From the `X-Mxit-UserId-R` header
110
+ - `:mxit_login` - The user's Mxit Login name. From the `X-Mxit-Login` or `X-Mxit-ID-R` header
111
+ - `:display_name` - The user's current nickname. From the `X-Mxit-Nick` header
112
+ - `:distribution_code` - The distribution code corresponding to the specific installaction of the Mxit app on the user's phone.
113
+ The first part of the `X-Mxit-Device-Info` header.
114
+ - `:mobile_number` - The user's mobile number as in their profile. The second part of the `X-Mxit-Device-Info` header.
115
+
@@ -33,11 +33,12 @@ Emulator = (function() {
33
33
  return {
34
34
  activeLink: 0,
35
35
 
36
- setCookie: function(mxitId, msisdn) {
36
+ setCookie: function() {
37
37
  // Create cookies. Use only lowercase cookie names - the server expects this (case insensitivity seems dodgy)
38
- $.cookie('x-mxit-login', mxitId, {path: '/'});
39
- $.cookie('x-mxit-userid-r', 'm987654321', {path: '/'});
40
- $.cookie('x-mxit-device-info', 'DISTRO_CODE,' + msisdn, {path: '/'});
38
+ $.cookie('x-mxit-login', localStorage.getItem('mxit-login'), {path: '/'});
39
+ $.cookie('x-mxit-userid-r', localStorage.getItem('mxit-id'), {path: '/'});
40
+ $.cookie('x-mxit-nick', localStorage.getItem('mxit-nick'), {path: '/'});
41
+ $.cookie('x-mxit-device-info', localStorage.getItem('mxit-distribution-code') + ',' + localStorage.getItem('mxit-msisdn'), {path: '/'});
41
42
 
42
43
  if (MXIT_PATH && (MXIT_PATH != ''))
43
44
  Emulator.setUrl(MXIT_PATH);
@@ -49,6 +50,7 @@ Emulator = (function() {
49
50
  // Create cookies. Use only lowercase cookie names - the server expects this (case insensitivity seems dodgy)
50
51
  $.cookie('x-mxit-login', null, {path: '/'});
51
52
  $.cookie('x-mxit-userid-r', null, {path: '/'});
53
+ $.cookie('x-mxit-nick', null, {path: '/'});
52
54
  $.cookie('x-mxit-device-info', null, {path: '/'});
53
55
 
54
56
  if (MXIT_PATH && (MXIT_PATH != ''))
@@ -80,33 +82,38 @@ Emulator = (function() {
80
82
 
81
83
  enterCredentials: function() {
82
84
  $('#default').hide();
85
+ $('#center').hide();
83
86
  $('#inputs').show();
84
- $('#mxit-id-input').focus();
85
87
  },
86
88
 
87
89
  saveCredentials: function() {
88
- localStorage.setItem('mxitId', $('#mxit-id-input').val());
89
- localStorage.setItem('msisdn', $('#msisdn-input').val());
90
+ values = ['id', 'login', 'nick', 'distribution-code', 'msisdn'];
91
+ for (var i in values) {
92
+ var str = values[i];
93
+ localStorage.setItem('mxit-' + str, $('#mxit-' + str + '-input').val());
94
+ }
95
+
90
96
  $('#default').show();
91
97
  $('#inputs').hide();
98
+ $('#center').show();
92
99
  Emulator.setCredentials();
93
100
  },
94
101
 
95
102
  setCredentials: function() {
96
- mxitId = localStorage.getItem('mxitId');
97
- msisdn = localStorage.getItem('msisdn');
98
-
99
- Emulator.setCookie(mxitId, msisdn);
103
+ Emulator.setCookie();
100
104
  $('#link').hide();
101
105
  $('#unlink').show();
102
106
  $('#registered').show();
103
107
  $('#not-registered').hide();
104
- $('#mxit-id').html(mxitId);
108
+ $('#mxit-login').html(localStorage.getItem('mxit-login'));
105
109
  },
106
110
 
107
111
  clearCredentials: function() {
108
- localStorage.removeItem('mxitId');
109
- localStorage.removeItem('msisdn');
112
+ values = ['id', 'login', 'nick', 'distribution-code', 'msisdn'];
113
+ for (var i in values) {
114
+ var str = values[i];
115
+ localStorage.removeItem('mxit-' + str);
116
+ }
110
117
 
111
118
  Emulator.clearCookie();
112
119
  $('#link').show();
@@ -234,19 +241,16 @@ Emulator = (function() {
234
241
 
235
242
  $(function() {
236
243
 
237
- // Check whether there is a Mxit ID and msisdn in local storage
238
- var mxitId = localStorage.getItem('mxitId');
239
- var msisdn = localStorage.getItem('msisdn');
240
-
241
- if (mxitId && msisdn) {
244
+ if (localStorage.getItem('mxit-id')) {
242
245
  Emulator.setCredentials();
243
-
244
246
  } else {
245
247
  Emulator.clearCredentials();
246
248
  }
247
249
 
248
250
  Emulator.expandCollapse();
249
251
 
252
+ Emulator.enterCredentials();
253
+
250
254
  $('body').on('keydown', $.proxy(Emulator, 'key'));
251
255
  $('#phone-input').on('keypress', $.proxy(Emulator, 'submit'))
252
256
 
@@ -70,8 +70,8 @@ iframe {
70
70
  z-index: 1;
71
71
  }
72
72
  #not-registered, #registered {
73
- float: left;
74
- margin-left: 20px;
73
+ position: absolute;
74
+ left: 20px;
75
75
  }
76
76
  #registered {
77
77
  display: none;
@@ -81,14 +81,32 @@ iframe {
81
81
  font-weight: normal;
82
82
  }
83
83
  #unlink, #link {
84
- position: relative;
85
- top: 0px;
86
- float: right;
87
- margin-right: 20px;
84
+ position: absolute;
85
+ right: 20px;
88
86
  cursor: default;
89
87
  }
90
88
  #inputs {
91
89
  display: none;
90
+ padding: 10px;
91
+ }
92
+ #inputs label {
93
+ font-size: 12px;
94
+ color: #666;
95
+ }
96
+ #inputs input {
97
+ display: block;
98
+ padding: 2px 5px;
99
+ margin: 0 0 6px 0;
100
+ font-size: 16px;
101
+ border: 1px solid #bbb;
102
+ border-radius: 5px;
103
+ width: 208px;
104
+ height: 22px;
105
+ }
106
+ #save {
107
+ margin-top: 10px;
108
+ display: block;
109
+ text-align: center;
92
110
  }
93
111
 
94
112
 
@@ -29,7 +29,7 @@
29
29
  <div id="controls">
30
30
  <div id="default">
31
31
  <span id="not-registered">No credentials</span>
32
- <span id="registered">Mxit ID: <span id="mxit-id"></span></span>
32
+ <span id="registered">Mxit Login: <span id="mxit-login"></span></span>
33
33
 
34
34
  <a id="unlink" class="go link" onclick="Emulator.clearCredentials()">Clear Credentials <span class="icon"><span class="image"></span></span></a>
35
35
  <a id="link" class="go link" onclick="Emulator.enterCredentials()">Set Credentials <span class="icon"><span class="image"></span></span></a>
@@ -41,17 +41,36 @@
41
41
  <a id="expand" class="out link" onclick="Emulator.expandCollapse('expand')"><span class="icon"><span class="image"></span></span></a>
42
42
  <a id="collapse" class="in link" onclick="Emulator.expandCollapse('collapse')"><span class="icon"><span class="image"></span></span></a>
43
43
  </div>
44
- <div id="inputs">
45
- <input type="text" placeholder="Mxit ID" id="mxit-id-input" />
46
- <input type="text" placeholder="MSISDN" id="msisdn-input" />
47
-
48
- <a id="link" class="go link" onclick="Emulator.saveCredentials()">Save <span class="icon"><span class="image"></span></span></a>
49
- </div>
50
44
  </div>
51
45
 
52
46
  <div id="phone">
53
47
  <div id="screen">
54
48
  <iframe id="center" class="content" onLoad="Emulator.updateIframe()"></iframe>
49
+
50
+ <div id="inputs">
51
+ <div>
52
+ <label for="mxit-id-input">Mxit ID</label>
53
+ <input type="text" placeholder="Mxit ID" id="mxit-id-input" value="m987654321" />
54
+ </div>
55
+ <div>
56
+ <label for="mxit-login-input">Mxit Login</label>
57
+ <input type="text" placeholder="Mxit Login" id="mxit-login-input"/>
58
+ </div>
59
+ <div>
60
+ <label for="mxit-nick-input">Display Name (Nick)</label>
61
+ <input type="text" placeholder="Nickname" id="mxit-nick-input"/>
62
+ </div>
63
+ <div>
64
+ <label for="mxit-distribution-code-input">Distribution Code</label>
65
+ <input type="text" placeholder="Distribution Code" id="mxit-distribution-code-input" value="DISTRO_CODE"/>
66
+ </div>
67
+ <div>
68
+ <label for="mxit-msisdn-input">MSISDN (Cell No)</label>
69
+ <input type="text" placeholder="MSISDN" id="mxit-msisdn-input" />
70
+ </div>
71
+
72
+ <a id="save" class="go link" onclick="Emulator.saveCredentials()">Save <span class="icon"><span class="image"></span></span></a>
73
+ </div>
55
74
  </div>
56
75
  <input id="phone-input" type="text" autocomplete="off" />
57
76
  </div>
@@ -45,14 +45,17 @@ module MxitRails
45
45
 
46
46
  def get_mxit_info
47
47
  @_mxit_params = {}
48
- @_mxit_params[:m_id] = get_mxit_header_field 'X-Mxit-UserId-R'
49
- @_mxit_params[:username] = get_mxit_header_field 'x-mxit-login'
48
+ @_mxit_params[:mxit_id] = get_mxit_header_field 'X-Mxit-UserId-R'
49
+ @_mxit_params[:mxit_login] = get_mxit_header_field('X-Mxit-Login') || get_mxit_header_field('X-Mxit-ID-R')
50
+ @_mxit_params[:display_name] = get_mxit_header_field 'X-Mxit-Nick'
50
51
 
52
+ @_mxit_params[:distribution_code] = ''
53
+ @_mxit_params[:mobile_number] = ''
51
54
  device_info = get_mxit_header_field('X-Mxit-Device-Info')
52
55
  unless device_info.blank?
53
- device_info.split(',')
54
- @_mxit_params[:distribution_code] = device_info.first
55
- @_mxit_params[:mobile_number] = device_info[1] if device_info.length == 2
56
+ tmp = device_info.split(',')
57
+ @_mxit_params[:distribution_code] = tmp.first
58
+ @_mxit_params[:mobile_number] = tmp[1] if tmp.length == 2
56
59
  end
57
60
  end
58
61
 
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
@@ -3,6 +3,7 @@ class IndexController < ApplicationController
3
3
  include MxitRails::Page
4
4
 
5
5
  def index
6
+ @mxit_params = mxit_params
6
7
  end
7
8
 
8
9
  def success
@@ -4,6 +4,12 @@
4
4
  <%= mxit_table_row %>
5
5
  <p>This is the root of the dummy app...</p>
6
6
 
7
+ <p><b>Current Mxit Params:</b><br />
8
+ <% @mxit_params.each do |k,v| %>
9
+ <%= k %>: <b><%= v %></b><br />
10
+ <% end %>
11
+ </p>
12
+
7
13
  <p><%= mxit_link '/welcome', 'Single-page form' %><p>
8
14
  <p><%= mxit_link '/form', 'Multi-step form' %><p>
9
15
  <p><%= mxit_link '/index', 'An extra link' %><p>
@@ -52271,3 +52271,3931 @@ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
52271
52271
 
52272
52272
  Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-19 15:35:04 +0200
52273
52273
  Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52274
+
52275
+
52276
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:42:43 +0200
52277
+ Connecting to database specified by database.yml
52278
+ Processing by IndexController#index as HTML
52279
+ Completed 500 Internal Server Error in 2ms
52280
+
52281
+ NameError (undefined local variable or method `device_info' for #<IndexController:0x007f9fdf44ec48>):
52282
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:58:in `get_mxit_info'
52283
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
52284
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__2740499130691445402__process_action__1821295493266631642__callbacks'
52285
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52286
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
52287
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52288
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
52289
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
52290
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
52291
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
52292
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
52293
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
52294
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
52295
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
52296
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
52297
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
52298
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
52299
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
52300
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
52301
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
52302
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
52303
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
52304
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
52305
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
52306
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
52307
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
52308
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
52309
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
52310
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
52311
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
52312
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
52313
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
52314
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
52315
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
52316
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
52317
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
52318
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
52319
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
52320
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
52321
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3420985791894724798__call__1414522808717586904__callbacks'
52322
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52323
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
52324
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52325
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
52326
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
52327
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
52328
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
52329
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
52330
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
52331
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
52332
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
52333
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
52334
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
52335
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
52336
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
52337
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
52338
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
52339
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
52340
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
52341
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
52342
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
52343
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
52344
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
52345
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
52346
+
52347
+
52348
+ 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.7ms)
52349
+ 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)
52350
+ 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 (11.0ms)
52351
+
52352
+
52353
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:42:44 +0200
52354
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
52355
+
52356
+
52357
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:42:46 +0200
52358
+ Processing by IndexController#index as HTML
52359
+ Completed 500 Internal Server Error in 3ms
52360
+
52361
+ NameError (undefined local variable or method `device_info' for #<IndexController:0x007f9fdf268ac8>):
52362
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:58:in `get_mxit_info'
52363
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
52364
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__2740499130691445402__process_action__1821295493266631642__callbacks'
52365
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52366
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
52367
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52368
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
52369
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
52370
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
52371
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
52372
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
52373
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
52374
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
52375
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
52376
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
52377
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
52378
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
52379
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
52380
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
52381
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
52382
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
52383
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
52384
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
52385
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
52386
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
52387
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
52388
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
52389
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
52390
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
52391
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
52392
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
52393
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
52394
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
52395
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
52396
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
52397
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
52398
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
52399
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
52400
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
52401
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3420985791894724798__call__1414522808717586904__callbacks'
52402
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52403
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
52404
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52405
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
52406
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
52407
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
52408
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
52409
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
52410
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
52411
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
52412
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
52413
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
52414
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
52415
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
52416
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
52417
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
52418
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
52419
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
52420
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
52421
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
52422
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
52423
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
52424
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
52425
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
52426
+
52427
+
52428
+ 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)
52429
+ 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)
52430
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
52431
+
52432
+
52433
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:42:58 +0200
52434
+ Processing by EmulatorController#index as HTML
52435
+ Compiled mxit_rails/emulator.js (2ms) (pid 15325)
52436
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (27.6ms)
52437
+ Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
52438
+
52439
+
52440
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:42:58 +0200
52441
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
52442
+
52443
+
52444
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:42:58 +0200
52445
+ Served asset /mxit_rails/emulator.js - 200 OK (35ms)
52446
+
52447
+
52448
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52449
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
52450
+
52451
+
52452
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52453
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
52454
+
52455
+
52456
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52457
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
52458
+
52459
+
52460
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52461
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
52462
+
52463
+
52464
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52465
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
52466
+
52467
+
52468
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52469
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (5ms)
52470
+
52471
+
52472
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52473
+ Processing by IndexController#index as HTML
52474
+ Completed 500 Internal Server Error in 3ms
52475
+
52476
+ NameError (undefined local variable or method `device_info' for #<IndexController:0x007f9fdf143c10>):
52477
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:58:in `get_mxit_info'
52478
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
52479
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__2740499130691445402__process_action__1821295493266631642__callbacks'
52480
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52481
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
52482
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52483
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
52484
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
52485
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
52486
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
52487
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
52488
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
52489
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
52490
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
52491
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
52492
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
52493
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
52494
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
52495
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
52496
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
52497
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
52498
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
52499
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
52500
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
52501
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
52502
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
52503
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
52504
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
52505
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
52506
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
52507
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
52508
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
52509
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
52510
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
52511
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
52512
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
52513
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
52514
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
52515
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
52516
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3420985791894724798__call__1414522808717586904__callbacks'
52517
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
52518
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
52519
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
52520
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
52521
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
52522
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
52523
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
52524
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
52525
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
52526
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
52527
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
52528
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
52529
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
52530
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
52531
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
52532
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
52533
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
52534
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
52535
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
52536
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
52537
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
52538
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
52539
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
52540
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
52541
+
52542
+
52543
+ 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.3ms)
52544
+ 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)
52545
+ 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 (12.6ms)
52546
+
52547
+
52548
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52549
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
52550
+
52551
+
52552
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52553
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
52554
+
52555
+
52556
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52557
+ Served asset /mxit_rails/in.png - 304 Not Modified (0ms)
52558
+
52559
+
52560
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:42:59 +0200
52561
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
52562
+
52563
+
52564
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52565
+ Connecting to database specified by database.yml
52566
+ Processing by EmulatorController#index as HTML
52567
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (31.4ms)
52568
+ Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
52569
+
52570
+
52571
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52572
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
52573
+
52574
+
52575
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52576
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (6ms)
52577
+
52578
+
52579
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52580
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
52581
+
52582
+
52583
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52584
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
52585
+
52586
+
52587
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52588
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
52589
+
52590
+
52591
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52592
+ Served asset /mxit_rails/go.png - 304 Not Modified (5ms)
52593
+
52594
+
52595
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52596
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
52597
+
52598
+
52599
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52600
+ Processing by IndexController#index as HTML
52601
+ Rendered index/index.html.erb within layouts/mxit (0.5ms)
52602
+ Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms)
52603
+
52604
+
52605
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52606
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
52607
+
52608
+
52609
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52610
+ Served asset /mxit_rails/home.png - 304 Not Modified (3ms)
52611
+
52612
+
52613
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52614
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
52615
+
52616
+
52617
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:04 +0200
52618
+ Served asset /mxit_rails/included.css - 200 OK (3ms)
52619
+
52620
+
52621
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:43:05 +0200
52622
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
52623
+
52624
+
52625
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52626
+ Processing by EmulatorController#index as HTML
52627
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (25.7ms)
52628
+ Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
52629
+
52630
+
52631
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52632
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
52633
+
52634
+
52635
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52636
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
52637
+
52638
+
52639
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52640
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52641
+
52642
+
52643
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52644
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52645
+
52646
+
52647
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:43 +0200
52648
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
52649
+
52650
+
52651
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52652
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
52653
+
52654
+
52655
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52656
+ Processing by IndexController#index as HTML
52657
+ Rendered index/index.html.erb within layouts/mxit (14.5ms)
52658
+ Completed 500 Internal Server Error in 19ms
52659
+
52660
+ ActionView::Template::Error (undefined local variable or method `mxit_params' for #<#<Class:0x007f8b63bcc230>:0x007f8b66f46728>):
52661
+ 4: <%= mxit_table_row %>
52662
+ 5: <p>This is the root of the dummy app...</p>
52663
+ 6:
52664
+ 7: <pre><%= mxit_params.inspect %></pre>
52665
+ 8:
52666
+ 9: <p><%= mxit_link '/welcome', 'Single-page form' %><p>
52667
+ 10: <p><%= mxit_link '/form', 'Multi-step form' %><p>
52668
+ app/views/index/index.html.erb:7:in `_app_views_index_index_html_erb___2397982170083083004_70118336511520'
52669
+
52670
+
52671
+ 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)
52672
+ 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)
52673
+ 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)
52674
+
52675
+
52676
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52677
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52678
+
52679
+
52680
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52681
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52682
+
52683
+
52684
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52685
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52686
+
52687
+
52688
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52689
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
52690
+
52691
+
52692
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52693
+ Served asset /mxit_rails/in.png - 304 Not Modified (2ms)
52694
+
52695
+
52696
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:43:44 +0200
52697
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52698
+
52699
+
52700
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52701
+ Processing by EmulatorController#index as HTML
52702
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
52703
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
52704
+
52705
+
52706
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52707
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
52708
+
52709
+
52710
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52711
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
52712
+
52713
+
52714
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52715
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52716
+
52717
+
52718
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52719
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52720
+
52721
+
52722
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52723
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
52724
+
52725
+
52726
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52727
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
52728
+
52729
+
52730
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52731
+ Processing by IndexController#index as HTML
52732
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
52733
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
52734
+
52735
+
52736
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52737
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52738
+
52739
+
52740
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52741
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52742
+
52743
+
52744
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52745
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
52746
+
52747
+
52748
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52749
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52750
+
52751
+
52752
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52753
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52754
+
52755
+
52756
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:43:50 +0200
52757
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52758
+
52759
+
52760
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52761
+ Processing by EmulatorController#index as HTML
52762
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.5ms)
52763
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
52764
+
52765
+
52766
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52767
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
52768
+
52769
+
52770
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52771
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52772
+
52773
+
52774
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52775
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52776
+
52777
+
52778
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52779
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
52780
+
52781
+
52782
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52783
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
52784
+
52785
+
52786
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52787
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
52788
+
52789
+
52790
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52791
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52792
+
52793
+
52794
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52795
+ Processing by IndexController#index as HTML
52796
+ Rendered index/index.html.erb within layouts/mxit (1.3ms)
52797
+ Completed 500 Internal Server Error in 5ms
52798
+
52799
+ ActionView::Template::Error (undefined method `pretty_inspect' for #<Hash:0x007f8b63d05c50>):
52800
+ 4: <%= mxit_table_row %>
52801
+ 5: <p>This is the root of the dummy app...</p>
52802
+ 6:
52803
+ 7: <pre><%= @mxit_params.pretty_inspect %></pre>
52804
+ 8:
52805
+ 9: <p><%= mxit_link '/welcome', 'Single-page form' %><p>
52806
+ 10: <p><%= mxit_link '/form', 'Multi-step form' %><p>
52807
+ app/views/index/index.html.erb:7:in `_app_views_index_index_html_erb___2397982170083083004_70118326855500'
52808
+
52809
+
52810
+ 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)
52811
+ 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.5ms)
52812
+ 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 (9.4ms)
52813
+
52814
+
52815
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52816
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52817
+
52818
+
52819
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52820
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52821
+
52822
+
52823
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52824
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
52825
+
52826
+
52827
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52828
+ Served asset /mxit_rails/in.png - 304 Not Modified (0ms)
52829
+
52830
+
52831
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:43:58 +0200
52832
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52833
+
52834
+
52835
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:44:05 +0200
52836
+ Processing by EmulatorController#index as HTML
52837
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.5ms)
52838
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
52839
+
52840
+
52841
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:44:05 +0200
52842
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
52843
+
52844
+
52845
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:05 +0200
52846
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
52847
+
52848
+
52849
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:05 +0200
52850
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52851
+
52852
+
52853
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:05 +0200
52854
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52855
+
52856
+
52857
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52858
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
52859
+
52860
+
52861
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52862
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
52863
+
52864
+
52865
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52866
+ Processing by IndexController#index as HTML
52867
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
52868
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
52869
+
52870
+
52871
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52872
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52873
+
52874
+
52875
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52876
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
52877
+
52878
+
52879
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52880
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52881
+
52882
+
52883
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52884
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52885
+
52886
+
52887
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52888
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52889
+
52890
+
52891
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:44:06 +0200
52892
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52893
+
52894
+
52895
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52896
+ Processing by EmulatorController#index as HTML
52897
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
52898
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
52899
+
52900
+
52901
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52902
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
52903
+
52904
+
52905
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52906
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
52907
+
52908
+
52909
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52910
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
52911
+
52912
+
52913
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52914
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
52915
+
52916
+
52917
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52918
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
52919
+
52920
+
52921
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52922
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
52923
+
52924
+
52925
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52926
+ Processing by IndexController#index as HTML
52927
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
52928
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
52929
+
52930
+
52931
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52932
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
52933
+
52934
+
52935
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52936
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
52937
+
52938
+
52939
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52940
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
52941
+
52942
+
52943
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52944
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
52945
+
52946
+
52947
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52948
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
52949
+
52950
+
52951
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:44:59 +0200
52952
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
52953
+
52954
+
52955
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52956
+ Connecting to database specified by database.yml
52957
+ Processing by EmulatorController#index as HTML
52958
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (32.2ms)
52959
+ Completed 200 OK in 39ms (Views: 39.2ms | ActiveRecord: 0.0ms)
52960
+
52961
+
52962
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52963
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
52964
+
52965
+
52966
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52967
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
52968
+
52969
+
52970
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52971
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
52972
+
52973
+
52974
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52975
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
52976
+
52977
+
52978
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52979
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (7ms)
52980
+
52981
+
52982
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52983
+ Processing by IndexController#index as HTML
52984
+ Rendered index/index.html.erb within layouts/mxit (0.9ms)
52985
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
52986
+
52987
+
52988
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52989
+ Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
52990
+
52991
+
52992
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52993
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
52994
+
52995
+
52996
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
52997
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
52998
+
52999
+
53000
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
53001
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
53002
+
53003
+
53004
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
53005
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
53006
+
53007
+
53008
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
53009
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
53010
+
53011
+
53012
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:45:34 +0200
53013
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (1ms)
53014
+
53015
+
53016
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:47:51 +0200
53017
+ Processing by IndexController#index as HTML
53018
+ Completed 500 Internal Server Error in 2ms
53019
+
53020
+ NoMethodError (undefined method `get_mxit_field' for #<IndexController:0x007ff01c3bf2b8>):
53021
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:49:in `get_mxit_info'
53022
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
53023
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__277443111630447700__process_action__900084512392555707__callbacks'
53024
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53025
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
53026
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53027
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
53028
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
53029
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
53030
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
53031
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
53032
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
53033
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
53034
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
53035
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
53036
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
53037
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
53038
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
53039
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
53040
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
53041
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
53042
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
53043
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
53044
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
53045
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
53046
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
53047
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
53048
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
53049
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
53050
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
53051
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
53052
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
53053
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
53054
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
53055
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
53056
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
53057
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
53058
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
53059
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
53060
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4368841873522143285__call__25673628257750262__callbacks'
53061
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53062
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
53063
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53064
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
53065
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
53066
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
53067
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
53068
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
53069
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
53070
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
53071
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
53072
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
53073
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
53074
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
53075
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
53076
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
53077
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
53078
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
53079
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
53080
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
53081
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
53082
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
53083
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
53084
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
53085
+
53086
+
53087
+ 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)
53088
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
53089
+ 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.0ms)
53090
+
53091
+
53092
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:47:51 +0200
53093
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
53094
+
53095
+
53096
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:47:51 +0200
53097
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53098
+
53099
+
53100
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53101
+ Processing by EmulatorController#index as HTML
53102
+ Compiled mxit_rails/emulator.js (2ms) (pid 15410)
53103
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (18.9ms)
53104
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
53105
+
53106
+
53107
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53108
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53109
+
53110
+
53111
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53112
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53113
+
53114
+
53115
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53116
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53117
+
53118
+
53119
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53120
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53121
+
53122
+
53123
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53124
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
53125
+
53126
+
53127
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53128
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53129
+
53130
+
53131
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53132
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
53133
+
53134
+
53135
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53136
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53137
+
53138
+
53139
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53140
+ Processing by IndexController#index as HTML
53141
+ Completed 500 Internal Server Error in 2ms
53142
+
53143
+ NoMethodError (undefined method `get_mxit_field' for #<IndexController:0x007ff01c676fd8>):
53144
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:49:in `get_mxit_info'
53145
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
53146
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__277443111630447700__process_action__900084512392555707__callbacks'
53147
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53148
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
53149
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53150
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
53151
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
53152
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
53153
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
53154
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
53155
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
53156
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
53157
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
53158
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
53159
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
53160
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
53161
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
53162
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
53163
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
53164
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
53165
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
53166
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
53167
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
53168
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
53169
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
53170
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
53171
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
53172
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
53173
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
53174
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
53175
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
53176
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
53177
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
53178
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
53179
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
53180
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
53181
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
53182
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
53183
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4368841873522143285__call__25673628257750262__callbacks'
53184
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53185
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
53186
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53187
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
53188
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
53189
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
53190
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
53191
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
53192
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
53193
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
53194
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
53195
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
53196
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
53197
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
53198
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
53199
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
53200
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
53201
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
53202
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
53203
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
53204
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
53205
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
53206
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
53207
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
53208
+
53209
+
53210
+ 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)
53211
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
53212
+ 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.6ms)
53213
+
53214
+
53215
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53216
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53217
+
53218
+
53219
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53220
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53221
+
53222
+
53223
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53224
+ Served asset /mxit_rails/in.png - 304 Not Modified (0ms)
53225
+
53226
+
53227
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:47:56 +0200
53228
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53229
+
53230
+
53231
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53232
+ Processing by EmulatorController#index as HTML
53233
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.3ms)
53234
+ Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
53235
+
53236
+
53237
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53238
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53239
+
53240
+
53241
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53242
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
53243
+
53244
+
53245
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53246
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53247
+
53248
+
53249
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53250
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53251
+
53252
+
53253
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53254
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
53255
+
53256
+
53257
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53258
+ Processing by IndexController#index as HTML
53259
+ Completed 500 Internal Server Error in 2ms
53260
+
53261
+ NoMethodError (undefined method `get_mxit_field' for #<IndexController:0x007ff01fc4e278>):
53262
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:49:in `get_mxit_info'
53263
+ /Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:69:in `setup'
53264
+ activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__277443111630447700__process_action__900084512392555707__callbacks'
53265
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53266
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
53267
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53268
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
53269
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
53270
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
53271
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
53272
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
53273
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
53274
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
53275
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
53276
+ activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
53277
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
53278
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
53279
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
53280
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
53281
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
53282
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
53283
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
53284
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
53285
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
53286
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
53287
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
53288
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
53289
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
53290
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
53291
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
53292
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
53293
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
53294
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
53295
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
53296
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
53297
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
53298
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
53299
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
53300
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
53301
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4368841873522143285__call__25673628257750262__callbacks'
53302
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
53303
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
53304
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
53305
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
53306
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
53307
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
53308
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
53309
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
53310
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
53311
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
53312
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
53313
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
53314
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
53315
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
53316
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
53317
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
53318
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
53319
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
53320
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
53321
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
53322
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
53323
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
53324
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
53325
+ /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
53326
+
53327
+
53328
+ 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)
53329
+ 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)
53330
+ 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)
53331
+
53332
+
53333
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53334
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53335
+
53336
+
53337
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53338
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53339
+
53340
+
53341
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53342
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53343
+
53344
+
53345
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53346
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53347
+
53348
+
53349
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53350
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53351
+
53352
+
53353
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-20 08:48:19 +0200
53354
+ Served asset /mxit_rails/in.png - 304 Not Modified (0ms)
53355
+
53356
+
53357
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:48:20 +0200
53358
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53359
+
53360
+
53361
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53362
+ Connecting to database specified by database.yml
53363
+ Processing by EmulatorController#index as HTML
53364
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (30.0ms)
53365
+ Completed 200 OK in 38ms (Views: 37.4ms | ActiveRecord: 0.0ms)
53366
+
53367
+
53368
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53369
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (3ms)
53370
+
53371
+
53372
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53373
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (6ms)
53374
+
53375
+
53376
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53377
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
53378
+
53379
+
53380
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53381
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
53382
+
53383
+
53384
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:48:25 +0200
53385
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
53386
+
53387
+
53388
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53389
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
53390
+
53391
+
53392
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53393
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
53394
+
53395
+
53396
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53397
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
53398
+
53399
+
53400
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53401
+ Served asset /mxit_rails/home.png - 304 Not Modified (1ms)
53402
+
53403
+
53404
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53405
+ Processing by IndexController#index as HTML
53406
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
53407
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
53408
+
53409
+
53410
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53411
+ Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
53412
+
53413
+
53414
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53415
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
53416
+
53417
+
53418
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:48:26 +0200
53419
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
53420
+
53421
+
53422
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53423
+ Processing by EmulatorController#index as HTML
53424
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.3ms)
53425
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
53426
+
53427
+
53428
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53429
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53430
+
53431
+
53432
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53433
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
53434
+
53435
+
53436
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53437
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53438
+
53439
+
53440
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53441
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53442
+
53443
+
53444
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53445
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
53446
+
53447
+
53448
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53449
+ Processing by IndexController#index as HTML
53450
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
53451
+ Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms)
53452
+
53453
+
53454
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53455
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53456
+
53457
+
53458
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53459
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53460
+
53461
+
53462
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53463
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53464
+
53465
+
53466
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53467
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53468
+
53469
+
53470
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53471
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53472
+
53473
+
53474
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53475
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53476
+
53477
+
53478
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:50:14 +0200
53479
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53480
+
53481
+
53482
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53483
+ Processing by EmulatorController#index as HTML
53484
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.5ms)
53485
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
53486
+
53487
+
53488
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53489
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53490
+
53491
+
53492
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53493
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
53494
+
53495
+
53496
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53497
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53498
+
53499
+
53500
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53501
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53502
+
53503
+
53504
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53505
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
53506
+
53507
+
53508
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53509
+ Processing by IndexController#index as HTML
53510
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53511
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
53512
+
53513
+
53514
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53515
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53516
+
53517
+
53518
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53519
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53520
+
53521
+
53522
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53523
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53524
+
53525
+
53526
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53527
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53528
+
53529
+
53530
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53531
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53532
+
53533
+
53534
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53535
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53536
+
53537
+
53538
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 08:50:41 +0200
53539
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53540
+
53541
+
53542
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53543
+ Processing by EmulatorController#index as HTML
53544
+ Compiled mxit_rails/emulator.js (3ms) (pid 15469)
53545
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.3ms)
53546
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
53547
+
53548
+
53549
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53550
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53551
+
53552
+
53553
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53554
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
53555
+
53556
+
53557
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53558
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53559
+
53560
+
53561
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53562
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
53563
+
53564
+
53565
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53566
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53567
+
53568
+
53569
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53570
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
53571
+
53572
+
53573
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53574
+ Processing by IndexController#index as HTML
53575
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53576
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
53577
+
53578
+
53579
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53580
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53581
+
53582
+
53583
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53584
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53585
+
53586
+
53587
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53588
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
53589
+
53590
+
53591
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53592
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53593
+
53594
+
53595
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:53:16 +0200
53596
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53597
+
53598
+
53599
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53600
+ Processing by EmulatorController#index as HTML
53601
+ Compiled mxit_rails/emulator.js (2ms) (pid 15469)
53602
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (43.9ms)
53603
+ Completed 200 OK in 45ms (Views: 45.2ms | ActiveRecord: 0.0ms)
53604
+
53605
+
53606
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53607
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53608
+
53609
+
53610
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53611
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
53612
+
53613
+
53614
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53615
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53616
+
53617
+
53618
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53619
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
53620
+
53621
+
53622
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:53:32 +0200
53623
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53624
+
53625
+
53626
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53627
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53628
+
53629
+
53630
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53631
+ Processing by IndexController#index as HTML
53632
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
53633
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
53634
+
53635
+
53636
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53637
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53638
+
53639
+
53640
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53641
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53642
+
53643
+
53644
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53645
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53646
+
53647
+
53648
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53649
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
53650
+
53651
+
53652
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:53:33 +0200
53653
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53654
+
53655
+
53656
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53657
+ Processing by EmulatorController#index as HTML
53658
+ Compiled mxit_rails/emulator.js (2ms) (pid 15469)
53659
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.9ms)
53660
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
53661
+
53662
+
53663
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53664
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53665
+
53666
+
53667
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53668
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
53669
+
53670
+
53671
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53672
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53673
+
53674
+
53675
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53676
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53677
+
53678
+
53679
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53680
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
53681
+
53682
+
53683
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53684
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53685
+
53686
+
53687
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53688
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
53689
+
53690
+
53691
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53692
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53693
+
53694
+
53695
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53696
+ Served asset /mxit_rails/out.png - 304 Not Modified (28ms)
53697
+
53698
+
53699
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53700
+ Processing by IndexController#index as HTML
53701
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53702
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
53703
+
53704
+
53705
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53706
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53707
+
53708
+
53709
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:54:39 +0200
53710
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53711
+
53712
+
53713
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:54:41 +0200
53714
+ Processing by IndexController#index as HTML
53715
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53716
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
53717
+
53718
+
53719
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:54:41 +0200
53720
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53721
+
53722
+
53723
+ Started GET "/" for 127.0.0.1 at 2012-09-20 08:54:42 +0200
53724
+ Processing by IndexController#index as HTML
53725
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
53726
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
53727
+
53728
+
53729
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 08:54:42 +0200
53730
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53731
+
53732
+
53733
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:04:52 +0200
53734
+ Processing by EmulatorController#index as HTML
53735
+ Compiled mxit_rails/emulator.js (2ms) (pid 15469)
53736
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.5ms)
53737
+ Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms)
53738
+
53739
+
53740
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53741
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53742
+
53743
+
53744
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53745
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
53746
+
53747
+
53748
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53749
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53750
+
53751
+
53752
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53753
+ Served asset /mxit_rails/emulator.js - 200 OK (9ms)
53754
+
53755
+
53756
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53757
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53758
+
53759
+
53760
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53761
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53762
+
53763
+
53764
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53765
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53766
+
53767
+
53768
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53769
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53770
+
53771
+
53772
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53773
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53774
+
53775
+
53776
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53777
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53778
+
53779
+
53780
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:04:53 +0200
53781
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53782
+
53783
+
53784
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53785
+ Processing by EmulatorController#index as HTML
53786
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
53787
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
53788
+
53789
+
53790
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53791
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53792
+
53793
+
53794
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53795
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53796
+
53797
+
53798
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53799
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
53800
+
53801
+
53802
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53803
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53804
+
53805
+
53806
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53807
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
53808
+
53809
+
53810
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53811
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53812
+
53813
+
53814
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53815
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53816
+
53817
+
53818
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53819
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53820
+
53821
+
53822
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53823
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53824
+
53825
+
53826
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:06:16 +0200
53827
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53828
+
53829
+
53830
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:06:17 +0200
53831
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53832
+
53833
+
53834
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53835
+ Processing by EmulatorController#index as HTML
53836
+ Compiled mxit_rails/emulator.js (2ms) (pid 15469)
53837
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (41.9ms)
53838
+ Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
53839
+
53840
+
53841
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53842
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
53843
+
53844
+
53845
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53846
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
53847
+
53848
+
53849
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53850
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
53851
+
53852
+
53853
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53854
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53855
+
53856
+
53857
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53858
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53859
+
53860
+
53861
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53862
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
53863
+
53864
+
53865
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53866
+ Processing by IndexController#index as HTML
53867
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53868
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
53869
+
53870
+
53871
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53872
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53873
+
53874
+
53875
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53876
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53877
+
53878
+
53879
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53880
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53881
+
53882
+
53883
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53884
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53885
+
53886
+
53887
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:06:48 +0200
53888
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53889
+
53890
+
53891
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:06:51 +0200
53892
+ Processing by IndexController#index as HTML
53893
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53894
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
53895
+
53896
+
53897
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:06:51 +0200
53898
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53899
+
53900
+
53901
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:06:55 +0200
53902
+ Processing by IndexController#index as HTML
53903
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
53904
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
53905
+
53906
+
53907
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:06:55 +0200
53908
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53909
+
53910
+
53911
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53912
+ Processing by EmulatorController#index as HTML
53913
+ Compiled mxit_rails/emulator.css (211ms) (pid 15469)
53914
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (222.6ms)
53915
+ Completed 200 OK in 224ms (Views: 224.0ms | ActiveRecord: 0.0ms)
53916
+
53917
+
53918
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53919
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
53920
+
53921
+
53922
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53923
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
53924
+
53925
+
53926
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53927
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
53928
+
53929
+
53930
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53931
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
53932
+
53933
+
53934
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53935
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
53936
+
53937
+
53938
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53939
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
53940
+
53941
+
53942
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53943
+ Processing by IndexController#index as HTML
53944
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53945
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
53946
+
53947
+
53948
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53949
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
53950
+
53951
+
53952
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53953
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
53954
+
53955
+
53956
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53957
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
53958
+
53959
+
53960
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53961
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
53962
+
53963
+
53964
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:33 +0200
53965
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53966
+
53967
+
53968
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:34 +0200
53969
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53970
+
53971
+
53972
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:35 +0200
53973
+ Processing by IndexController#index as HTML
53974
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
53975
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
53976
+
53977
+
53978
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:35 +0200
53979
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53980
+
53981
+
53982
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:35 +0200
53983
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53984
+
53985
+
53986
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:36 +0200
53987
+ Processing by IndexController#index as HTML
53988
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
53989
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
53990
+
53991
+
53992
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:36 +0200
53993
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
53994
+
53995
+
53996
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:36 +0200
53997
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
53998
+
53999
+
54000
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54001
+ Processing by EmulatorController#index as HTML
54002
+ Compiled mxit_rails/emulator.css (29ms) (pid 15469)
54003
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (39.5ms)
54004
+ Completed 200 OK in 41ms (Views: 40.5ms | ActiveRecord: 0.0ms)
54005
+
54006
+
54007
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54008
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54009
+
54010
+
54011
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54012
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54013
+
54014
+
54015
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54016
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54017
+
54018
+
54019
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54020
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54021
+
54022
+
54023
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54024
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54025
+
54026
+
54027
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54028
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54029
+
54030
+
54031
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54032
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54033
+
54034
+
54035
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54036
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54037
+
54038
+
54039
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54040
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54041
+
54042
+
54043
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54044
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54045
+
54046
+
54047
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54048
+ Processing by IndexController#index as HTML
54049
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
54050
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
54051
+
54052
+
54053
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:48 +0200
54054
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54055
+
54056
+
54057
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:49 +0200
54058
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54059
+
54060
+
54061
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:51 +0200
54062
+ Processing by IndexController#index as HTML
54063
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54064
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
54065
+
54066
+
54067
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:51 +0200
54068
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54069
+
54070
+
54071
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:51 +0200
54072
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54073
+
54074
+
54075
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:07:52 +0200
54076
+ Processing by IndexController#index as HTML
54077
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
54078
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
54079
+
54080
+
54081
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:07:52 +0200
54082
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54083
+
54084
+
54085
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:07:52 +0200
54086
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54087
+
54088
+
54089
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54090
+ Processing by EmulatorController#index as HTML
54091
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.9ms)
54092
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
54093
+
54094
+
54095
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54096
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
54097
+
54098
+
54099
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54100
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54101
+
54102
+
54103
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54104
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
54105
+
54106
+
54107
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54108
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54109
+
54110
+
54111
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54112
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54113
+
54114
+
54115
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54116
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54117
+
54118
+
54119
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54120
+ Processing by IndexController#index as HTML
54121
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54122
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
54123
+
54124
+
54125
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54126
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54127
+
54128
+
54129
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54130
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54131
+
54132
+
54133
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54134
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54135
+
54136
+
54137
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54138
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
54139
+
54140
+
54141
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54142
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54143
+
54144
+
54145
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:08:17 +0200
54146
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54147
+
54148
+
54149
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:08:20 +0200
54150
+ Processing by IndexController#index as HTML
54151
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
54152
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
54153
+
54154
+
54155
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:08:20 +0200
54156
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54157
+
54158
+
54159
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:08:20 +0200
54160
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54161
+
54162
+
54163
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:08:21 +0200
54164
+ Processing by IndexController#index as HTML
54165
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
54166
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
54167
+
54168
+
54169
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:08:21 +0200
54170
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54171
+
54172
+
54173
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:08:21 +0200
54174
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54175
+
54176
+
54177
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54178
+ Processing by EmulatorController#index as HTML
54179
+ Compiled mxit_rails/emulator.js (3ms) (pid 15469)
54180
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.4ms)
54181
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
54182
+
54183
+
54184
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54185
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
54186
+
54187
+
54188
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54189
+ Served asset /mxit_rails/emulator.js - 200 OK (43ms)
54190
+
54191
+
54192
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54193
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54194
+
54195
+
54196
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54197
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54198
+
54199
+
54200
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54201
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54202
+
54203
+
54204
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54205
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
54206
+
54207
+
54208
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54209
+ Processing by IndexController#index as HTML
54210
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54211
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
54212
+
54213
+
54214
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54215
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54216
+
54217
+
54218
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54219
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54220
+
54221
+
54222
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54223
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54224
+
54225
+
54226
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54227
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54228
+
54229
+
54230
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:05 +0200
54231
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54232
+
54233
+
54234
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:06 +0200
54235
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54236
+
54237
+
54238
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54239
+ Processing by EmulatorController#index as HTML
54240
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (4.6ms)
54241
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
54242
+
54243
+
54244
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54245
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
54246
+
54247
+
54248
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54249
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
54250
+
54251
+
54252
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54253
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54254
+
54255
+
54256
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54257
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54258
+
54259
+
54260
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54261
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54262
+
54263
+
54264
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54265
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54266
+
54267
+
54268
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54269
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54270
+
54271
+
54272
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54273
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54274
+
54275
+
54276
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54277
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54278
+
54279
+
54280
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54281
+ Processing by IndexController#index as HTML
54282
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54283
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
54284
+
54285
+
54286
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54287
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54288
+
54289
+
54290
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:11 +0200
54291
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54292
+
54293
+
54294
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:12 +0200
54295
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54296
+
54297
+
54298
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54299
+ Processing by EmulatorController#index as HTML
54300
+ Compiled mxit_rails/emulator.css (34ms) (pid 15469)
54301
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (50.6ms)
54302
+ Completed 200 OK in 52ms (Views: 51.7ms | ActiveRecord: 0.0ms)
54303
+
54304
+
54305
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54306
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54307
+
54308
+
54309
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54310
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
54311
+
54312
+
54313
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54314
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54315
+
54316
+
54317
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54318
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54319
+
54320
+
54321
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54322
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54323
+
54324
+
54325
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54326
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
54327
+
54328
+
54329
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54330
+ Processing by IndexController#index as HTML
54331
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54332
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
54333
+
54334
+
54335
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54336
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54337
+
54338
+
54339
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54340
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54341
+
54342
+
54343
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54344
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54345
+
54346
+
54347
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54348
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54349
+
54350
+
54351
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54352
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54353
+
54354
+
54355
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:29 +0200
54356
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54357
+
54358
+
54359
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54360
+ Processing by EmulatorController#index as HTML
54361
+ Compiled mxit_rails/emulator.css (70ms) (pid 15469)
54362
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (81.6ms)
54363
+ Completed 200 OK in 83ms (Views: 82.8ms | ActiveRecord: 0.0ms)
54364
+
54365
+
54366
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54367
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
54368
+
54369
+
54370
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54371
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54372
+
54373
+
54374
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54375
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54376
+
54377
+
54378
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54379
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
54380
+
54381
+
54382
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54383
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54384
+
54385
+
54386
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54387
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54388
+
54389
+
54390
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54391
+ Processing by IndexController#index as HTML
54392
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54393
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
54394
+
54395
+
54396
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54397
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54398
+
54399
+
54400
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54401
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54402
+
54403
+
54404
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54405
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
54406
+
54407
+
54408
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54409
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
54410
+
54411
+
54412
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54413
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54414
+
54415
+
54416
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:36 +0200
54417
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54418
+
54419
+
54420
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54421
+ Processing by EmulatorController#index as HTML
54422
+ Compiled mxit_rails/emulator.css (29ms) (pid 15469)
54423
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (39.2ms)
54424
+ Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.0ms)
54425
+
54426
+
54427
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54428
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
54429
+
54430
+
54431
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54432
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
54433
+
54434
+
54435
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54436
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54437
+
54438
+
54439
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54440
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54441
+
54442
+
54443
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54444
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54445
+
54446
+
54447
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54448
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54449
+
54450
+
54451
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54452
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54453
+
54454
+
54455
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54456
+ Processing by IndexController#index as HTML
54457
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54458
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
54459
+
54460
+
54461
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54462
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54463
+
54464
+
54465
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54466
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54467
+
54468
+
54469
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54470
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54471
+
54472
+
54473
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:42 +0200
54474
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54475
+
54476
+
54477
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:43 +0200
54478
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54479
+
54480
+
54481
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54482
+ Processing by EmulatorController#index as HTML
54483
+ Compiled mxit_rails/emulator.css (34ms) (pid 15469)
54484
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (45.3ms)
54485
+ Completed 200 OK in 46ms (Views: 46.3ms | ActiveRecord: 0.0ms)
54486
+
54487
+
54488
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54489
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
54490
+
54491
+
54492
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54493
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54494
+
54495
+
54496
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54497
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54498
+
54499
+
54500
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54501
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
54502
+
54503
+
54504
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:47 +0200
54505
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
54506
+
54507
+
54508
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54509
+ Processing by IndexController#index as HTML
54510
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54511
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
54512
+
54513
+
54514
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54515
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54516
+
54517
+
54518
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54519
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54520
+
54521
+
54522
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54523
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54524
+
54525
+
54526
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54527
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54528
+
54529
+
54530
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54531
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54532
+
54533
+
54534
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54535
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54536
+
54537
+
54538
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:48 +0200
54539
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54540
+
54541
+
54542
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:53 +0200
54543
+ Processing by EmulatorController#index as HTML
54544
+ Compiled mxit_rails/emulator.css (35ms) (pid 15469)
54545
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (46.4ms)
54546
+ Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.0ms)
54547
+
54548
+
54549
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:53 +0200
54550
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54551
+
54552
+
54553
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54554
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54555
+
54556
+
54557
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54558
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54559
+
54560
+
54561
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54562
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54563
+
54564
+
54565
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54566
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54567
+
54568
+
54569
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54570
+ Served asset /mxit_rails/out.png - 304 Not Modified (4ms)
54571
+
54572
+
54573
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54574
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54575
+
54576
+
54577
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54578
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54579
+
54580
+
54581
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54582
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54583
+
54584
+
54585
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54586
+ Processing by IndexController#index as HTML
54587
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
54588
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
54589
+
54590
+
54591
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54592
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54593
+
54594
+
54595
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54596
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54597
+
54598
+
54599
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:54 +0200
54600
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54601
+
54602
+
54603
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54604
+ Processing by EmulatorController#index as HTML
54605
+ Compiled mxit_rails/emulator.css (32ms) (pid 15469)
54606
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (42.2ms)
54607
+ Completed 200 OK in 43ms (Views: 43.0ms | ActiveRecord: 0.0ms)
54608
+
54609
+
54610
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54611
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54612
+
54613
+
54614
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54615
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54616
+
54617
+
54618
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54619
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54620
+
54621
+
54622
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54623
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54624
+
54625
+
54626
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54627
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54628
+
54629
+
54630
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54631
+ Processing by IndexController#index as HTML
54632
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54633
+ Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.0ms)
54634
+
54635
+
54636
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54637
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54638
+
54639
+
54640
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54641
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54642
+
54643
+
54644
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54645
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54646
+
54647
+
54648
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54649
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54650
+
54651
+
54652
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54653
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54654
+
54655
+
54656
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54657
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54658
+
54659
+
54660
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:09:57 +0200
54661
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54662
+
54663
+
54664
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:10:28 +0200
54665
+ Processing by EmulatorController#index as HTML
54666
+ Compiled mxit_rails/emulator.css (39ms) (pid 15469)
54667
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (51.3ms)
54668
+ Completed 200 OK in 53ms (Views: 52.5ms | ActiveRecord: 0.0ms)
54669
+
54670
+
54671
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54672
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54673
+
54674
+
54675
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54676
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54677
+
54678
+
54679
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54680
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
54681
+
54682
+
54683
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54684
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54685
+
54686
+
54687
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54688
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
54689
+
54690
+
54691
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54692
+ Processing by IndexController#index as HTML
54693
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
54694
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
54695
+
54696
+
54697
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54698
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54699
+
54700
+
54701
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54702
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54703
+
54704
+
54705
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54706
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54707
+
54708
+
54709
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54710
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54711
+
54712
+
54713
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54714
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54715
+
54716
+
54717
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54718
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54719
+
54720
+
54721
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:10:29 +0200
54722
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54723
+
54724
+
54725
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54726
+ Processing by EmulatorController#index as HTML
54727
+ Compiled mxit_rails/emulator.css (35ms) (pid 15469)
54728
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (47.6ms)
54729
+ Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
54730
+
54731
+
54732
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54733
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
54734
+
54735
+
54736
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54737
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (2ms)
54738
+
54739
+
54740
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54741
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54742
+
54743
+
54744
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54745
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54746
+
54747
+
54748
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54749
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54750
+
54751
+
54752
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54753
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54754
+
54755
+
54756
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54757
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
54758
+
54759
+
54760
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54761
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54762
+
54763
+
54764
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54765
+ Processing by IndexController#index as HTML
54766
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54767
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
54768
+
54769
+
54770
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54771
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54772
+
54773
+
54774
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54775
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54776
+
54777
+
54778
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:10:48 +0200
54779
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54780
+
54781
+
54782
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-20 09:10:49 +0200
54783
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
54784
+
54785
+
54786
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54787
+ Processing by EmulatorController#index as HTML
54788
+ Compiled mxit_rails/emulator.css (31ms) (pid 15469)
54789
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (72.4ms)
54790
+ Completed 200 OK in 74ms (Views: 73.7ms | ActiveRecord: 0.0ms)
54791
+
54792
+
54793
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54794
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
54795
+
54796
+
54797
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54798
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
54799
+
54800
+
54801
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54802
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54803
+
54804
+
54805
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54806
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54807
+
54808
+
54809
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54810
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54811
+
54812
+
54813
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54814
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54815
+
54816
+
54817
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54818
+ Processing by IndexController#index as HTML
54819
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
54820
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
54821
+
54822
+
54823
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54824
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54825
+
54826
+
54827
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54828
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54829
+
54830
+
54831
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54832
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54833
+
54834
+
54835
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54836
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54837
+
54838
+
54839
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:13 +0200
54840
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54841
+
54842
+
54843
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:15 +0200
54844
+ Processing by EmulatorController#index as HTML
54845
+ Compiled mxit_rails/emulator.css (33ms) (pid 15469)
54846
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (43.3ms)
54847
+ Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms)
54848
+
54849
+
54850
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54851
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54852
+
54853
+
54854
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54855
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
54856
+
54857
+
54858
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54859
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
54860
+
54861
+
54862
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54863
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
54864
+
54865
+
54866
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54867
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54868
+
54869
+
54870
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54871
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54872
+
54873
+
54874
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54875
+ Processing by IndexController#index as HTML
54876
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
54877
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
54878
+
54879
+
54880
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54881
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54882
+
54883
+
54884
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54885
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54886
+
54887
+
54888
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54889
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54890
+
54891
+
54892
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54893
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
54894
+
54895
+
54896
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:16 +0200
54897
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54898
+
54899
+
54900
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:19 +0200
54901
+ Processing by EmulatorController#index as HTML
54902
+ Compiled mxit_rails/emulator.css (44ms) (pid 15469)
54903
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (85.9ms)
54904
+ Completed 200 OK in 87ms (Views: 87.2ms | ActiveRecord: 0.0ms)
54905
+
54906
+
54907
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54908
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
54909
+
54910
+
54911
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54912
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
54913
+
54914
+
54915
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54916
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54917
+
54918
+
54919
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54920
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54921
+
54922
+
54923
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54924
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
54925
+
54926
+
54927
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54928
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
54929
+
54930
+
54931
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54932
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54933
+
54934
+
54935
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54936
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54937
+
54938
+
54939
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54940
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
54941
+
54942
+
54943
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54944
+ Processing by IndexController#index as HTML
54945
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
54946
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
54947
+
54948
+
54949
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54950
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
54951
+
54952
+
54953
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:20 +0200
54954
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
54955
+
54956
+
54957
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54958
+ Processing by EmulatorController#index as HTML
54959
+ Compiled mxit_rails/emulator.css (39ms) (pid 15469)
54960
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (50.3ms)
54961
+ Completed 200 OK in 51ms (Views: 51.2ms | ActiveRecord: 0.0ms)
54962
+
54963
+
54964
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54965
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
54966
+
54967
+
54968
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54969
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
54970
+
54971
+
54972
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54973
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
54974
+
54975
+
54976
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54977
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
54978
+
54979
+
54980
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54981
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
54982
+
54983
+
54984
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54985
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
54986
+
54987
+
54988
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54989
+ Served asset /mxit_rails/out.png - 304 Not Modified (6ms)
54990
+
54991
+
54992
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54993
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
54994
+
54995
+
54996
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
54997
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
54998
+
54999
+
55000
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
55001
+ Processing by IndexController#index as HTML
55002
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
55003
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
55004
+
55005
+
55006
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
55007
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55008
+
55009
+
55010
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:25 +0200
55011
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55012
+
55013
+
55014
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:33 +0200
55015
+ Processing by EmulatorController#index as HTML
55016
+ Compiled mxit_rails/emulator.css (31ms) (pid 15469)
55017
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (41.3ms)
55018
+ Completed 200 OK in 42ms (Views: 42.3ms | ActiveRecord: 0.0ms)
55019
+
55020
+
55021
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:33 +0200
55022
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55023
+
55024
+
55025
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:33 +0200
55026
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
55027
+
55028
+
55029
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:33 +0200
55030
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55031
+
55032
+
55033
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55034
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55035
+
55036
+
55037
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55038
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
55039
+
55040
+
55041
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55042
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55043
+
55044
+
55045
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55046
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
55047
+
55048
+
55049
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55050
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55051
+
55052
+
55053
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55054
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55055
+
55056
+
55057
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55058
+ Processing by IndexController#index as HTML
55059
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55060
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
55061
+
55062
+
55063
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55064
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55065
+
55066
+
55067
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:34 +0200
55068
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55069
+
55070
+
55071
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:43 +0200
55072
+ Processing by EmulatorController#index as HTML
55073
+ Compiled mxit_rails/emulator.css (32ms) (pid 15469)
55074
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (44.7ms)
55075
+ Completed 200 OK in 46ms (Views: 45.8ms | ActiveRecord: 0.0ms)
55076
+
55077
+
55078
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55079
+ Served asset /mxit_rails/emulator.css - 200 OK (5ms)
55080
+
55081
+
55082
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55083
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55084
+
55085
+
55086
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55087
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55088
+
55089
+
55090
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55091
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55092
+
55093
+
55094
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55095
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55096
+
55097
+
55098
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55099
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55100
+
55101
+
55102
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55103
+ Processing by IndexController#index as HTML
55104
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55105
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
55106
+
55107
+
55108
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55109
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55110
+
55111
+
55112
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55113
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55114
+
55115
+
55116
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55117
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55118
+
55119
+
55120
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55121
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55122
+
55123
+
55124
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:44 +0200
55125
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55126
+
55127
+
55128
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55129
+ Processing by EmulatorController#index as HTML
55130
+ Compiled mxit_rails/emulator.css (29ms) (pid 15469)
55131
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (39.4ms)
55132
+ Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.0ms)
55133
+
55134
+
55135
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55136
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55137
+
55138
+
55139
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55140
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55141
+
55142
+
55143
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55144
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
55145
+
55146
+
55147
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55148
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55149
+
55150
+
55151
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55152
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55153
+
55154
+
55155
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55156
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
55157
+
55158
+
55159
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55160
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55161
+
55162
+
55163
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55164
+ Processing by IndexController#index as HTML
55165
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
55166
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
55167
+
55168
+
55169
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55170
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55171
+
55172
+
55173
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55174
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55175
+
55176
+
55177
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55178
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
55179
+
55180
+
55181
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:11:59 +0200
55182
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55183
+
55184
+
55185
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55186
+ Processing by EmulatorController#index as HTML
55187
+ Compiled mxit_rails/emulator.css (35ms) (pid 15469)
55188
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (44.9ms)
55189
+ Completed 200 OK in 46ms (Views: 46.0ms | ActiveRecord: 0.0ms)
55190
+
55191
+
55192
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55193
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
55194
+
55195
+
55196
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55197
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55198
+
55199
+
55200
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55201
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55202
+
55203
+
55204
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55205
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
55206
+
55207
+
55208
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:32 +0200
55209
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55210
+
55211
+
55212
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55213
+ Served asset /mxit_rails/go.png - 304 Not Modified (4ms)
55214
+
55215
+
55216
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55217
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55218
+
55219
+
55220
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55221
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55222
+
55223
+
55224
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55225
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55226
+
55227
+
55228
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55229
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55230
+
55231
+
55232
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55233
+ Processing by IndexController#index as HTML
55234
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55235
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
55236
+
55237
+
55238
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:33 +0200
55239
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55240
+
55241
+
55242
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55243
+ Processing by EmulatorController#index as HTML
55244
+ Compiled mxit_rails/emulator.css (29ms) (pid 15469)
55245
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (38.7ms)
55246
+ Completed 200 OK in 40ms (Views: 39.6ms | ActiveRecord: 0.0ms)
55247
+
55248
+
55249
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55250
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55251
+
55252
+
55253
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55254
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
55255
+
55256
+
55257
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55258
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55259
+
55260
+
55261
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55262
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55263
+
55264
+
55265
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:47 +0200
55266
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55267
+
55268
+
55269
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55270
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55271
+
55272
+
55273
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55274
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55275
+
55276
+
55277
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55278
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55279
+
55280
+
55281
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55282
+ Processing by IndexController#index as HTML
55283
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
55284
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
55285
+
55286
+
55287
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55288
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55289
+
55290
+
55291
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55292
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55293
+
55294
+
55295
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:48 +0200
55296
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55297
+
55298
+
55299
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:12:52 +0200
55300
+ Processing by EmulatorController#index as HTML
55301
+ Compiled mxit_rails/emulator.css (85ms) (pid 15469)
55302
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (95.4ms)
55303
+ Completed 200 OK in 97ms (Views: 96.5ms | ActiveRecord: 0.0ms)
55304
+
55305
+
55306
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:52 +0200
55307
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
55308
+
55309
+
55310
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:52 +0200
55311
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
55312
+
55313
+
55314
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55315
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55316
+
55317
+
55318
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55319
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55320
+
55321
+
55322
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55323
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
55324
+
55325
+
55326
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55327
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55328
+
55329
+
55330
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55331
+ Processing by IndexController#index as HTML
55332
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55333
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
55334
+
55335
+
55336
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55337
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55338
+
55339
+
55340
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55341
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55342
+
55343
+
55344
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55345
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55346
+
55347
+
55348
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55349
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55350
+
55351
+
55352
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:12:53 +0200
55353
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55354
+
55355
+
55356
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55357
+ Processing by EmulatorController#index as HTML
55358
+ Compiled mxit_rails/emulator.css (32ms) (pid 15469)
55359
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (42.8ms)
55360
+ Completed 200 OK in 44ms (Views: 44.1ms | ActiveRecord: 0.0ms)
55361
+
55362
+
55363
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55364
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
55365
+
55366
+
55367
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55368
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
55369
+
55370
+
55371
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55372
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55373
+
55374
+
55375
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55376
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55377
+
55378
+
55379
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55380
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55381
+
55382
+
55383
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55384
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55385
+
55386
+
55387
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55388
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55389
+
55390
+
55391
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55392
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55393
+
55394
+
55395
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55396
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55397
+
55398
+
55399
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55400
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55401
+
55402
+
55403
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55404
+ Processing by IndexController#index as HTML
55405
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55406
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
55407
+
55408
+
55409
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:00 +0200
55410
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55411
+
55412
+
55413
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55414
+ Processing by EmulatorController#index as HTML
55415
+ Compiled mxit_rails/emulator.css (38ms) (pid 15469)
55416
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (52.0ms)
55417
+ Completed 200 OK in 53ms (Views: 53.1ms | ActiveRecord: 0.0ms)
55418
+
55419
+
55420
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55421
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55422
+
55423
+
55424
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55425
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
55426
+
55427
+
55428
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55429
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
55430
+
55431
+
55432
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55433
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55434
+
55435
+
55436
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55437
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55438
+
55439
+
55440
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55441
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55442
+
55443
+
55444
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55445
+ Processing by IndexController#index as HTML
55446
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55447
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
55448
+
55449
+
55450
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55451
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55452
+
55453
+
55454
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55455
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55456
+
55457
+
55458
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55459
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55460
+
55461
+
55462
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55463
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55464
+
55465
+
55466
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:05 +0200
55467
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55468
+
55469
+
55470
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55471
+ Processing by EmulatorController#index as HTML
55472
+ Compiled mxit_rails/emulator.css (31ms) (pid 15469)
55473
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (41.5ms)
55474
+ Completed 200 OK in 43ms (Views: 42.5ms | ActiveRecord: 0.0ms)
55475
+
55476
+
55477
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55478
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55479
+
55480
+
55481
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55482
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55483
+
55484
+
55485
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55486
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
55487
+
55488
+
55489
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55490
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55491
+
55492
+
55493
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55494
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55495
+
55496
+
55497
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55498
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55499
+
55500
+
55501
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55502
+ Processing by IndexController#index as HTML
55503
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
55504
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
55505
+
55506
+
55507
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55508
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55509
+
55510
+
55511
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55512
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55513
+
55514
+
55515
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55516
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55517
+
55518
+
55519
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55520
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
55521
+
55522
+
55523
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:14 +0200
55524
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55525
+
55526
+
55527
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:22 +0200
55528
+ Processing by EmulatorController#index as HTML
55529
+ Compiled mxit_rails/emulator.css (40ms) (pid 15469)
55530
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (50.7ms)
55531
+ Completed 200 OK in 52ms (Views: 51.7ms | ActiveRecord: 0.0ms)
55532
+
55533
+
55534
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:22 +0200
55535
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55536
+
55537
+
55538
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:22 +0200
55539
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
55540
+
55541
+
55542
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55543
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55544
+
55545
+
55546
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55547
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55548
+
55549
+
55550
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55551
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55552
+
55553
+
55554
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55555
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55556
+
55557
+
55558
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55559
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55560
+
55561
+
55562
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55563
+ Processing by IndexController#index as HTML
55564
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55565
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
55566
+
55567
+
55568
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55569
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55570
+
55571
+
55572
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55573
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (43ms)
55574
+
55575
+
55576
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55577
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55578
+
55579
+
55580
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:23 +0200
55581
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55582
+
55583
+
55584
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55585
+ Processing by EmulatorController#index as HTML
55586
+ Compiled mxit_rails/emulator.css (32ms) (pid 15469)
55587
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (42.3ms)
55588
+ Completed 200 OK in 44ms (Views: 43.4ms | ActiveRecord: 0.0ms)
55589
+
55590
+
55591
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55592
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55593
+
55594
+
55595
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55596
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55597
+
55598
+
55599
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55600
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
55601
+
55602
+
55603
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55604
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55605
+
55606
+
55607
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55608
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55609
+
55610
+
55611
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55612
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
55613
+
55614
+
55615
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55616
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
55617
+
55618
+
55619
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55620
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55621
+
55622
+
55623
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55624
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55625
+
55626
+
55627
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55628
+ Processing by IndexController#index as HTML
55629
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55630
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
55631
+
55632
+
55633
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55634
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55635
+
55636
+
55637
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:30 +0200
55638
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55639
+
55640
+
55641
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55642
+ Processing by EmulatorController#index as HTML
55643
+ Compiled mxit_rails/emulator.css (33ms) (pid 15469)
55644
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (43.2ms)
55645
+ Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms)
55646
+
55647
+
55648
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55649
+ Served asset /mxit_rails/emulator.css - 200 OK (3ms)
55650
+
55651
+
55652
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55653
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
55654
+
55655
+
55656
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55657
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55658
+
55659
+
55660
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55661
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55662
+
55663
+
55664
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55665
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55666
+
55667
+
55668
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55669
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55670
+
55671
+
55672
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55673
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55674
+
55675
+
55676
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55677
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55678
+
55679
+
55680
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55681
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55682
+
55683
+
55684
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55685
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55686
+
55687
+
55688
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55689
+ Processing by IndexController#index as HTML
55690
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55691
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
55692
+
55693
+
55694
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:42 +0200
55695
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55696
+
55697
+
55698
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55699
+ Processing by EmulatorController#index as HTML
55700
+ Compiled mxit_rails/emulator.css (60ms) (pid 15469)
55701
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (70.0ms)
55702
+ Completed 200 OK in 71ms (Views: 70.9ms | ActiveRecord: 0.0ms)
55703
+
55704
+
55705
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55706
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55707
+
55708
+
55709
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55710
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
55711
+
55712
+
55713
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55714
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55715
+
55716
+
55717
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55718
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55719
+
55720
+
55721
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55722
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55723
+
55724
+
55725
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55726
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55727
+
55728
+
55729
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55730
+ Processing by IndexController#index as HTML
55731
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55732
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
55733
+
55734
+
55735
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55736
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55737
+
55738
+
55739
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55740
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55741
+
55742
+
55743
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55744
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55745
+
55746
+
55747
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55748
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
55749
+
55750
+
55751
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:45 +0200
55752
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55753
+
55754
+
55755
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55756
+ Processing by EmulatorController#index as HTML
55757
+ Compiled mxit_rails/emulator.css (31ms) (pid 15469)
55758
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (40.6ms)
55759
+ Completed 200 OK in 42ms (Views: 41.7ms | ActiveRecord: 0.0ms)
55760
+
55761
+
55762
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55763
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
55764
+
55765
+
55766
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55767
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55768
+
55769
+
55770
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55771
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
55772
+
55773
+
55774
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55775
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55776
+
55777
+
55778
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:49 +0200
55779
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55780
+
55781
+
55782
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55783
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55784
+
55785
+
55786
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55787
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55788
+
55789
+
55790
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55791
+ Processing by IndexController#index as HTML
55792
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55793
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
55794
+
55795
+
55796
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55797
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55798
+
55799
+
55800
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55801
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55802
+
55803
+
55804
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55805
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55806
+
55807
+
55808
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:50 +0200
55809
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55810
+
55811
+
55812
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55813
+ Processing by EmulatorController#index as HTML
55814
+ Compiled mxit_rails/emulator.css (38ms) (pid 15469)
55815
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (48.6ms)
55816
+ Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
55817
+
55818
+
55819
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55820
+ Served asset /mxit_rails/emulator.css - 200 OK (33ms)
55821
+
55822
+
55823
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55824
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
55825
+
55826
+
55827
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55828
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
55829
+
55830
+
55831
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55832
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55833
+
55834
+
55835
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55836
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55837
+
55838
+
55839
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55840
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55841
+
55842
+
55843
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55844
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
55845
+
55846
+
55847
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55848
+ Processing by IndexController#index as HTML
55849
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55850
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
55851
+
55852
+
55853
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55854
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55855
+
55856
+
55857
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55858
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55859
+
55860
+
55861
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55862
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55863
+
55864
+
55865
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:53 +0200
55866
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55867
+
55868
+
55869
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55870
+ Processing by EmulatorController#index as HTML
55871
+ Compiled mxit_rails/emulator.css (34ms) (pid 15469)
55872
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (44.4ms)
55873
+ Completed 200 OK in 46ms (Views: 45.4ms | ActiveRecord: 0.0ms)
55874
+
55875
+
55876
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55877
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55878
+
55879
+
55880
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55881
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
55882
+
55883
+
55884
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55885
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55886
+
55887
+
55888
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55889
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55890
+
55891
+
55892
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55893
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55894
+
55895
+
55896
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55897
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
55898
+
55899
+
55900
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55901
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55902
+
55903
+
55904
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55905
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55906
+
55907
+
55908
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55909
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55910
+
55911
+
55912
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55913
+ Processing by IndexController#index as HTML
55914
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55915
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
55916
+
55917
+
55918
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55919
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55920
+
55921
+
55922
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:13:57 +0200
55923
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55924
+
55925
+
55926
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55927
+ Processing by EmulatorController#index as HTML
55928
+ Compiled mxit_rails/emulator.css (36ms) (pid 15469)
55929
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (48.0ms)
55930
+ Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms)
55931
+
55932
+
55933
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55934
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55935
+
55936
+
55937
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55938
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
55939
+
55940
+
55941
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55942
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
55943
+
55944
+
55945
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55946
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
55947
+
55948
+
55949
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55950
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
55951
+
55952
+
55953
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55954
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
55955
+
55956
+
55957
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55958
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
55959
+
55960
+
55961
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55962
+ Processing by IndexController#index as HTML
55963
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
55964
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
55965
+
55966
+
55967
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55968
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
55969
+
55970
+
55971
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55972
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
55973
+
55974
+
55975
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55976
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
55977
+
55978
+
55979
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:20 +0200
55980
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
55981
+
55982
+
55983
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
55984
+ Processing by EmulatorController#index as HTML
55985
+ Compiled mxit_rails/emulator.css (31ms) (pid 15469)
55986
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (41.5ms)
55987
+ Completed 200 OK in 43ms (Views: 43.0ms | ActiveRecord: 0.0ms)
55988
+
55989
+
55990
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
55991
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
55992
+
55993
+
55994
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
55995
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
55996
+
55997
+
55998
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
55999
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
56000
+
56001
+
56002
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56003
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
56004
+
56005
+
56006
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56007
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
56008
+
56009
+
56010
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56011
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
56012
+
56013
+
56014
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56015
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
56016
+
56017
+
56018
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56019
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
56020
+
56021
+
56022
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56023
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
56024
+
56025
+
56026
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56027
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
56028
+
56029
+
56030
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56031
+ Processing by IndexController#index as HTML
56032
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
56033
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
56034
+
56035
+
56036
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:36 +0200
56037
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56038
+
56039
+
56040
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56041
+ Processing by EmulatorController#index as HTML
56042
+ Compiled mxit_rails/emulator.css (34ms) (pid 15469)
56043
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (44.2ms)
56044
+ Completed 200 OK in 45ms (Views: 45.2ms | ActiveRecord: 0.0ms)
56045
+
56046
+
56047
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56048
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
56049
+
56050
+
56051
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56052
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
56053
+
56054
+
56055
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56056
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
56057
+
56058
+
56059
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56060
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
56061
+
56062
+
56063
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56064
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
56065
+
56066
+
56067
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56068
+ Served asset /mxit_rails/go.png - 304 Not Modified (5ms)
56069
+
56070
+
56071
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56072
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
56073
+
56074
+
56075
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56076
+ Processing by IndexController#index as HTML
56077
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
56078
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
56079
+
56080
+
56081
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56082
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
56083
+
56084
+
56085
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56086
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
56087
+
56088
+
56089
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56090
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
56091
+
56092
+
56093
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:42 +0200
56094
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56095
+
56096
+
56097
+ Started GET "/emulator/" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56098
+ Processing by EmulatorController#index as HTML
56099
+ Compiled mxit_rails/emulator.css (62ms) (pid 15469)
56100
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (72.4ms)
56101
+ Completed 200 OK in 74ms (Views: 73.4ms | ActiveRecord: 0.0ms)
56102
+
56103
+
56104
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56105
+ Served asset /mxit_rails/emulator.css - 200 OK (4ms)
56106
+
56107
+
56108
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56109
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
56110
+
56111
+
56112
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56113
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
56114
+
56115
+
56116
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56117
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
56118
+
56119
+
56120
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56121
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
56122
+
56123
+
56124
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56125
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
56126
+
56127
+
56128
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56129
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
56130
+
56131
+
56132
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56133
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
56134
+
56135
+
56136
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56137
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
56138
+
56139
+
56140
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56141
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
56142
+
56143
+
56144
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56145
+ Processing by IndexController#index as HTML
56146
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
56147
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
56148
+
56149
+
56150
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:14:46 +0200
56151
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56152
+
56153
+
56154
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:15:20 +0200
56155
+ Processing by IndexController#index as HTML
56156
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
56157
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
56158
+
56159
+
56160
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:15:20 +0200
56161
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56162
+
56163
+
56164
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:15:24 +0200
56165
+ Processing by IndexController#index as HTML
56166
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
56167
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
56168
+
56169
+
56170
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:15:24 +0200
56171
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56172
+
56173
+
56174
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:15:27 +0200
56175
+ Processing by IndexController#index as HTML
56176
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
56177
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
56178
+
56179
+
56180
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:15:27 +0200
56181
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56182
+
56183
+
56184
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:15:58 +0200
56185
+ Processing by IndexController#index as HTML
56186
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
56187
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
56188
+
56189
+
56190
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:15:58 +0200
56191
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
56192
+
56193
+
56194
+ Started GET "/" for 127.0.0.1 at 2012-09-20 09:16:03 +0200
56195
+ Processing by IndexController#index as HTML
56196
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
56197
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
56198
+
56199
+
56200
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-20 09:16:03 +0200
56201
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)