power_resource 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +6 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +46 -0
  6. data/Rakefile +7 -0
  7. data/app/controllers/power_resource/base_controller.rb +30 -0
  8. data/app/helpers/power_resource/base_helper.rb +148 -0
  9. data/app/views/power_resource/base/_actions.html.erb +1 -0
  10. data/app/views/power_resource/base/_collection.html.erb +28 -0
  11. data/app/views/power_resource/base/_form.html.erb +1 -0
  12. data/app/views/power_resource/base/edit.html.erb +3 -0
  13. data/app/views/power_resource/base/index.html.erb +9 -0
  14. data/app/views/power_resource/base/new.html.erb +3 -0
  15. data/app/views/power_resource/builders/_form_for.html.erb +23 -0
  16. data/app/views/power_resource/builders/_formtastic.html.erb +4 -0
  17. data/lib/power_resource.rb +6 -0
  18. data/lib/power_resource/engine.rb +4 -0
  19. data/lib/power_resource/version.rb +3 -0
  20. data/power_resource.gemspec +31 -0
  21. data/spec/dummy/README.rdoc +28 -0
  22. data/spec/dummy/Rakefile +6 -0
  23. data/spec/dummy/app/assets/images/.keep +0 -0
  24. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  25. data/spec/dummy/app/assets/javascripts/posts.js +2 -0
  26. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  27. data/spec/dummy/app/assets/stylesheets/posts.css +4 -0
  28. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  29. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  30. data/spec/dummy/app/controllers/posts_controller.rb +2 -0
  31. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  32. data/spec/dummy/app/helpers/posts_helper.rb +2 -0
  33. data/spec/dummy/app/mailers/.keep +0 -0
  34. data/spec/dummy/app/models/.keep +0 -0
  35. data/spec/dummy/app/models/concerns/.keep +0 -0
  36. data/spec/dummy/app/models/post.rb +2 -0
  37. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  38. data/spec/dummy/bin/bundle +3 -0
  39. data/spec/dummy/bin/rails +4 -0
  40. data/spec/dummy/bin/rake +4 -0
  41. data/spec/dummy/config.ru +4 -0
  42. data/spec/dummy/config/application.rb +28 -0
  43. data/spec/dummy/config/boot.rb +5 -0
  44. data/spec/dummy/config/database.yml +25 -0
  45. data/spec/dummy/config/environment.rb +5 -0
  46. data/spec/dummy/config/environments/development.rb +29 -0
  47. data/spec/dummy/config/environments/production.rb +80 -0
  48. data/spec/dummy/config/environments/test.rb +36 -0
  49. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  50. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  51. data/spec/dummy/config/initializers/inflections.rb +16 -0
  52. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  53. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  54. data/spec/dummy/config/initializers/session_store.rb +3 -0
  55. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  56. data/spec/dummy/config/locales/en.yml +23 -0
  57. data/spec/dummy/config/routes.rb +3 -0
  58. data/spec/dummy/db/development.sqlite3 +0 -0
  59. data/spec/dummy/db/migrate/20130722165046_create_posts.rb +10 -0
  60. data/spec/dummy/db/schema.rb +23 -0
  61. data/spec/dummy/db/test.sqlite3 +0 -0
  62. data/spec/dummy/lib/assets/.keep +0 -0
  63. data/spec/dummy/log/.keep +0 -0
  64. data/spec/dummy/log/development.log +1715 -0
  65. data/spec/dummy/log/test.log +2 -0
  66. data/spec/dummy/public/404.html +58 -0
  67. data/spec/dummy/public/422.html +58 -0
  68. data/spec/dummy/public/500.html +57 -0
  69. data/spec/dummy/public/favicon.ico +0 -0
  70. data/spec/dummy/spec/controllers/posts_controller_spec.rb +5 -0
  71. data/spec/dummy/spec/helpers/posts_helper_spec.rb +15 -0
  72. data/spec/dummy/spec/models/post_spec.rb +5 -0
  73. data/spec/helpers/base_helper_spec.rb +8 -0
  74. data/spec/spec_helper.rb +15 -0
  75. metadata +269 -0
