mxit-rails 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/mxit_rails/emulator.js +19 -23
- data/app/views/emulator/index.html.erb +2 -3
- data/app/views/layouts/mxit.html.erb +1 -0
- data/lib/mxit_rails/version.rb +1 -1
- data/test/dummy/log/development.log +388 -0
- data/test/dummy/tmp/cache/assets/D54/750/sprockets%2Fc16371b1a234c7c56cb01cb28a8bc5c3 +0 -0
- data/test/dummy/tmp/cache/assets/DAA/B80/sprockets%2Ff8082150f8c8beafcd445cc79a9a6a85 +0 -0
- data/test/dummy/tmp/cache/assets/E26/4F0/sprockets%2F1cd8dafcb93f36aea8c2cf9d04c322d3 +0 -0
- metadata +2 -2
@@ -80,10 +80,16 @@ Emulator = (function() {
|
|
80
80
|
$('#center').attr('src', url);
|
81
81
|
},
|
82
82
|
|
83
|
-
|
84
|
-
$('#default').hide();
|
83
|
+
editCredentials: function() {
|
85
84
|
$('#center').hide();
|
86
85
|
$('#inputs').show();
|
86
|
+
|
87
|
+
values = ['id', 'login', 'nick', 'distribution-code', 'msisdn'];
|
88
|
+
for (var i in values) {
|
89
|
+
var str = values[i];
|
90
|
+
var value = localStorage.getItem('mxit-' + str);
|
91
|
+
$('#mxit-' + str + '-input').val(value);
|
92
|
+
}
|
87
93
|
},
|
88
94
|
|
89
95
|
saveCredentials: function() {
|
@@ -93,7 +99,6 @@ Emulator = (function() {
|
|
93
99
|
localStorage.setItem('mxit-' + str, $('#mxit-' + str + '-input').val());
|
94
100
|
}
|
95
101
|
|
96
|
-
$('#default').show();
|
97
102
|
$('#inputs').hide();
|
98
103
|
$('#center').show();
|
99
104
|
Emulator.setCredentials();
|
@@ -101,25 +106,20 @@ Emulator = (function() {
|
|
101
106
|
|
102
107
|
setCredentials: function() {
|
103
108
|
Emulator.setCookie();
|
104
|
-
|
105
|
-
$('#unlink').show();
|
109
|
+
|
106
110
|
$('#registered').show();
|
107
111
|
$('#not-registered').hide();
|
108
|
-
$('#mxit-login').html(localStorage.getItem('mxit-login'));
|
109
|
-
},
|
110
112
|
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
113
|
+
if (localStorage.getItem('mxit-login')) {
|
114
|
+
$('#mxit-login-id-label').html('Login');
|
115
|
+
$('#mxit-login-id').html(localStorage.getItem('mxit-login'));
|
116
|
+
} else if (localStorage.getItem('mxit-id')) {
|
117
|
+
$('#mxit-login-id-label').html('ID');
|
118
|
+
$('#mxit-login-id').html(localStorage.getItem('mxit-id'));
|
119
|
+
} else {
|
120
|
+
$('#not-registered').show();
|
121
|
+
$('#registered').hide();
|
116
122
|
}
|
117
|
-
|
118
|
-
Emulator.clearCookie();
|
119
|
-
$('#link').show();
|
120
|
-
$('#unlink').hide();
|
121
|
-
$('#registered').hide();
|
122
|
-
$('#not-registered').show();
|
123
123
|
},
|
124
124
|
|
125
125
|
iframe: function() {
|
@@ -241,11 +241,7 @@ Emulator = (function() {
|
|
241
241
|
|
242
242
|
$(function() {
|
243
243
|
|
244
|
-
|
245
|
-
Emulator.setCredentials();
|
246
|
-
} else {
|
247
|
-
Emulator.clearCredentials();
|
248
|
-
}
|
244
|
+
Emulator.setCredentials();
|
249
245
|
|
250
246
|
Emulator.expandCollapse();
|
251
247
|
|
@@ -29,10 +29,9 @@
|
|
29
29
|
<div id="controls">
|
30
30
|
<div id="default">
|
31
31
|
<span id="not-registered">No credentials</span>
|
32
|
-
<span id="registered">Mxit
|
32
|
+
<span id="registered">Mxit <span id="mxit-login-id-label"></span>: <span id="mxit-login-id"></span></span>
|
33
33
|
|
34
|
-
<a id="
|
35
|
-
<a id="link" class="go link" onclick="Emulator.enterCredentials()">Set Credentials <span class="icon"><span class="image"></span></span></a>
|
34
|
+
<a id="link" class="go link" onclick="Emulator.editCredentials()">Edit Credentials <span class="icon"><span class="image"></span></span></a>
|
36
35
|
</div>
|
37
36
|
|
38
37
|
<div id="phone-links">
|
data/lib/mxit_rails/version.rb
CHANGED
@@ -56252,3 +56252,391 @@ Processing by FormController#index as HTML
|
|
56252
56252
|
Parameters: {"age"=>"95", "_mxit_rails_submit"=>"Proceed"}
|
56253
56253
|
Rendered form/index/gender.html.erb within layouts/mxit (0.8ms)
|
56254
56254
|
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
56255
|
+
|
56256
|
+
|
56257
|
+
Started GET "/emulator/home" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56258
|
+
Connecting to database specified by database.yml
|
56259
|
+
Processing by EmulatorController#index as HTML
|
56260
|
+
Parameters: {"path"=>"home"}
|
56261
|
+
Compiled mxit_rails/emulator.js (3ms) (pid 30514)
|
56262
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (52.7ms)
|
56263
|
+
Completed 200 OK in 62ms (Views: 61.9ms | ActiveRecord: 0.0ms)
|
56264
|
+
|
56265
|
+
|
56266
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56267
|
+
Served asset /mxit_rails/emulator.css - 200 OK (3ms)
|
56268
|
+
|
56269
|
+
|
56270
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56271
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (6ms)
|
56272
|
+
|
56273
|
+
|
56274
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56275
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
|
56276
|
+
|
56277
|
+
|
56278
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56279
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (3ms)
|
56280
|
+
|
56281
|
+
|
56282
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56283
|
+
Served asset /mxit_rails/emulator.js - 200 OK (8ms)
|
56284
|
+
|
56285
|
+
|
56286
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56287
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (4ms)
|
56288
|
+
|
56289
|
+
|
56290
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56291
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
|
56292
|
+
|
56293
|
+
|
56294
|
+
Started GET "/home" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56295
|
+
|
56296
|
+
ActionController::RoutingError (No route matches [GET] "/home"):
|
56297
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
56298
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
56299
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
56300
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
56301
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
56302
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
56303
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
56304
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
56305
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
56306
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
56307
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
56308
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
56309
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
56310
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
56311
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
56312
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
56313
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
56314
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
56315
|
+
|
56316
|
+
|
56317
|
+
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/routing_error.erb within rescues/layout (0.6ms)
|
56318
|
+
|
56319
|
+
|
56320
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56321
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
|
56322
|
+
|
56323
|
+
|
56324
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56325
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
|
56326
|
+
|
56327
|
+
|
56328
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-21 08:07:25 +0200
|
56329
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (7ms)
|
56330
|
+
|
56331
|
+
|
56332
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:07:26 +0200
|
56333
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
|
56334
|
+
|
56335
|
+
|
56336
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:07:27 +0200
|
56337
|
+
Processing by IndexController#index as HTML
|
56338
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
56339
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
56340
|
+
|
56341
|
+
|
56342
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:07:27 +0200
|
56343
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
56344
|
+
|
56345
|
+
|
56346
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56347
|
+
Processing by EmulatorController#index as HTML
|
56348
|
+
Compiled mxit_rails/emulator.js (4ms) (pid 30514)
|
56349
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (23.3ms)
|
56350
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
56351
|
+
|
56352
|
+
|
56353
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56354
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (6ms)
|
56355
|
+
|
56356
|
+
|
56357
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56358
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
56359
|
+
|
56360
|
+
|
56361
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56362
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
56363
|
+
|
56364
|
+
|
56365
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56366
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
56367
|
+
|
56368
|
+
|
56369
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56370
|
+
Served asset /mxit_rails/emulator.js - 200 OK (6ms)
|
56371
|
+
|
56372
|
+
|
56373
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56374
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
56375
|
+
|
56376
|
+
|
56377
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56378
|
+
Processing by IndexController#index as HTML
|
56379
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
56380
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
56381
|
+
|
56382
|
+
|
56383
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56384
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
56385
|
+
|
56386
|
+
|
56387
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56388
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
56389
|
+
|
56390
|
+
|
56391
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56392
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
56393
|
+
|
56394
|
+
|
56395
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56396
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56397
|
+
|
56398
|
+
|
56399
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56400
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
56401
|
+
|
56402
|
+
|
56403
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:08:36 +0200
|
56404
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56405
|
+
|
56406
|
+
|
56407
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56408
|
+
Processing by EmulatorController#index as HTML
|
56409
|
+
Compiled mxit_rails/emulator.js (3ms) (pid 30514)
|
56410
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.4ms)
|
56411
|
+
Completed 200 OK in 20ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
56412
|
+
|
56413
|
+
|
56414
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56415
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
56416
|
+
|
56417
|
+
|
56418
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56419
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
56420
|
+
|
56421
|
+
|
56422
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56423
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
56424
|
+
|
56425
|
+
|
56426
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56427
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
56428
|
+
|
56429
|
+
|
56430
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56431
|
+
Served asset /mxit_rails/emulator.js - 200 OK (6ms)
|
56432
|
+
|
56433
|
+
|
56434
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56435
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
|
56436
|
+
|
56437
|
+
|
56438
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56439
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
56440
|
+
|
56441
|
+
|
56442
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56443
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
56444
|
+
|
56445
|
+
|
56446
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56447
|
+
Processing by IndexController#index as HTML
|
56448
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
56449
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
56450
|
+
|
56451
|
+
|
56452
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56453
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
56454
|
+
|
56455
|
+
|
56456
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56457
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
56458
|
+
|
56459
|
+
|
56460
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56461
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56462
|
+
|
56463
|
+
|
56464
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:09:02 +0200
|
56465
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56466
|
+
|
56467
|
+
|
56468
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:11:18 +0200
|
56469
|
+
Processing by IndexController#index as HTML
|
56470
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
56471
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
56472
|
+
|
56473
|
+
|
56474
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:18 +0200
|
56475
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56476
|
+
|
56477
|
+
|
56478
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:11:18 +0200
|
56479
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56480
|
+
|
56481
|
+
|
56482
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56483
|
+
Processing by EmulatorController#index as HTML
|
56484
|
+
Compiled mxit_rails/emulator.js (2ms) (pid 30514)
|
56485
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.1ms)
|
56486
|
+
Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
|
56487
|
+
|
56488
|
+
|
56489
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56490
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
56491
|
+
|
56492
|
+
|
56493
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56494
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
|
56495
|
+
|
56496
|
+
|
56497
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56498
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
56499
|
+
|
56500
|
+
|
56501
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56502
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
56503
|
+
|
56504
|
+
|
56505
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56506
|
+
Served asset /mxit_rails/emulator.js - 200 OK (5ms)
|
56507
|
+
|
56508
|
+
|
56509
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56510
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
56511
|
+
|
56512
|
+
|
56513
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56514
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
56515
|
+
|
56516
|
+
|
56517
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56518
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
|
56519
|
+
|
56520
|
+
|
56521
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56522
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
56523
|
+
|
56524
|
+
|
56525
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56526
|
+
Processing by IndexController#index as HTML
|
56527
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
56528
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
56529
|
+
|
56530
|
+
|
56531
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56532
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
56533
|
+
|
56534
|
+
|
56535
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56536
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56537
|
+
|
56538
|
+
|
56539
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:11:20 +0200
|
56540
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56541
|
+
|
56542
|
+
|
56543
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:11:25 +0200
|
56544
|
+
Processing by IndexController#index as HTML
|
56545
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
56546
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
56547
|
+
|
56548
|
+
|
56549
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:25 +0200
|
56550
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56551
|
+
|
56552
|
+
|
56553
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:11:26 +0200
|
56554
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56555
|
+
|
56556
|
+
|
56557
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:11:35 +0200
|
56558
|
+
Processing by IndexController#index as HTML
|
56559
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
56560
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
56561
|
+
|
56562
|
+
|
56563
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:35 +0200
|
56564
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56565
|
+
|
56566
|
+
|
56567
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:11:35 +0200
|
56568
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56569
|
+
|
56570
|
+
|
56571
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:11:41 +0200
|
56572
|
+
Processing by IndexController#index as HTML
|
56573
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
56574
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
56575
|
+
|
56576
|
+
|
56577
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:11:41 +0200
|
56578
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56579
|
+
|
56580
|
+
|
56581
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:11:41 +0200
|
56582
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
56583
|
+
|
56584
|
+
|
56585
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56586
|
+
Processing by EmulatorController#index as HTML
|
56587
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.4ms)
|
56588
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
56589
|
+
|
56590
|
+
|
56591
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56592
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
56593
|
+
|
56594
|
+
|
56595
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56596
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
|
56597
|
+
|
56598
|
+
|
56599
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56600
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
56601
|
+
|
56602
|
+
|
56603
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56604
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
56605
|
+
|
56606
|
+
|
56607
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56608
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
|
56609
|
+
|
56610
|
+
|
56611
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56612
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
56613
|
+
|
56614
|
+
|
56615
|
+
Started GET "/" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56616
|
+
Processing by IndexController#index as HTML
|
56617
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
56618
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
56619
|
+
|
56620
|
+
|
56621
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56622
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
56623
|
+
|
56624
|
+
|
56625
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56626
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
56627
|
+
|
56628
|
+
|
56629
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56630
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
56631
|
+
|
56632
|
+
|
56633
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56634
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
56635
|
+
|
56636
|
+
|
56637
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56638
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
56639
|
+
|
56640
|
+
|
56641
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-21 08:12:01 +0200
|
56642
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mxit-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-09-
|
12
|
+
date: 2012-09-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|