vanity 1.6.1 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/CHANGELOG +28 -0
  2. data/Gemfile +1 -0
  3. data/README.rdoc +10 -3
  4. data/Rakefile +3 -3
  5. data/bin/b2json +16 -0
  6. data/bin/convert_to_should_syntax +16 -0
  7. data/bin/dw +16 -0
  8. data/bin/j2bson +16 -0
  9. data/bin/jekyll +16 -0
  10. data/bin/kramdown +16 -0
  11. data/bin/maruku +16 -0
  12. data/bin/marutex +16 -0
  13. data/bin/mongo_console +16 -0
  14. data/bin/passenger-config +16 -0
  15. data/bin/passenger-install-apache2-module +16 -0
  16. data/bin/passenger-install-nginx-module +16 -0
  17. data/bin/passenger-make-enterprisey +16 -0
  18. data/bin/passenger-memory-stats +16 -0
  19. data/bin/passenger-spawn-server +16 -0
  20. data/bin/passenger-status +16 -0
  21. data/bin/passenger-stress-test +16 -0
  22. data/bin/posix-spawn-benchmark +16 -0
  23. data/bin/rackup +16 -0
  24. data/bin/rails +16 -0
  25. data/bin/rake +16 -0
  26. data/bin/redcloth +16 -0
  27. data/bin/vanity +12 -65
  28. data/bin/yard +16 -0
  29. data/bin/yardoc +16 -0
  30. data/bin/yri +16 -0
  31. data/lib/generators/templates/vanity_migration.rb +53 -0
  32. data/lib/generators/vanity_generator.rb +15 -0
  33. data/lib/vanity/adapters/abstract_adapter.rb +5 -0
  34. data/lib/vanity/adapters/active_record_adapter.rb +10 -69
  35. data/lib/vanity/adapters/redis_adapter.rb +1 -1
  36. data/lib/vanity/frameworks/rails.rb +68 -7
  37. data/lib/vanity/images/x.gif +0 -0
  38. data/lib/vanity/playground.rb +0 -5
  39. data/lib/vanity/templates/vanity.css +1 -1
  40. data/lib/vanity/version.rb +1 -1
  41. data/test/adapters/redis_adapter_test.rb +1 -1
  42. data/test/experiment/ab_test.rb +0 -1
  43. data/test/myapp/log/production.log +522 -0
  44. data/test/myapp/log/test.log +304 -0
  45. data/test/passenger_test.rb +1 -1
  46. data/test/rails_helper_test.rb +8 -0
  47. data/test/rails_test.rb +23 -13
  48. data/test/test_helper.rb +23 -11
  49. metadata +40 -10
Binary file
@@ -268,11 +268,6 @@ module Vanity
268
268
  :host=>uri.host, :port=>uri.port, :path=>uri.path, :params=>params
269
269
  else
270
270
  spec = spec.inject({}) { |hash,(k,v)| hash[k.to_sym] = v ; hash }
271
- begin
272
- require "vanity/adapters/#{spec[:adapter]}_adapter"
273
- rescue LoadError
274
- raise "Could not find #{spec[:adapter]} in your load path"
275
- end
276
271
  @adapter = Adapters.establish_connection(spec)
277
272
  end
278
273
  end
@@ -14,7 +14,7 @@
14
14
  .vanity .ab_test caption { caption-side: bottom; padding: .5em; background: transparent; text-align: left }
15
15
  .vanity .ab_test td.option { width: 5em; white-space: nowrap; overflow: hidden }
16
16
  .vanity .ab_test td.value { width: 8em; white-space: nowrap; overflow: hidden }
17
- .vanity .ab_test td.action { width: 6em; overflow: hidden; text-align: center }
17
+ .vanity .ab_test td.action { width: 6em; overflow: hidden; text-align: right }
18
18
 