@@ -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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20130722165046) do
15
+
16
+ create_table "posts", force: true do |t|
17
+ t.string "title"
18
+ t.text "content"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,1715 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-07-22 19:49:35 +0300
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (0.8ms)
6
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:51:01 +0300
10
+
11
+ ActiveRecord::PendingMigrationError (Migrations are pending; run 'rake db:migrate RAILS_ENV=development' to resolve this issue.):
12
+ activerecord (4.0.0) lib/active_record/migration.rb:379:in `check_pending!'
13
+ activerecord (4.0.0) lib/active_record/migration.rb:366:in `call'
14
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
16
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
17
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
18
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
19
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
23
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
24
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
25
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
26
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
27
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
28
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
29
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
30
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
31
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
32
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
33
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
34
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
35
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
36
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
37
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
38
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
39
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
40
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
41
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
42
+
43
+
44
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
45
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
46
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
47
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
48
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
49
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
50
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
51
+ Migrating to CreatePosts (20130722165046)
52
+  (0.0ms) begin transaction
53
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime) 
54
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130722165046"]]
55
+  (2.5ms) commit transaction
56
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
57
+
58
+
59
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:51:17 +0300
60
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
61
+
62
+ AbstractController::ActionNotFound (The action 'index' could not be found for PostsController):
63
+ actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process'
64
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
65
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
66
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
67
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
68
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
69
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
70
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
71
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
72
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
73
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
74
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
75
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
76
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
77
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
78
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
79
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
80
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
81
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
82
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
83
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
84
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
85
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
86
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
87
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
88
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
89
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
90
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
91
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
92
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
93
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
94
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
95
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
96
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
97
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
98
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
99
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
100
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
101
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
102
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
103
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
104
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
105
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
106
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
107
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
108
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
109
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
110
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
111
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
112
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
113
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
114
+
115
+
116
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
117
+
118
+
119
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:51:39 +0300
120
+ Processing by PostsController#index as HTML
121
+ Completed 500 Internal Server Error in 0ms
122
+
123
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
124
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
125
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
126
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
127
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
128
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
129
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
130
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
131
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
132
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
133
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
134
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
135
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
136
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
137
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
138
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
139
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
140
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
141
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
142
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
143
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
144
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
145
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
146
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
147
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
148
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
149
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
150
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
151
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
152
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
153
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
154
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
155
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
156
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
157
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
158
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
159
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
160
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
161
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
162
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
163
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
164
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
165
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
166
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
167
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
168
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
169
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
170
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
171
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
172
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
173
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
174
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
175
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
176
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
177
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
178
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
179
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
180
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
181
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
182
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
183
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
184
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
185
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
186
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
187
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
188
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
189
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
190
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
191
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
192
+
193
+
194
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
195
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
196
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.2ms)
197
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
198
+
199
+
200
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:54:46 +0300
201
+ Processing by PostsController#index as HTML
202
+ Completed 500 Internal Server Error in 0ms
203
+
204
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
205
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
206
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
207
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
208
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
209
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
210
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
211
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
212
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
213
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
214
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
215
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
216
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
217
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
218
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
219
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
220
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
221
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
222
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
223
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
224
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
225
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
226
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
227
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
228
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
229
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
230
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
231
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
232
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
233
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
234
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
235
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
236
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
237
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
238
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
239
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
240
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
241
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
242
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
243
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
244
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
245
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
246
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
247
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
248
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
249
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
250
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
251
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
252
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
253
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
254
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
255
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
256
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
257
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
258
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
259
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
260
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
261
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
262
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
263
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
264
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
265
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
266
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
267
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
268
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
269
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
270
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
271
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
272
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
273
+
274
+
275
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
276
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
277
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
278
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
279
+
280
+
281
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:17 +0300
282
+ Processing by PostsController#index as HTML
283
+ Completed 500 Internal Server Error in 0ms
284
+
285
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
286
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
287
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
288
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
289
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
290
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
291
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
292
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
293
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
294
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
295
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
296
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
297
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
298
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
299
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
300
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
301
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
302
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
303
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
304
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
305
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
306
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
307
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
308
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
309
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
310
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
311
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
312
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
313
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
314
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
315
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
316
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
317
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
318
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
319
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
320
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
321
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
322
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
323
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
324
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
325
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
326
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
327
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
328
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
329
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
330
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
331
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
332
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
333
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
334
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
335
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
336
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
337
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
338
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
339
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
340
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
341
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
342
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
343
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
344
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
345
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
346
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
347
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
348
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
349
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
350
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
351
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
352
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
353
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
354
+
355
+
356
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.3ms)
357
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
358
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
359
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.3ms)
360
+
361
+
362
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:18 +0300
363
+ Processing by PostsController#index as HTML
364
+ Completed 500 Internal Server Error in 0ms
365
+
366
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
367
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
368
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
369
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
370
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
371
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
372
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
373
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
374
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
375
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
376
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
377
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
378
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
379
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
380
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
381
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
382
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
383
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
384
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
385
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
386
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
387
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
388
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
389
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
390
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
391
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
392
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
393
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
394
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
395
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
396
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
397
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
398
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
399
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
400
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
401
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
402
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
403
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
404
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
405
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
406
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
407
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
408
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
409
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
410
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
411
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
412
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
413
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
414
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
415
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
416
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
417
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
418
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
419
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
420
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
421
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
422
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
423
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
424
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
425
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
426
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
427
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
428
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
429
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
430
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
431
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
432
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
433
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
434
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
435
+
436
+
437
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
438
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
439
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
440
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
441
+
442
+
443
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:42 +0300
444
+ Processing by PostsController#index as HTML
445
+ Completed 500 Internal Server Error in 0ms
446
+
447
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
448
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
449
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
450
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
451
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
452
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
453
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
454
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
455
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
456
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
457
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
458
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
459
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
460
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
461
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
462
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
463
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
464
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
465
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
466
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
467
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
468
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
469
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
470
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
471
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
472
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
473
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
474
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
475
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
476
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
477
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
478
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
479
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
480
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
481
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
482
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
483
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
484
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
485
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
486
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
487
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
488
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
489
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
490
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
491
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
492
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
493
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
494
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
495
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
496
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
497
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
498
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
499
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
500
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
501
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
502
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
503
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
504
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
505
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
506
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
507
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
508
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
509
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
510
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
511
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
512
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
513
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
514
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
515
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
516
+
517
+
518
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
519
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
520
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
521
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
522
+
523
+
524
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:42 +0300
525
+ Processing by PostsController#index as HTML
526
+ Completed 500 Internal Server Error in 0ms
527
+
528
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
529
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
530
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
531
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
532
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
533
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
534
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
535
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
536
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
537
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
538
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
539
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
540
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
541
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
542
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
543
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
544
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
545
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
546
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
547
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
548
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
549
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
550
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
551
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
552
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
553
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
554
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
555
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
556
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
557
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
558
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
559
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
560
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
561
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
562
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
563
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
564
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
565
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
566
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
567
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
568
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
569
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
570
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
571
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
572
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
573
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
574
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
575
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
576
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
577
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
578
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
579
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
580
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
581
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
582
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
583
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
584
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
585
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
586
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
587
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
588
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
589
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
590
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
591
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
592
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
593
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
594
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
595
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
596
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
597
+
598
+
599
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
600
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
601
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
602
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
603
+
604
+
605
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:42 +0300
606
+ Processing by PostsController#index as HTML
607
+ Completed 500 Internal Server Error in 0ms
608
+
609
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
610
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
611
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
612
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
613
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
614
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
615
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
616
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
617
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
618
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
619
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
620
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
621
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
622
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
623
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
624
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
625
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
626
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
627
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
628
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
629
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
630
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
631
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
632
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
633
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
634
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
635
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
636
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
637
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
638
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
639
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
640
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
641
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
642
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
643
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
644
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
645
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
646
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
647
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
648
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
649
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
650
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
651
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
652
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
653
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
654
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
655
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
656
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
657
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
658
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
659
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
660
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
661
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
662
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
663
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
664
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
665
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
666
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
667
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
668
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
669
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
670
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
671
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
672
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
673
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
674
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
675
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
676
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
677
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
678
+
679
+
680
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
681
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
682
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
683
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
684
+
685
+
686
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:43 +0300
687
+ Processing by PostsController#index as HTML
688
+ Completed 500 Internal Server Error in 0ms
689
+
690
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
691
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
692
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
693
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
694
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
695
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
696
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
697
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__4309471333632775021__process_action__callbacks'
698
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
699
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
700
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
701
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
702
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
703
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
704
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
705
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
706
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
707
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
708
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
709
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
710
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
711
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
712
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
713
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
714
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
715
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
716
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
717
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
718
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
719
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
720
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
721
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
722
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
723
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
724
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
725
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
726
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
727
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
728
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
729
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
730
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
731
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
732
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4045786854538341846__call__callbacks'
733
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
734
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
735
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
736
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
737
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
738
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
739
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
740
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
741
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
742
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
743
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
744
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
745
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
746
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
747
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
748
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
749
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
750
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
751
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
752
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
753
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
754
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
755
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
756
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
757
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
758
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
759
+
760
+
761
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
762
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
763
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
764
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
765
+
766
+
767
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:50 +0300
768
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
769
+ Processing by PostsController#index as HTML
770
+ Completed 500 Internal Server Error in 0ms
771
+
772
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
773
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
774
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
775
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
776
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
777
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
778
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
779
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__1019952177222574465__process_action__callbacks'
780
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
781
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
782
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
783
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
784
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
785
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
786
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
787
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
788
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
789
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
790
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
791
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
792
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
793
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
794
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
795
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
796
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
797
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
798
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
799
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
800
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
801
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
802
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
803
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
804
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
805
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
806
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
807
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
808
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
809
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
810
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
811
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
812
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
813
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
814
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2918500301315365192__call__callbacks'
815
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
816
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
817
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
818
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
819
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
820
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
821
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
822
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
823
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
824
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
825
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
826
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
827
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
828
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
829
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
830
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
831
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
832
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
833
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
834
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
835
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
836
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
837
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
838
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
839
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
840
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
841
+
842
+
843
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
844
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
845
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.5ms)
846
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.8ms)
847
+
848
+
849
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:56:51 +0300
850
+ Processing by PostsController#index as HTML
851
+ Completed 500 Internal Server Error in 0ms
852
+
853
+ NoMethodError (undefined method `all' for PowerResource::Base:Class):
854
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:26:in `collection'
855
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:7:in `index'
856
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
857
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
858
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
859
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
860
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__1019952177222574465__process_action__callbacks'
861
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
862
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
863
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
864
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
865
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
866
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
867
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
868
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
869
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
870
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
871
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
872
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
873
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
874
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
875
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
876
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
877
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
878
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
879
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
880
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
881
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
882
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
883
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
884
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
885
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
886
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
887
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
888
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
889
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
890
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
891
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
892
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
893
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
894
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
895
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2918500301315365192__call__callbacks'
896
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
897
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
898
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
899
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
900
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
901
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
902
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
903
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
904
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
905
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
906
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
907
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
908
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
909
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
910
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
911
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
912
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
913
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
914
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
915
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
916
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
917
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
918
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
919
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
920
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
921
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
922
+
923
+
924
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
925
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
926
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
927
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
928
+
929
+
930
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:57:57 +0300
931
+ Processing by PostsController#index as HTML
932
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.2ms)
933
+ Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
934
+
935
+
936
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:57:57 +0300
937
+
938
+
939
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:57:57 +0300
940
+
941
+
942
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:57:57 +0300
943
+
944
+
945
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:57:57 +0300
946
+
947
+
948
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:57:58 +0300
949
+ Processing by PostsController#index as HTML
950
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
951
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
952
+
953
+
954
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:57:58 +0300
955
+
956
+
957
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:57:58 +0300
958
+
959
+
960
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:57:58 +0300
961
+
962
+
963
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:57:58 +0300
964
+
965
+
966
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
967
+ Processing by PostsController#index as HTML
968
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
969
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
970
+
971
+
972
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
973
+
974
+
975
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
976
+
977
+
978
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
979
+
980
+
981
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
982
+
983
+
984
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
985
+ Processing by PostsController#index as HTML
986
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
987
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
988
+
989
+
990
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
991
+
992
+
993
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
994
+
995
+
996
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
997
+
998
+
999
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:35 +0300
1000
+
1001
+
1002
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:58:36 +0300
1003
+ Processing by PostsController#index as HTML
1004
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
1005
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1006
+
1007
+
1008
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:36 +0300
1009
+
1010
+
1011
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:36 +0300
1012
+
1013
+
1014
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:58:36 +0300
1015
+
1016
+
1017
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:58:36 +0300
1018
+
1019
+
1020
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1021
+ Processing by PostsController#index as HTML
1022
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
1023
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1024
+
1025
+
1026
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1027
+
1028
+
1029
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1030
+
1031
+
1032
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1033
+
1034
+
1035
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1036
+
1037
+
1038
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1039
+ Processing by PostsController#index as HTML
1040
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
1041
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1042
+
1043
+
1044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1045
+
1046
+
1047
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1048
+
1049
+
1050
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1051
+
1052
+
1053
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:23 +0300
1054
+
1055
+
1056
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1057
+ Processing by PostsController#index as HTML
1058
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
1059
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1060
+
1061
+
1062
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1063
+
1064
+
1065
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1066
+
1067
+
1068
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1069
+
1070
+
1071
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1072
+
1073
+
1074
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1075
+ Processing by PostsController#index as HTML
1076
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (0.0ms)
1077
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1078
+
1079
+
1080
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1081
+
1082
+
1083
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1084
+
1085
+
1086
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1087
+
1088
+
1089
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:24 +0300
1090
+
1091
+
1092
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:46 +0300
1093
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1094
+ Processing by PostsController#index as HTML
1095
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1096
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (5.4ms)
1097
+ Completed 200 OK in 54ms (Views: 52.7ms | ActiveRecord: 0.3ms)
1098
+
1099
+
1100
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:46 +0300
1101
+
1102
+
1103
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:46 +0300
1104
+
1105
+
1106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:46 +0300
1107
+
1108
+
1109
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:46 +0300
1110
+
1111
+
1112
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 19:59:59 +0300
1113
+ Processing by PostsController#index as HTML
1114
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1115
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (1.4ms)
1116
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1117
+
1118
+
1119
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:59 +0300
1120
+
1121
+
1122
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 19:59:59 +0300
1123
+
1124
+
1125
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:59 +0300
1126
+
1127
+
1128
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 19:59:59 +0300
1129
+
1130
+
1131
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1132
+ Processing by PostsController#index as HTML
1133
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1134
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (1.1ms)
1135
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1136
+
1137
+
1138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1139
+
1140
+
1141
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1142
+
1143
+
1144
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1145
+
1146
+
1147
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1148
+
1149
+
1150
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1151
+ Processing by PostsController#index as HTML
1152
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1153
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (1.1ms)
1154
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1155
+
1156
+
1157
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1158
+
1159
+
1160
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1161
+
1162
+
1163
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1164
+
1165
+
1166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:00 +0300
1167
+
1168
+
1169
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:00:08 +0300
1170
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1171
+ Processing by PostsController#index as HTML
1172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1173
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (4.9ms)
1174
+ Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 0.3ms)
1175
+
1176
+
1177
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:08 +0300
1178
+
1179
+
1180
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:08 +0300
1181
+
1182
+
1183
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:08 +0300
1184
+
1185
+
1186
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:08 +0300
1187
+
1188
+
1189
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:00:09 +0300
1190
+ Processing by PostsController#index as HTML
1191
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1192
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (1.5ms)
1193
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
1194
+
1195
+
1196
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:09 +0300
1197
+
1198
+
1199
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:09 +0300
1200
+
1201
+
1202
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:00:09 +0300
1203
+
1204
+
1205
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:00:09 +0300
1206
+
1207
+
1208
+ Started GET "/posts/new" for 127.0.0.1 at 2013-07-22 20:00:22 +0300
1209
+ Processing by PostsController#new as HTML
1210
+ Rendered /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb (6.6ms)
1211
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb (31.4ms)
1212
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb within layouts/application (34.0ms)
1213
+ Completed 500 Internal Server Error in 36ms
1214
+
1215
+ ActionView::Template::Error (undefined method `semantic_form_for' for #<#<Class:0x00000003f2aaa0>:0x00000004061e78>):
1216
+ 1: <%= semantic_form_for(resource, url: resource_form_path) do |f| %>
1217
+ 2: <%= f.inputs(*fields) %>
1218
+ 3: <%= f.actions %>
1219
+ 4: <% end %>
1220
+ /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb:1:in `__home_jari_code_power_resource_app_views_power_resource_builders__formtastic_html_erb___2143459979874817681_6061400'
1221
+ actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
1222
+ activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
1223
+ actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
1224
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
1225
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
1226
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1227
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1228
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1229
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1230
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1231
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:278:in `render'
1232
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1233
+ actionpack (4.0.0) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1234
+ /home/jari/code/power_resource/app/helpers/power_resource/base_helper.rb:115:in `render_form'
1235
+ /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb:1:in `__home_jari_code_power_resource_app_views_power_resource_base__form_html_erb___1582450205616167210_33963280'
1236
+ actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
1237
+ activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
1238
+ actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
1239
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
1240
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
1241
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1242
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1243
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1244
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1245
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1246
+ actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:278:in `render'
1247
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1248
+ actionpack (4.0.0) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1249
+ /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb:3:in `__home_jari_code_power_resource_app_views_power_resource_base_new_html_erb__751657117439591080_33773240'
1250
+ actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
1251
+ activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
1252
+ actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
1253
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1254
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1255
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1256
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1257
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1258
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1259
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1260
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1261
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1262
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
1263
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1264
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1265
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
1266
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1267
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1268
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1269
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1270
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
1271
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
1272
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1273
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1274
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1275
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1276
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1277
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1278
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1279
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
1280
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1281
+ actionpack (4.0.0) lib/action_controller/metal/responder.rb:233:in `default_render'
1282
+ actionpack (4.0.0) lib/action_controller/metal/responder.rb:161:in `to_html'
1283
+ responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html'
1284
+ actionpack (4.0.0) lib/action_controller/metal/responder.rb:154:in `respond'
1285
+ actionpack (4.0.0) lib/action_controller/metal/responder.rb:147:in `call'
1286
+ actionpack (4.0.0) lib/action_controller/metal/mime_responds.rb:330:in `respond_with'
1287
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:19:in `new'
1288
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1289
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1290
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1291
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1292
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__303996362424165055__process_action__callbacks'
1293
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1294
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1295
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1296
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1297
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1298
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1299
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1300
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1301
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1302
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1303
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1304
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1305
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1306
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1307
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1308
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1309
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1310
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1311
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1312
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1313
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1314
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1315
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1316
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1317
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1318
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1319
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1320
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1321
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1322
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1323
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1324
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1325
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1326
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1327
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4095345181206410740__call__callbacks'
1328
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1329
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1330
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1331
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1332
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1333
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1334
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1335
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1336
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1337
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1338
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1339
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1340
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1341
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1342
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1343
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1344
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1345
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1346
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1347
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1348
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1349
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1350
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1351
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1352
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1353
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1354
+
1355
+
1356
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1357
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1358
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms)
1359
+
1360
+
1361
+ Started GET "/posts/new" for 127.0.0.1 at 2013-07-22 20:01:14 +0300
1362
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1363
+ Processing by PostsController#new as HTML
1364
+ Rendered /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb (61.5ms)
1365
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb (62.4ms)
1366
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb within layouts/application (67.5ms)
1367
+ Completed 200 OK in 81ms (Views: 79.3ms | ActiveRecord: 0.3ms)
1368
+
1369
+
1370
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:01:14 +0300
1371
+
1372
+
1373
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:01:14 +0300
1374
+
1375
+
1376
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:01:14 +0300
1377
+
1378
+
1379
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:01:14 +0300
1380
+
1381
+
1382
+ Started POST "/posts" for 127.0.0.1 at 2013-07-22 20:01:18 +0300
1383
+ Processing by PostsController#create as HTML
1384
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h0TN/7XOonQQGPtSn8WvslYyYgM0SP9QTksYVO+zW1g=", "post"=>{"title"=>"", "content"=>""}, "commit"=>"Create Post"}
1385
+ Completed 500 Internal Server Error in 1ms
1386
+
1387
+ ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
1388
+ activemodel (4.0.0) lib/active_model/forbidden_attributes_protection.rb:21:in `sanitize_for_mass_assignment'
1389
+ activerecord (4.0.0) lib/active_record/attribute_assignment.rb:21:in `assign_attributes'
1390
+ activerecord (4.0.0) lib/active_record/core.rb:192:in `initialize'
1391
+ activerecord (4.0.0) lib/active_record/inheritance.rb:27:in `new'
1392
+ activerecord (4.0.0) lib/active_record/inheritance.rb:27:in `new'
1393
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:53:in `build_resource'
1394
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:31:in `create'
1395
+ /home/jari/code/power_resource/app/controllers/power_resource/base_controller.rb:7:in `create'
1396
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1397
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1398
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1399
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1400
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__1409361912666688162__process_action__callbacks'
1401
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1402
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1403
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1404
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1405
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1406
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1407
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1408
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1409
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1410
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1411
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1412
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1413
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1414
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1415
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1416
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1417
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1418
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1419
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1420
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1421
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1422
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1423
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1424
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1425
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1426
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1427
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1428
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1429
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1430
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1431
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1432
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1433
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1434
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1435
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4559800302855442459__call__callbacks'
1436
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1437
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1438
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1439
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1440
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1441
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1442
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1443
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1444
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1445
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1446
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1447
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1448
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1449
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1450
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1451
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1452
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1453
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1454
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1455
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1456
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1457
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1458
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1459
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1460
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1461
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1462
+
1463
+
1464
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1465
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1466
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
1467
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
1468
+
1469
+
1470
+ Started POST "/posts" for 127.0.0.1 at 2013-07-22 20:07:49 +0300
1471
+ Processing by PostsController#create as HTML
1472
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h0TN/7XOonQQGPtSn8WvslYyYgM0SP9QTksYVO+zW1g=", "post"=>{"title"=>"", "content"=>""}, "commit"=>"Create Post"}
1473
+ Completed 500 Internal Server Error in 1ms
1474
+
1475
+ ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
1476
+ activemodel (4.0.0) lib/active_model/forbidden_attributes_protection.rb:21:in `sanitize_for_mass_assignment'
1477
+ activerecord (4.0.0) lib/active_record/attribute_assignment.rb:21:in `assign_attributes'
1478
+ activerecord (4.0.0) lib/active_record/core.rb:192:in `initialize'
1479
+ activerecord (4.0.0) lib/active_record/inheritance.rb:27:in `new'
1480
+ activerecord (4.0.0) lib/active_record/inheritance.rb:27:in `new'
1481
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/base_helpers.rb:53:in `build_resource'
1482
+ /home/jari/.rvm/gems/ruby-2.0.0-p247/bundler/gems/inherited_resources-2656ca0cea51/lib/inherited_resources/actions.rb:31:in `create'
1483
+ /home/jari/code/power_resource/app/controllers/power_resource/base_controller.rb:7:in `create'
1484
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1485
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1486
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1487
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1488
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__1409361912666688162__process_action__callbacks'
1489
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1490
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1491
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1492
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1493
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1494
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1495
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1496
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1497
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1498
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1499
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1500
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1501
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1502
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1503
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1504
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1505
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1506
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1507
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1508
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1509
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1510
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1511
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1512
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1513
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1514
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1515
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1516
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1517
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1518
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1519
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1520
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1521
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
1522
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1523
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4559800302855442459__call__callbacks'
1524
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1525
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1526
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1527
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1528
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1529
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1530
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1531
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1532
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1533
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1534
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1535
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1536
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1537
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1538
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1539
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1540
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1541
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1542
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1543
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1544
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1545
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1546
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1547
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1548
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1549
+ /home/jari/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1550
+
1551
+
1552
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
1553
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1554
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
1555
+ Rendered /home/jari/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.6ms)
1556
+
1557
+
1558
+ Started POST "/posts" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1559
+ Processing by PostsController#create as HTML
1560
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h0TN/7XOonQQGPtSn8WvslYyYgM0SP9QTksYVO+zW1g=", "post"=>{"title"=>"", "content"=>""}, "commit"=>"Create Post"}
1561
+ Unpermitted parameters: utf8, authenticity_token, commit
1562
+  (0.0ms) begin transaction
1563
+ SQL (4.2ms) INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", ""], ["created_at", Mon, 22 Jul 2013 17:08:18 UTC +00:00], ["title", ""], ["updated_at", Mon, 22 Jul 2013 17:08:18 UTC +00:00]]
1564
+  (2.6ms) commit transaction
1565
+ Redirected to http://localhost:3000/posts
1566
+ Completed 302 Found in 19ms (ActiveRecord: 7.2ms)
1567
+
1568
+
1569
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1570
+ Processing by PostsController#index as HTML
1571
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1572
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.6ms)
1573
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_collection.html.erb (1.9ms)
1574
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (4.3ms)
1575
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.1ms)
1576
+
1577
+
1578
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1579
+
1580
+
1581
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1582
+
1583
+
1584
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1585
+
1586
+
1587
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:18 +0300
1588
+
1589
+
1590
+ Started GET "/posts/new" for 127.0.0.1 at 2013-07-22 20:08:21 +0300
1591
+ Processing by PostsController#new as HTML
1592
+ Rendered /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb (6.7ms)
1593
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb (7.2ms)
1594
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb within layouts/application (8.3ms)
1595
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1596
+
1597
+
1598
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:21 +0300
1599
+
1600
+
1601
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:21 +0300
1602
+
1603
+
1604
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:21 +0300
1605
+
1606
+
1607
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:21 +0300
1608
+
1609
+
1610
+ Started POST "/posts" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1611
+ Processing by PostsController#create as HTML
1612
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h0TN/7XOonQQGPtSn8WvslYyYgM0SP9QTksYVO+zW1g=", "post"=>{"title"=>"Test", "content"=>"test"}, "commit"=>"Create Post"}
1613
+ Unpermitted parameters: utf8, authenticity_token, commit
1614
+  (0.1ms) begin transaction
1615
+ SQL (0.2ms) INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "test"], ["created_at", Mon, 22 Jul 2013 17:08:23 UTC +00:00], ["title", "Test"], ["updated_at", Mon, 22 Jul 2013 17:08:23 UTC +00:00]]
1616
+  (4.5ms) commit transaction
1617
+ Redirected to http://localhost:3000/posts
1618
+ Completed 302 Found in 8ms (ActiveRecord: 4.7ms)
1619
+
1620
+
1621
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1622
+ Processing by PostsController#index as HTML
1623
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1624
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.3ms)
1625
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.2ms)
1626
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_collection.html.erb (1.9ms)
1627
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (3.8ms)
1628
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.1ms)
1629
+
1630
+
1631
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1632
+
1633
+
1634
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1635
+
1636
+
1637
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1638
+
1639
+
1640
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:23 +0300
1641
+
1642
+
1643
+ Started GET "/posts/new" for 127.0.0.1 at 2013-07-22 20:08:35 +0300
1644
+ Processing by PostsController#new as HTML
1645
+ Rendered /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb (12.5ms)
1646
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb (12.9ms)
1647
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb within layouts/application (14.1ms)
1648
+ Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.3ms)
1649
+
1650
+
1651
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:35 +0300
1652
+
1653
+
1654
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:35 +0300
1655
+
1656
+
1657
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:35 +0300
1658
+
1659
+
1660
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:35 +0300
1661
+
1662
+
1663
+ Started POST "/posts" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1664
+ Processing by PostsController#create as HTML
1665
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h0TN/7XOonQQGPtSn8WvslYyYgM0SP9QTksYVO+zW1g=", "post"=>{"title"=>"Testing", "content"=>"testing"}, "commit"=>"Create Post"}
1666
+ Unpermitted parameters: title
1667
+ Unpermitted parameters: utf8, authenticity_token, commit
1668
+  (0.1ms) begin transaction
1669
+ SQL (0.3ms) INSERT INTO "posts" ("content", "created_at", "updated_at") VALUES (?, ?, ?) [["content", "testing"], ["created_at", Mon, 22 Jul 2013 17:08:39 UTC +00:00], ["updated_at", Mon, 22 Jul 2013 17:08:39 UTC +00:00]]
1670
+  (4.8ms) commit transaction
1671
+ Redirected to http://localhost:3000/posts
1672
+ Completed 302 Found in 10ms (ActiveRecord: 5.2ms)
1673
+
1674
+
1675
+ Started GET "/posts" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1676
+ Processing by PostsController#index as HTML
1677
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1678
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.7ms)
1679
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.3ms)
1680
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_actions.html.erb (0.2ms)
1681
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_collection.html.erb (31.0ms)
1682
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/index.html.erb within layouts/application (33.2ms)
1683
+ Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.1ms)
1684
+
1685
+
1686
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1687
+
1688
+
1689
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1690
+
1691
+
1692
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1693
+
1694
+
1695
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:08:39 +0300
1696
+
1697
+
1698
+ Started GET "/posts/new" for 127.0.0.1 at 2013-07-22 20:09:59 +0300
1699
+ Processing by PostsController#new as HTML
1700
+ Rendered /home/jari/code/power_resource/app/views/power_resource/builders/_formtastic.html.erb (13.1ms)
1701
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/_form.html.erb (13.6ms)
1702
+ Rendered /home/jari/code/power_resource/app/views/power_resource/base/new.html.erb within layouts/application (14.8ms)
1703
+ Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms)
1704
+
1705
+
1706
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-22 20:09:59 +0300
1707
+
1708
+
1709
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-22 20:09:59 +0300
1710
+
1711
+
1712
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-07-22 20:09:59 +0300
1713
+
1714
+
1715
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-07-22 20:09:59 +0300