themes_on_rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +110 -0
  4. data/Rakefile +60 -0
  5. data/lib/generators/themes_on_rails/templates/all.css +9 -0
  6. data/lib/generators/themes_on_rails/templates/all.js +7 -0
  7. data/lib/generators/themes_on_rails/templates/layout.html.erb +14 -0
  8. data/lib/generators/themes_on_rails/templates/layout.html.haml +9 -0
  9. data/lib/generators/themes_on_rails/theme_generator.rb +52 -0
  10. data/lib/themes_on_rails/action_controller.rb +61 -0
  11. data/lib/themes_on_rails/controller_additions.rb +13 -0
  12. data/lib/themes_on_rails/engine.rb +6 -0
  13. data/lib/themes_on_rails/railtie.rb +17 -0
  14. data/lib/themes_on_rails/version.rb +3 -0
  15. data/lib/themes_on_rails.rb +9 -0
  16. data/spec/dummy/README.rdoc +28 -0
  17. data/spec/dummy/Rakefile +6 -0
  18. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  19. data/spec/dummy/app/assets/javascripts/posts.js +2 -0
  20. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  21. data/spec/dummy/app/assets/stylesheets/posts.css +4 -0
  22. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  23. data/spec/dummy/app/controllers/application_controller.rb +9 -0
  24. data/spec/dummy/app/controllers/posts_controller.rb +68 -0
  25. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  26. data/spec/dummy/app/helpers/posts_helper.rb +2 -0
  27. data/spec/dummy/app/models/post.rb +2 -0
  28. data/spec/dummy/app/themes/basic_blue/assets/javascripts/basic_blue/all.js +7 -0
  29. data/spec/dummy/app/themes/basic_blue/assets/stylesheets/basic_blue/all.css +9 -0
  30. data/spec/dummy/app/themes/basic_blue/views/layouts/basic_blue.html.haml +9 -0
  31. data/spec/dummy/app/themes/basic_blue/views/posts/_form.html.erb +25 -0
  32. data/spec/dummy/app/themes/basic_blue/views/posts/edit.html.erb +6 -0
  33. data/spec/dummy/app/themes/basic_blue/views/posts/index.html.erb +29 -0
  34. data/spec/dummy/app/themes/basic_blue/views/posts/new.html.erb +5 -0
  35. data/spec/dummy/app/themes/basic_blue/views/posts/show.html.erb +15 -0
  36. data/spec/dummy/app/themes/professional_blue/assets/javascripts/professional_blue/all.js +7 -0
  37. data/spec/dummy/app/themes/professional_blue/assets/stylesheets/professional_blue/all.css +9 -0
  38. data/spec/dummy/app/themes/professional_blue/views/layouts/professional_blue.html.haml +9 -0
  39. data/spec/dummy/app/themes/professional_blue/views/posts/_form.html.erb +25 -0
  40. data/spec/dummy/app/themes/professional_blue/views/posts/edit.html.erb +6 -0
  41. data/spec/dummy/app/themes/professional_blue/views/posts/index.html.erb +29 -0
  42. data/spec/dummy/app/themes/professional_blue/views/posts/new.html.erb +5 -0
  43. data/spec/dummy/app/themes/professional_blue/views/posts/show.html.erb +15 -0
  44. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/spec/dummy/app/views/posts/_form.html.erb +25 -0
  46. data/spec/dummy/app/views/posts/edit.html.erb +6 -0
  47. data/spec/dummy/app/views/posts/index.html.erb +29 -0
  48. data/spec/dummy/app/views/posts/new.html.erb +5 -0
  49. data/spec/dummy/app/views/posts/show.html.erb +14 -0
  50. data/spec/dummy/bin/bundle +3 -0
  51. data/spec/dummy/bin/rails +4 -0
  52. data/spec/dummy/bin/rake +4 -0
  53. data/spec/dummy/config/application.rb +22 -0
  54. data/spec/dummy/config/boot.rb +5 -0
  55. data/spec/dummy/config/database.yml +25 -0
  56. data/spec/dummy/config/environment.rb +5 -0
  57. data/spec/dummy/config/environments/development.rb +29 -0
  58. data/spec/dummy/config/environments/production.rb +80 -0
  59. data/spec/dummy/config/environments/test.rb +36 -0
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/spec/dummy/config/initializers/inflections.rb +16 -0
  63. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  64. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  65. data/spec/dummy/config/initializers/session_store.rb +3 -0
  66. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/spec/dummy/config/locales/en.yml +23 -0
  68. data/spec/dummy/config/routes.rb +58 -0
  69. data/spec/dummy/config.ru +4 -0
  70. data/spec/dummy/db/development.sqlite3 +0 -0
  71. data/spec/dummy/db/migrate/20131120082307_create_posts.rb +10 -0
  72. data/spec/dummy/db/schema.rb +23 -0
  73. data/spec/dummy/db/test.sqlite3 +0 -0
  74. data/spec/dummy/log/development.log +1581 -0
  75. data/spec/dummy/log/test.log +4042 -0
  76. data/spec/dummy/public/404.html +58 -0
  77. data/spec/dummy/public/422.html +58 -0
  78. data/spec/dummy/public/500.html +57 -0
  79. data/spec/dummy/public/favicon.ico +0 -0
  80. data/spec/dummy/spec/controllers/posts_controller_spec.rb +47 -0
  81. data/spec/dummy/spec/spec_helper.rb +44 -0
  82. data/spec/dummy/tmp/cache/assets/development/sprockets/0cfcea8e64323f692964ade04baf71bf +0 -0
  83. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  84. data/spec/dummy/tmp/cache/assets/development/sprockets/1b2584b22e1970da0ea00056c0149492 +0 -0
  85. data/spec/dummy/tmp/cache/assets/development/sprockets/1e8f75a6b5b33970fb8e397347caa0a1 +0 -0
  86. data/spec/dummy/tmp/cache/assets/development/sprockets/24204f742af588c8166d3160b500d20f +0 -0
  87. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  88. data/spec/dummy/tmp/cache/assets/development/sprockets/301390a2f715e632e51eaceadc864bd8 +0 -0
  89. data/spec/dummy/tmp/cache/assets/development/sprockets/3059f09ecb35a9d6a17cc629cf142cad +0 -0
  90. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sprockets/3773504c128301fa4ae43322c265863c +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  95. data/spec/dummy/tmp/cache/assets/development/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  96. data/spec/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  97. data/spec/dummy/tmp/cache/assets/development/sprockets/8b1b55ee928fcc1ca79651b5a54d12b1 +0 -0
  98. data/spec/dummy/tmp/cache/assets/development/sprockets/97b428fb2be48bdef1c2edc6895007e6 +0 -0
  99. data/spec/dummy/tmp/cache/assets/development/sprockets/a144f874a0fbcfbf57e914e54950b2b8 +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sprockets/a6505a19f1ef24ad643489939529b237 +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sprockets/aea240771414d6f51f0eeffa97de34c0 +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sprockets/c6062fc388a3fcd36f0407b7de58b073 +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  104. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  105. data/spec/dummy/tmp/cache/assets/development/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  106. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  107. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  108. data/spec/dummy/tmp/cache/assets/development/sprockets/fbce05c1fbdc18388ed134c8e4100ac8 +0 -0
  109. data/spec/dummy/tmp/cache/assets/test/sprockets/0cfcea8e64323f692964ade04baf71bf +0 -0
  110. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  111. data/spec/dummy/tmp/cache/assets/test/sprockets/1b2584b22e1970da0ea00056c0149492 +0 -0
  112. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  113. data/spec/dummy/tmp/cache/assets/test/sprockets/301390a2f715e632e51eaceadc864bd8 +0 -0
  114. data/spec/dummy/tmp/cache/assets/test/sprockets/3059f09ecb35a9d6a17cc629cf142cad +0 -0
  115. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  116. data/spec/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  117. data/spec/dummy/tmp/cache/assets/test/sprockets/3773504c128301fa4ae43322c265863c +0 -0
  118. data/spec/dummy/tmp/cache/assets/test/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  119. data/spec/dummy/tmp/cache/assets/test/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  120. data/spec/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  121. data/spec/dummy/tmp/cache/assets/test/sprockets/8b1b55ee928fcc1ca79651b5a54d12b1 +0 -0
  122. data/spec/dummy/tmp/cache/assets/test/sprockets/97b428fb2be48bdef1c2edc6895007e6 +0 -0
  123. data/spec/dummy/tmp/cache/assets/test/sprockets/a144f874a0fbcfbf57e914e54950b2b8 +0 -0
  124. data/spec/dummy/tmp/cache/assets/test/sprockets/a6505a19f1ef24ad643489939529b237 +0 -0
  125. data/spec/dummy/tmp/cache/assets/test/sprockets/aea240771414d6f51f0eeffa97de34c0 +0 -0
  126. data/spec/dummy/tmp/cache/assets/test/sprockets/c6062fc388a3fcd36f0407b7de58b073 +0 -0
  127. data/spec/dummy/tmp/cache/assets/test/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  128. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  129. data/spec/dummy/tmp/cache/assets/test/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  130. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  131. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  132. data/spec/dummy/tmp/cache/assets/test/sprockets/fbce05c1fbdc18388ed134c8e4100ac8 +0 -0
  133. data/spec/generators/themes_on_rails/theme_generator_spec.rb +67 -0
  134. data/spec/lib/action_controller_spec.rb +45 -0
  135. data/spec/lib/assets_path_spec.rb +15 -0
  136. data/spec/lib/controller_additions_spec.rb +22 -0
  137. data/spec/spec_helper.rb +22 -0
  138. metadata +330 -0
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
Binary file
@@ -0,0 +1,10 @@
1
+ class CreatePosts < ActiveRecord::Migration
2
+ def change
3
+ create_table :posts do |t|
4
+ t.string :title
5
+ t.text :description
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20131120082307) do
15
+
16
+ create_table "posts", :force => true do |t|
17
+ t.string "title"
18
+ t.text "description"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ end
Binary file
@@ -0,0 +1,1581 @@
1
+
2
+
3
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 08:03:18 +0700
4
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Processing by PostsController#index as HTML
6
+ Parameters: {"theme"=>"professional_blue"}
7
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
8
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
9
+ Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 0.5ms)
10
+
11
+
12
+ Started GET "/posts/new" for 127.0.0.1 at 2013-11-21 08:03:34 +0700
13
+ Processing by PostsController#new as HTML
14
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (42.6ms)
15
+ Rendered app/themes/basic_blue/views/posts/new.html.erb within layouts/basic_blue (47.0ms)
16
+ Completed 200 OK in 58ms (Views: 56.7ms | ActiveRecord: 0.3ms)
17
+
18
+
19
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 08:03:37 +0700
20
+ Processing by PostsController#index as HTML
21
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
22
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (1.4ms)
23
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms)
24
+
25
+
26
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 08:03:58 +0700
27
+ Processing by PostsController#index as HTML
28
+ Parameters: {"theme"=>"professional_blue"}
29
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
30
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
31
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)
32
+
33
+
34
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 09:51:40 +0700
35
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+
37
+ ActionController::RoutingError (undefined method `add_before_filter' for ThemesOnRails::ActionController:Class):
38
+ app/controllers/posts_controller.rb:2:in `<class:PostsController>'
39
+ app/controllers/posts_controller.rb:1:in `<top (required)>'
40
+
41
+
42
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
43
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
44
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms)
45
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (34.2ms)
46
+
47
+
48
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 09:52:32 +0700
49
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
+ Processing by PostsController#index as HTML
51
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
52
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (2.9ms)
53
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.5ms)
54
+
55
+
56
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:52:38 +0700
57
+ Processing by PostsController#index as HTML
58
+ Parameters: {"theme"=>"professional_blue"}
59
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
60
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (1.5ms)
61
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)
62
+
63
+
64
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:53:29 +0700
65
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
+ Processing by PostsController#index as HTML
67
+ Parameters: {"theme"=>"professional_blue"}
68
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
69
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.7ms)
70
+ Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.4ms)
71
+
72
+
73
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:53:32 +0700
74
+ Processing by PostsController#index as HTML
75
+ Parameters: {"theme"=>"professional_blue"}
76
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
77
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (1.4ms)
78
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
79
+
80
+
81
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:54:05 +0700
82
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
+ Processing by PostsController#index as HTML
84
+ Parameters: {"theme"=>"professional_blue"}
85
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
86
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (1.9ms)
87
+ Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.1ms)
88
+
89
+
90
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:55:06 +0700
91
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
92
+ Processing by PostsController#index as HTML
93
+ Parameters: {"theme"=>"professional_blue"}
94
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
95
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (1.9ms)
96
+ Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
97
+
98
+
99
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:55:32 +0700
100
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
101
+ Processing by PostsController#index as HTML
102
+ Parameters: {"theme"=>"professional_blue"}
103
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
104
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.0ms)
105
+ Completed 200 OK in 23999ms (Views: 7.1ms | ActiveRecord: 0.2ms)
106
+
107
+
108
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:56:29 +0700
109
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
110
+ Processing by PostsController#index as HTML
111
+ Parameters: {"theme"=>"professional_blue"}
112
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
113
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
114
+ Completed 200 OK in 2089ms (Views: 34.8ms | ActiveRecord: 0.1ms)
115
+
116
+
117
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:57:15 +0700
118
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
+
120
+ ArgumentError (wrong number of arguments (0 for 1..2)):
121
+ app/controllers/posts_controller.rb:2:in `<class:PostsController>'
122
+ app/controllers/posts_controller.rb:1:in `<top (required)>'
123
+
124
+
125
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
126
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
127
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.7ms)
128
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.6ms)
129
+
130
+
131
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 09:57:32 +0700
132
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
133
+
134
+ ArgumentError (wrong number of arguments (0 for 1..2)):
135
+ app/controllers/posts_controller.rb:2:in `<class:PostsController>'
136
+ app/controllers/posts_controller.rb:1:in `<top (required)>'
137
+
138
+
139
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
140
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
141
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.2ms)
142
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (30.0ms)
143
+
144
+
145
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:03:54 +0700
146
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
147
+ Processing by PostsController#index as HTML
148
+ Parameters: {"theme"=>"professional_blue"}
149
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
150
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.6ms)
151
+ Completed 200 OK in 5847ms (Views: 31.6ms | ActiveRecord: 0.2ms)
152
+
153
+
154
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:05:43 +0700
155
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
156
+ Processing by PostsController#index as HTML
157
+ Parameters: {"theme"=>"professional_blue"}
158
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
159
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
160
+ Completed 200 OK in 33ms (Views: 30.7ms | ActiveRecord: 0.2ms)
161
+
162
+
163
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:07:49 +0700
164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
165
+ Processing by PostsController#index as HTML
166
+ Parameters: {"theme"=>"professional_blue"}
167
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
168
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/application (2.1ms)
169
+ Completed 200 OK in 44ms (Views: 42.0ms | ActiveRecord: 0.2ms)
170
+
171
+
172
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:08:33 +0700
173
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
174
+ Processing by PostsController#index as HTML
175
+ Parameters: {"theme"=>"professional_blue"}
176
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
177
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
178
+ Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.1ms)
179
+
180
+
181
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:10:44 +0700
182
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
183
+ Processing by PostsController#index as HTML
184
+ Parameters: {"theme"=>"professional_blue"}
185
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
186
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.2ms)
187
+ Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.1ms)
188
+
189
+
190
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:10:47 +0700
191
+ Processing by PostsController#index as HTML
192
+ Parameters: {"theme"=>"professional_blue"}
193
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
194
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
195
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms)
196
+
197
+
198
+ Started GET "/posts/new" for 127.0.0.1 at 2013-11-21 10:19:52 +0700
199
+ Processing by PostsController#new as HTML
200
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (85.8ms)
201
+ Rendered app/themes/basic_blue/views/posts/new.html.erb within layouts/basic_blue (92.5ms)
202
+ Completed 200 OK in 109ms (Views: 104.7ms | ActiveRecord: 0.4ms)
203
+
204
+
205
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:20:04 +0700
206
+ Processing by PostsController#index as HTML
207
+ Parameters: {"theme"=>"professional_blue"}
208
+ Completed 500 Internal Server Error in 7ms
209
+
210
+ ActionView::MissingTemplate (Missing template layouts/basic_blue with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in:
211
+ * "/Users/chamnapchhorn/workspace/me/themes_on_rails/spec/dummy/app/views"
212
+ ):
213
+ actionpack (4.0.1) lib/action_view/path_set.rb:46:in `find'
214
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:115:in `find'
215
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
216
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:81:in `resolve_layout'
217
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:88:in `resolve_layout'
218
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `block in find_layout'
219
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:228:in `with_layout_format'
220
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
221
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `find_layout'
222
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
223
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
224
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
225
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
226
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
227
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:127:in `_render_template'
228
+ actionpack (4.0.1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
229
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:120:in `render_to_body'
230
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
231
+ actionpack (4.0.1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
232
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:97:in `render'
233
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:16:in `render'
234
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
235
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
236
+ /Users/chamnapchhorn/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
237
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
238
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
239
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
240
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
241
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
242
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
243
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
244
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
245
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
246
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
247
+ activesupport (4.0.1) lib/active_support/callbacks.rb:403:in `_run__4107212197045083208__process_action__callbacks'
248
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
249
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
250
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
251
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
252
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
253
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
254
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
255
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
256
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
257
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
258
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
259
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
260
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
261
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
262
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
263
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
264
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
265
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
266
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
267
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
268
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
269
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
270
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
271
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
272
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
273
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
274
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
275
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
276
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
277
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
278
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
279
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
280
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
281
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
282
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3055206033079701439__call__callbacks'
283
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
284
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
285
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
286
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
287
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
288
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
289
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
290
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
291
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
292
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
293
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
294
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
295
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
296
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
297
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
298
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
299
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
300
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
301
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
302
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
303
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
304
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
305
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
306
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
307
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
308
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
309
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
310
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
311
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
312
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
313
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
314
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
315
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
316
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
317
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
318
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
319
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
320
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
321
+ bin/rails:4:in `require'
322
+ bin/rails:4:in `<main>'
323
+
324
+
325
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
326
+
327
+
328
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:20:19 +0700
329
+ Processing by PostsController#index as HTML
330
+ Completed 500 Internal Server Error in 6ms
331
+
332
+ ActionView::MissingTemplate (Missing template layouts/basic_blue with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in:
333
+ * "/Users/chamnapchhorn/workspace/me/themes_on_rails/spec/dummy/app/views"
334
+ ):
335
+ actionpack (4.0.1) lib/action_view/path_set.rb:46:in `find'
336
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:115:in `find'
337
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
338
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:81:in `resolve_layout'
339
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:88:in `resolve_layout'
340
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `block in find_layout'
341
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:228:in `with_layout_format'
342
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
343
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `find_layout'
344
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
345
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
346
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
347
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
348
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
349
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:127:in `_render_template'
350
+ actionpack (4.0.1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
351
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:120:in `render_to_body'
352
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
353
+ actionpack (4.0.1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
354
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:97:in `render'
355
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:16:in `render'
356
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
357
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
358
+ /Users/chamnapchhorn/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
359
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
360
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
361
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
362
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
363
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
364
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
365
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
366
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
367
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
368
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
369
+ activesupport (4.0.1) lib/active_support/callbacks.rb:403:in `_run__4107212197045083208__process_action__callbacks'
370
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
371
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
372
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
373
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
374
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
375
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
376
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
377
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
378
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
379
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
380
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
381
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
382
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
383
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
384
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
385
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
386
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
387
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
388
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
389
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
390
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
391
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
392
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
393
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
394
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
395
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
396
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
397
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
398
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
399
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
400
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
401
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
402
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
403
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
404
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3055206033079701439__call__callbacks'
405
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
406
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
407
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
408
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
409
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
410
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
411
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
412
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
413
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
414
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
415
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
416
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
417
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
418
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
419
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
420
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
421
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
422
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
423
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
424
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
425
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
426
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
427
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
428
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
429
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
430
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
431
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
432
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
433
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
434
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
435
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
436
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
437
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
438
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
439
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
440
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
441
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
442
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
443
+ bin/rails:4:in `require'
444
+ bin/rails:4:in `<main>'
445
+
446
+
447
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
448
+
449
+
450
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:21:16 +0700
451
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
452
+ Processing by PostsController#index as HTML
453
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
454
+ Rendered posts/index.html.erb within layouts/application (3.0ms)
455
+ Completed 200 OK in 47ms (Views: 44.3ms | ActiveRecord: 0.2ms)
456
+
457
+
458
+ Started GET "/posts/new" for 127.0.0.1 at 2013-11-21 10:21:27 +0700
459
+ Processing by PostsController#new as HTML
460
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (45.8ms)
461
+ Rendered app/themes/basic_blue/views/posts/new.html.erb within layouts/basic_blue (50.6ms)
462
+ Completed 200 OK in 66ms (Views: 64.0ms | ActiveRecord: 0.3ms)
463
+
464
+
465
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:21:42 +0700
466
+ Processing by PostsController#new as HTML
467
+ Parameters: {"theme"=>"professional_blue"}
468
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (3.0ms)
469
+ Rendered app/themes/professional_blue/views/posts/new.html.erb within layouts/professional_blue (4.7ms)
470
+ Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms)
471
+
472
+
473
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:21:55 +0700
474
+ Processing by PostsController#index as HTML
475
+ Parameters: {"theme"=>"professional_blue"}
476
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
477
+ Rendered posts/index.html.erb within layouts/application (0.8ms)
478
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
479
+
480
+
481
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:22:06 +0700
482
+ Processing by PostsController#new as HTML
483
+ Parameters: {"theme"=>"professional_blue"}
484
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (2.9ms)
485
+ Rendered app/themes/professional_blue/views/posts/new.html.erb within layouts/professional_blue (4.4ms)
486
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
487
+
488
+
489
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:22:09 +0700
490
+ Processing by PostsController#index as HTML
491
+ Parameters: {"theme"=>"professional_blue"}
492
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
493
+ Rendered posts/index.html.erb within layouts/application (0.8ms)
494
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
495
+
496
+
497
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:22:31 +0700
498
+ Processing by PostsController#index as HTML
499
+ Parameters: {"theme"=>"professional_blue"}
500
+ Post Load (0.3ms) SELECT "posts".* FROM "posts"
501
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
502
+ Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.3ms)
503
+
504
+
505
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:22:38 +0700
506
+ Processing by PostsController#new as HTML
507
+ Parameters: {"theme"=>"professional_blue"}
508
+ Rendered posts/_form.html.erb (7.1ms)
509
+ Rendered posts/new.html.erb within layouts/application (9.1ms)
510
+ Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.4ms)
511
+
512
+
513
+ Started GET "/posts/new" for 127.0.0.1 at 2013-11-21 10:22:46 +0700
514
+ Processing by PostsController#new as HTML
515
+ Rendered posts/_form.html.erb (2.2ms)
516
+ Rendered posts/new.html.erb within layouts/application (3.0ms)
517
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
518
+
519
+
520
+ Started POST "/posts" for 127.0.0.1 at 2013-11-21 10:22:52 +0700
521
+ Processing by PostsController#create as HTML
522
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"riyjaJtsq+BxsBvqdEz764NsxAjZXSZNe3Tzhzeo4vU=", "post"=>{"title"=>"111", "description"=>"111"}, "commit"=>"Create Post"}
523
+  (28.1ms) begin transaction
524
+ SQL (6.0ms) INSERT INTO "posts" ("created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 21 Nov 2013 03:22:52 UTC +00:00], ["description", "111"], ["title", "111"], ["updated_at", Thu, 21 Nov 2013 03:22:52 UTC +00:00]]
525
+  (0.7ms) commit transaction
526
+ Redirected to http://localhost:3000/posts/1
527
+ Completed 302 Found in 39ms (ActiveRecord: 34.8ms)
528
+
529
+
530
+ Started GET "/posts/1" for 127.0.0.1 at 2013-11-21 10:22:52 +0700
531
+ Processing by PostsController#show as HTML
532
+ Parameters: {"id"=>"1"}
533
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
534
+ Rendered app/themes/basic_blue/views/posts/show.html.erb within layouts/basic_blue (1.7ms)
535
+ Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.2ms)
536
+
537
+
538
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2013-11-21 10:22:58 +0700
539
+ Processing by PostsController#edit as HTML
540
+ Parameters: {"id"=>"1"}
541
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
542
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (3.1ms)
543
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb within layouts/basic_blue (5.0ms)
544
+ Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.1ms)
545
+
546
+
547
+ Started GET "/posts/1/edit?theme=professional" for 127.0.0.1 at 2013-11-21 10:23:06 +0700
548
+ Processing by PostsController#edit as HTML
549
+ Parameters: {"theme"=>"professional", "id"=>"1"}
550
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
551
+ Completed 500 Internal Server Error in 10ms
552
+
553
+ ActionView::MissingTemplate (Missing template layouts/professional with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in:
554
+ * "/Users/chamnapchhorn/workspace/me/themes_on_rails/spec/dummy/app/themes/professional/views"
555
+ * "/Users/chamnapchhorn/workspace/me/themes_on_rails/spec/dummy/app/views"
556
+ ):
557
+ actionpack (4.0.1) lib/action_view/path_set.rb:46:in `find'
558
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:115:in `find'
559
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
560
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:81:in `resolve_layout'
561
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:88:in `resolve_layout'
562
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `block in find_layout'
563
+ actionpack (4.0.1) lib/action_view/lookup_context.rb:228:in `with_layout_format'
564
+ actionpack (4.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
565
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:71:in `find_layout'
566
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
567
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
568
+ actionpack (4.0.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
569
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
570
+ actionpack (4.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
571
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:127:in `_render_template'
572
+ actionpack (4.0.1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
573
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:120:in `render_to_body'
574
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
575
+ actionpack (4.0.1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
576
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:97:in `render'
577
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:16:in `render'
578
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
579
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
580
+ /Users/chamnapchhorn/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
581
+ activesupport (4.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
582
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
583
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
584
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
585
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
586
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
587
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
588
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
589
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
590
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
591
+ activesupport (4.0.1) lib/active_support/callbacks.rb:403:in `_run__3555950439397500946__process_action__callbacks'
592
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
593
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
594
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
595
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
596
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
597
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
598
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
599
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
600
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
601
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
602
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
603
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
604
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
605
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
606
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
607
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
608
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
609
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
610
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
611
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
612
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
613
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
614
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
615
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
616
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
617
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
618
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
619
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
620
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
621
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
622
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
623
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
624
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
625
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
626
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3708569359781970998__call__callbacks'
627
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
628
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
629
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
630
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
631
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
632
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
633
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
634
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
635
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
636
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
637
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
638
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
639
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
640
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
641
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
642
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
643
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
644
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
645
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
646
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
647
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
648
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
649
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
650
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
651
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
652
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
653
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
654
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
655
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
656
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
657
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
658
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
659
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
660
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
661
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
662
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
663
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
664
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
665
+ bin/rails:4:in `require'
666
+ bin/rails:4:in `<main>'
667
+
668
+
669
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
670
+
671
+
672
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:23:15 +0700
673
+ Processing by PostsController#edit as HTML
674
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
675
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
676
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (4.6ms)
677
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb within layouts/professional_blue (6.7ms)
678
+ Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms)
679
+
680
+
681
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:39:41 +0700
682
+ Processing by PostsController#edit as HTML
683
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
684
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
685
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (3.3ms)
686
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb within layouts/professional_blue (5.2ms)
687
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)
688
+
689
+
690
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2013-11-21 10:39:47 +0700
691
+ Processing by PostsController#edit as HTML
692
+ Parameters: {"id"=>"1"}
693
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
694
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (4.1ms)
695
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb within layouts/basic_blue (5.9ms)
696
+ Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.1ms)
697
+
698
+
699
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:45:49 +0700
700
+ Processing by PostsController#edit as HTML
701
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
702
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
703
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (3.9ms)
704
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb within layouts/professional_blue (5.4ms)
705
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.1ms)
706
+
707
+
708
+ Started GET "/posts/1" for 127.0.0.1 at 2013-11-21 10:46:04 +0700
709
+ Processing by PostsController#show as HTML
710
+ Parameters: {"id"=>"1"}
711
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
712
+ Rendered app/themes/basic_blue/views/posts/show.html.erb within layouts/basic_blue (1.5ms)
713
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
714
+
715
+
716
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:46:15 +0700
717
+ Processing by PostsController#show as HTML
718
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
719
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
720
+ Rendered app/themes/professional_blue/views/posts/show.html.erb within layouts/professional_blue (1.6ms)
721
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.1ms)
722
+
723
+
724
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:46:18 +0700
725
+ Processing by PostsController#index as HTML
726
+ Parameters: {"theme"=>"professional_blue"}
727
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
728
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
729
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.2ms)
730
+
731
+
732
+ Started GET "/posts/new" for 127.0.0.1 at 2013-11-21 10:46:20 +0700
733
+ Processing by PostsController#new as HTML
734
+ Rendered posts/_form.html.erb (2.5ms)
735
+ Rendered posts/new.html.erb within layouts/application (3.5ms)
736
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
737
+
738
+
739
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:46:23 +0700
740
+ Processing by PostsController#new as HTML
741
+ Parameters: {"theme"=>"professional_blue"}
742
+ Rendered posts/_form.html.erb (2.4ms)
743
+ Rendered posts/new.html.erb within layouts/application (3.1ms)
744
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
745
+
746
+
747
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:51:17 +0700
748
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
749
+ Processing by PostsController#new as HTML
750
+ Parameters: {"theme"=>"professional_blue"}
751
+ Rendered posts/_form.html.erb (32.0ms)
752
+ Rendered posts/new.html.erb (37.1ms)
753
+ Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 0.3ms)
754
+
755
+
756
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:56:00 +0700
757
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
758
+ Processing by PostsController#new as HTML
759
+ Parameters: {"theme"=>"professional_blue"}
760
+ Rendered posts/_form.html.erb (30.9ms)
761
+ Rendered posts/new.html.erb (35.8ms)
762
+ Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.3ms)
763
+
764
+
765
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:56:03 +0700
766
+ Processing by PostsController#new as HTML
767
+ Parameters: {"theme"=>"professional_blue"}
768
+ Rendered posts/_form.html.erb (2.8ms)
769
+ Rendered posts/new.html.erb (3.5ms)
770
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
771
+
772
+
773
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:13 +0700
774
+ Processing by PostsController#index as HTML
775
+ Completed 500 Internal Server Error in 0ms
776
+
777
+ ArgumentError (wrong number of arguments (2 for 3)):
778
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:31:in `initialize'
779
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `new'
780
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `block in apply_theme'
781
+ activesupport (4.0.1) lib/active_support/callbacks.rb:387:in `_run__4474585671181386999__process_action__callbacks'
782
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
783
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
784
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
785
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
786
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
787
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
788
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
789
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
790
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
791
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
792
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
793
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
794
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
795
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
796
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
797
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
798
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
799
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
800
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
801
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
802
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
803
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
804
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
805
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
806
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
807
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
808
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
809
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
810
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
811
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
812
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
813
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
814
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
815
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
816
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__4473430856563300874__call__callbacks'
817
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
818
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
819
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
820
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
821
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
822
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
823
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
824
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
825
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
826
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
827
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
828
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
829
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
830
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
831
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
832
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
833
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
834
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
835
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
836
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
837
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
838
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
839
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
840
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
841
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
842
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
843
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
844
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
845
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
846
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
847
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
848
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
849
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
850
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
851
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
852
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
853
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
854
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
855
+ bin/rails:4:in `require'
856
+ bin/rails:4:in `<main>'
857
+
858
+
859
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
860
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
861
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
862
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.6ms)
863
+
864
+
865
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:15 +0700
866
+ Processing by PostsController#index as HTML
867
+ Completed 500 Internal Server Error in 0ms
868
+
869
+ ArgumentError (wrong number of arguments (2 for 3)):
870
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:31:in `initialize'
871
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `new'
872
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `block in apply_theme'
873
+ activesupport (4.0.1) lib/active_support/callbacks.rb:387:in `_run__4474585671181386999__process_action__callbacks'
874
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
875
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
876
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
877
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
878
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
879
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
880
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
881
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
882
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
883
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
884
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
885
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
886
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
887
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
888
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
889
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
890
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
891
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
892
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
893
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
894
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
895
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
896
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
897
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
898
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
899
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
900
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
901
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
902
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
903
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
904
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
905
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
906
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
907
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
908
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__4473430856563300874__call__callbacks'
909
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
910
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
911
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
912
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
913
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
914
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
915
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
916
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
917
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
918
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
919
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
920
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
921
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
922
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
923
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
924
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
925
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
926
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
927
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
928
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
929
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
930
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
931
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
932
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
933
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
934
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
935
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
936
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
937
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
938
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
939
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
940
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
941
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
942
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
943
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
944
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
945
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
946
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
947
+ bin/rails:4:in `require'
948
+ bin/rails:4:in `<main>'
949
+
950
+
951
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
952
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
953
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
954
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms)
955
+
956
+
957
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:16 +0700
958
+ Processing by PostsController#index as HTML
959
+ Completed 500 Internal Server Error in 0ms
960
+
961
+ ArgumentError (wrong number of arguments (2 for 3)):
962
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:31:in `initialize'
963
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `new'
964
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `block in apply_theme'
965
+ activesupport (4.0.1) lib/active_support/callbacks.rb:387:in `_run__4474585671181386999__process_action__callbacks'
966
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
967
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
968
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
969
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
970
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
971
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
972
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
973
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
974
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
975
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
976
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
977
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
978
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
979
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
980
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
981
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
982
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
983
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
984
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
985
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
986
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
987
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
988
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
989
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
990
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
991
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
992
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
993
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
994
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
995
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
996
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
997
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
998
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
999
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1000
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__4473430856563300874__call__callbacks'
1001
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
1002
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1003
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1004
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1005
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1006
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1007
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
1008
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
1009
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1010
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
1011
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
1012
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
1013
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
1014
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1015
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1016
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1017
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1018
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1019
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1020
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1021
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
1022
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
1023
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1024
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
1025
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
1026
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
1027
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
1028
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
1029
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
1030
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
1031
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
1032
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
1033
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
1034
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
1035
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
1036
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
1037
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
1038
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
1039
+ bin/rails:4:in `require'
1040
+ bin/rails:4:in `<main>'
1041
+
1042
+
1043
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1044
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1045
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1046
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms)
1047
+
1048
+
1049
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:16 +0700
1050
+ Processing by PostsController#index as HTML
1051
+ Completed 500 Internal Server Error in 0ms
1052
+
1053
+ ArgumentError (wrong number of arguments (2 for 3)):
1054
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:31:in `initialize'
1055
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `new'
1056
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `block in apply_theme'
1057
+ activesupport (4.0.1) lib/active_support/callbacks.rb:387:in `_run__4474585671181386999__process_action__callbacks'
1058
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
1059
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
1060
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1061
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1062
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
1063
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1064
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
1065
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1066
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1067
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1068
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
1069
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
1070
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
1071
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1072
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
1073
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
1074
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1075
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
1076
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
1077
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
1078
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
1079
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
1080
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1081
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1082
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1083
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1084
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
1085
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1086
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1087
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1088
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
1089
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1090
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
1091
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1092
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__4473430856563300874__call__callbacks'
1093
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
1094
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1095
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1096
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1097
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1098
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1099
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
1100
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
1101
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1102
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
1103
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
1104
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
1105
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
1106
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1107
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1108
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1109
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1110
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1111
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1112
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1113
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
1114
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
1115
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1116
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
1117
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
1118
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
1119
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
1120
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
1121
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
1122
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
1123
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
1124
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
1125
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
1126
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
1127
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
1128
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
1129
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
1130
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
1131
+ bin/rails:4:in `require'
1132
+ bin/rails:4:in `<main>'
1133
+
1134
+
1135
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1136
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1137
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1138
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
1139
+
1140
+
1141
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:40 +0700
1142
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1143
+ Processing by PostsController#index as HTML
1144
+ Completed 500 Internal Server Error in 2ms
1145
+
1146
+ NameError (undefined local variable or method `options' for #<ThemesOnRails::ActionController:0x007ff8511c5308>):
1147
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:34:in `initialize'
1148
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `new'
1149
+ /Users/chamnapchhorn/workspace/me/themes_on_rails/lib/themes_on_rails/action_controller.rb:15:in `block in apply_theme'
1150
+ activesupport (4.0.1) lib/active_support/callbacks.rb:387:in `_run__1159151856784428105__process_action__callbacks'
1151
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
1152
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
1153
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1154
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1155
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
1156
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1157
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
1158
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1159
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1160
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1161
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
1162
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
1163
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
1164
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1165
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
1166
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
1167
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1168
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
1169
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
1170
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
1171
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
1172
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
1173
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1174
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1175
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1176
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1177
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
1178
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1179
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1180
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1181
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
1182
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1183
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
1184
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1185
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3146080911157171755__call__callbacks'
1186
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
1187
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1188
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1189
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1190
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1191
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1192
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
1193
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
1194
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1195
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
1196
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
1197
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
1198
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
1199
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1200
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1201
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1202
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1203
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1204
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1205
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1206
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
1207
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
1208
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1209
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
1210
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
1211
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
1212
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
1213
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
1214
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
1215
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
1216
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
1217
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
1218
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
1219
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
1220
+ railties (4.0.1) lib/rails/commands/server.rb:84:in `start'
1221
+ railties (4.0.1) lib/rails/commands.rb:76:in `block in <top (required)>'
1222
+ railties (4.0.1) lib/rails/commands.rb:71:in `tap'
1223
+ railties (4.0.1) lib/rails/commands.rb:71:in `<top (required)>'
1224
+ bin/rails:4:in `require'
1225
+ bin/rails:4:in `<main>'
1226
+
1227
+
1228
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1229
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1230
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.7ms)
1231
+ Rendered /Users/chamnapchhorn/.rvm/gems/ruby-2.0.0-p247@global/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (30.9ms)
1232
+
1233
+
1234
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:56:56 +0700
1235
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1236
+ Processing by PostsController#index as HTML
1237
+ Post Load (0.6ms) SELECT "posts".* FROM "posts"
1238
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (9.8ms)
1239
+ Completed 200 OK in 18ms (Views: 13.6ms | ActiveRecord: 0.9ms)
1240
+
1241
+
1242
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:57:02 +0700
1243
+ Processing by PostsController#index as HTML
1244
+ Parameters: {"theme"=>"professional_blue"}
1245
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1246
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.5ms)
1247
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1248
+
1249
+
1250
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:57:04 +0700
1251
+ Processing by PostsController#new as HTML
1252
+ Parameters: {"theme"=>"professional_blue"}
1253
+ Rendered posts/_form.html.erb (28.6ms)
1254
+ Rendered posts/new.html.erb (32.8ms)
1255
+ Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.0ms)
1256
+
1257
+
1258
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:58:51 +0700
1259
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1260
+ Processing by PostsController#index as HTML
1261
+ Parameters: {"theme"=>"professional_blue"}
1262
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
1263
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (8.2ms)
1264
+ Completed 200 OK in 17ms (Views: 14.1ms | ActiveRecord: 0.7ms)
1265
+
1266
+
1267
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 10:58:54 +0700
1268
+ Processing by PostsController#new as HTML
1269
+ Parameters: {"theme"=>"professional_blue"}
1270
+ Rendered posts/_form.html.erb (29.2ms)
1271
+ Rendered posts/new.html.erb (33.2ms)
1272
+ Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms)
1273
+
1274
+
1275
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 10:58:57 +0700
1276
+ Processing by PostsController#index as HTML
1277
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1278
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (26.0ms)
1279
+ Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.2ms)
1280
+
1281
+
1282
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 11:01:32 +0700
1283
+ Processing by PostsController#index as HTML
1284
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
1285
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (7.8ms)
1286
+ Completed 200 OK in 12ms (Views: 8.8ms | ActiveRecord: 0.8ms)
1287
+
1288
+
1289
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:01:36 +0700
1290
+ Processing by PostsController#new as HTML
1291
+ Parameters: {"theme"=>"professional_blue"}
1292
+ Rendered posts/_form.html.erb (3.4ms)
1293
+ Rendered posts/new.html.erb (4.9ms)
1294
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1295
+
1296
+
1297
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:05:56 +0700
1298
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1299
+ Processing by PostsController#new as HTML
1300
+ Parameters: {"theme"=>"professional_blue"}
1301
+ Rendered posts/_form.html.erb (34.5ms)
1302
+ Rendered posts/new.html.erb (39.9ms)
1303
+ Completed 200 OK in 49ms (Views: 46.5ms | ActiveRecord: 0.3ms)
1304
+
1305
+
1306
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:05:57 +0700
1307
+ Processing by PostsController#new as HTML
1308
+ Parameters: {"theme"=>"professional_blue"}
1309
+ Rendered posts/_form.html.erb (2.4ms)
1310
+ Rendered posts/new.html.erb (3.1ms)
1311
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1312
+
1313
+
1314
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:05:58 +0700
1315
+ Processing by PostsController#new as HTML
1316
+ Parameters: {"theme"=>"professional_blue"}
1317
+ Rendered posts/_form.html.erb (27.2ms)
1318
+ Rendered posts/new.html.erb (28.3ms)
1319
+ Completed 200 OK in 29ms (Views: 29.1ms | ActiveRecord: 0.0ms)
1320
+
1321
+
1322
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:00 +0700
1323
+ Processing by PostsController#index as HTML
1324
+ Parameters: {"theme"=>"professional_blue"}
1325
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
1326
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.7ms)
1327
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.5ms)
1328
+
1329
+
1330
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:02 +0700
1331
+ Processing by PostsController#new as HTML
1332
+ Parameters: {"theme"=>"professional_blue"}
1333
+ Rendered posts/_form.html.erb (2.4ms)
1334
+ Rendered posts/new.html.erb (3.2ms)
1335
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1336
+
1337
+
1338
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:04 +0700
1339
+ Processing by PostsController#index as HTML
1340
+ Parameters: {"theme"=>"professional_blue"}
1341
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1342
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.6ms)
1343
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1344
+
1345
+
1346
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:05 +0700
1347
+ Processing by PostsController#show as HTML
1348
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1349
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1350
+ Rendered app/themes/professional_blue/views/posts/show.html.erb (1.6ms)
1351
+ Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1352
+
1353
+
1354
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:08 +0700
1355
+ Processing by PostsController#edit as HTML
1356
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1357
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1358
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (3.3ms)
1359
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb (5.4ms)
1360
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.1ms)
1361
+
1362
+
1363
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:10 +0700
1364
+ Processing by PostsController#show as HTML
1365
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1366
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1367
+ Rendered app/themes/professional_blue/views/posts/show.html.erb (1.7ms)
1368
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.2ms)
1369
+
1370
+
1371
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:15 +0700
1372
+ Processing by PostsController#show as HTML
1373
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1374
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1375
+ Rendered app/themes/professional_blue/views/posts/show.html.erb (1.6ms)
1376
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.1ms)
1377
+
1378
+
1379
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:38 +0700
1380
+ Processing by PostsController#index as HTML
1381
+ Parameters: {"theme"=>"professional_blue"}
1382
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1383
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.4ms)
1384
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
1385
+
1386
+
1387
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:38 +0700
1388
+ Processing by PostsController#index as HTML
1389
+ Parameters: {"theme"=>"professional_blue"}
1390
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1391
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (2.4ms)
1392
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.2ms)
1393
+
1394
+
1395
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:06:41 +0700
1396
+ Processing by PostsController#show as HTML
1397
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1398
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1399
+ Rendered app/themes/professional_blue/views/posts/show.html.erb (1.8ms)
1400
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
1401
+
1402
+
1403
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 11:13:24 +0700
1404
+ Processing by PostsController#edit as HTML
1405
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1406
+ Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1407
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (14.2ms)
1408
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb (19.5ms)
1409
+ Completed 200 OK in 35ms (Views: 24.5ms | ActiveRecord: 0.9ms)
1410
+
1411
+
1412
+ Started GET "/posts/1/edit?theme=basic_blue" for 127.0.0.1 at 2013-11-21 11:13:31 +0700
1413
+ Processing by PostsController#edit as HTML
1414
+ Parameters: {"theme"=>"basic_blue", "id"=>"1"}
1415
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1416
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (5.0ms)
1417
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb (7.6ms)
1418
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
1419
+
1420
+
1421
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2013-11-21 11:13:38 +0700
1422
+ Processing by PostsController#edit as HTML
1423
+ Parameters: {"id"=>"1"}
1424
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1425
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (3.5ms)
1426
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb (5.1ms)
1427
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
1428
+
1429
+
1430
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2013-11-21 11:13:40 +0700
1431
+ Processing by PostsController#edit as HTML
1432
+ Parameters: {"id"=>"1"}
1433
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1434
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (3.3ms)
1435
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb (4.9ms)
1436
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.1ms)
1437
+
1438
+
1439
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2013-11-21 13:09:38 +0700
1440
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1441
+ Processing by PostsController#edit as HTML
1442
+ Parameters: {"id"=>"1"}
1443
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1444
+ Rendered app/themes/basic_blue/views/posts/_form.html.erb (29.6ms)
1445
+ Rendered app/themes/basic_blue/views/posts/edit.html.erb within layouts/basic_blue (36.6ms)
1446
+ Completed 200 OK in 63ms (Views: 54.6ms | ActiveRecord: 0.7ms)
1447
+
1448
+
1449
+ Started GET "/posts/1/edit?theme=professional_blue" for 127.0.0.1 at 2013-11-21 13:09:41 +0700
1450
+ Processing by PostsController#edit as HTML
1451
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1452
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1453
+ Rendered app/themes/professional_blue/views/posts/_form.html.erb (3.2ms)
1454
+ Rendered app/themes/professional_blue/views/posts/edit.html.erb within layouts/professional_blue (5.2ms)
1455
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms)
1456
+
1457
+
1458
+ Started GET "/posts/1?theme=professional_blue" for 127.0.0.1 at 2013-11-21 13:09:43 +0700
1459
+ Processing by PostsController#show as HTML
1460
+ Parameters: {"theme"=>"professional_blue", "id"=>"1"}
1461
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1462
+ Rendered app/themes/professional_blue/views/posts/show.html.erb within layouts/professional_blue (1.6ms)
1463
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.2ms)
1464
+
1465
+
1466
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-21 13:09:45 +0700
1467
+ Processing by PostsController#index as HTML
1468
+ Parameters: {"theme"=>"professional_blue"}
1469
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1470
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.4ms)
1471
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms)
1472
+
1473
+
1474
+ Started GET "/posts/new?theme=professional_blue" for 127.0.0.1 at 2013-11-21 13:09:48 +0700
1475
+ Processing by PostsController#new as HTML
1476
+ Parameters: {"theme"=>"professional_blue"}
1477
+ Rendered posts/_form.html.erb (3.0ms)
1478
+ Rendered posts/new.html.erb within layouts/application (4.4ms)
1479
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
1480
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1481
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1482
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1483
+  (0.1ms) SELECT version FROM "schema_migrations"
1484
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1485
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1486
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1487
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1488
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1489
+  (0.1ms) SELECT version FROM "schema_migrations"
1490
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1491
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1492
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1493
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1494
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1495
+  (0.1ms) SELECT version FROM "schema_migrations"
1496
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1497
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1498
+  (2.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1499
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1500
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1501
+  (0.1ms) SELECT version FROM "schema_migrations"
1502
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1503
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1504
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1505
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1506
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1507
+  (0.1ms) SELECT version FROM "schema_migrations"
1508
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1510
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1511
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1512
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1513
+  (0.1ms) SELECT version FROM "schema_migrations"
1514
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1515
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1516
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1517
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1518
+  (0.1ms) SELECT version FROM "schema_migrations"
1519
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1520
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1521
+  (2.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1522
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1523
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1524
+  (0.1ms) SELECT version FROM "schema_migrations"
1525
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1526
+  (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1527
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1528
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1529
+  (0.1ms) SELECT version FROM "schema_migrations"
1530
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1531
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1532
+  (1.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1533
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1534
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1535
+  (0.1ms) SELECT version FROM "schema_migrations"
1536
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1537
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1538
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1539
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1540
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1541
+  (0.1ms) SELECT version FROM "schema_migrations"
1542
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1543
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1544
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1545
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1546
+  (0.1ms) SELECT version FROM "schema_migrations"
1547
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1548
+  (1.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1549
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1550
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1551
+  (0.1ms) SELECT version FROM "schema_migrations"
1552
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1553
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1554
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1555
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1556
+  (0.1ms) SELECT version FROM "schema_migrations"
1557
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1558
+
1559
+
1560
+ Started GET "/posts" for 127.0.0.1 at 2013-11-21 15:53:56 +0700
1561
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1562
+ Processing by PostsController#index as HTML
1563
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
1564
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (7.9ms)
1565
+ Completed 200 OK in 44ms (Views: 41.2ms | ActiveRecord: 0.6ms)
1566
+
1567
+
1568
+ Started GET "/posts" for 127.0.0.1 at 2013-11-22 11:41:35 +0700
1569
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1570
+ Processing by PostsController#index as HTML
1571
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1572
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (7.1ms)
1573
+ Completed 200 OK in 38ms (Views: 36.1ms | ActiveRecord: 0.3ms)
1574
+
1575
+
1576
+ Started GET "/posts?theme=professional_blue" for 127.0.0.1 at 2013-11-22 11:41:40 +0700
1577
+ Processing by PostsController#index as HTML
1578
+ Parameters: {"theme"=>"professional_blue"}
1579
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1580
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
1581
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.1ms)