19
19
  .vanity .metrics { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid #ddd }
20
20
  .vanity .metric { margin: 2em 0 }
@@ -1,5 +1,5 @@
1
1
  module Vanity
2
- VERSION = "1.6.1"
2
+ VERSION = "1.7.0"
3
3
 
4
4
  module Version
5
5
  version = VERSION.to_s.split(".").map { |i| i.to_i }
@@ -6,7 +6,7 @@ class RedisAdapterTest < Test::Unit::TestCase
6
6
  assert_nothing_raised do
7
7
  Redis.any_instance.stubs(:connect!)
8
8
  mocked_redis = stub("Redis")
9
- mocked_redis.expects(:quit).raises(RuntimeError)
9
+ mocked_redis.expects(:client).raises(RuntimeError)
10
10
  redis_adapter = Vanity::Adapters::RedisAdapter.new({})
11
11
  redis_adapter.expects(:warn).with("Error while disconnecting from redis: RuntimeError")
12
12
  redis_adapter.stubs(:redis).returns(mocked_redis)
@@ -735,7 +735,6 @@ This experiment did not run long enough to find a clear winner.
735
735
  end
736
736
  experiment(:simple).chooses(:b)
737
737
  experiment(:simple).chooses(:c)
738
- assert_equal experiment(:simple).alternatives[1].participants, 1
739
738
  assert_equal experiment(:simple).alternatives[2].participants, 1
740
739
  end
741
740
 
@@ -3359,3 +3359,525 @@ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3359
3359
  Processing MainController#index (for at 2011-07-20 14:15:40) [GET]
3360
3360
  Parameters: {" "=>nil}
3361
3361
  Completed in 3ms (View: 1 | 200 OK [http://:? ]
3362
+
3363
+
3364
+ Processing MainController#index (for at 2011-07-28 18:00:14) [GET]
3365
+ Parameters: {" "=>nil}
3366
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3367
+
3368
+
3369
+ Processing MainController#index (for at 2011-08-01 15:21:39) [GET]
3370
+ Parameters: {" "=>nil}
3371
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3372
+
3373
+
3374
+ Processing MainController#index (for at 2011-08-01 15:22:32) [GET]
3375
+ Parameters: {" "=>nil}
3376
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3377
+
3378
+
3379
+ Processing MainController#index (for at 2011-08-01 15:23:25) [GET]
3380
+ Parameters: {" "=>nil}
3381
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3382
+
3383
+
3384
+ Processing MainController#index (for at 2011-08-01 15:26:29) [GET]
3385
+ Parameters: {" "=>nil}
3386
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3387
+
3388
+
3389
+ Processing MainController#index (for at 2011-08-01 15:48:10) [GET]
3390
+ Parameters: {" "=>nil}
3391
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3392
+
3393
+
3394
+ Processing MainController#index (for at 2011-08-01 15:49:16) [GET]
3395
+ Parameters: {" "=>nil}
3396
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3397
+ Error reconnecting: No configuration for production
3398
+
3399
+
3400
+ Processing MainController#index (for at 2011-08-01 15:51:22) [GET]
3401
+ Parameters: {" "=>nil}
3402
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3403
+ Error reconnecting: No configuration for production
3404
+
3405
+
3406
+ Processing MainController#index (for at 2011-08-01 15:51:36) [GET]
3407
+ Parameters: {" "=>nil}
3408
+ Completed in 6ms (View: 1 | 200 OK [http://:? ]
3409
+
3410
+
3411
+ Processing MainController#index (for at 2011-08-01 15:56:55) [GET]
3412
+ Parameters: {" "=>nil}
3413
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3414
+ Error reconnecting: No configuration for production
3415
+
3416
+
3417
+ Processing MainController#index (for at 2011-08-01 16:04:25) [GET]
3418
+ Parameters: {" "=>nil}
3419
+ Completed in 110ms (View: 1 | 200 OK [http://:? ]
3420
+
3421
+
3422
+ Processing MainController#index (for at 2011-08-01 16:05:09) [GET]
3423
+ Parameters: {" "=>nil}
3424
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3425
+
3426
+
3427
+ Processing MainController#index (for at 2011-08-01 16:06:18) [GET]
3428
+ Parameters: {" "=>nil}
3429
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3430
+
3431
+
3432
+ Processing MainController#index (for at 2011-08-01 16:07:02) [GET]
3433
+ Parameters: {" "=>nil}
3434
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3435
+
3436
+
3437
+ Processing MainController#index (for at 2011-08-01 16:09:53) [GET]
3438
+ Parameters: {" "=>nil}
3439
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3440
+
3441
+
3442
+ Processing MainController#index (for at 2011-08-01 16:10:41) [GET]
3443
+ Parameters: {" "=>nil}
3444
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3445
+
3446
+
3447
+ Processing MainController#index (for at 2011-08-01 16:12:59) [GET]
3448
+ Parameters: {" "=>nil}
3449
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3450
+
3451
+
3452
+ Processing MainController#index (for at 2011-08-01 16:15:56) [GET]
3453
+ Parameters: {" "=>nil}
3454
+ Completed in 5ms (View: 3 | 200 OK [http://:? ]
3455
+
3456
+
3457
+ Processing MainController#index (for at 2011-08-01 16:31:26) [GET]
3458
+ Parameters: {" "=>nil}
3459
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3460
+
3461
+
3462
+ Processing MainController#index (for at 2011-08-01 16:32:45) [GET]
3463
+ Parameters: {" "=>nil}
3464
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3465
+
3466
+
3467
+ Processing MainController#index (for at 2011-08-01 16:33:22) [GET]
3468
+ Parameters: {" "=>nil}
3469
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3470
+
3471
+
3472
+ Processing MainController#index (for at 2011-08-01 16:33:51) [GET]
3473
+ Parameters: {" "=>nil}
3474
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3475
+
3476
+
3477
+ Processing MainController#index (for at 2011-08-01 16:35:32) [GET]
3478
+ Parameters: {" "=>nil}
3479
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3480
+
3481
+
3482
+ Processing MainController#index (for at 2011-08-01 16:42:59) [GET]
3483
+ Parameters: {" "=>nil}
3484
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3485
+
3486
+
3487
+ Processing MainController#index (for at 2011-08-01 17:00:49) [GET]
3488
+ Parameters: {" "=>nil}
3489
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3490
+ Error reconnecting: No configuration for production
3491
+
3492
+
3493
+ Processing MainController#index (for at 2011-08-01 17:07:58) [GET]
3494
+ Parameters: {" "=>nil}
3495
+ Completed in 6ms (View: 1 | 200 OK [http://:? ]
3496
+ Error reconnecting: No configuration for production
3497
+
3498
+
3499
+ Processing MainController#index (for at 2011-08-01 17:10:52) [GET]
3500
+ Parameters: {" "=>nil}
3501
+ Completed in 7ms (View: 1 | 200 OK [http://:? ]
3502
+ Error reconnecting: No configuration for production
3503
+
3504
+
3505
+ Processing MainController#index (for at 2011-08-01 17:15:24) [GET]
3506
+ Parameters: {" "=>nil}
3507
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3508
+
3509
+
3510
+ Processing MainController#index (for at 2011-08-01 17:27:48) [GET]
3511
+ Parameters: {" "=>nil}
3512
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3513
+
3514
+
3515
+ Processing MainController#index (for at 2011-08-01 17:28:42) [GET]
3516
+ Parameters: {" "=>nil}
3517
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3518
+
3519
+
3520
+ Processing MainController#index (for at 2011-08-01 18:01:39) [GET]
3521
+ Parameters: {" "=>nil}
3522
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3523
+ Error reconnecting: No configuration for production
3524
+
3525
+
3526
+ Processing MainController#index (for at 2011-08-01 18:02:11) [GET]
3527
+ Parameters: {" "=>nil}
3528
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3529
+ Error reconnecting: No configuration for production
3530
+
3531
+
3532
+ Processing MainController#index (for at 2011-08-01 18:23:55) [GET]
3533
+ Parameters: {" "=>nil}
3534
+ Completed in 12ms (View: 2 | 200 OK [http://:? ]
3535
+ Error reconnecting: No configuration for production
3536
+
3537
+
3538
+ Processing MainController#index (for at 2011-08-01 18:24:01) [GET]
3539
+ Parameters: {" "=>nil}
3540
+ Completed in 7ms (View: 1 | 200 OK [http://:? ]
3541
+ Error reconnecting: No configuration for production
3542
+
3543
+
3544
+ Processing MainController#index (for at 2011-08-01 18:24:37) [GET]
3545
+ Parameters: {" "=>nil}
3546
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3547
+ Error reconnecting: No configuration for production
3548
+
3549
+
3550
+ Processing MainController#index (for at 2011-08-01 18:25:24) [GET]
3551
+ Parameters: {" "=>nil}
3552
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3553
+ Error reconnecting: No configuration for production
3554
+
3555
+
3556
+ Processing MainController#index (for at 2011-08-01 18:25:32) [GET]
3557
+ Parameters: {" "=>nil}
3558
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3559
+ Error reconnecting: No configuration for production
3560
+
3561
+
3562
+ Processing MainController#index (for at 2011-08-01 18:27:51) [GET]
3563
+ Parameters: {" "=>nil}
3564
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3565
+ Error reconnecting: No configuration for production
3566
+
3567
+
3568
+ Processing MainController#index (for at 2011-08-01 18:28:23) [GET]
3569
+ Parameters: {" "=>nil}
3570
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3571
+
3572
+
3573
+ Processing MainController#index (for at 2011-08-01 18:28:32) [GET]
3574
+ Parameters: {" "=>nil}
3575
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3576
+
3577
+
3578
+ Processing MainController#index (for at 2011-08-01 18:28:41) [GET]
3579
+ Parameters: {" "=>nil}
3580
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3581
+
3582
+
3583
+ Processing MainController#index (for at 2011-08-01 18:29:07) [GET]
3584
+ Parameters: {" "=>nil}
3585
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3586
+
3587
+
3588
+ Processing MainController#index (for at 2011-08-01 18:29:22) [GET]
3589
+ Parameters: {" "=>nil}
3590
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3591
+
3592
+
3593
+ Processing MainController#index (for at 2011-08-01 18:29:38) [GET]
3594
+ Parameters: {" "=>nil}
3595
+
3596
+ NameError (uninitialized constant MainController::Error):
3597
+ app/controllers/main_controller.rb:4:in `rescue in index'
3598
+ app/controllers/main_controller.rb:3:in `index'
3599
+ <internal:prelude>:10:in `synchronize'
3600
+ passenger (2.2.15) lib/phusion_passenger/rack/request_handler.rb:92:in `process_request'
3601
+ passenger (2.2.15) lib/phusion_passenger/abstract_request_handler.rb:207:in `main_loop'
3602
+ passenger (2.2.15) lib/phusion_passenger/railz/application_spawner.rb:441:in `start_request_handler'
3603
+ passenger (2.2.15) lib/phusion_passenger/railz/application_spawner.rb:381:in `block in handle_spawn_application'
3604
+ passenger (2.2.15) lib/phusion_passenger/utils.rb:252:in `safe_fork'
3605
+ passenger (2.2.15) lib/phusion_passenger/railz/application_spawner.rb:377:in `handle_spawn_application'
3606
+ passenger (2.2.15) lib/phusion_passenger/abstract_server.rb:352:in `main_loop'
3607
+ passenger (2.2.15) lib/phusion_passenger/abstract_server.rb:196:in `start_synchronously'
3608
+ passenger (2.2.15) lib/phusion_passenger/abstract_server.rb:163:in `start'
3609
+ passenger (2.2.15) lib/phusion_passenger/railz/application_spawner.rb:222:in `start'
3610
+ passenger (2.2.15) lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rails_application'
3611
+ passenger (2.2.15) lib/phusion_passenger/abstract_server_collection.rb:126:in `lookup_or_add'
3612
+ passenger (2.2.15) lib/phusion_passenger/spawn_manager.rb:247:in `block in spawn_rails_application'
3613
+ passenger (2.2.15) lib/phusion_passenger/abstract_server_collection.rb:80:in `block in synchronize'
3614
+ <internal:prelude>:10:in `synchronize'
3615
+ passenger (2.2.15) lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
3616
+ passenger (2.2.15) lib/phusion_passenger/spawn_manager.rb:246:in `spawn_rails_application'
3617
+ passenger (2.2.15) lib/phusion_passenger/spawn_manager.rb:145:in `spawn_application'
3618
+ test/passenger_test.rb:17:in `setup'
3619
+ mocha (0.9.12) lib/mocha/integration/mini_test/version_142_to_172.rb:26:in `run'
3620
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:656:in `block (2 levels) in run_test_suites'
3621
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:650:in `each'
3622
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:650:in `block in run_test_suites'
3623
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:649:in `each'
3624
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:649:in `run_test_suites'
3625
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:609:in `run'
3626
+ /Users/assaf/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/minitest/unit.rb:508:in `block in autorun'
3627
+
3628
+ Rendering rescues/layout (internal_server_error)
3629
+
3630
+
3631
+ Processing MainController#index (for at 2011-08-01 18:29:48) [GET]
3632
+ Parameters: {" "=>nil}
3633
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3634
+
3635
+
3636
+ Processing MainController#index (for at 2011-08-01 18:30:16) [GET]
3637
+ Parameters: {" "=>nil}
3638
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3639
+
3640
+
3641
+ Processing MainController#index (for at 2011-08-01 18:30:37) [GET]
3642
+ Parameters: {" "=>nil}
3643
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3644
+ Error reconnecting: No configuration for production
3645
+
3646
+
3647
+ Processing MainController#index (for at 2011-08-01 18:30:47) [GET]
3648
+ Parameters: {" "=>nil}
3649
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3650
+ Error reconnecting: No configuration for production
3651
+
3652
+
3653
+ Processing MainController#index (for at 2011-08-01 18:31:40) [GET]
3654
+ Parameters: {" "=>nil}
3655
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3656
+
3657
+
3658
+ Processing MainController#index (for at 2011-08-01 18:31:56) [GET]
3659
+ Parameters: {" "=>nil}
3660
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3661
+
3662
+
3663
+ Processing MainController#index (for at 2011-08-01 18:32:14) [GET]
3664
+ Parameters: {" "=>nil}
3665
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3666
+
3667
+
3668
+ Processing MainController#index (for at 2011-08-01 18:32:24) [GET]
3669
+ Parameters: {" "=>nil}
3670
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3671
+ Error reconnecting: No configuration for production
3672
+
3673
+
3674
+ Processing MainController#index (for at 2011-08-01 18:32:34) [GET]
3675
+ Parameters: {" "=>nil}
3676
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3677
+ Error reconnecting: No configuration for production
3678
+
3679
+
3680
+ Processing MainController#index (for at 2011-08-01 18:33:12) [GET]
3681
+ Parameters: {" "=>nil}
3682
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3683
+ Error reconnecting: No configuration for production
3684
+
3685
+
3686
+ Processing MainController#index (for at 2011-08-01 18:33:44) [GET]
3687
+ Parameters: {" "=>nil}
3688
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3689
+ Error reconnecting: No configuration for production
3690
+
3691
+
3692
+ Processing MainController#index (for at 2011-08-01 18:33:58) [GET]
3693
+ Parameters: {" "=>nil}
3694
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3695
+ Error reconnecting: No configuration for production
3696
+
3697
+
3698
+ Processing MainController#index (for at 2011-08-01 18:34:13) [GET]
3699
+ Parameters: {" "=>nil}
3700
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3701
+ Error reconnecting: No configuration for production
3702
+
3703
+
3704
+ Processing MainController#index (for at 2011-08-01 18:34:28) [GET]
3705
+ Parameters: {" "=>nil}
3706
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3707
+ Error reconnecting: No configuration for production
3708
+
3709
+
3710
+ Processing MainController#index (for at 2011-08-01 18:34:51) [GET]
3711
+ Parameters: {" "=>nil}
3712
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3713
+ Error reconnecting: No configuration for production
3714
+
3715
+
3716
+ Processing MainController#index (for at 2011-08-01 18:35:02) [GET]
3717
+ Parameters: {" "=>nil}
3718
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3719
+ Error reconnecting: No configuration for production
3720
+
3721
+
3722
+ Processing MainController#index (for at 2011-08-01 20:34:41) [GET]
3723
+ Parameters: {" "=>nil}
3724
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3725
+ Error reconnecting: No configuration for production
3726
+
3727
+
3728
+ Processing MainController#index (for at 2011-08-01 20:35:39) [GET]
3729
+ Parameters: {" "=>nil}
3730
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3731
+ Error reconnecting: No configuration for production
3732
+
3733
+
3734
+ Processing MainController#index (for at 2011-08-01 20:35:54) [GET]
3735
+ Parameters: {" "=>nil}
3736
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3737
+ Error reconnecting: No configuration for production
3738
+
3739
+
3740
+ Processing MainController#index (for at 2011-08-01 20:41:19) [GET]
3741
+ Parameters: {" "=>nil}
3742
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3743
+ Error reconnecting: No configuration for production
3744
+
3745
+
3746
+ Processing MainController#index (for at 2011-08-01 20:41:53) [GET]
3747
+ Parameters: {" "=>nil}
3748
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3749
+
3750
+
3751
+ Processing MainController#index (for at 2011-08-01 20:42:22) [GET]
3752
+ Parameters: {" "=>nil}
3753
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3754
+
3755
+
3756
+ Processing MainController#index (for at 2011-08-01 20:43:27) [GET]
3757
+ Parameters: {" "=>nil}
3758
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3759
+
3760
+
3761
+ Processing MainController#index (for at 2011-08-01 20:46:44) [GET]
3762
+ Parameters: {" "=>nil}
3763
+ Completed in 7ms (View: 1 | 200 OK [http://:? ]
3764
+
3765
+
3766
+ Processing MainController#index (for at 2011-08-01 20:48:00) [GET]
3767
+ Parameters: {" "=>nil}
3768
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3769
+
3770
+
3771
+ Processing MainController#index (for at 2011-08-01 20:48:33) [GET]
3772
+ Parameters: {" "=>nil}
3773
+ Completed in 7ms (View: 1 | 200 OK [http://:? ]
3774
+
3775
+
3776
+ Processing MainController#index (for at 2011-08-01 20:48:56) [GET]
3777
+ Parameters: {" "=>nil}
3778
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3779
+
3780
+
3781
+ Processing MainController#index (for at 2011-08-01 20:49:08) [GET]
3782
+ Parameters: {" "=>nil}
3783
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3784
+
3785
+
3786
+ Processing MainController#index (for at 2011-08-01 20:49:41) [GET]
3787
+ Parameters: {" "=>nil}
3788
+ Completed in 8ms (View: 1 | 200 OK [http://:? ]
3789
+
3790
+
3791
+ Processing MainController#index (for at 2011-08-01 20:51:00) [GET]
3792
+ Parameters: {" "=>nil}
3793
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3794
+
3795
+
3796
+ Processing MainController#index (for at 2011-08-01 20:51:10) [GET]
3797
+ Parameters: {" "=>nil}
3798
+ Completed in 4ms (View: 1 | 200 OK [http://:? ]
3799
+
3800
+
3801
+ Processing MainController#index (for at 2011-08-01 21:17:34) [GET]
3802
+ Parameters: {" "=>nil}
3803
+ Completed in 6ms (View: 1 | 200 OK [http://:? ]
3804
+
3805
+
3806
+ Processing MainController#index (for at 2011-08-01 21:35:01) [GET]
3807
+ Parameters: {" "=>nil}
3808
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3809
+
3810
+
3811
+ Processing MainController#index (for at 2011-08-01 21:37:15) [GET]
3812
+ Parameters: {" "=>nil}
3813
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3814
+
3815
+
3816
+ Processing MainController#index (for at 2011-08-01 21:38:07) [GET]
3817
+ Parameters: {" "=>nil}
3818
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3819
+
3820
+
3821
+ Processing MainController#index (for at 2011-08-01 21:38:41) [GET]
3822
+ Parameters: {" "=>nil}
3823
+ Completed in 2ms (View: 1 | 200 OK [http://:? ]
3824
+
3825
+
3826
+ Processing MainController#index (for at 2011-08-01 21:39:13) [GET]
3827
+ Parameters: {" "=>nil}
3828
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3829
+
3830
+
3831
+ Processing MainController#index (for at 2011-08-01 21:39:59) [GET]
3832
+ Parameters: {" "=>nil}
3833
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3834
+
3835
+
3836
+ Processing MainController#index (for at 2011-08-01 21:41:08) [GET]
3837
+ Parameters: {" "=>nil}
3838
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3839
+
3840
+
3841
+ Processing MainController#index (for at 2011-08-02 21:58:49) [GET]
3842
+ Parameters: {" "=>nil}
3843
+ Completed in 3ms (View: 1 | 200 OK [http://:? ]
3844
+
3845
+
3846
+ Processing MainController#index (for at 2011-08-02 21:59:31) [GET]
3847
+ Parameters: {" "=>nil}
3848
+ Completed in 7ms (View: 2 | 200 OK [http://:? ]
3849
+
3850
+
3851
+ Processing MainController#index (for at 2011-08-02 22:02:33) [GET]
3852
+ Parameters: {" "=>nil}
3853
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3854
+
3855
+
3856
+ Processing MainController#index (for at 2011-08-02 23:46:35) [GET]
3857
+ Parameters: {" "=>nil}
3858
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3859
+
3860
+
3861
+ Processing MainController#index (for at 2011-08-02 23:47:38) [GET]
3862
+ Parameters: {" "=>nil}
3863
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3864
+
3865
+
3866
+ Processing MainController#index (for at 2011-08-27 21:27:47) [GET]
3867
+ Parameters: {" "=>nil}
3868
+ Completed in 7ms (View: 2 | 200 OK [http://:? ]
3869
+
3870
+
3871
+ Processing MainController#index (for at 2011-08-27 21:31:10) [GET]
3872
+ Parameters: {" "=>nil}
3873
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]
3874
+
3875
+
3876
+ Processing MainController#index (for at 2011-08-27 21:32:07) [GET]
3877
+ Parameters: {" "=>nil}
3878
+ Completed in 6ms (View: 1 | 200 OK [http://:? ]
3879
+
3880
+
3881
+ Processing MainController#index (for at 2011-08-27 21:33:19) [GET]
3882
+ Parameters: {" "=>nil}
3883
+ Completed in 5ms (View: 1 | 200 OK [http://:? ]