mxit-rails 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,9 +15,9 @@ Installation
15
15
  ------------
16
16
  To use the gem, just include the gem your rails projects' gemfile:
17
17
 
18
- gem 'mxit-rails', '~> 0.1.2'
18
+ gem 'mxit-rails', '~> 0.2.7'
19
19
 
20
- The newest version is 0.1.2 - it is not recommended to use any earlier versions.
20
+ The newest version is 0.2.7 - it is not recommended to use any earlier versions.
21
21
 
22
22
  Basic usage
23
23
  -----------
@@ -65,7 +65,10 @@ Emulator = (function() {
65
65
 
66
66
  getUrl: function() {
67
67
  if (typeof($('#center').attr('src')) != 'undefined') {
68
- return Emulator.iframe().location.pathname;
68
+ var url = Emulator.iframe().location.pathname;
69
+ if (Emulator.iframe().location.search)
70
+ url += Emulator.iframe().location.search;
71
+ return url;
69
72
  }
70
73
  return null;
71
74
  },
@@ -1,7 +1,7 @@
1
1
  html, body {
2
- margin: 2px;
2
+ margin: 0;
3
3
  padding: 0;
4
- font-family: Helvetica, Arial, sans-serif;
4
+ font-family: Tahoma, Geneva, sans-serif;
5
5
  font-weight: normal;
6
6
  }
7
7
 
@@ -3,6 +3,6 @@ class EmulatorController < ApplicationController
3
3
 
4
4
  def index
5
5
  @root_path = Rails.application.config.mxit_root
6
- @path = params[:path]
6
+ @path = request.fullpath.sub(/^\/emulator/, '')
7
7
  end
8
8
  end
@@ -47,7 +47,7 @@ module MxitRailsHelper
47
47
  end
48
48
 
49
49
  def mxit_proceed content
50
- "<br /><b style=\"#{ mxit_style :link }\"> &raquo; #{content}</b><br />".html_safe
50
+ "<br /><b style=\"#{ mxit_style :link }\"> &gt; #{content}</b><br />".html_safe
51
51
  end
52
52
 
53
53
  end
@@ -25,18 +25,13 @@
25
25
 
26
26
  <%= yield %>
27
27
 
28
- <% if @_mxit.has_table %>
29
- <!-- Close the table if there is one -->
30
- <br /></td></tr>
31
- </table>
32
- <% end %>
33
-
34
28
  <% if mxit_validation_message %>
35
- <b><%= mxit_validation_message %></b><br />
29
+ <br /><b><%= mxit_validation_message %></b>
36
30
  <% elsif flash[:notice] %>
37
- <b><%= flash[:notice] %></b><br />
31
+ <br /><b><%= flash[:notice] %></b>
38
32
  <% end %>
39
33
 
34
+ <br />
40
35
  <% if @_mxit.input %>
41
36
  <%= mxit_proceed @_mxit.input_label %>
42
37
  <form method="POST" action="<%= request.path %>">
@@ -54,5 +49,12 @@
54
49
  <%= mxit_proceed mxit_link(request.path, @_mxit.proceed.to_s.capitalize, {_mxit_rails_submit: 'Proceed'}) %>
55
50
  <% end %>
56
51
 
52
+
53
+ <% if @_mxit.has_table %>
54
+ <!-- Close the table if there is one -->
55
+ </td></tr>
56
+ </table>
57
+ <% end %>
58
+
57
59
  </body>
58
60
  </html>
@@ -229,6 +229,10 @@ module MxitRails
229
229
  redirect_to request.path
230
230
  end
231
231
 
232
+ def reset!
233
+ redirect_to "#{request.path}?_mxit_reset=true"
234
+ end
235
+
232
236
  def form &block
233
237
  descriptor.type = :form
234
238
  session[:_mxit_rails_params] ||= {}
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.2.6"
2
+ VERSION = "0.2.7"
3
3
  end
@@ -3,6 +3,10 @@ class FormController < ApplicationController
3
3
  include MxitRails::Page
4
4
 
5
5
  def index
6
+ if params[:reset]
7
+ reset! and return
8
+ end
9
+
6
10
  form do
7
11
  step :start do
8
12
  proceed 'Start the form'
@@ -4,5 +4,7 @@
4
4
  <%= mxit_table_row %>
5
5
  <%= mxit_nav_link '/', 'Back' %>
6
6
 
7
+ <a href="/form?reset=true">Reset</a>
8
+
7
9
  Thanks <%= @name %>. Next we'll need your surname.<br />
8
10
 
@@ -57231,3 +57231,1081 @@ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
57231
57231
 
57232
57232
  Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 08:38:55 +0200
57233
57233
  Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
57234
+
57235
+
57236
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:08:57 +0200
57237
+ Connecting to database specified by database.yml
57238
+ Processing by IndexController#index as HTML
57239
+ Rendered index/index.html.erb within layouts/mxit (19.2ms)
57240
+ Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.0ms)
57241
+
57242
+
57243
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:08:57 +0200
57244
+ Served asset /mxit_rails/included.css - 200 OK (3ms)
57245
+
57246
+
57247
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:09:00 +0200
57248
+ Processing by FormController#index as HTML
57249
+ Rendered form/index/start.html.erb within layouts/mxit (0.4ms)
57250
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
57251
+
57252
+
57253
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:09:01 +0200
57254
+ Processing by FormController#index as HTML
57255
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57256
+ Rendered form/index/name.html.erb within layouts/mxit (0.5ms)
57257
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
57258
+
57259
+
57260
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:09:03 +0200
57261
+ Processing by FormController#index as HTML
57262
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
57263
+ Validated!
57264
+ Redirected to http://localhost:3000/form
57265
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
57266
+
57267
+
57268
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:09:03 +0200
57269
+ Processing by FormController#index as HTML
57270
+ Rendered form/index/age.html.erb within layouts/mxit (0.4ms)
57271
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
57272
+
57273
+
57274
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:09:07 +0200
57275
+ Processing by IndexController#index as HTML
57276
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57277
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
57278
+
57279
+
57280
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:09:08 +0200
57281
+ Processing by FormController#index as HTML
57282
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57283
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57284
+
57285
+
57286
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:09:09 +0200
57287
+ Processing by FormController#index as HTML
57288
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57289
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57290
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
57291
+
57292
+
57293
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:09:11 +0200
57294
+ Processing by FormController#index as HTML
57295
+ Parameters: {"name"=>"John", "_mxit_rails_submit"=>"Proceed"}
57296
+ Validated!
57297
+ Rendered form/index/surname.html.erb within layouts/mxit (0.6ms)
57298
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
57299
+
57300
+
57301
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-09-26 16:09:14 +0200
57302
+ Processing by FormController#index as HTML
57303
+ Parameters: {"reset"=>"true"}
57304
+ Completed 500 Internal Server Error in 1ms
57305
+
57306
+ NoMethodError (undefined method `to_sym' for nil:NilClass):
57307
+ app/controllers/form_controller.rb:7:in `index'
57308
+
57309
+
57310
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
57311
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
57312
+ 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 (10.0ms)
57313
+
57314
+
57315
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-26 16:09:14 +0200
57316
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
57317
+
57318
+
57319
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:09:35 +0200
57320
+ Processing by IndexController#index as HTML
57321
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57322
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
57323
+
57324
+
57325
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-26 16:09:36 +0200
57326
+ Processing by WelcomeController#index as HTML
57327
+ Rendered welcome/index.html.erb within layouts/mxit (0.7ms)
57328
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
57329
+
57330
+
57331
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:09:43 +0200
57332
+ Connecting to database specified by database.yml
57333
+ Processing by IndexController#index as HTML
57334
+ Rendered index/index.html.erb within layouts/mxit (19.9ms)
57335
+ Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.0ms)
57336
+
57337
+
57338
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:09:47 +0200
57339
+ Processing by FormController#index as HTML
57340
+ Rendered form/index/start.html.erb within layouts/mxit (0.4ms)
57341
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57342
+
57343
+
57344
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:09:48 +0200
57345
+ Processing by FormController#index as HTML
57346
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57347
+ Rendered form/index/name.html.erb within layouts/mxit (0.4ms)
57348
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
57349
+
57350
+
57351
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:09:49 +0200
57352
+ Processing by FormController#index as HTML
57353
+ Parameters: {"name"=>"John", "_mxit_rails_submit"=>"Proceed"}
57354
+ Validated!
57355
+ Rendered form/index/surname.html.erb within layouts/mxit (0.8ms)
57356
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
57357
+
57358
+
57359
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-09-26 16:09:50 +0200
57360
+ Processing by FormController#index as HTML
57361
+ Parameters: {"reset"=>"true"}
57362
+ Redirected to http://localhost:3000/form?_mxit_reset=true
57363
+ Completed 500 Internal Server Error in 1ms
57364
+
57365
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
57366
+ app/controllers/form_controller.rb:32:in `block in index'
57367
+ app/controllers/form_controller.rb:10:in `index'
57368
+
57369
+
57370
+ 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)
57371
+ 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)
57372
+ Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
57373
+
57374
+
57375
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:10:00 +0200
57376
+ Processing by IndexController#index as HTML
57377
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57378
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57379
+
57380
+
57381
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:10:02 +0200
57382
+ Processing by FormController#index as HTML
57383
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57384
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
57385
+
57386
+
57387
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:10:03 +0200
57388
+ Processing by FormController#index as HTML
57389
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57390
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57391
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57392
+
57393
+
57394
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:10:04 +0200
57395
+ Processing by FormController#index as HTML
57396
+ Parameters: {"name"=>"j", "_mxit_rails_submit"=>"Proceed"}
57397
+ Failed: [:min_length]
57398
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57399
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
57400
+
57401
+
57402
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:10:06 +0200
57403
+ Processing by FormController#index as HTML
57404
+ Parameters: {"name"=>"John", "_mxit_rails_submit"=>"Proceed"}
57405
+ Validated!
57406
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
57407
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
57408
+
57409
+
57410
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-09-26 16:10:08 +0200
57411
+ Processing by FormController#index as HTML
57412
+ Parameters: {"reset"=>"true"}
57413
+ Redirected to http://localhost:3000/form?_mxit_reset=true
57414
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
57415
+
57416
+
57417
+ Started GET "/form?_mxit_reset=true" for 127.0.0.1 at 2012-09-26 16:10:08 +0200
57418
+ Processing by FormController#index as HTML
57419
+ Parameters: {"_mxit_reset"=>"true"}
57420
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57421
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
57422
+
57423
+
57424
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:10:35 +0200
57425
+ Processing by IndexController#index as HTML
57426
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
57427
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
57428
+
57429
+
57430
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-26 16:10:37 +0200
57431
+ Processing by WelcomeController#index as HTML
57432
+ Rendered welcome/index.html.erb within layouts/mxit (0.6ms)
57433
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
57434
+
57435
+
57436
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:11:04 +0200
57437
+ Processing by IndexController#index as HTML
57438
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57439
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
57440
+
57441
+
57442
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-26 16:11:05 +0200
57443
+ Processing by WelcomeController#index as HTML
57444
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
57445
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
57446
+
57447
+
57448
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:11:07 +0200
57449
+ Processing by IndexController#index as HTML
57450
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57451
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
57452
+
57453
+
57454
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:11:08 +0200
57455
+ Processing by FormController#index as HTML
57456
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57457
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
57458
+
57459
+
57460
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:11:12 +0200
57461
+ Processing by FormController#index as HTML
57462
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57463
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57464
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
57465
+
57466
+
57467
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:11:13 +0200
57468
+ Processing by FormController#index as HTML
57469
+ Parameters: {"name"=>"", "_mxit_rails_submit"=>"Proceed"}
57470
+ Failed: [:not_blank, :min_length]
57471
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57472
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
57473
+
57474
+
57475
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:11:29 +0200
57476
+ Processing by IndexController#index as HTML
57477
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57478
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
57479
+
57480
+
57481
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:11:31 +0200
57482
+ Processing by FormController#index as HTML
57483
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57484
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
57485
+
57486
+
57487
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:11:32 +0200
57488
+ Processing by FormController#index as HTML
57489
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
57490
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57491
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
57492
+
57493
+
57494
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:11:33 +0200
57495
+ Processing by FormController#index as HTML
57496
+ Parameters: {"name"=>"", "_mxit_rails_submit"=>"Proceed"}
57497
+ Failed: [:not_blank, :min_length]
57498
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
57499
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
57500
+
57501
+
57502
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:12:11 +0200
57503
+ Processing by FormController#index as HTML
57504
+ Parameters: {"name"=>"", "_mxit_rails_submit"=>"Proceed"}
57505
+ Failed: [:not_blank, :min_length]
57506
+ Rendered form/index/name.html.erb within layouts/mxit (0.2ms)
57507
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
57508
+
57509
+
57510
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:12:15 +0200
57511
+ Processing by FormController#index as HTML
57512
+ Parameters: {"name"=>"Lin", "_mxit_rails_submit"=>"Proceed"}
57513
+ Validated!
57514
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
57515
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
57516
+
57517
+
57518
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:12:18 +0200
57519
+ Processing by FormController#index as HTML
57520
+ Parameters: {"surname"=>"", "_mxit_rails_submit"=>"Proceed"}
57521
+ Rendered form/index/age.html.erb within layouts/mxit (0.6ms)
57522
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57523
+
57524
+
57525
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:12:20 +0200
57526
+ Processing by FormController#index as HTML
57527
+ Parameters: {"age"=>"", "_mxit_rails_submit"=>"Proceed"}
57528
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
57529
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
57530
+
57531
+
57532
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:12:21 +0200
57533
+ Processing by FormController#index as HTML
57534
+ Parameters: {"age"=>"12", "_mxit_rails_submit"=>"Proceed"}
57535
+ Rendered form/index/gender.html.erb within layouts/mxit (0.6ms)
57536
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
57537
+
57538
+
57539
+ Started GET "/form?_mxit_rails_submit=Proceed&gender=female" for 127.0.0.1 at 2012-09-26 16:12:24 +0200
57540
+ Processing by FormController#index as HTML
57541
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "gender"=>"female"}
57542
+ Rendered form/index/done.html.erb within layouts/mxit (0.8ms)
57543
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
57544
+
57545
+
57546
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:12:26 +0200
57547
+ Processing by IndexController#index as HTML
57548
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57549
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
57550
+
57551
+
57552
+ Started GET "/emulator/?test_var=true" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57553
+ Processing by EmulatorController#index as HTML
57554
+ Parameters: {"test_var"=>"true"}
57555
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (21.2ms)
57556
+ Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
57557
+
57558
+
57559
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57560
+ Served asset /mxit_rails/emulator.css - 200 OK (2ms)
57561
+
57562
+
57563
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57564
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (4ms)
57565
+
57566
+
57567
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57568
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
57569
+
57570
+
57571
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57572
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
57573
+
57574
+
57575
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:12:51 +0200
57576
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
57577
+
57578
+
57579
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57580
+ Served asset /mxit_rails/home.png - 304 Not Modified (5ms)
57581
+
57582
+
57583
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57584
+ Served asset /mxit_rails/go.png - 304 Not Modified (7ms)
57585
+
57586
+
57587
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57588
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (30ms)
57589
+
57590
+
57591
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57592
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
57593
+
57594
+
57595
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57596
+ Processing by IndexController#index as HTML
57597
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57598
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
57599
+
57600
+
57601
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:12:52 +0200
57602
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
57603
+
57604
+
57605
+ Started GET "/emulator/?t=true" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57606
+ Processing by EmulatorController#index as HTML
57607
+ Parameters: {"t"=>"true"}
57608
+ /emulator?t=true===============
57609
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.7ms)
57610
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
57611
+
57612
+
57613
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57614
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
57615
+
57616
+
57617
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57618
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
57619
+
57620
+
57621
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57622
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57623
+
57624
+
57625
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57626
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
57627
+
57628
+
57629
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57630
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
57631
+
57632
+
57633
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57634
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57635
+
57636
+
57637
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57638
+ Processing by IndexController#index as HTML
57639
+ Rendered index/index.html.erb within layouts/mxit (0.4ms)
57640
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
57641
+
57642
+
57643
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57644
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57645
+
57646
+
57647
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57648
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57649
+
57650
+
57651
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57652
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
57653
+
57654
+
57655
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-26 16:14:41 +0200
57656
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
57657
+
57658
+
57659
+ Started GET "/emulator/?t=r" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57660
+ Processing by EmulatorController#index as HTML
57661
+ Parameters: {"t"=>"r"}
57662
+ /emulator===============
57663
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
57664
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
57665
+
57666
+
57667
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57668
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
57669
+
57670
+
57671
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57672
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57673
+
57674
+
57675
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57676
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
57677
+
57678
+
57679
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57680
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
57681
+
57682
+
57683
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57684
+ Served asset /mxit_rails/go.png - 304 Not Modified (23ms)
57685
+
57686
+
57687
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57688
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57689
+
57690
+
57691
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57692
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57693
+
57694
+
57695
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57696
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57697
+
57698
+
57699
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57700
+ Processing by IndexController#index as HTML
57701
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57702
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
57703
+
57704
+
57705
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:15:11 +0200
57706
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57707
+
57708
+
57709
+ Started GET "/emulator/?t=1" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57710
+ Processing by EmulatorController#index as HTML
57711
+ Parameters: {"t"=>"1"}
57712
+ ?t=1===============
57713
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.7ms)
57714
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
57715
+
57716
+
57717
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57718
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
57719
+
57720
+
57721
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57722
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57723
+
57724
+
57725
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57726
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
57727
+
57728
+
57729
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57730
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
57731
+
57732
+
57733
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57734
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
57735
+
57736
+
57737
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57738
+ Processing by IndexController#index as HTML
57739
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57740
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
57741
+
57742
+
57743
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57744
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57745
+
57746
+
57747
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57748
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57749
+
57750
+
57751
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57752
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57753
+
57754
+
57755
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:15:48 +0200
57756
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57757
+
57758
+
57759
+ Started GET "/emulator/?t=1" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57760
+ Processing by EmulatorController#index as HTML
57761
+ Parameters: {"t"=>"1"}
57762
+ /emulator===============
57763
+ ?t=1===============
57764
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.1ms)
57765
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
57766
+
57767
+
57768
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57769
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
57770
+
57771
+
57772
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57773
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57774
+
57775
+
57776
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57777
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
57778
+
57779
+
57780
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57781
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
57782
+
57783
+
57784
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57785
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57786
+
57787
+
57788
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57789
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57790
+
57791
+
57792
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57793
+ Processing by IndexController#index as HTML
57794
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
57795
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
57796
+
57797
+
57798
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57799
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57800
+
57801
+
57802
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57803
+ Served asset /mxit_rails/go.png - 304 Not Modified (24ms)
57804
+
57805
+
57806
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:16:10 +0200
57807
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57808
+
57809
+
57810
+ Started GET "/emulator/form?t=1" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57811
+ Processing by EmulatorController#index as HTML
57812
+ Parameters: {"t"=>"1", "path"=>"form"}
57813
+ form===============
57814
+ /form?t=1===============
57815
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
57816
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
57817
+
57818
+
57819
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57820
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
57821
+
57822
+
57823
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57824
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57825
+
57826
+
57827
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57828
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
57829
+
57830
+
57831
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57832
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
57833
+
57834
+
57835
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57836
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
57837
+
57838
+
57839
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57840
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57841
+
57842
+
57843
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57844
+ Processing by FormController#index as HTML
57845
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57846
+ Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.0ms)
57847
+
57848
+
57849
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57850
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57851
+
57852
+
57853
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57854
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57855
+
57856
+
57857
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:16:27 +0200
57858
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57859
+
57860
+
57861
+ Started GET "/emulator/form?t=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57862
+ Processing by EmulatorController#index as HTML
57863
+ Parameters: {"t"=>"1", "path"=>"form"}
57864
+ Compiled mxit_rails/emulator.js (3ms) (pid 79947)
57865
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (22.6ms)
57866
+ Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
57867
+
57868
+
57869
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57870
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (22ms)
57871
+
57872
+
57873
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57874
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
57875
+
57876
+
57877
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57878
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
57879
+
57880
+
57881
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57882
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57883
+
57884
+
57885
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57886
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
57887
+
57888
+
57889
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57890
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57891
+
57892
+
57893
+ Started GET "/form?t=1" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57894
+ Processing by FormController#index as HTML
57895
+ Parameters: {"t"=>"1"}
57896
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57897
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
57898
+
57899
+
57900
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57901
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57902
+
57903
+
57904
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57905
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57906
+
57907
+
57908
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:17:50 +0200
57909
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57910
+
57911
+
57912
+ Started GET "/emulator/form" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57913
+ Processing by EmulatorController#index as HTML
57914
+ Parameters: {"path"=>"form"}
57915
+ Compiled mxit_rails/emulator.js (2ms) (pid 79947)
57916
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (34.5ms)
57917
+ Completed 200 OK in 36ms (Views: 36.0ms | ActiveRecord: 0.0ms)
57918
+
57919
+
57920
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57921
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
57922
+
57923
+
57924
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57925
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57926
+
57927
+
57928
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57929
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
57930
+
57931
+
57932
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57933
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
57934
+
57935
+
57936
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57937
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
57938
+
57939
+
57940
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57941
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
57942
+
57943
+
57944
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57945
+ Processing by FormController#index as HTML
57946
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
57947
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
57948
+
57949
+
57950
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57951
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
57952
+
57953
+
57954
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57955
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
57956
+
57957
+
57958
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57959
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
57960
+
57961
+
57962
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57963
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
57964
+
57965
+
57966
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57967
+ Served asset /mxit_rails/included.css - 304 Not Modified (5ms)
57968
+
57969
+
57970
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-26 16:18:36 +0200
57971
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
57972
+
57973
+
57974
+ Started GET "/emulator/form?t=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57975
+ Processing by EmulatorController#index as HTML
57976
+ Parameters: {"t"=>"1", "path"=>"form"}
57977
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.1ms)
57978
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
57979
+
57980
+
57981
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57982
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
57983
+
57984
+
57985
+ Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57986
+ Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
57987
+
57988
+
57989
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57990
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
57991
+
57992
+
57993
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57994
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
57995
+
57996
+
57997
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
57998
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
57999
+
58000
+
58001
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58002
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
58003
+
58004
+
58005
+ Started GET "/form?t=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58006
+ Processing by FormController#index as HTML
58007
+ Parameters: {"t"=>"1"}
58008
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58009
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
58010
+
58011
+
58012
+ Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58013
+ Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
58014
+
58015
+
58016
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58017
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
58018
+
58019
+
58020
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58021
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
58022
+
58023
+
58024
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58025
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
58026
+
58027
+
58028
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:40 +0200
58029
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58030
+
58031
+
58032
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:18:42 +0200
58033
+ Processing by FormController#index as HTML
58034
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58035
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
58036
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
58037
+
58038
+
58039
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:42 +0200
58040
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58041
+
58042
+
58043
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:18:50 +0200
58044
+ Processing by FormController#index as HTML
58045
+ Parameters: {"name"=>"Linse", "_mxit_rails_submit"=>"Proceed"}
58046
+ Validated!
58047
+ Rendered form/index/surname.html.erb within layouts/mxit (0.2ms)
58048
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
58049
+
58050
+
58051
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:50 +0200
58052
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58053
+
58054
+
58055
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-09-26 16:18:54 +0200
58056
+ Processing by FormController#index as HTML
58057
+ Parameters: {"reset"=>"true"}
58058
+ Redirected to http://localhost:3000/form?_mxit_reset=true
58059
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58060
+
58061
+
58062
+ Started GET "/form?_mxit_reset=true" for 127.0.0.1 at 2012-09-26 16:18:54 +0200
58063
+ Processing by FormController#index as HTML
58064
+ Parameters: {"_mxit_reset"=>"true"}
58065
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58066
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
58067
+
58068
+
58069
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:54 +0200
58070
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58071
+
58072
+
58073
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:18:56 +0200
58074
+ Processing by FormController#index as HTML
58075
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58076
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
58077
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
58078
+
58079
+
58080
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:56 +0200
58081
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58082
+
58083
+
58084
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:18:58 +0200
58085
+ Processing by FormController#index as HTML
58086
+ Parameters: {"name"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
58087
+ Validated!
58088
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
58089
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
58090
+
58091
+
58092
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:18:58 +0200
58093
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58094
+
58095
+
58096
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:19:00 +0200
58097
+ Processing by FormController#index as HTML
58098
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
58099
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
58100
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
58101
+
58102
+
58103
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:00 +0200
58104
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58105
+
58106
+
58107
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:19:03 +0200
58108
+ Processing by FormController#index as HTML
58109
+ Parameters: {"age"=>"12", "_mxit_rails_submit"=>"Proceed"}
58110
+ Rendered form/index/gender.html.erb within layouts/mxit (0.1ms)
58111
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
58112
+
58113
+
58114
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:03 +0200
58115
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58116
+
58117
+
58118
+ Started GET "/form?_mxit_rails_submit=Proceed&gender=male" for 127.0.0.1 at 2012-09-26 16:19:06 +0200
58119
+ Processing by FormController#index as HTML
58120
+ Parameters: {"_mxit_rails_submit"=>"Proceed", "gender"=>"male"}
58121
+ Rendered form/index/done.html.erb within layouts/mxit (0.1ms)
58122
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
58123
+
58124
+
58125
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:06 +0200
58126
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58127
+
58128
+
58129
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:19:15 +0200
58130
+ Processing by FormController#index as HTML
58131
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58132
+ Form Completed!
58133
+ name: Loots; surname: Loots; age: 12
58134
+ ******
58135
+
58136
+
58137
+ Redirected to http://localhost:3000/index/success
58138
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58139
+
58140
+
58141
+ Started GET "/index/success" for 127.0.0.1 at 2012-09-26 16:19:15 +0200
58142
+ Processing by IndexController#success as HTML
58143
+ Rendered index/success.html.erb within layouts/mxit (0.5ms)
58144
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
58145
+
58146
+
58147
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:15 +0200
58148
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58149
+
58150
+
58151
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:19:17 +0200
58152
+ Processing by IndexController#index as HTML
58153
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58154
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
58155
+
58156
+
58157
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:17 +0200
58158
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58159
+
58160
+
58161
+ Started GET "/form" for 127.0.0.1 at 2012-09-26 16:19:22 +0200
58162
+ Processing by FormController#index as HTML
58163
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58164
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
58165
+
58166
+
58167
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:22 +0200
58168
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58169
+
58170
+
58171
+ Started GET "/form?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-26 16:19:23 +0200
58172
+ Processing by FormController#index as HTML
58173
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
58174
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
58175
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
58176
+
58177
+
58178
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:23 +0200
58179
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58180
+
58181
+
58182
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:19:24 +0200
58183
+ Processing by FormController#index as HTML
58184
+ Parameters: {"name"=>"l", "_mxit_rails_submit"=>"Proceed"}
58185
+ Failed: [:min_length]
58186
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
58187
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
58188
+
58189
+
58190
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:24 +0200
58191
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58192
+
58193
+
58194
+ Started POST "/form" for 127.0.0.1 at 2012-09-26 16:19:25 +0200
58195
+ Processing by FormController#index as HTML
58196
+ Parameters: {"name"=>"sdf", "_mxit_rails_submit"=>"Proceed"}
58197
+ Validated!
58198
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
58199
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
58200
+
58201
+
58202
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:25 +0200
58203
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58204
+
58205
+
58206
+ Started GET "/form?reset=true" for 127.0.0.1 at 2012-09-26 16:19:29 +0200
58207
+ Processing by FormController#index as HTML
58208
+ Parameters: {"reset"=>"true"}
58209
+ Redirected to http://localhost:3000/form?_mxit_reset=true
58210
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
58211
+
58212
+
58213
+ Started GET "/form?_mxit_reset=true" for 127.0.0.1 at 2012-09-26 16:19:29 +0200
58214
+ Processing by FormController#index as HTML
58215
+ Parameters: {"_mxit_reset"=>"true"}
58216
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
58217
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
58218
+
58219
+
58220
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:29 +0200
58221
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58222
+
58223
+
58224
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:19:34 +0200
58225
+ Processing by IndexController#index as HTML
58226
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58227
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
58228
+
58229
+
58230
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:19:34 +0200
58231
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58232
+
58233
+
58234
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-26 16:22:11 +0200
58235
+ Processing by WelcomeController#index as HTML
58236
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
58237
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
58238
+
58239
+
58240
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:22:11 +0200
58241
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58242
+
58243
+
58244
+ Started POST "/welcome" for 127.0.0.1 at 2012-09-26 16:22:20 +0200
58245
+ Processing by WelcomeController#index as HTML
58246
+ Parameters: {"phone_number"=>"1234567890", "_mxit_rails_submit"=>"Proceed"}
58247
+ Validation: "1234567890"
58248
+ Redirected to http://localhost:3000/welcome/easter_egg
58249
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
58250
+
58251
+
58252
+ Started GET "/welcome/easter_egg" for 127.0.0.1 at 2012-09-26 16:22:20 +0200
58253
+ Processing by WelcomeController#easter_egg as HTML
58254
+ Rendered welcome/easter_egg.html.erb within layouts/mxit (0.5ms)
58255
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
58256
+
58257
+
58258
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:22:20 +0200
58259
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58260
+
58261
+
58262
+ Started GET "/welcome" for 127.0.0.1 at 2012-09-26 16:22:21 +0200
58263
+ Processing by WelcomeController#index as HTML
58264
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
58265
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
58266
+
58267
+
58268
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:22:21 +0200
58269
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58270
+
58271
+
58272
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:22:23 +0200
58273
+ Processing by IndexController#index as HTML
58274
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58275
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
58276
+
58277
+
58278
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:22:23 +0200
58279
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
58280
+
58281
+
58282
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:27:57 +0200
58283
+ Processing by IndexController#index as HTML
58284
+ Rendered index/index.html.erb within layouts/mxit (0.3ms)
58285
+ Compiled mxit_rails/included.css (230ms) (pid 79947)
58286
+ Completed 200 OK in 247ms (Views: 246.9ms | ActiveRecord: 0.0ms)
58287
+
58288
+
58289
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:27:57 +0200
58290
+ Served asset /mxit_rails/included.css - 200 OK (4ms)
58291
+
58292
+
58293
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:30:44 +0200
58294
+ Processing by IndexController#index as HTML
58295
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
58296
+ Compiled mxit_rails/included.css (3ms) (pid 79947)
58297
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
58298
+
58299
+
58300
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:30:44 +0200
58301
+ Served asset /mxit_rails/included.css - 200 OK (3ms)
58302
+
58303
+
58304
+ Started GET "/" for 127.0.0.1 at 2012-09-26 16:31:31 +0200
58305
+ Processing by IndexController#index as HTML
58306
+ Rendered index/index.html.erb within layouts/mxit (0.8ms)
58307
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
58308
+
58309
+
58310
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-26 16:31:31 +0200
58311
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
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.6
4
+ version: 0.2.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -107,7 +107,7 @@ files:
107
107
  - lib/tasks/mxit-rails_tasks.rake
108
108
  - MIT-LICENSE
109
109
  - Rakefile
110
- - README.rdoc
110
+ - README.md
111
111
  - test/dummy/app/assets/javascripts/application.js
112
112
  - test/dummy/app/assets/stylesheets/application.css
113
113
  - test/dummy/app/controllers/application_controller.rb