copycat 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,11 +3,11 @@ module Copycat
3
3
  # this method overrides part of the i18n gem, lib/i18n/backend/simple.rb
4
4
  def lookup(locale, key, scope = [], options = {})
5
5
  return super unless ActiveRecord::Base.connected? && CopycatTranslation.table_exists?
6
- cct = CopycatTranslation.where(locale: locale.to_s, key: key).first
6
+ cct = CopycatTranslation.where(locale: locale.to_s, key: key.to_s).first
7
7
  return cct.value if cct
8
8
  value = super(locale, key, scope, options)
9
9
  if value.is_a?(String) || value.nil?
10
- CopycatTranslation.create(locale: locale, key: key, value: value)
10
+ CopycatTranslation.create(locale: locale.to_s, key: key.to_s, value: value)
11
11
  end
12
12
  value
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module Copycat
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
@@ -27310,3 +27310,474 @@ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
27310
27310
  Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:23:32 -0400
27311
27311
  Processing by CopycatTranslationsController#index as HTML
27312
27312
  Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
27313
+
27314
+
27315
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27316
+ Processing by CopycatTranslationsController#index as HTML
27317
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (3.0ms)
27318
+ Completed 200 OK in 19ms (Views: 12.1ms | ActiveRecord: 0.1ms)
27319
+
27320
+
27321
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27322
+ Processing by CopycatTranslationsController#import_export as HTML
27323
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (1.2ms)
27324
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
27325
+
27326
+
27327
+ Started GET "/copycat_translations/help" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27328
+ Processing by CopycatTranslationsController#help as HTML
27329
+ Rendered /vermonster/copycat/app/views/copycat_translations/help.html.erb within layouts/copycat (0.3ms)
27330
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
27331
+
27332
+
27333
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27334
+ Processing by CopycatTranslationsController#index as HTML
27335
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
27336
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
27337
+
27338
+
27339
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27340
+ Processing by CopycatTranslationsController#index as HTML
27341
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
27342
+
27343
+
27344
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27345
+ Processing by CopycatTranslationsController#index as HTML
27346
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27347
+
27348
+
27349
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27350
+ Processing by CopycatTranslationsController#index as HTML
27351
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"foo", "commit"=>"Search"}
27352
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms)
27353
+
27354
+
27355
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27356
+ Processing by CopycatTranslationsController#index as HTML
27357
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27358
+
27359
+
27360
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=xfoo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27361
+ Processing by CopycatTranslationsController#index as HTML
27362
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"xfoo", "commit"=>"Search"}
27363
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms)
27364
+
27365
+
27366
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27367
+ Processing by CopycatTranslationsController#index as HTML
27368
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27369
+
27370
+
27371
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=bar&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27372
+ Processing by CopycatTranslationsController#index as HTML
27373
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"bar", "commit"=>"Search"}
27374
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.3ms)
27375
+
27376
+
27377
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27378
+ Processing by CopycatTranslationsController#index as HTML
27379
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27380
+
27381
+
27382
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=xbar&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27383
+ Processing by CopycatTranslationsController#index as HTML
27384
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"xbar", "commit"=>"Search"}
27385
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms)
27386
+
27387
+
27388
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27389
+ Processing by CopycatTranslationsController#index as HTML
27390
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27391
+
27392
+
27393
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=index&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27394
+ Processing by CopycatTranslationsController#index as HTML
27395
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"index", "commit"=>"Search"}
27396
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
27397
+
27398
+
27399
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27400
+ Processing by CopycatTranslationsController#index as HTML
27401
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
27402
+
27403
+
27404
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27405
+ Processing by CopycatTranslationsController#index as HTML
27406
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
27407
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
27408
+
27409
+
27410
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27411
+ Processing by CopycatTranslationsController#index as HTML
27412
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27413
+
27414
+
27415
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27416
+ Processing by CopycatTranslationsController#index as HTML
27417
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27418
+
27419
+
27420
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27421
+ Processing by CopycatTranslationsController#index as HTML
27422
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27423
+
27424
+
27425
+ Started GET "/copycat_translations?commit=Search&search=" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27426
+ Processing by CopycatTranslationsController#index as HTML
27427
+ Parameters: {"commit"=>"Search", "search"=>""}
27428
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms)
27429
+
27430
+
27431
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27432
+ Processing by CopycatTranslationsController#index as HTML
27433
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27434
+
27435
+
27436
+ Started GET "/copycat_translations?commit=Search&search=foo" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27437
+ Processing by CopycatTranslationsController#index as HTML
27438
+ Parameters: {"commit"=>"Search", "search"=>"foo"}
27439
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.2ms)
27440
+
27441
+
27442
+ Started GET "/copycat_translations?commit=Search&search=fuu" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27443
+ Processing by CopycatTranslationsController#index as HTML
27444
+ Parameters: {"commit"=>"Search", "search"=>"fuu"}
27445
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27446
+
27447
+
27448
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27449
+ Processing by CopycatTranslationsController#index as HTML
27450
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27451
+
27452
+
27453
+ Started GET "/copycat_translations?commit=Search&locale=" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27454
+ Processing by CopycatTranslationsController#index as HTML
27455
+ Parameters: {"commit"=>"Search", "locale"=>""}
27456
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
27457
+
27458
+
27459
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27460
+ Processing by CopycatTranslationsController#index as HTML
27461
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
27462
+
27463
+
27464
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:12 -0400
27465
+ Processing by CopycatTranslationsController#index as HTML
27466
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"", "commit"=>"Search"}
27467
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
27468
+
27469
+
27470
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27471
+ Processing by CopycatTranslationsController#index as HTML
27472
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27473
+
27474
+
27475
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27476
+ Processing by CopycatTranslationsController#index as HTML
27477
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"foo", "commit"=>"Search"}
27478
+ Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.2ms)
27479
+
27480
+
27481
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=fuu&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27482
+ Processing by CopycatTranslationsController#index as HTML
27483
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"fuu", "commit"=>"Search"}
27484
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
27485
+
27486
+
27487
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27488
+ Processing by CopycatTranslationsController#index as HTML
27489
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27490
+
27491
+
27492
+ Started GET "/copycat_translations?commit=Search&locale=en" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27493
+ Processing by CopycatTranslationsController#index as HTML
27494
+ Parameters: {"commit"=>"Search", "locale"=>"en"}
27495
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27496
+
27497
+
27498
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27499
+ Processing by CopycatTranslationsController#index as HTML
27500
+ Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.1ms)
27501
+
27502
+
27503
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27504
+ Processing by CopycatTranslationsController#index as HTML
27505
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
27506
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
27507
+
27508
+
27509
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=fa&search=&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27510
+ Processing by CopycatTranslationsController#index as HTML
27511
+ Parameters: {"utf8"=>"✓", "locale"=>"fa", "search"=>"", "commit"=>"Search"}
27512
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
27513
+
27514
+
27515
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=it&search=&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27516
+ Processing by CopycatTranslationsController#index as HTML
27517
+ Parameters: {"utf8"=>"✓", "locale"=>"it", "search"=>"", "commit"=>"Search"}
27518
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
27519
+
27520
+
27521
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27522
+ Processing by CopycatTranslationsController#index as HTML
27523
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27524
+
27525
+
27526
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27527
+ Processing by CopycatTranslationsController#index as HTML
27528
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"foo", "commit"=>"Search"}
27529
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
27530
+
27531
+
27532
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=fa&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27533
+ Processing by CopycatTranslationsController#index as HTML
27534
+ Parameters: {"utf8"=>"✓", "locale"=>"fa", "search"=>"foo", "commit"=>"Search"}
27535
+ Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.3ms)
27536
+
27537
+
27538
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=it&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27539
+ Processing by CopycatTranslationsController#index as HTML
27540
+ Parameters: {"utf8"=>"✓", "locale"=>"it", "search"=>"foo", "commit"=>"Search"}
27541
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.2ms)
27542
+
27543
+
27544
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=fuu&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27545
+ Processing by CopycatTranslationsController#index as HTML
27546
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"fuu", "commit"=>"Search"}
27547
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
27548
+
27549
+
27550
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27551
+ Processing by CopycatTranslationsController#index as HTML
27552
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
27553
+
27554
+
27555
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27556
+ Processing by CopycatTranslationsController#index as HTML
27557
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"foo", "commit"=>"Search"}
27558
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)
27559
+
27560
+
27561
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27562
+ Processing by CopycatTranslationsController#edit as HTML
27563
+ Parameters: {"id"=>"1"}
27564
+ Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.1ms)
27565
+
27566
+
27567
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27568
+ Processing by CopycatTranslationsController#index as HTML
27569
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27570
+
27571
+
27572
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27573
+ Processing by CopycatTranslationsController#index as HTML
27574
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"foo", "commit"=>"Search"}
27575
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)
27576
+
27577
+
27578
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27579
+ Processing by CopycatTranslationsController#edit as HTML
27580
+ Parameters: {"id"=>"1"}
27581
+ Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.1ms)
27582
+
27583
+
27584
+ Started PUT "/copycat_translations/1" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27585
+ Processing by CopycatTranslationsController#update as HTML
27586
+ Parameters: {"utf8"=>"✓", "copycat_translation"=>{"value"=>"baz"}, "commit"=>"Update", "id"=>"1"}
27587
+ Redirected to http://www.example.com/copycat_translations
27588
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
27589
+
27590
+
27591
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27592
+ Processing by CopycatTranslationsController#index as HTML
27593
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27594
+
27595
+
27596
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27597
+ Processing by CopycatTranslationsController#index as HTML
27598
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
27599
+
27600
+
27601
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=foo&commit=Search" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27602
+ Processing by CopycatTranslationsController#index as HTML
27603
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"foo", "commit"=>"Search"}
27604
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.3ms)
27605
+
27606
+
27607
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27608
+ Processing by CopycatTranslationsController#edit as HTML
27609
+ Parameters: {"id"=>"1"}
27610
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
27611
+
27612
+
27613
+ Started DELETE "/copycat_translations/1" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27614
+ Processing by CopycatTranslationsController#destroy as HTML
27615
+ Parameters: {"id"=>"1"}
27616
+ Redirected to http://www.example.com/copycat_translations
27617
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
27618
+
27619
+
27620
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27621
+ Processing by CopycatTranslationsController#index as HTML
27622
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.1ms)
27623
+
27624
+
27625
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27626
+ Processing by CopycatTranslationsController#import_export as HTML
27627
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
27628
+
27629
+
27630
+ Started GET "/copycat_translations/download" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27631
+ Processing by CopycatTranslationsController#download as HTML
27632
+ Sent data copycat_translations_2012_08_13_16_31_13.yml (1.7ms)
27633
+ Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.1ms)
27634
+
27635
+
27636
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27637
+ Processing by CopycatTranslationsController#import_export as HTML
27638
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
27639
+
27640
+
27641
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27642
+ Processing by CopycatTranslationsController#upload as HTML
27643
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x000001017365c0 @original_filename="copycat20120813-29585-1xy93cx", @content_type="", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"copycat20120813-29585-1xy93cx\"\r\nContent-Type: \r\nContent-Length: 104\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120813-29585-wbor1m>>, "commit"=>"Upload"}
27644
+ Redirected to http://www.example.com/copycat_translations
27645
+ Completed 302 Found in 8ms (ActiveRecord: 1.7ms)
27646
+
27647
+
27648
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27649
+ Processing by CopycatTranslationsController#index as HTML
27650
+ Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.1ms)
27651
+
27652
+
27653
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27654
+ Processing by CopycatTranslationsController#import_export as HTML
27655
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
27656
+
27657
+
27658
+ Started GET "/copycat_translations/download" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27659
+ Processing by CopycatTranslationsController#download as HTML
27660
+ Sent data copycat_translations_2012_08_13_16_31_13.yml (0.2ms)
27661
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
27662
+
27663
+
27664
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27665
+ Processing by CopycatTranslationsController#import_export as HTML
27666
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
27667
+
27668
+
27669
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27670
+ Processing by CopycatTranslationsController#upload as HTML
27671
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000103aedfb8 @original_filename="copycat20120813-29585-16b69i9", @content_type="", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"copycat20120813-29585-16b69i9\"\r\nContent-Type: \r\nContent-Length: 64\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120813-29585-1xb8way>>, "commit"=>"Upload"}
27672
+ Redirected to http://www.example.com/copycat_translations
27673
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
27674
+
27675
+
27676
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27677
+ Processing by CopycatTranslationsController#index as HTML
27678
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
27679
+
27680
+
27681
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27682
+ Processing by CopycatTranslationsController#import_export as HTML
27683
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
27684
+
27685
+
27686
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27687
+ Processing by CopycatTranslationsController#upload as HTML
27688
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000103e987a8 @original_filename="copycat20120813-29585-15f4djq", @content_type="", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"copycat20120813-29585-15f4djq\"\r\nContent-Type: \r\nContent-Length: 7\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120813-29585-19aeed>>, "commit"=>"Upload"}
27689
+
27690
+ NoMethodError
27691
+ undefined method `each' for "<<<%%%s":String
27692
+ Completed 400 Bad Request in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
27693
+
27694
+
27695
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27696
+ Processing by CopycatTranslationsController#import_export as HTML
27697
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
27698
+
27699
+
27700
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27701
+ Processing by CopycatTranslationsController#upload as HTML
27702
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x0000010107b5c8 @original_filename="copycat20120813-29585-ao487s", @content_type="", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"copycat20120813-29585-ao487s\"\r\nContent-Type: \r\nContent-Length: 62\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120813-29585-1swgnd3>>, "commit"=>"Upload"}
27703
+ Redirected to http://www.example.com/copycat_translations
27704
+ Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
27705
+
27706
+
27707
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27708
+ Processing by CopycatTranslationsController#index as HTML
27709
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
27710
+
27711
+
27712
+ Started GET "/copycat_translations/download" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27713
+ Processing by CopycatTranslationsController#download as HTML
27714
+ Sent data copycat_translations_2012_08_13_16_31_13.yml (0.3ms)
27715
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
27716
+
27717
+
27718
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27719
+ Processing by SiteController#index as HTML
27720
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 1.1ms)
27721
+
27722
+
27723
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27724
+ Processing by SiteController#index as HTML
27725
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 1.0ms)
27726
+
27727
+
27728
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27729
+ Processing by SiteController#index as HTML
27730
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 1.0ms)
27731
+
27732
+
27733
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27734
+ Processing by SiteController#index as HTML
27735
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.5ms)
27736
+
27737
+
27738
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27739
+ Processing by SiteController#index as HTML
27740
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.5ms)
27741
+
27742
+
27743
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27744
+ Processing by SiteController#index as HTML
27745
+ Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.5ms)
27746
+
27747
+
27748
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27749
+ Processing by SiteController#index as HTML
27750
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.8ms)
27751
+
27752
+
27753
+ Started GET "/" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27754
+ Processing by SiteController#index as HTML
27755
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 1.0ms)
27756
+
27757
+
27758
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27759
+ Processing by CopycatTranslationsController#import_export as HTML
27760
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
27761
+
27762
+
27763
+ Started GET "/copycat_translations/download" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27764
+ Processing by CopycatTranslationsController#download as HTML
27765
+ Sent data copycat_translations_2012_08_13_16_31_13.yml (0.2ms)
27766
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
27767
+
27768
+
27769
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27770
+ Processing by CopycatTranslationsController#import_export as HTML
27771
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
27772
+
27773
+
27774
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27775
+ Processing by CopycatTranslationsController#upload as HTML
27776
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000103e6c310 @original_filename="copycat20120813-29585-l0a4s4", @content_type="", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"copycat20120813-29585-l0a4s4\"\r\nContent-Type: \r\nContent-Length: 52\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120813-29585-1ni56ae>>, "commit"=>"Upload"}
27777
+ Redirected to http://www.example.com/copycat_translations
27778
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
27779
+
27780
+
27781
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-08-13 16:31:13 -0400
27782
+ Processing by CopycatTranslationsController#index as HTML
27783
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: copycat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: