themes_on_rails 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -11
- data/Rakefile +2 -2
- data/lib/generators/themes_on_rails/templates/layout.html.liquid +14 -0
- data/lib/generators/themes_on_rails/theme_generator.rb +10 -1
- data/lib/themes_on_rails.rb +9 -6
- data/lib/themes_on_rails/action_controller.rb +10 -5
- data/lib/themes_on_rails/engine.rb +23 -1
- data/lib/themes_on_rails/version.rb +2 -2
- data/spec/dummy/app/controllers/posts_controller.rb +1 -1
- data/spec/dummy/app/themes/{basic_blue/assets/javascripts/basic_blue → theme_a/assets/javascripts/theme_a}/all.js +0 -0
- data/spec/dummy/app/themes/{basic_blue/assets/stylesheets/basic_blue → theme_a/assets/stylesheets/theme_a}/all.css +0 -0
- data/spec/dummy/app/themes/theme_a/views/layouts/theme_a.html.haml +9 -0
- data/spec/dummy/app/themes/{basic_blue → theme_a}/views/posts/_form.html.erb +0 -0
- data/spec/dummy/app/themes/{basic_blue → theme_a}/views/posts/edit.html.erb +1 -1
- data/spec/dummy/app/themes/{basic_blue → theme_a}/views/posts/index.html.erb +1 -1
- data/spec/dummy/app/themes/{basic_blue → theme_a}/views/posts/new.html.erb +1 -1
- data/spec/dummy/app/themes/{basic_blue → theme_a}/views/posts/show.html.erb +1 -1
- data/spec/dummy/app/themes/{professional_blue/assets/javascripts/professional_blue → theme_b/assets/javascripts/theme_b}/all.js +0 -0
- data/spec/dummy/app/themes/{professional_blue/assets/stylesheets/professional_blue → theme_b/assets/stylesheets/theme_b}/all.css +0 -0
- data/spec/dummy/app/themes/theme_b/views/layouts/alternate_theme_b.html.haml +9 -0
- data/spec/dummy/app/themes/theme_b/views/layouts/theme_b.html.haml +9 -0
- data/spec/dummy/app/themes/{professional_blue → theme_b}/views/posts/_form.html.erb +0 -0
- data/spec/dummy/app/themes/{professional_blue → theme_b}/views/posts/edit.html.erb +1 -1
- data/spec/dummy/app/themes/{professional_blue → theme_b}/views/posts/index.html.erb +2 -2
- data/spec/dummy/app/themes/{professional_blue → theme_b}/views/posts/new.html.erb +1 -1
- data/spec/dummy/app/themes/{professional_blue → theme_b}/views/posts/show.html.erb +1 -1
- data/spec/dummy/app/themes/theme_c/assets/images/theme_c/1.jpg +0 -0
- data/spec/dummy/app/themes/theme_c/assets/javascripts/theme_c/all.js +7 -0
- data/spec/dummy/app/themes/theme_c/assets/stylesheets/theme_c/all.css +9 -0
- data/spec/dummy/app/themes/theme_c/locales/en.yml +4 -0
- data/spec/dummy/app/themes/theme_c/locales/km.yml +4 -0
- data/spec/dummy/app/themes/theme_c/views/layouts/theme_c.liquid +11 -0
- data/spec/dummy/app/themes/theme_c/views/posts/_partial.liquid +1 -0
- data/spec/dummy/app/themes/theme_c/views/posts/index.liquid +3 -0
- data/spec/dummy/log/development.log +275 -0
- data/spec/dummy/log/test.log +1897 -0
- data/spec/dummy/spec/controllers/posts_controller_spec.rb +37 -17
- data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1e8f75a6b5b33970fb8e397347caa0a1 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1fd9ad217474bbaee0fa43a1497b4126 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/24204f742af588c8166d3160b500d20f +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/76032e6eabf40d365a1dae7dccb36a39 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7dc53503f61ca13fc175ac459f52ae6c +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/83e0f4bbef733c177f077762a5225f69 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/b2748190620f4b3edb4a2b4d7e9146c5 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c66b2f58de9cb0b261cc990107adb241 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c9c47e931d0f7e4959ed2a882fb2ebe8 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/dcd26efc7d0c0fd3e246f9cc1391c537 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/e4af50439f4554f9b82ec9cbb6e5463f +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/ef18888e878b0844df17b3a647806b8a +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f97e9d28fcfdb3281202d537865677b9 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/fa7e291abdc6c5f378253d3683b11427 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1fd9ad217474bbaee0fa43a1497b4126 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/76032e6eabf40d365a1dae7dccb36a39 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7dc53503f61ca13fc175ac459f52ae6c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/83e0f4bbef733c177f077762a5225f69 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b2748190620f4b3edb4a2b4d7e9146c5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c66b2f58de9cb0b261cc990107adb241 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c9c47e931d0f7e4959ed2a882fb2ebe8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dcd26efc7d0c0fd3e246f9cc1391c537 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e4af50439f4554f9b82ec9cbb6e5463f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ef18888e878b0844df17b3a647806b8a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f97e9d28fcfdb3281202d537865677b9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fa7e291abdc6c5f378253d3683b11427 +0 -0
- data/spec/generators/themes_on_rails/theme_generator_spec.rb +40 -21
- data/spec/lib/action_controller_spec.rb +10 -10
- data/spec/lib/controller_additions_spec.rb +2 -2
- data/spec/lib/engine_spec.rb +24 -0
- data/spec/spec_helper.rb +7 -4
- metadata +112 -40
- data/lib/themes_on_rails/railtie.rb +0 -23
- data/spec/dummy/app/themes/basic_blue/views/layouts/basic_blue.html.haml +0 -9
- data/spec/dummy/app/themes/professional_blue/views/layouts/professional_blue.html.haml +0 -9
- data/spec/lib/assets_path_spec.rb +0 -15
data/spec/dummy/log/test.log
CHANGED
@@ -6644,3 +6644,1900 @@ Processing by PostsController#new as HTML
|
|
6644
6644
|
Parameters: {"theme"=>"theme_a"}
|
6645
6645
|
Rendered posts/_form.html.erb (1.9ms)
|
6646
6646
|
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
6647
|
+
Processing by PostsController#index as HTML
|
6648
|
+
Parameters: {"theme"=>"theme_b"}
|
6649
|
+
[1m[36mPost Load (2.5ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6650
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2986.4ms)
|
6651
|
+
Completed 200 OK in 3011ms (Views: 3006.4ms | ActiveRecord: 2.5ms)
|
6652
|
+
Processing by PostsController#index as HTML
|
6653
|
+
Parameters: {"theme"=>"theme_b"}
|
6654
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6655
|
+
Completed 200 OK in 13005ms (Views: 13004.1ms | ActiveRecord: 0.1ms)
|
6656
|
+
Processing by PostsController#index as HTML
|
6657
|
+
Parameters: {"theme"=>"theme_a"}
|
6658
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6659
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)
|
6660
|
+
Processing by PostsController#index as HTML
|
6661
|
+
Parameters: {"theme"=>"theme_a"}
|
6662
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6663
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6664
|
+
Processing by PostsController#index as HTML
|
6665
|
+
Parameters: {"theme"=>"theme_c"}
|
6666
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
6667
|
+
Processing by PostsController#index as HTML
|
6668
|
+
Parameters: {"theme"=>"theme_c"}
|
6669
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
6670
|
+
Processing by PostsController#index as HTML
|
6671
|
+
Parameters: {"theme"=>"theme_c"}
|
6672
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
6673
|
+
Processing by PostsController#new as HTML
|
6674
|
+
Parameters: {"theme"=>"theme_a"}
|
6675
|
+
Rendered posts/_form.html.erb (21.5ms)
|
6676
|
+
Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.3ms)
|
6677
|
+
Processing by PostsController#new as HTML
|
6678
|
+
Parameters: {"theme"=>"theme_a"}
|
6679
|
+
Rendered posts/_form.html.erb (1.7ms)
|
6680
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
6681
|
+
Processing by PostsController#index as HTML
|
6682
|
+
Parameters: {"theme"=>"theme_b"}
|
6683
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6684
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6685
|
+
Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.9ms)
|
6686
|
+
Processing by PostsController#index as HTML
|
6687
|
+
Parameters: {"theme"=>"theme_b"}
|
6688
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6689
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6690
|
+
Processing by PostsController#index as HTML
|
6691
|
+
Parameters: {"theme"=>"theme_a"}
|
6692
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6693
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.2ms)
|
6694
|
+
Processing by PostsController#index as HTML
|
6695
|
+
Parameters: {"theme"=>"theme_a"}
|
6696
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6697
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6698
|
+
Processing by PostsController#index as HTML
|
6699
|
+
Parameters: {"theme"=>"theme_c"}
|
6700
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6701
|
+
Processing by PostsController#index as HTML
|
6702
|
+
Parameters: {"theme"=>"theme_c"}
|
6703
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
6704
|
+
Processing by PostsController#index as HTML
|
6705
|
+
Parameters: {"theme"=>"theme_c"}
|
6706
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
6707
|
+
Processing by PostsController#new as HTML
|
6708
|
+
Parameters: {"theme"=>"theme_a"}
|
6709
|
+
Rendered posts/_form.html.erb (12.4ms)
|
6710
|
+
Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms)
|
6711
|
+
Processing by PostsController#new as HTML
|
6712
|
+
Parameters: {"theme"=>"theme_a"}
|
6713
|
+
Rendered posts/_form.html.erb (1.6ms)
|
6714
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
6715
|
+
Processing by PostsController#index as HTML
|
6716
|
+
Parameters: {"theme"=>"theme_b"}
|
6717
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6718
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.8ms)
|
6719
|
+
Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 0.9ms)
|
6720
|
+
Processing by PostsController#index as HTML
|
6721
|
+
Parameters: {"theme"=>"theme_b"}
|
6722
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6723
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6724
|
+
Processing by PostsController#index as HTML
|
6725
|
+
Parameters: {"theme"=>"theme_a"}
|
6726
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6727
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms)
|
6728
|
+
Processing by PostsController#index as HTML
|
6729
|
+
Parameters: {"theme"=>"theme_a"}
|
6730
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6731
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6732
|
+
Processing by PostsController#index as HTML
|
6733
|
+
Parameters: {"theme"=>"theme_c"}
|
6734
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
6735
|
+
Processing by PostsController#index as HTML
|
6736
|
+
Parameters: {"theme"=>"theme_c"}
|
6737
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
6738
|
+
Processing by PostsController#index as HTML
|
6739
|
+
Parameters: {"theme"=>"theme_c"}
|
6740
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
6741
|
+
Processing by PostsController#new as HTML
|
6742
|
+
Parameters: {"theme"=>"theme_a"}
|
6743
|
+
Rendered posts/_form.html.erb (11.9ms)
|
6744
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms)
|
6745
|
+
Processing by PostsController#new as HTML
|
6746
|
+
Parameters: {"theme"=>"theme_a"}
|
6747
|
+
Rendered posts/_form.html.erb (1.6ms)
|
6748
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6749
|
+
Processing by PostsController#index as HTML
|
6750
|
+
Parameters: {"theme"=>"theme_b"}
|
6751
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6752
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6753
|
+
Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 1.0ms)
|
6754
|
+
Processing by PostsController#index as HTML
|
6755
|
+
Parameters: {"theme"=>"theme_b"}
|
6756
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6757
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6758
|
+
Processing by PostsController#index as HTML
|
6759
|
+
Parameters: {"theme"=>"theme_a"}
|
6760
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6761
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.2ms)
|
6762
|
+
Processing by PostsController#index as HTML
|
6763
|
+
Parameters: {"theme"=>"theme_a"}
|
6764
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
6765
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
|
6766
|
+
Processing by PostsController#index as HTML
|
6767
|
+
Parameters: {"theme"=>"theme_c"}
|
6768
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
6769
|
+
Processing by PostsController#index as HTML
|
6770
|
+
Parameters: {"theme"=>"theme_c"}
|
6771
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
6772
|
+
Processing by PostsController#index as HTML
|
6773
|
+
Parameters: {"theme"=>"theme_c"}
|
6774
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
6775
|
+
Processing by PostsController#new as HTML
|
6776
|
+
Parameters: {"theme"=>"theme_a"}
|
6777
|
+
Rendered posts/_form.html.erb (12.1ms)
|
6778
|
+
Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.3ms)
|
6779
|
+
Processing by PostsController#new as HTML
|
6780
|
+
Parameters: {"theme"=>"theme_a"}
|
6781
|
+
Rendered posts/_form.html.erb (1.6ms)
|
6782
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6783
|
+
Processing by PostsController#index as HTML
|
6784
|
+
Parameters: {"theme"=>"theme_b"}
|
6785
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6786
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6787
|
+
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.9ms)
|
6788
|
+
Processing by PostsController#index as HTML
|
6789
|
+
Parameters: {"theme"=>"theme_b"}
|
6790
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6791
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6792
|
+
Processing by PostsController#index as HTML
|
6793
|
+
Parameters: {"theme"=>"theme_a"}
|
6794
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6795
|
+
Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
|
6796
|
+
Processing by PostsController#index as HTML
|
6797
|
+
Parameters: {"theme"=>"theme_a"}
|
6798
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
6799
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
|
6800
|
+
Processing by PostsController#index as HTML
|
6801
|
+
Parameters: {"theme"=>"theme_c"}
|
6802
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6803
|
+
Processing by PostsController#index as HTML
|
6804
|
+
Parameters: {"theme"=>"theme_c"}
|
6805
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
6806
|
+
Processing by PostsController#index as HTML
|
6807
|
+
Parameters: {"theme"=>"theme_c"}
|
6808
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
6809
|
+
Processing by PostsController#new as HTML
|
6810
|
+
Parameters: {"theme"=>"theme_a"}
|
6811
|
+
Rendered posts/_form.html.erb (13.2ms)
|
6812
|
+
Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.2ms)
|
6813
|
+
Processing by PostsController#new as HTML
|
6814
|
+
Parameters: {"theme"=>"theme_a"}
|
6815
|
+
Rendered posts/_form.html.erb (1.7ms)
|
6816
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
6817
|
+
Processing by PostsController#index as HTML
|
6818
|
+
Parameters: {"theme"=>"theme_b"}
|
6819
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6820
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6821
|
+
Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 0.9ms)
|
6822
|
+
Processing by PostsController#index as HTML
|
6823
|
+
Parameters: {"theme"=>"theme_b"}
|
6824
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6825
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6826
|
+
Processing by PostsController#index as HTML
|
6827
|
+
Parameters: {"theme"=>"theme_a"}
|
6828
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6829
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.1ms)
|
6830
|
+
Processing by PostsController#index as HTML
|
6831
|
+
Parameters: {"theme"=>"theme_a"}
|
6832
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6833
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6834
|
+
Processing by PostsController#index as HTML
|
6835
|
+
Parameters: {"theme"=>"theme_c"}
|
6836
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6837
|
+
Processing by PostsController#index as HTML
|
6838
|
+
Parameters: {"theme"=>"theme_c"}
|
6839
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
6840
|
+
Processing by PostsController#index as HTML
|
6841
|
+
Parameters: {"theme"=>"theme_c"}
|
6842
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
6843
|
+
Processing by PostsController#new as HTML
|
6844
|
+
Parameters: {"theme"=>"theme_a"}
|
6845
|
+
Rendered posts/_form.html.erb (12.8ms)
|
6846
|
+
Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms)
|
6847
|
+
Processing by PostsController#new as HTML
|
6848
|
+
Parameters: {"theme"=>"theme_a"}
|
6849
|
+
Rendered posts/_form.html.erb (1.6ms)
|
6850
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
6851
|
+
Processing by PostsController#index as HTML
|
6852
|
+
Parameters: {"theme"=>"theme_b"}
|
6853
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6854
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.8ms)
|
6855
|
+
Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 0.9ms)
|
6856
|
+
Processing by PostsController#index as HTML
|
6857
|
+
Parameters: {"theme"=>"theme_b"}
|
6858
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6859
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
6860
|
+
Processing by PostsController#index as HTML
|
6861
|
+
Parameters: {"theme"=>"theme_a"}
|
6862
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6863
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
6864
|
+
Processing by PostsController#index as HTML
|
6865
|
+
Parameters: {"theme"=>"theme_a"}
|
6866
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6867
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6868
|
+
Processing by PostsController#index as HTML
|
6869
|
+
Parameters: {"theme"=>"theme_c"}
|
6870
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
6871
|
+
Processing by PostsController#index as HTML
|
6872
|
+
Parameters: {"theme"=>"theme_c"}
|
6873
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
6874
|
+
Processing by PostsController#index as HTML
|
6875
|
+
Parameters: {"theme"=>"theme_c"}
|
6876
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
6877
|
+
Processing by PostsController#new as HTML
|
6878
|
+
Parameters: {"theme"=>"theme_a"}
|
6879
|
+
Rendered posts/_form.html.erb (12.5ms)
|
6880
|
+
Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.3ms)
|
6881
|
+
Processing by PostsController#new as HTML
|
6882
|
+
Parameters: {"theme"=>"theme_a"}
|
6883
|
+
Rendered posts/_form.html.erb (1.8ms)
|
6884
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
6885
|
+
Processing by PostsController#index as HTML
|
6886
|
+
Parameters: {"theme"=>"theme_b"}
|
6887
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6888
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6889
|
+
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 1.0ms)
|
6890
|
+
Processing by PostsController#index as HTML
|
6891
|
+
Parameters: {"theme"=>"theme_b"}
|
6892
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6893
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6894
|
+
Processing by PostsController#index as HTML
|
6895
|
+
Parameters: {"theme"=>"theme_a"}
|
6896
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6897
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)
|
6898
|
+
Processing by PostsController#index as HTML
|
6899
|
+
Parameters: {"theme"=>"theme_a"}
|
6900
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6901
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
6902
|
+
Processing by PostsController#index as HTML
|
6903
|
+
Parameters: {"theme"=>"theme_c"}
|
6904
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
6905
|
+
Processing by PostsController#index as HTML
|
6906
|
+
Parameters: {"theme"=>"theme_c"}
|
6907
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
6908
|
+
Processing by PostsController#index as HTML
|
6909
|
+
Parameters: {"theme"=>"theme_c"}
|
6910
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
6911
|
+
Processing by PostsController#new as HTML
|
6912
|
+
Parameters: {"theme"=>"theme_a"}
|
6913
|
+
Rendered posts/_form.html.erb (12.3ms)
|
6914
|
+
Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms)
|
6915
|
+
Processing by PostsController#new as HTML
|
6916
|
+
Parameters: {"theme"=>"theme_a"}
|
6917
|
+
Rendered posts/_form.html.erb (1.6ms)
|
6918
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
6919
|
+
Processing by PostsController#index as HTML
|
6920
|
+
Parameters: {"theme"=>"theme_b"}
|
6921
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6922
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.8ms)
|
6923
|
+
Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.0ms)
|
6924
|
+
Processing by PostsController#index as HTML
|
6925
|
+
Parameters: {"theme"=>"theme_b"}
|
6926
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6927
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6928
|
+
Processing by PostsController#index as HTML
|
6929
|
+
Parameters: {"theme"=>"theme_a"}
|
6930
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6931
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
6932
|
+
Processing by PostsController#index as HTML
|
6933
|
+
Parameters: {"theme"=>"theme_a"}
|
6934
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6935
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6936
|
+
Processing by PostsController#index as HTML
|
6937
|
+
Parameters: {"theme"=>"theme_c"}
|
6938
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
6939
|
+
Processing by PostsController#index as HTML
|
6940
|
+
Parameters: {"theme"=>"theme_c"}
|
6941
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
6942
|
+
Processing by PostsController#index as HTML
|
6943
|
+
Parameters: {"theme"=>"theme_c"}
|
6944
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
6945
|
+
Processing by PostsController#new as HTML
|
6946
|
+
Parameters: {"theme"=>"theme_a"}
|
6947
|
+
Rendered posts/_form.html.erb (12.5ms)
|
6948
|
+
Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.3ms)
|
6949
|
+
Processing by PostsController#new as HTML
|
6950
|
+
Parameters: {"theme"=>"theme_a"}
|
6951
|
+
Rendered posts/_form.html.erb (1.7ms)
|
6952
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
6953
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
6954
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6955
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
6956
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
6957
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
6958
|
+
Processing by PostsController#index as HTML
|
6959
|
+
Parameters: {"theme"=>"theme_b"}
|
6960
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6961
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
6962
|
+
Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.9ms)
|
6963
|
+
Processing by PostsController#index as HTML
|
6964
|
+
Parameters: {"theme"=>"theme_b"}
|
6965
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6966
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.1ms)
|
6967
|
+
Processing by PostsController#index as HTML
|
6968
|
+
Parameters: {"theme"=>"theme_a"}
|
6969
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
6970
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.1ms)
|
6971
|
+
Processing by PostsController#index as HTML
|
6972
|
+
Parameters: {"theme"=>"theme_a"}
|
6973
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
6974
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
6975
|
+
Processing by PostsController#index as HTML
|
6976
|
+
Parameters: {"theme"=>"theme_c"}
|
6977
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
6978
|
+
Processing by PostsController#index as HTML
|
6979
|
+
Parameters: {"theme"=>"theme_c"}
|
6980
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
6981
|
+
Processing by PostsController#index as HTML
|
6982
|
+
Parameters: {"theme"=>"theme_c"}
|
6983
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
6984
|
+
Processing by PostsController#new as HTML
|
6985
|
+
Parameters: {"theme"=>"theme_a"}
|
6986
|
+
Rendered posts/_form.html.erb (12.8ms)
|
6987
|
+
Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.3ms)
|
6988
|
+
Processing by PostsController#new as HTML
|
6989
|
+
Parameters: {"theme"=>"theme_a"}
|
6990
|
+
Rendered posts/_form.html.erb (1.5ms)
|
6991
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
6992
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
6993
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6994
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
6995
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6996
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6997
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
6998
|
+
Processing by PostsController#index as HTML
|
6999
|
+
Parameters: {"theme"=>"theme_b"}
|
7000
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7001
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (6.0ms)
|
7002
|
+
Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 1.1ms)
|
7003
|
+
Processing by PostsController#index as HTML
|
7004
|
+
Parameters: {"theme"=>"theme_b"}
|
7005
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7006
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
7007
|
+
Processing by PostsController#index as HTML
|
7008
|
+
Parameters: {"theme"=>"theme_a"}
|
7009
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7010
|
+
Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
|
7011
|
+
Processing by PostsController#index as HTML
|
7012
|
+
Parameters: {"theme"=>"theme_a"}
|
7013
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7014
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
7015
|
+
Processing by PostsController#index as HTML
|
7016
|
+
Parameters: {"theme"=>"theme_c"}
|
7017
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
7018
|
+
Processing by PostsController#index as HTML
|
7019
|
+
Parameters: {"theme"=>"theme_c"}
|
7020
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7021
|
+
Processing by PostsController#index as HTML
|
7022
|
+
Parameters: {"theme"=>"theme_c"}
|
7023
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7024
|
+
Processing by PostsController#new as HTML
|
7025
|
+
Parameters: {"theme"=>"theme_a"}
|
7026
|
+
Rendered posts/_form.html.erb (22.0ms)
|
7027
|
+
Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.3ms)
|
7028
|
+
Processing by PostsController#new as HTML
|
7029
|
+
Parameters: {"theme"=>"theme_a"}
|
7030
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7031
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7032
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7033
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7034
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7035
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7036
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7037
|
+
Processing by PostsController#index as HTML
|
7038
|
+
Parameters: {"theme"=>"theme_b"}
|
7039
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7040
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.8ms)
|
7041
|
+
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.9ms)
|
7042
|
+
Processing by PostsController#index as HTML
|
7043
|
+
Parameters: {"theme"=>"theme_b"}
|
7044
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7045
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7046
|
+
Processing by PostsController#index as HTML
|
7047
|
+
Parameters: {"theme"=>"theme_a"}
|
7048
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7049
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.2ms)
|
7050
|
+
Processing by PostsController#index as HTML
|
7051
|
+
Parameters: {"theme"=>"theme_a"}
|
7052
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7053
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7054
|
+
Processing by PostsController#index as HTML
|
7055
|
+
Parameters: {"theme"=>"theme_c"}
|
7056
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
7057
|
+
Processing by PostsController#index as HTML
|
7058
|
+
Parameters: {"theme"=>"theme_c"}
|
7059
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7060
|
+
Processing by PostsController#index as HTML
|
7061
|
+
Parameters: {"theme"=>"theme_c"}
|
7062
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7063
|
+
Processing by PostsController#new as HTML
|
7064
|
+
Parameters: {"theme"=>"theme_a"}
|
7065
|
+
Rendered posts/_form.html.erb (12.1ms)
|
7066
|
+
Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms)
|
7067
|
+
Processing by PostsController#new as HTML
|
7068
|
+
Parameters: {"theme"=>"theme_a"}
|
7069
|
+
Rendered posts/_form.html.erb (2.2ms)
|
7070
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
7071
|
+
Connecting to database specified by database.yml
|
7072
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7073
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
7074
|
+
[1m[36m (1.3ms)[0m [1mDROP TABLE "posts"[0m
|
7075
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
7076
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7077
|
+
Connecting to database specified by database.yml
|
7078
|
+
Processing by PostsController#index as HTML
|
7079
|
+
Parameters: {"theme"=>"theme_b"}
|
7080
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7081
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.0ms)
|
7082
|
+
Completed 200 OK in 13.7ms (Views: 12.3ms | ActiveRecord: 0.1ms)
|
7083
|
+
Processing by PostsController#index as HTML
|
7084
|
+
Parameters: {"theme"=>"theme_b"}
|
7085
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7086
|
+
Completed 200 OK in 4.3ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
7087
|
+
Processing by PostsController#index as HTML
|
7088
|
+
Parameters: {"theme"=>"theme_a"}
|
7089
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7090
|
+
Completed 200 OK in 4.6ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
7091
|
+
Processing by PostsController#index as HTML
|
7092
|
+
Parameters: {"theme"=>"theme_a"}
|
7093
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7094
|
+
Completed 200 OK in 4.2ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
7095
|
+
Processing by PostsController#index as HTML
|
7096
|
+
Parameters: {"theme"=>"theme_c"}
|
7097
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7098
|
+
Completed 200 OK in 3.8ms (Views: 2.9ms | ActiveRecord: 0.2ms)
|
7099
|
+
Processing by PostsController#index as HTML
|
7100
|
+
Parameters: {"theme"=>"theme_c"}
|
7101
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7102
|
+
Completed 200 OK in 2.6ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
7103
|
+
Processing by PostsController#index as HTML
|
7104
|
+
Parameters: {"theme"=>"theme_c"}
|
7105
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7106
|
+
Completed 200 OK in 2.1ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
7107
|
+
Processing by PostsController#new as HTML
|
7108
|
+
Parameters: {"theme"=>"theme_a"}
|
7109
|
+
Rendered posts/_form.html.erb (9.5ms)
|
7110
|
+
Completed 200 OK in 19.1ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
7111
|
+
Processing by PostsController#new as HTML
|
7112
|
+
Parameters: {"theme"=>"theme_a"}
|
7113
|
+
Rendered posts/_form.html.erb (5.6ms)
|
7114
|
+
Completed 200 OK in 7.0ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
7115
|
+
[1m[36m (10.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7116
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7117
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7118
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7119
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7120
|
+
Processing by PostsController#index as HTML
|
7121
|
+
Parameters: {"theme"=>"theme_b"}
|
7122
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7123
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
7124
|
+
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 1.0ms)
|
7125
|
+
Processing by PostsController#index as HTML
|
7126
|
+
Parameters: {"theme"=>"theme_b"}
|
7127
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7128
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.2ms)
|
7129
|
+
Processing by PostsController#index as HTML
|
7130
|
+
Parameters: {"theme"=>"theme_a"}
|
7131
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7132
|
+
Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms)
|
7133
|
+
Processing by PostsController#index as HTML
|
7134
|
+
Parameters: {"theme"=>"theme_a"}
|
7135
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7136
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7137
|
+
Processing by PostsController#index as HTML
|
7138
|
+
Parameters: {"theme"=>"theme_c"}
|
7139
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
7140
|
+
Processing by PostsController#index as HTML
|
7141
|
+
Parameters: {"theme"=>"theme_c"}
|
7142
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7143
|
+
Processing by PostsController#index as HTML
|
7144
|
+
Parameters: {"theme"=>"theme_c"}
|
7145
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7146
|
+
Processing by PostsController#new as HTML
|
7147
|
+
Parameters: {"theme"=>"theme_a"}
|
7148
|
+
Rendered posts/_form.html.erb (12.0ms)
|
7149
|
+
Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.2ms)
|
7150
|
+
Processing by PostsController#new as HTML
|
7151
|
+
Parameters: {"theme"=>"theme_a"}
|
7152
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7153
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7154
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7155
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7156
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
7157
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7158
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7159
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
7160
|
+
Processing by PostsController#index as HTML
|
7161
|
+
Parameters: {"theme"=>"theme_b"}
|
7162
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7163
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.0ms)
|
7164
|
+
Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 1.0ms)
|
7165
|
+
Processing by PostsController#index as HTML
|
7166
|
+
Parameters: {"theme"=>"theme_b"}
|
7167
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7168
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
7169
|
+
Processing by PostsController#index as HTML
|
7170
|
+
Parameters: {"theme"=>"theme_a"}
|
7171
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7172
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms)
|
7173
|
+
Processing by PostsController#index as HTML
|
7174
|
+
Parameters: {"theme"=>"theme_a"}
|
7175
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7176
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7177
|
+
Processing by PostsController#index as HTML
|
7178
|
+
Parameters: {"theme"=>"theme_c"}
|
7179
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
7180
|
+
Processing by PostsController#index as HTML
|
7181
|
+
Parameters: {"theme"=>"theme_c"}
|
7182
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7183
|
+
Processing by PostsController#index as HTML
|
7184
|
+
Parameters: {"theme"=>"theme_c"}
|
7185
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7186
|
+
Processing by PostsController#new as HTML
|
7187
|
+
Parameters: {"theme"=>"theme_a"}
|
7188
|
+
Rendered posts/_form.html.erb (11.9ms)
|
7189
|
+
Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.2ms)
|
7190
|
+
Processing by PostsController#new as HTML
|
7191
|
+
Parameters: {"theme"=>"theme_a"}
|
7192
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7193
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7194
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7195
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7196
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7197
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7198
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7199
|
+
Processing by PostsController#index as HTML
|
7200
|
+
Parameters: {"theme"=>"theme_b"}
|
7201
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7202
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.2ms)
|
7203
|
+
Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 1.1ms)
|
7204
|
+
Processing by PostsController#index as HTML
|
7205
|
+
Parameters: {"theme"=>"theme_b"}
|
7206
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7207
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
7208
|
+
Processing by PostsController#index as HTML
|
7209
|
+
Parameters: {"theme"=>"theme_a"}
|
7210
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7211
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
|
7212
|
+
Processing by PostsController#index as HTML
|
7213
|
+
Parameters: {"theme"=>"theme_a"}
|
7214
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7215
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
7216
|
+
Processing by PostsController#index as HTML
|
7217
|
+
Parameters: {"theme"=>"theme_c"}
|
7218
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7219
|
+
Processing by PostsController#index as HTML
|
7220
|
+
Parameters: {"theme"=>"theme_c"}
|
7221
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7222
|
+
Processing by PostsController#index as HTML
|
7223
|
+
Parameters: {"theme"=>"theme_c"}
|
7224
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7225
|
+
Processing by PostsController#new as HTML
|
7226
|
+
Parameters: {"theme"=>"theme_a"}
|
7227
|
+
Rendered posts/_form.html.erb (12.1ms)
|
7228
|
+
Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms)
|
7229
|
+
Processing by PostsController#new as HTML
|
7230
|
+
Parameters: {"theme"=>"theme_a"}
|
7231
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7232
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7233
|
+
Connecting to database specified by database.yml
|
7234
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7235
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
7236
|
+
[1m[36m (2.4ms)[0m [1mDROP TABLE "posts"[0m
|
7237
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
7238
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7239
|
+
Connecting to database specified by database.yml
|
7240
|
+
Processing by PostsController#index as HTML
|
7241
|
+
Parameters: {"theme"=>"theme_b"}
|
7242
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7243
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (1.4ms)
|
7244
|
+
Completed 200 OK in 9.4ms (Views: 8.3ms | ActiveRecord: 0.1ms)
|
7245
|
+
Processing by PostsController#index as HTML
|
7246
|
+
Parameters: {"theme"=>"theme_b"}
|
7247
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7248
|
+
Completed 200 OK in 3.8ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
7249
|
+
Processing by PostsController#index as HTML
|
7250
|
+
Parameters: {"theme"=>"theme_a"}
|
7251
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7252
|
+
Completed 200 OK in 3.7ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
7253
|
+
Processing by PostsController#index as HTML
|
7254
|
+
Parameters: {"theme"=>"theme_a"}
|
7255
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7256
|
+
Completed 200 OK in 3.6ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
7257
|
+
Processing by PostsController#index as HTML
|
7258
|
+
Parameters: {"theme"=>"theme_c"}
|
7259
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7260
|
+
Completed 200 OK in 2.6ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
7261
|
+
Processing by PostsController#index as HTML
|
7262
|
+
Parameters: {"theme"=>"theme_c"}
|
7263
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7264
|
+
Completed 200 OK in 2.1ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
7265
|
+
Processing by PostsController#index as HTML
|
7266
|
+
Parameters: {"theme"=>"theme_c"}
|
7267
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7268
|
+
Completed 200 OK in 2.1ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
7269
|
+
Processing by PostsController#new as HTML
|
7270
|
+
Parameters: {"theme"=>"theme_a"}
|
7271
|
+
Rendered posts/_form.html.erb (6.6ms)
|
7272
|
+
Completed 200 OK in 14.3ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
7273
|
+
Processing by PostsController#new as HTML
|
7274
|
+
Parameters: {"theme"=>"theme_a"}
|
7275
|
+
Rendered posts/_form.html.erb (1.3ms)
|
7276
|
+
Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
7277
|
+
Processing by PostsController#index as HTML
|
7278
|
+
Parameters: {"theme"=>"theme_b"}
|
7279
|
+
[1m[36mPost Load (1.7ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7280
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.5ms)
|
7281
|
+
Completed 200 OK in 30ms (Views: 25.7ms | ActiveRecord: 1.7ms)
|
7282
|
+
Processing by PostsController#index as HTML
|
7283
|
+
Parameters: {"theme"=>"theme_b"}
|
7284
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7285
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7286
|
+
Processing by PostsController#index as HTML
|
7287
|
+
Parameters: {"theme"=>"theme_a"}
|
7288
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7289
|
+
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.2ms)
|
7290
|
+
Processing by PostsController#index as HTML
|
7291
|
+
Parameters: {"theme"=>"theme_a"}
|
7292
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7293
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
7294
|
+
Processing by PostsController#index as HTML
|
7295
|
+
Parameters: {"theme"=>"theme_c"}
|
7296
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
7297
|
+
Processing by PostsController#index as HTML
|
7298
|
+
Parameters: {"theme"=>"theme_c"}
|
7299
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
7300
|
+
Processing by PostsController#index as HTML
|
7301
|
+
Parameters: {"theme"=>"theme_c"}
|
7302
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7303
|
+
Processing by PostsController#new as HTML
|
7304
|
+
Parameters: {"theme"=>"theme_a"}
|
7305
|
+
Completed 500 Internal Server Error in 8ms
|
7306
|
+
Processing by PostsController#new as HTML
|
7307
|
+
Parameters: {"theme"=>"theme_a"}
|
7308
|
+
Completed 500 Internal Server Error in 1ms
|
7309
|
+
Processing by PostsController#index as HTML
|
7310
|
+
Parameters: {"theme"=>"theme_b"}
|
7311
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7312
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.3ms)
|
7313
|
+
Completed 200 OK in 20ms (Views: 16.8ms | ActiveRecord: 1.1ms)
|
7314
|
+
Processing by PostsController#index as HTML
|
7315
|
+
Parameters: {"theme"=>"theme_b"}
|
7316
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7317
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
7318
|
+
Processing by PostsController#index as HTML
|
7319
|
+
Parameters: {"theme"=>"theme_a"}
|
7320
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7321
|
+
Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms)
|
7322
|
+
Processing by PostsController#index as HTML
|
7323
|
+
Parameters: {"theme"=>"theme_a"}
|
7324
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7325
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
7326
|
+
Processing by PostsController#index as HTML
|
7327
|
+
Parameters: {"theme"=>"theme_c"}
|
7328
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
7329
|
+
Processing by PostsController#index as HTML
|
7330
|
+
Parameters: {"theme"=>"theme_c"}
|
7331
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7332
|
+
Processing by PostsController#index as HTML
|
7333
|
+
Parameters: {"theme"=>"theme_c"}
|
7334
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7335
|
+
Processing by PostsController#new as HTML
|
7336
|
+
Parameters: {"theme"=>"theme_a"}
|
7337
|
+
Completed 500 Internal Server Error in 7ms
|
7338
|
+
Processing by PostsController#new as HTML
|
7339
|
+
Parameters: {"theme"=>"theme_a"}
|
7340
|
+
Completed 500 Internal Server Error in 1ms
|
7341
|
+
Processing by PostsController#index as HTML
|
7342
|
+
Parameters: {"theme"=>"theme_b"}
|
7343
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7344
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.2ms)
|
7345
|
+
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 1.0ms)
|
7346
|
+
Processing by PostsController#index as HTML
|
7347
|
+
Parameters: {"theme"=>"theme_b"}
|
7348
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7349
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
7350
|
+
Processing by PostsController#index as HTML
|
7351
|
+
Parameters: {"theme"=>"theme_a"}
|
7352
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7353
|
+
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms)
|
7354
|
+
Processing by PostsController#index as HTML
|
7355
|
+
Parameters: {"theme"=>"theme_a"}
|
7356
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7357
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
7358
|
+
Processing by PostsController#index as HTML
|
7359
|
+
Parameters: {"theme"=>"theme_c"}
|
7360
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7361
|
+
Processing by PostsController#index as HTML
|
7362
|
+
Parameters: {"theme"=>"theme_c"}
|
7363
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
7364
|
+
Processing by PostsController#index as HTML
|
7365
|
+
Parameters: {"theme"=>"theme_c"}
|
7366
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7367
|
+
Processing by PostsController#new as HTML
|
7368
|
+
Parameters: {"theme"=>"theme_a"}
|
7369
|
+
Completed 500 Internal Server Error in 6ms
|
7370
|
+
Processing by PostsController#new as HTML
|
7371
|
+
Parameters: {"theme"=>"theme_a"}
|
7372
|
+
Completed 500 Internal Server Error in 1ms
|
7373
|
+
Processing by PostsController#index as HTML
|
7374
|
+
Parameters: {"theme"=>"theme_b"}
|
7375
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7376
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.0ms)
|
7377
|
+
Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.0ms)
|
7378
|
+
Processing by PostsController#index as HTML
|
7379
|
+
Parameters: {"theme"=>"theme_b"}
|
7380
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7381
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
7382
|
+
Processing by PostsController#index as HTML
|
7383
|
+
Parameters: {"theme"=>"theme_a"}
|
7384
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7385
|
+
Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms)
|
7386
|
+
Processing by PostsController#index as HTML
|
7387
|
+
Parameters: {"theme"=>"theme_a"}
|
7388
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7389
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
7390
|
+
Processing by PostsController#index as HTML
|
7391
|
+
Parameters: {"theme"=>"theme_c"}
|
7392
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
7393
|
+
Processing by PostsController#index as HTML
|
7394
|
+
Parameters: {"theme"=>"theme_c"}
|
7395
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7396
|
+
Processing by PostsController#index as HTML
|
7397
|
+
Parameters: {"theme"=>"theme_c"}
|
7398
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7399
|
+
Processing by PostsController#new as HTML
|
7400
|
+
Parameters: {"theme"=>"theme_a"}
|
7401
|
+
Rendered posts/_form.html.erb (12.6ms)
|
7402
|
+
Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.3ms)
|
7403
|
+
Processing by PostsController#new as HTML
|
7404
|
+
Parameters: {"theme"=>"theme_a"}
|
7405
|
+
Rendered posts/_form.html.erb (1.8ms)
|
7406
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
7407
|
+
Processing by PostsController#index as HTML
|
7408
|
+
Parameters: {"theme"=>"theme_b"}
|
7409
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7410
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
7411
|
+
Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 1.0ms)
|
7412
|
+
Processing by PostsController#index as HTML
|
7413
|
+
Parameters: {"theme"=>"theme_b"}
|
7414
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7415
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
7416
|
+
Processing by PostsController#index as HTML
|
7417
|
+
Parameters: {"theme"=>"theme_a"}
|
7418
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7419
|
+
Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms)
|
7420
|
+
Processing by PostsController#index as HTML
|
7421
|
+
Parameters: {"theme"=>"theme_a"}
|
7422
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7423
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
7424
|
+
Processing by PostsController#index as HTML
|
7425
|
+
Parameters: {"theme"=>"theme_c"}
|
7426
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7427
|
+
Processing by PostsController#index as HTML
|
7428
|
+
Parameters: {"theme"=>"theme_c"}
|
7429
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7430
|
+
Processing by PostsController#index as HTML
|
7431
|
+
Parameters: {"theme"=>"theme_c"}
|
7432
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7433
|
+
Processing by PostsController#new as HTML
|
7434
|
+
Parameters: {"theme"=>"theme_a"}
|
7435
|
+
Rendered posts/_form.html.erb (12.5ms)
|
7436
|
+
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.2ms)
|
7437
|
+
Processing by PostsController#new as HTML
|
7438
|
+
Parameters: {"theme"=>"theme_a"}
|
7439
|
+
Rendered posts/_form.html.erb (1.8ms)
|
7440
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
7441
|
+
Processing by PostsController#index as HTML
|
7442
|
+
Parameters: {"theme"=>"theme_b"}
|
7443
|
+
[1m[36mPost Load (1.8ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7444
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.4ms)
|
7445
|
+
Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 1.8ms)
|
7446
|
+
Processing by PostsController#index as HTML
|
7447
|
+
Parameters: {"theme"=>"theme_b"}
|
7448
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7449
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
7450
|
+
Processing by PostsController#index as HTML
|
7451
|
+
Parameters: {"theme"=>"theme_a"}
|
7452
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7453
|
+
Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms)
|
7454
|
+
Processing by PostsController#index as HTML
|
7455
|
+
Parameters: {"theme"=>"theme_a"}
|
7456
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7457
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.2ms)
|
7458
|
+
Processing by PostsController#index as HTML
|
7459
|
+
Parameters: {"theme"=>"theme_c"}
|
7460
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
7461
|
+
Processing by PostsController#index as HTML
|
7462
|
+
Parameters: {"theme"=>"theme_c"}
|
7463
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7464
|
+
Processing by PostsController#index as HTML
|
7465
|
+
Parameters: {"theme"=>"theme_c"}
|
7466
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7467
|
+
Processing by PostsController#new as HTML
|
7468
|
+
Parameters: {"theme"=>"theme_a"}
|
7469
|
+
Rendered posts/_form.html.erb (17.0ms)
|
7470
|
+
Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 0.4ms)
|
7471
|
+
Processing by PostsController#new as HTML
|
7472
|
+
Parameters: {"theme"=>"theme_a"}
|
7473
|
+
Rendered posts/_form.html.erb (1.8ms)
|
7474
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
7475
|
+
Processing by PostsController#index as HTML
|
7476
|
+
Parameters: {"theme"=>"theme_b"}
|
7477
|
+
[1m[36mPost Load (2.4ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7478
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (6.1ms)
|
7479
|
+
Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 2.4ms)
|
7480
|
+
Processing by PostsController#index as HTML
|
7481
|
+
Parameters: {"theme"=>"theme_b"}
|
7482
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7483
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
7484
|
+
Processing by PostsController#index as HTML
|
7485
|
+
Parameters: {"theme"=>"theme_a"}
|
7486
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7487
|
+
Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.2ms)
|
7488
|
+
Processing by PostsController#index as HTML
|
7489
|
+
Parameters: {"theme"=>"theme_a"}
|
7490
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7491
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
7492
|
+
Processing by PostsController#index as HTML
|
7493
|
+
Parameters: {"theme"=>"theme_c"}
|
7494
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
7495
|
+
Processing by PostsController#index as HTML
|
7496
|
+
Parameters: {"theme"=>"theme_c"}
|
7497
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
7498
|
+
Processing by PostsController#index as HTML
|
7499
|
+
Parameters: {"theme"=>"theme_c"}
|
7500
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7501
|
+
Processing by PostsController#new as HTML
|
7502
|
+
Parameters: {"theme"=>"theme_a"}
|
7503
|
+
Rendered posts/_form.html.erb (20.1ms)
|
7504
|
+
Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.3ms)
|
7505
|
+
Processing by PostsController#new as HTML
|
7506
|
+
Parameters: {"theme"=>"theme_a"}
|
7507
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7508
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
7509
|
+
Processing by PostsController#index as HTML
|
7510
|
+
Parameters: {"theme"=>"theme_b"}
|
7511
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7512
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
7513
|
+
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 1.0ms)
|
7514
|
+
Processing by PostsController#index as HTML
|
7515
|
+
Parameters: {"theme"=>"theme_b"}
|
7516
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7517
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
7518
|
+
Processing by PostsController#index as HTML
|
7519
|
+
Parameters: {"theme"=>"theme_a"}
|
7520
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7521
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms)
|
7522
|
+
Processing by PostsController#index as HTML
|
7523
|
+
Parameters: {"theme"=>"theme_a"}
|
7524
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7525
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7526
|
+
Processing by PostsController#index as HTML
|
7527
|
+
Parameters: {"theme"=>"theme_c"}
|
7528
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7529
|
+
Processing by PostsController#index as HTML
|
7530
|
+
Parameters: {"theme"=>"theme_c"}
|
7531
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7532
|
+
Processing by PostsController#index as HTML
|
7533
|
+
Parameters: {"theme"=>"theme_c"}
|
7534
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7535
|
+
Processing by PostsController#new as HTML
|
7536
|
+
Parameters: {"theme"=>"theme_a"}
|
7537
|
+
Rendered posts/_form.html.erb (15.9ms)
|
7538
|
+
Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.2ms)
|
7539
|
+
Processing by PostsController#new as HTML
|
7540
|
+
Parameters: {"theme"=>"theme_a"}
|
7541
|
+
Rendered posts/_form.html.erb (1.8ms)
|
7542
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
7543
|
+
Processing by PostsController#index as HTML
|
7544
|
+
Parameters: {"theme"=>"theme_b"}
|
7545
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7546
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.2ms)
|
7547
|
+
Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 1.0ms)
|
7548
|
+
Processing by PostsController#index as HTML
|
7549
|
+
Parameters: {"theme"=>"theme_b"}
|
7550
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7551
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7552
|
+
Processing by PostsController#index as HTML
|
7553
|
+
Parameters: {"theme"=>"theme_a"}
|
7554
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7555
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)
|
7556
|
+
Processing by PostsController#index as HTML
|
7557
|
+
Parameters: {"theme"=>"theme_a"}
|
7558
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7559
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7560
|
+
Processing by PostsController#index as HTML
|
7561
|
+
Parameters: {"theme"=>"theme_c"}
|
7562
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7563
|
+
Processing by PostsController#index as HTML
|
7564
|
+
Parameters: {"theme"=>"theme_c"}
|
7565
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7566
|
+
Processing by PostsController#index as HTML
|
7567
|
+
Parameters: {"theme"=>"theme_c"}
|
7568
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
7569
|
+
Processing by PostsController#new as HTML
|
7570
|
+
Parameters: {"theme"=>"theme_a"}
|
7571
|
+
Rendered posts/_form.html.erb (13.7ms)
|
7572
|
+
Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.3ms)
|
7573
|
+
Processing by PostsController#new as HTML
|
7574
|
+
Parameters: {"theme"=>"theme_a"}
|
7575
|
+
Rendered posts/_form.html.erb (1.8ms)
|
7576
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
7577
|
+
Processing by PostsController#index as HTML
|
7578
|
+
Parameters: {"theme"=>"theme_b"}
|
7579
|
+
[1m[36mPost Load (1.8ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7580
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.6ms)
|
7581
|
+
Completed 200 OK in 25ms (Views: 21.0ms | ActiveRecord: 1.8ms)
|
7582
|
+
Processing by PostsController#index as HTML
|
7583
|
+
Parameters: {"theme"=>"theme_b"}
|
7584
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7585
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
7586
|
+
Processing by PostsController#index as HTML
|
7587
|
+
Parameters: {"theme"=>"theme_a"}
|
7588
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7589
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms)
|
7590
|
+
Processing by PostsController#index as HTML
|
7591
|
+
Parameters: {"theme"=>"theme_a"}
|
7592
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7593
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
7594
|
+
Processing by PostsController#index as HTML
|
7595
|
+
Parameters: {"theme"=>"theme_c"}
|
7596
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
7597
|
+
Processing by PostsController#index as HTML
|
7598
|
+
Parameters: {"theme"=>"theme_c"}
|
7599
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7600
|
+
Processing by PostsController#index as HTML
|
7601
|
+
Parameters: {"theme"=>"theme_c"}
|
7602
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7603
|
+
Processing by PostsController#new as HTML
|
7604
|
+
Parameters: {"theme"=>"theme_a"}
|
7605
|
+
Rendered posts/_form.html.erb (20.8ms)
|
7606
|
+
Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.3ms)
|
7607
|
+
Processing by PostsController#new as HTML
|
7608
|
+
Parameters: {"theme"=>"theme_a"}
|
7609
|
+
Rendered posts/_form.html.erb (1.9ms)
|
7610
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
7611
|
+
Processing by PostsController#index as HTML
|
7612
|
+
Parameters: {"theme"=>"theme_b"}
|
7613
|
+
[1m[36mPost Load (1.7ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7614
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (5.5ms)
|
7615
|
+
Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 1.7ms)
|
7616
|
+
Processing by PostsController#index as HTML
|
7617
|
+
Parameters: {"theme"=>"theme_b"}
|
7618
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7619
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
7620
|
+
Processing by PostsController#index as HTML
|
7621
|
+
Parameters: {"theme"=>"theme_a"}
|
7622
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7623
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
7624
|
+
Processing by PostsController#index as HTML
|
7625
|
+
Parameters: {"theme"=>"theme_a"}
|
7626
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7627
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
7628
|
+
Processing by PostsController#index as HTML
|
7629
|
+
Parameters: {"theme"=>"theme_c"}
|
7630
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7631
|
+
Processing by PostsController#index as HTML
|
7632
|
+
Parameters: {"theme"=>"theme_c"}
|
7633
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
7634
|
+
Processing by PostsController#index as HTML
|
7635
|
+
Parameters: {"theme"=>"theme_c"}
|
7636
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
7637
|
+
Processing by PostsController#new as HTML
|
7638
|
+
Parameters: {"theme"=>"theme_a"}
|
7639
|
+
Rendered posts/_form.html.erb (19.6ms)
|
7640
|
+
Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.3ms)
|
7641
|
+
Processing by PostsController#new as HTML
|
7642
|
+
Parameters: {"theme"=>"theme_a"}
|
7643
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7644
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7645
|
+
Processing by PostsController#index as HTML
|
7646
|
+
Parameters: {"theme"=>"theme_b"}
|
7647
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7648
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.4ms)
|
7649
|
+
Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 1.1ms)
|
7650
|
+
Processing by PostsController#index as HTML
|
7651
|
+
Parameters: {"theme"=>"theme_b"}
|
7652
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7653
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7654
|
+
Processing by PostsController#index as HTML
|
7655
|
+
Parameters: {"theme"=>"theme_a"}
|
7656
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7657
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.2ms)
|
7658
|
+
Processing by PostsController#index as HTML
|
7659
|
+
Parameters: {"theme"=>"theme_a"}
|
7660
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7661
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
7662
|
+
Processing by PostsController#index as HTML
|
7663
|
+
Parameters: {"theme"=>"theme_c"}
|
7664
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
7665
|
+
Processing by PostsController#index as HTML
|
7666
|
+
Parameters: {"theme"=>"theme_c"}
|
7667
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
7668
|
+
Processing by PostsController#index as HTML
|
7669
|
+
Parameters: {"theme"=>"theme_c"}
|
7670
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
7671
|
+
Processing by PostsController#new as HTML
|
7672
|
+
Parameters: {"theme"=>"theme_a"}
|
7673
|
+
Rendered posts/_form.html.erb (13.3ms)
|
7674
|
+
Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.3ms)
|
7675
|
+
Processing by PostsController#new as HTML
|
7676
|
+
Parameters: {"theme"=>"theme_a"}
|
7677
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7678
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7679
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7680
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7681
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7682
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7683
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7684
|
+
Processing by PostsController#index as HTML
|
7685
|
+
Parameters: {"theme"=>"theme_b"}
|
7686
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7687
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.6ms)
|
7688
|
+
Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 1.1ms)
|
7689
|
+
Processing by PostsController#index as HTML
|
7690
|
+
Parameters: {"theme"=>"theme_b"}
|
7691
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7692
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
7693
|
+
Processing by PostsController#index as HTML
|
7694
|
+
Parameters: {"theme"=>"theme_a"}
|
7695
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7696
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms)
|
7697
|
+
Processing by PostsController#index as HTML
|
7698
|
+
Parameters: {"theme"=>"theme_a"}
|
7699
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7700
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
7701
|
+
Processing by PostsController#index as HTML
|
7702
|
+
Parameters: {"theme"=>"theme_c"}
|
7703
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
7704
|
+
Processing by PostsController#index as HTML
|
7705
|
+
Parameters: {"theme"=>"theme_c"}
|
7706
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
7707
|
+
Processing by PostsController#index as HTML
|
7708
|
+
Parameters: {"theme"=>"theme_c"}
|
7709
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7710
|
+
Processing by PostsController#new as HTML
|
7711
|
+
Parameters: {"theme"=>"theme_a"}
|
7712
|
+
Rendered posts/_form.html.erb (15.5ms)
|
7713
|
+
Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.3ms)
|
7714
|
+
Processing by PostsController#new as HTML
|
7715
|
+
Parameters: {"theme"=>"theme_a"}
|
7716
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7717
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
7718
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7719
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7720
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7721
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7722
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7723
|
+
Processing by PostsController#index as HTML
|
7724
|
+
Parameters: {"theme"=>"theme_b"}
|
7725
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7726
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.3ms)
|
7727
|
+
Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 1.2ms)
|
7728
|
+
Processing by PostsController#index as HTML
|
7729
|
+
Parameters: {"theme"=>"theme_b"}
|
7730
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7731
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
7732
|
+
Processing by PostsController#index as HTML
|
7733
|
+
Parameters: {"theme"=>"theme_a"}
|
7734
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7735
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.1ms)
|
7736
|
+
Processing by PostsController#index as HTML
|
7737
|
+
Parameters: {"theme"=>"theme_a"}
|
7738
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7739
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
7740
|
+
Processing by PostsController#index as HTML
|
7741
|
+
Parameters: {"theme"=>"theme_c"}
|
7742
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
7743
|
+
Processing by PostsController#index as HTML
|
7744
|
+
Parameters: {"theme"=>"theme_c"}
|
7745
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7746
|
+
Processing by PostsController#index as HTML
|
7747
|
+
Parameters: {"theme"=>"theme_c"}
|
7748
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7749
|
+
Processing by PostsController#new as HTML
|
7750
|
+
Parameters: {"theme"=>"theme_a"}
|
7751
|
+
Rendered posts/_form.html.erb (19.5ms)
|
7752
|
+
Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.3ms)
|
7753
|
+
Processing by PostsController#new as HTML
|
7754
|
+
Parameters: {"theme"=>"theme_a"}
|
7755
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7756
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
7757
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7758
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7759
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
7760
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7761
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7762
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
7763
|
+
Processing by PostsController#index as HTML
|
7764
|
+
Parameters: {"theme"=>"theme_b"}
|
7765
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7766
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.1ms)
|
7767
|
+
Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 1.0ms)
|
7768
|
+
Processing by PostsController#index as HTML
|
7769
|
+
Parameters: {"theme"=>"theme_b"}
|
7770
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7771
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
7772
|
+
Processing by PostsController#index as HTML
|
7773
|
+
Parameters: {"theme"=>"theme_a"}
|
7774
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7775
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
7776
|
+
Processing by PostsController#index as HTML
|
7777
|
+
Parameters: {"theme"=>"theme_a"}
|
7778
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7779
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)
|
7780
|
+
Processing by PostsController#index as HTML
|
7781
|
+
Parameters: {"theme"=>"theme_c"}
|
7782
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7783
|
+
Processing by PostsController#index as HTML
|
7784
|
+
Parameters: {"theme"=>"theme_c"}
|
7785
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
7786
|
+
Processing by PostsController#index as HTML
|
7787
|
+
Parameters: {"theme"=>"theme_c"}
|
7788
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7789
|
+
Processing by PostsController#new as HTML
|
7790
|
+
Parameters: {"theme"=>"theme_a"}
|
7791
|
+
Rendered posts/_form.html.erb (12.1ms)
|
7792
|
+
Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.3ms)
|
7793
|
+
Processing by PostsController#new as HTML
|
7794
|
+
Parameters: {"theme"=>"theme_a"}
|
7795
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7796
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
7797
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7798
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7799
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7800
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7801
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7802
|
+
Processing by PostsController#index as HTML
|
7803
|
+
Parameters: {"theme"=>"theme_b"}
|
7804
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7805
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.0ms)
|
7806
|
+
Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 1.0ms)
|
7807
|
+
Processing by PostsController#index as HTML
|
7808
|
+
Parameters: {"theme"=>"theme_b"}
|
7809
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7810
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
7811
|
+
Processing by PostsController#index as HTML
|
7812
|
+
Parameters: {"theme"=>"theme_a"}
|
7813
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7814
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.1ms)
|
7815
|
+
Processing by PostsController#index as HTML
|
7816
|
+
Parameters: {"theme"=>"theme_a"}
|
7817
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7818
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
7819
|
+
Processing by PostsController#index as HTML
|
7820
|
+
Parameters: {"theme"=>"theme_c"}
|
7821
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7822
|
+
Processing by PostsController#index as HTML
|
7823
|
+
Parameters: {"theme"=>"theme_c"}
|
7824
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7825
|
+
Processing by PostsController#index as HTML
|
7826
|
+
Parameters: {"theme"=>"theme_c"}
|
7827
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
7828
|
+
Processing by PostsController#new as HTML
|
7829
|
+
Parameters: {"theme"=>"theme_a"}
|
7830
|
+
Rendered posts/_form.html.erb (13.2ms)
|
7831
|
+
Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.2ms)
|
7832
|
+
Processing by PostsController#new as HTML
|
7833
|
+
Parameters: {"theme"=>"theme_a"}
|
7834
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7835
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7836
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7837
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7838
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7839
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7840
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7841
|
+
Processing by PostsController#index as HTML
|
7842
|
+
Parameters: {"theme"=>"theme_b"}
|
7843
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7844
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.0ms)
|
7845
|
+
Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.9ms)
|
7846
|
+
Processing by PostsController#index as HTML
|
7847
|
+
Parameters: {"theme"=>"theme_b"}
|
7848
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7849
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
|
7850
|
+
Processing by PostsController#index as HTML
|
7851
|
+
Parameters: {"theme"=>"theme_a"}
|
7852
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7853
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
7854
|
+
Processing by PostsController#index as HTML
|
7855
|
+
Parameters: {"theme"=>"theme_a"}
|
7856
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7857
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
7858
|
+
Processing by PostsController#index as HTML
|
7859
|
+
Parameters: {"theme"=>"theme_c"}
|
7860
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
7861
|
+
Processing by PostsController#index as HTML
|
7862
|
+
Parameters: {"theme"=>"theme_c"}
|
7863
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
7864
|
+
Processing by PostsController#index as HTML
|
7865
|
+
Parameters: {"theme"=>"theme_c"}
|
7866
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
7867
|
+
Processing by PostsController#new as HTML
|
7868
|
+
Parameters: {"theme"=>"theme_a"}
|
7869
|
+
Rendered posts/_form.html.erb (13.0ms)
|
7870
|
+
Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.3ms)
|
7871
|
+
Processing by PostsController#new as HTML
|
7872
|
+
Parameters: {"theme"=>"theme_a"}
|
7873
|
+
Rendered posts/_form.html.erb (1.7ms)
|
7874
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
7875
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7876
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7877
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
7878
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7879
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7880
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
7881
|
+
Processing by PostsController#index as HTML
|
7882
|
+
Parameters: {"theme"=>"theme_b"}
|
7883
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7884
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.9ms)
|
7885
|
+
Completed 200 OK in 25ms (Views: 21.4ms | ActiveRecord: 1.0ms)
|
7886
|
+
Processing by PostsController#index as HTML
|
7887
|
+
Parameters: {"theme"=>"theme_b"}
|
7888
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7889
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
7890
|
+
Processing by PostsController#index as HTML
|
7891
|
+
Parameters: {"theme"=>"theme_a"}
|
7892
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7893
|
+
Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms)
|
7894
|
+
Processing by PostsController#index as HTML
|
7895
|
+
Parameters: {"theme"=>"theme_a"}
|
7896
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7897
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
7898
|
+
Processing by PostsController#index as HTML
|
7899
|
+
Parameters: {"theme"=>"theme_c"}
|
7900
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7901
|
+
Processing by PostsController#index as HTML
|
7902
|
+
Parameters: {"theme"=>"theme_c"}
|
7903
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
7904
|
+
Processing by PostsController#index as HTML
|
7905
|
+
Parameters: {"theme"=>"theme_c"}
|
7906
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
7907
|
+
Processing by PostsController#new as HTML
|
7908
|
+
Parameters: {"theme"=>"theme_a"}
|
7909
|
+
Rendered posts/_form.html.erb (11.7ms)
|
7910
|
+
Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.3ms)
|
7911
|
+
Processing by PostsController#new as HTML
|
7912
|
+
Parameters: {"theme"=>"theme_a"}
|
7913
|
+
Rendered posts/_form.html.erb (2.5ms)
|
7914
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
7915
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7916
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
7917
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7918
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
7919
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
7920
|
+
Processing by PostsController#index as HTML
|
7921
|
+
Parameters: {"theme"=>"theme_b"}
|
7922
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7923
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
7924
|
+
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms)
|
7925
|
+
Processing by PostsController#index as HTML
|
7926
|
+
Parameters: {"theme"=>"theme_b"}
|
7927
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7928
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
7929
|
+
Processing by PostsController#index as HTML
|
7930
|
+
Parameters: {"theme"=>"theme_a"}
|
7931
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
7932
|
+
Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms)
|
7933
|
+
Processing by PostsController#index as HTML
|
7934
|
+
Parameters: {"theme"=>"theme_a"}
|
7935
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
7936
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
7937
|
+
Processing by PostsController#index as HTML
|
7938
|
+
Parameters: {"theme"=>"theme_c"}
|
7939
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
7940
|
+
Processing by PostsController#index as HTML
|
7941
|
+
Parameters: {"theme"=>"theme_c"}
|
7942
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
7943
|
+
Processing by PostsController#index as HTML
|
7944
|
+
Parameters: {"theme"=>"theme_c"}
|
7945
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
7946
|
+
Processing by PostsController#new as HTML
|
7947
|
+
Parameters: {"theme"=>"theme_a"}
|
7948
|
+
Rendered posts/_form.html.erb (13.2ms)
|
7949
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.3ms)
|
7950
|
+
Processing by PostsController#new as HTML
|
7951
|
+
Parameters: {"theme"=>"theme_a"}
|
7952
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7953
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
7954
|
+
Connecting to database specified by database.yml
|
7955
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7956
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
7957
|
+
[1m[36m (2.7ms)[0m [1mDROP TABLE "posts"[0m
|
7958
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
7959
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7960
|
+
Connecting to database specified by database.yml
|
7961
|
+
Processing by PostsController#index as HTML
|
7962
|
+
Parameters: {"theme"=>"theme_b"}
|
7963
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7964
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (1.6ms)
|
7965
|
+
Completed 200 OK in 10.0ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
7966
|
+
Processing by PostsController#index as HTML
|
7967
|
+
Parameters: {"theme"=>"theme_b"}
|
7968
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7969
|
+
Completed 200 OK in 3.9ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
7970
|
+
Processing by PostsController#index as HTML
|
7971
|
+
Parameters: {"theme"=>"theme_a"}
|
7972
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7973
|
+
Completed 200 OK in 3.9ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
7974
|
+
Processing by PostsController#index as HTML
|
7975
|
+
Parameters: {"theme"=>"theme_a"}
|
7976
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7977
|
+
Completed 200 OK in 4.3ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
7978
|
+
Processing by PostsController#index as HTML
|
7979
|
+
Parameters: {"theme"=>"theme_c"}
|
7980
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7981
|
+
Completed 200 OK in 2.9ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
7982
|
+
Processing by PostsController#index as HTML
|
7983
|
+
Parameters: {"theme"=>"theme_c"}
|
7984
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
7985
|
+
Completed 200 OK in 2.1ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
7986
|
+
Processing by PostsController#index as HTML
|
7987
|
+
Parameters: {"theme"=>"theme_c"}
|
7988
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
7989
|
+
Completed 200 OK in 2.3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
7990
|
+
Processing by PostsController#new as HTML
|
7991
|
+
Parameters: {"theme"=>"theme_a"}
|
7992
|
+
Rendered posts/_form.html.erb (8.3ms)
|
7993
|
+
Completed 200 OK in 18.9ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
7994
|
+
Processing by PostsController#new as HTML
|
7995
|
+
Parameters: {"theme"=>"theme_a"}
|
7996
|
+
Rendered posts/_form.html.erb (1.6ms)
|
7997
|
+
Completed 200 OK in 2.9ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
7998
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
7999
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8000
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8001
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8002
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8003
|
+
Processing by PostsController#index as HTML
|
8004
|
+
Parameters: {"theme"=>"theme_b"}
|
8005
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8006
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
8007
|
+
Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 1.0ms)
|
8008
|
+
Processing by PostsController#index as HTML
|
8009
|
+
Parameters: {"theme"=>"theme_b"}
|
8010
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8011
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
8012
|
+
Processing by PostsController#index as HTML
|
8013
|
+
Parameters: {"theme"=>"theme_a"}
|
8014
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8015
|
+
Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms)
|
8016
|
+
Processing by PostsController#index as HTML
|
8017
|
+
Parameters: {"theme"=>"theme_a"}
|
8018
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8019
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
8020
|
+
Processing by PostsController#index as HTML
|
8021
|
+
Parameters: {"theme"=>"theme_c"}
|
8022
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
8023
|
+
Processing by PostsController#index as HTML
|
8024
|
+
Parameters: {"theme"=>"theme_c"}
|
8025
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
8026
|
+
Processing by PostsController#index as HTML
|
8027
|
+
Parameters: {"theme"=>"theme_c"}
|
8028
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
8029
|
+
Processing by PostsController#new as HTML
|
8030
|
+
Parameters: {"theme"=>"theme_a"}
|
8031
|
+
Rendered posts/_form.html.erb (12.0ms)
|
8032
|
+
Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.3ms)
|
8033
|
+
Processing by PostsController#new as HTML
|
8034
|
+
Parameters: {"theme"=>"theme_a"}
|
8035
|
+
Rendered posts/_form.html.erb (1.6ms)
|
8036
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
8037
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8038
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8039
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8040
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8041
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8042
|
+
Processing by PostsController#index as HTML
|
8043
|
+
Parameters: {"theme"=>"theme_b"}
|
8044
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8045
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.2ms)
|
8046
|
+
Completed 200 OK in 18ms (Views: 15.1ms | ActiveRecord: 1.0ms)
|
8047
|
+
Processing by PostsController#index as HTML
|
8048
|
+
Parameters: {"theme"=>"theme_b"}
|
8049
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8050
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
8051
|
+
Processing by PostsController#index as HTML
|
8052
|
+
Parameters: {"theme"=>"theme_a"}
|
8053
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8054
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)
|
8055
|
+
Processing by PostsController#index as HTML
|
8056
|
+
Parameters: {"theme"=>"theme_a"}
|
8057
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8058
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
8059
|
+
Processing by PostsController#index as HTML
|
8060
|
+
Parameters: {"theme"=>"theme_c"}
|
8061
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
8062
|
+
Processing by PostsController#index as HTML
|
8063
|
+
Parameters: {"theme"=>"theme_c"}
|
8064
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
8065
|
+
Processing by PostsController#index as HTML
|
8066
|
+
Parameters: {"theme"=>"theme_c"}
|
8067
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
8068
|
+
Processing by PostsController#new as HTML
|
8069
|
+
Parameters: {"theme"=>"theme_a"}
|
8070
|
+
Rendered posts/_form.html.erb (13.4ms)
|
8071
|
+
Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.2ms)
|
8072
|
+
Processing by PostsController#new as HTML
|
8073
|
+
Parameters: {"theme"=>"theme_a"}
|
8074
|
+
Rendered posts/_form.html.erb (1.8ms)
|
8075
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
8076
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8077
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
8078
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
8079
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
8080
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8081
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
8082
|
+
Processing by PostsController#index as HTML
|
8083
|
+
Parameters: {"theme"=>"theme_b"}
|
8084
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8085
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (7.1ms)
|
8086
|
+
Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 1.1ms)
|
8087
|
+
Processing by PostsController#index as HTML
|
8088
|
+
Parameters: {"theme"=>"theme_b"}
|
8089
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8090
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.6ms)
|
8091
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms)
|
8092
|
+
Processing by PostsController#index as HTML
|
8093
|
+
Parameters: {"theme"=>"theme_a"}
|
8094
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8095
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.3ms)
|
8096
|
+
Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms)
|
8097
|
+
Processing by PostsController#index as HTML
|
8098
|
+
Parameters: {"theme"=>"theme_a"}
|
8099
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8100
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.9ms)
|
8101
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
8102
|
+
Processing by PostsController#index as HTML
|
8103
|
+
Parameters: {"theme"=>"theme_c"}
|
8104
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (1.0ms)
|
8105
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
8106
|
+
Processing by PostsController#index as HTML
|
8107
|
+
Parameters: {"theme"=>"theme_c"}
|
8108
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.5ms)
|
8109
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
8110
|
+
Processing by PostsController#index as HTML
|
8111
|
+
Parameters: {"theme"=>"theme_c"}
|
8112
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.6ms)
|
8113
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
8114
|
+
Processing by PostsController#new as HTML
|
8115
|
+
Parameters: {"theme"=>"theme_a"}
|
8116
|
+
Rendered posts/_form.html.erb (10.9ms)
|
8117
|
+
Rendered posts/new.html.erb within layouts/application (14.2ms)
|
8118
|
+
Completed 200 OK in 46ms (Views: 41.1ms | ActiveRecord: 0.2ms)
|
8119
|
+
Processing by PostsController#new as HTML
|
8120
|
+
Parameters: {"theme"=>"theme_a"}
|
8121
|
+
Rendered posts/_form.html.erb (1.4ms)
|
8122
|
+
Rendered posts/new.html.erb within layouts/application (1.7ms)
|
8123
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
8124
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8125
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8126
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8127
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8128
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8129
|
+
Processing by PostsController#index as HTML
|
8130
|
+
Parameters: {"theme"=>"theme_b"}
|
8131
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8132
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.1ms)
|
8133
|
+
Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 1.0ms)
|
8134
|
+
Processing by PostsController#index as HTML
|
8135
|
+
Parameters: {"theme"=>"theme_b"}
|
8136
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8137
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
8138
|
+
Processing by PostsController#index as HTML
|
8139
|
+
Parameters: {"theme"=>"theme_a"}
|
8140
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8141
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms)
|
8142
|
+
Processing by PostsController#index as HTML
|
8143
|
+
Parameters: {"theme"=>"theme_a"}
|
8144
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8145
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
8146
|
+
Processing by PostsController#index as HTML
|
8147
|
+
Parameters: {"theme"=>"theme_c"}
|
8148
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
8149
|
+
Processing by PostsController#index as HTML
|
8150
|
+
Parameters: {"theme"=>"theme_c"}
|
8151
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8152
|
+
Processing by PostsController#index as HTML
|
8153
|
+
Parameters: {"theme"=>"theme_c"}
|
8154
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
8155
|
+
Processing by PostsController#new as HTML
|
8156
|
+
Parameters: {"theme"=>"theme_a"}
|
8157
|
+
Rendered posts/_form.html.erb (13.4ms)
|
8158
|
+
Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.2ms)
|
8159
|
+
Processing by PostsController#new as HTML
|
8160
|
+
Parameters: {"theme"=>"theme_a"}
|
8161
|
+
Rendered posts/_form.html.erb (1.9ms)
|
8162
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
8163
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8164
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
8165
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
8166
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
8167
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8168
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
8169
|
+
Processing by PostsController#index as HTML
|
8170
|
+
Parameters: {"theme"=>"theme_b"}
|
8171
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8172
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (7.3ms)
|
8173
|
+
Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 1.3ms)
|
8174
|
+
Processing by PostsController#index as HTML
|
8175
|
+
Parameters: {"theme"=>"theme_b"}
|
8176
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8177
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
8178
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
8179
|
+
Processing by PostsController#index as HTML
|
8180
|
+
Parameters: {"theme"=>"theme_a"}
|
8181
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8182
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.6ms)
|
8183
|
+
Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms)
|
8184
|
+
Processing by PostsController#index as HTML
|
8185
|
+
Parameters: {"theme"=>"theme_a"}
|
8186
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8187
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.3ms)
|
8188
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
8189
|
+
Processing by PostsController#index as HTML
|
8190
|
+
Parameters: {"theme"=>"theme_c"}
|
8191
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.9ms)
|
8192
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
8193
|
+
Processing by PostsController#index as HTML
|
8194
|
+
Parameters: {"theme"=>"theme_c"}
|
8195
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.5ms)
|
8196
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8197
|
+
Processing by PostsController#index as HTML
|
8198
|
+
Parameters: {"theme"=>"theme_c"}
|
8199
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.5ms)
|
8200
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
8201
|
+
Processing by PostsController#new as HTML
|
8202
|
+
Parameters: {"theme"=>"theme_a"}
|
8203
|
+
Rendered posts/_form.html.erb (38.5ms)
|
8204
|
+
Rendered posts/new.html.erb within layouts/application (41.4ms)
|
8205
|
+
Completed 200 OK in 65ms (Views: 59.8ms | ActiveRecord: 0.2ms)
|
8206
|
+
Processing by PostsController#new as HTML
|
8207
|
+
Parameters: {"theme"=>"theme_a"}
|
8208
|
+
Rendered posts/_form.html.erb (1.7ms)
|
8209
|
+
Rendered posts/new.html.erb within layouts/application (2.1ms)
|
8210
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
8211
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8212
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8213
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
8214
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
8215
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8216
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
8217
|
+
Processing by PostsController#index as HTML
|
8218
|
+
Parameters: {"theme"=>"theme_b"}
|
8219
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8220
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.0ms)
|
8221
|
+
Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 1.0ms)
|
8222
|
+
Processing by PostsController#index as HTML
|
8223
|
+
Parameters: {"theme"=>"theme_b"}
|
8224
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8225
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
8226
|
+
Processing by PostsController#index as HTML
|
8227
|
+
Parameters: {"theme"=>"theme_a"}
|
8228
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8229
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
|
8230
|
+
Processing by PostsController#index as HTML
|
8231
|
+
Parameters: {"theme"=>"theme_a"}
|
8232
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8233
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
8234
|
+
Processing by PostsController#index as HTML
|
8235
|
+
Parameters: {"theme"=>"theme_c"}
|
8236
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
8237
|
+
Processing by PostsController#index as HTML
|
8238
|
+
Parameters: {"theme"=>"theme_c"}
|
8239
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
8240
|
+
Processing by PostsController#index as HTML
|
8241
|
+
Parameters: {"theme"=>"theme_c"}
|
8242
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
8243
|
+
Processing by PostsController#new as HTML
|
8244
|
+
Parameters: {"theme"=>"theme_a"}
|
8245
|
+
Rendered posts/_form.html.erb (12.7ms)
|
8246
|
+
Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.3ms)
|
8247
|
+
Processing by PostsController#new as HTML
|
8248
|
+
Parameters: {"theme"=>"theme_a"}
|
8249
|
+
Rendered posts/_form.html.erb (1.7ms)
|
8250
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
8251
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8252
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8253
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8254
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8255
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8256
|
+
Processing by PostsController#index as HTML
|
8257
|
+
Parameters: {"theme"=>"theme_b"}
|
8258
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8259
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.9ms)
|
8260
|
+
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.9ms)
|
8261
|
+
Processing by PostsController#index as HTML
|
8262
|
+
Parameters: {"theme"=>"theme_b"}
|
8263
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8264
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
8265
|
+
Processing by PostsController#index as HTML
|
8266
|
+
Parameters: {"theme"=>"theme_a"}
|
8267
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8268
|
+
Completed 200 OK in 30ms (Views: 29.9ms | ActiveRecord: 0.1ms)
|
8269
|
+
Processing by PostsController#index as HTML
|
8270
|
+
Parameters: {"theme"=>"theme_a"}
|
8271
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8272
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
8273
|
+
Processing by PostsController#index as HTML
|
8274
|
+
Parameters: {"theme"=>"theme_c"}
|
8275
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
8276
|
+
Processing by PostsController#index as HTML
|
8277
|
+
Parameters: {"theme"=>"theme_c"}
|
8278
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
8279
|
+
Processing by PostsController#index as HTML
|
8280
|
+
Parameters: {"theme"=>"theme_c"}
|
8281
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
8282
|
+
Processing by PostsController#new as HTML
|
8283
|
+
Parameters: {"theme"=>"theme_a"}
|
8284
|
+
Rendered posts/_form.html.erb (12.7ms)
|
8285
|
+
Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.3ms)
|
8286
|
+
Processing by PostsController#new as HTML
|
8287
|
+
Parameters: {"theme"=>"theme_a"}
|
8288
|
+
Rendered posts/_form.html.erb (1.6ms)
|
8289
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
8290
|
+
Connecting to database specified by database.yml
|
8291
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8292
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
8293
|
+
[1m[36m (2.3ms)[0m [1mDROP TABLE "posts"[0m
|
8294
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
8295
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8296
|
+
Connecting to database specified by database.yml
|
8297
|
+
Processing by PostsController#index as HTML
|
8298
|
+
Parameters: {"theme"=>"theme_b"}
|
8299
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8300
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (1.5ms)
|
8301
|
+
Completed 200 OK in 10.3ms (Views: 9.1ms | ActiveRecord: 0.1ms)
|
8302
|
+
Processing by PostsController#index as HTML
|
8303
|
+
Parameters: {"theme"=>"theme_b"}
|
8304
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8305
|
+
Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
8306
|
+
Processing by PostsController#index as HTML
|
8307
|
+
Parameters: {"theme"=>"theme_a"}
|
8308
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8309
|
+
Completed 200 OK in 4.3ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
8310
|
+
Processing by PostsController#index as HTML
|
8311
|
+
Parameters: {"theme"=>"theme_a"}
|
8312
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8313
|
+
Completed 200 OK in 9.9ms (Views: 9.1ms | ActiveRecord: 0.1ms)
|
8314
|
+
Processing by PostsController#index as HTML
|
8315
|
+
Parameters: {"theme"=>"theme_c"}
|
8316
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8317
|
+
Completed 200 OK in 3.7ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
8318
|
+
Processing by PostsController#index as HTML
|
8319
|
+
Parameters: {"theme"=>"theme_c"}
|
8320
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8321
|
+
Completed 200 OK in 3.2ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
8322
|
+
Processing by PostsController#index as HTML
|
8323
|
+
Parameters: {"theme"=>"theme_c"}
|
8324
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8325
|
+
Completed 200 OK in 2.9ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
8326
|
+
Processing by PostsController#new as HTML
|
8327
|
+
Parameters: {"theme"=>"theme_a"}
|
8328
|
+
Rendered posts/_form.html.erb (7.5ms)
|
8329
|
+
Completed 200 OK in 16.9ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
8330
|
+
Processing by PostsController#new as HTML
|
8331
|
+
Parameters: {"theme"=>"theme_a"}
|
8332
|
+
Rendered posts/_form.html.erb (2.0ms)
|
8333
|
+
Completed 200 OK in 3.6ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
8334
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8335
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8336
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8337
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8338
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8339
|
+
Processing by PostsController#index as HTML
|
8340
|
+
Parameters: {"theme"=>"theme_b"}
|
8341
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8342
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.4ms)
|
8343
|
+
Completed 200 OK in 30ms (Views: 26.4ms | ActiveRecord: 1.0ms)
|
8344
|
+
Processing by PostsController#index as HTML
|
8345
|
+
Parameters: {"theme"=>"theme_b"}
|
8346
|
+
[1m[35mPost Load (0.4ms)[0m SELECT "posts".* FROM "posts"
|
8347
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.4ms)
|
8348
|
+
Processing by PostsController#index as HTML
|
8349
|
+
Parameters: {"theme"=>"theme_a"}
|
8350
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8351
|
+
Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms)
|
8352
|
+
Processing by PostsController#index as HTML
|
8353
|
+
Parameters: {"theme"=>"theme_a"}
|
8354
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8355
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
|
8356
|
+
Processing by PostsController#index as HTML
|
8357
|
+
Parameters: {"theme"=>"theme_c"}
|
8358
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
8359
|
+
Processing by PostsController#index as HTML
|
8360
|
+
Parameters: {"theme"=>"theme_c"}
|
8361
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8362
|
+
Processing by PostsController#index as HTML
|
8363
|
+
Parameters: {"theme"=>"theme_c"}
|
8364
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
8365
|
+
Processing by PostsController#new as HTML
|
8366
|
+
Parameters: {"theme"=>"theme_a"}
|
8367
|
+
Rendered posts/_form.html.erb (14.2ms)
|
8368
|
+
Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.3ms)
|
8369
|
+
Processing by PostsController#new as HTML
|
8370
|
+
Parameters: {"theme"=>"theme_a"}
|
8371
|
+
Rendered posts/_form.html.erb (1.9ms)
|
8372
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
8373
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8374
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
8375
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
8376
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
8377
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8378
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
8379
|
+
Processing by PostsController#index as HTML
|
8380
|
+
Parameters: {"theme"=>"theme_b"}
|
8381
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8382
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (7.1ms)
|
8383
|
+
Completed 200 OK in 28ms (Views: 24.1ms | ActiveRecord: 1.1ms)
|
8384
|
+
Processing by PostsController#index as HTML
|
8385
|
+
Parameters: {"theme"=>"theme_b"}
|
8386
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8387
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (2.3ms)
|
8388
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
8389
|
+
Processing by PostsController#index as HTML
|
8390
|
+
Parameters: {"theme"=>"theme_a"}
|
8391
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8392
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.1ms)
|
8393
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
|
8394
|
+
Processing by PostsController#index as HTML
|
8395
|
+
Parameters: {"theme"=>"theme_a"}
|
8396
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8397
|
+
Rendered app/themes/theme_a/views/posts/index.html.erb within layouts/theme_a (2.2ms)
|
8398
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
8399
|
+
Processing by PostsController#index as HTML
|
8400
|
+
Parameters: {"theme"=>"theme_c"}
|
8401
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (1.4ms)
|
8402
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
8403
|
+
Processing by PostsController#index as HTML
|
8404
|
+
Parameters: {"theme"=>"theme_c"}
|
8405
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.5ms)
|
8406
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
8407
|
+
Processing by PostsController#index as HTML
|
8408
|
+
Parameters: {"theme"=>"theme_c"}
|
8409
|
+
Rendered app/themes/theme_c/views/posts/index.liquid within layouts/theme_c (0.5ms)
|
8410
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8411
|
+
Processing by PostsController#new as HTML
|
8412
|
+
Parameters: {"theme"=>"theme_a"}
|
8413
|
+
Rendered posts/_form.html.erb (42.8ms)
|
8414
|
+
Rendered posts/new.html.erb within layouts/application (45.9ms)
|
8415
|
+
Completed 200 OK in 68ms (Views: 63.8ms | ActiveRecord: 0.2ms)
|
8416
|
+
Processing by PostsController#new as HTML
|
8417
|
+
Parameters: {"theme"=>"theme_a"}
|
8418
|
+
Rendered posts/_form.html.erb (1.8ms)
|
8419
|
+
Rendered posts/new.html.erb within layouts/application (2.2ms)
|
8420
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
8421
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8422
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8423
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
8424
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
8425
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8426
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
8427
|
+
Processing by PostsController#index as HTML
|
8428
|
+
Parameters: {"theme"=>"theme_b"}
|
8429
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8430
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (4.0ms)
|
8431
|
+
Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 1.0ms)
|
8432
|
+
Processing by PostsController#index as HTML
|
8433
|
+
Parameters: {"theme"=>"theme_b"}
|
8434
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8435
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
8436
|
+
Processing by PostsController#index as HTML
|
8437
|
+
Parameters: {"theme"=>"theme_a"}
|
8438
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8439
|
+
Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms)
|
8440
|
+
Processing by PostsController#index as HTML
|
8441
|
+
Parameters: {"theme"=>"theme_a"}
|
8442
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8443
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
8444
|
+
Processing by PostsController#index as HTML
|
8445
|
+
Parameters: {"theme"=>"theme_c"}
|
8446
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
8447
|
+
Processing by PostsController#index as HTML
|
8448
|
+
Parameters: {"theme"=>"theme_c"}
|
8449
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
8450
|
+
Processing by PostsController#index as HTML
|
8451
|
+
Parameters: {"theme"=>"theme_c"}
|
8452
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8453
|
+
Processing by PostsController#new as HTML
|
8454
|
+
Parameters: {"theme"=>"theme_a"}
|
8455
|
+
Rendered posts/_form.html.erb (12.9ms)
|
8456
|
+
Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.3ms)
|
8457
|
+
Processing by PostsController#new as HTML
|
8458
|
+
Parameters: {"theme"=>"theme_a"}
|
8459
|
+
Rendered posts/_form.html.erb (1.8ms)
|
8460
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
8461
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
8462
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
8463
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8464
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8465
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
8466
|
+
Processing by PostsController#index as HTML
|
8467
|
+
Parameters: {"theme"=>"theme_b"}
|
8468
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8469
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (3.1ms)
|
8470
|
+
Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 1.0ms)
|
8471
|
+
Processing by PostsController#index as HTML
|
8472
|
+
Parameters: {"theme"=>"theme_b"}
|
8473
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8474
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
8475
|
+
Processing by PostsController#index as HTML
|
8476
|
+
Parameters: {"theme"=>"theme_a"}
|
8477
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
8478
|
+
Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.1ms)
|
8479
|
+
Processing by PostsController#index as HTML
|
8480
|
+
Parameters: {"theme"=>"theme_a"}
|
8481
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8482
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
8483
|
+
Processing by PostsController#index as HTML
|
8484
|
+
Parameters: {"theme"=>"theme_c"}
|
8485
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
8486
|
+
Processing by PostsController#index as HTML
|
8487
|
+
Parameters: {"theme"=>"theme_c"}
|
8488
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
8489
|
+
Processing by PostsController#index as HTML
|
8490
|
+
Parameters: {"theme"=>"theme_c"}
|
8491
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
8492
|
+
Processing by PostsController#new as HTML
|
8493
|
+
Parameters: {"theme"=>"theme_a"}
|
8494
|
+
Rendered posts/_form.html.erb (12.7ms)
|
8495
|
+
Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.3ms)
|
8496
|
+
Processing by PostsController#new as HTML
|
8497
|
+
Parameters: {"theme"=>"theme_a"}
|
8498
|
+
Rendered posts/_form.html.erb (1.7ms)
|
8499
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
8500
|
+
Connecting to database specified by database.yml
|
8501
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8502
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
8503
|
+
[1m[36m (2.2ms)[0m [1mDROP TABLE "posts"[0m
|
8504
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
8505
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8506
|
+
Connecting to database specified by database.yml
|
8507
|
+
Processing by PostsController#index as HTML
|
8508
|
+
Parameters: {"theme"=>"theme_b"}
|
8509
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8510
|
+
Rendered app/themes/theme_b/views/posts/index.html.erb within layouts/theme_b (1.4ms)
|
8511
|
+
Completed 200 OK in 10.2ms (Views: 8.9ms | ActiveRecord: 0.1ms)
|
8512
|
+
Processing by PostsController#index as HTML
|
8513
|
+
Parameters: {"theme"=>"theme_b"}
|
8514
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8515
|
+
Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
8516
|
+
Processing by PostsController#index as HTML
|
8517
|
+
Parameters: {"theme"=>"theme_a"}
|
8518
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8519
|
+
Completed 200 OK in 4.1ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
8520
|
+
Processing by PostsController#index as HTML
|
8521
|
+
Parameters: {"theme"=>"theme_a"}
|
8522
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
8523
|
+
Completed 200 OK in 4.6ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
8524
|
+
Processing by PostsController#index as HTML
|
8525
|
+
Parameters: {"theme"=>"theme_c"}
|
8526
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8527
|
+
Completed 200 OK in 3.0ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
8528
|
+
Processing by PostsController#index as HTML
|
8529
|
+
Parameters: {"theme"=>"theme_c"}
|
8530
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
8531
|
+
Completed 200 OK in 3.0ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
8532
|
+
Processing by PostsController#index as HTML
|
8533
|
+
Parameters: {"theme"=>"theme_c"}
|
8534
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
8535
|
+
Completed 200 OK in 2.9ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
8536
|
+
Processing by PostsController#new as HTML
|
8537
|
+
Parameters: {"theme"=>"theme_a"}
|
8538
|
+
Rendered posts/_form.html.erb (6.9ms)
|
8539
|
+
Completed 200 OK in 16.1ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
8540
|
+
Processing by PostsController#new as HTML
|
8541
|
+
Parameters: {"theme"=>"theme_a"}
|
8542
|
+
Rendered posts/_form.html.erb (1.6ms)
|
8543
|
+
Completed 200 OK in 3.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|