(1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateOpayPayments (20130321114023)  (0.1ms) begin transaction  (0.8ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session_id" varchar(255) NOT NULL, "provider" varchar(255) NOT NULL, "amount" integer NOT NULL, "finished" boolean DEFAULT 'f' NOT NULL, "status" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "index_opay_payments_on_payable_id_and_payable_type" ON "opay_payments" ("payable_id", "payable_type")  (0.5ms) CREATE UNIQUE INDEX "index_opay_payments_on_session_id" ON "opay_payments" ("session_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130321114023"]]  (1.8ms) commit transaction Migrating to CreateOrders (20130326152550)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "amount" varchar(255), "finished" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130326152550"]]  (1.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/" for 127.0.0.1 at 2013-09-11 15:34:14 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (4.8ms) Completed 200 OK in 211ms (Views: 168.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:34:15 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:34:15 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:34:15 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:34:15 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:34:15 +0200 Started GET "/orders/new" for 127.0.0.1 at 2013-09-11 15:37:43 +0200 Processing by OrdersController#new as HTML Rendered orders/_form.html.erb (96.7ms) Rendered orders/new.html.erb within layouts/application (115.1ms) Completed 200 OK in 150ms (Views: 146.2ms | ActiveRecord: 0.5ms) Started POST "/orders" for 127.0.0.1 at 2013-09-11 15:38:16 +0200 Processing by OrdersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "order"=>{"name"=>"cos", "amount"=>"21"}, "commit"=>"Create Order"} Completed 500 Internal Server Error in 1ms ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): app/controllers/orders_controller.rb:24:in `create' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.1ms) Started POST "/orders" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Processing by OrdersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "order"=>{"name"=>"cos", "amount"=>"21"}, "commit"=>"Create Order"}  (0.1ms) begin transaction SQL (3.0ms) INSERT INTO "orders" ("amount", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["amount", "21"], ["created_at", Wed, 11 Sep 2013 13:38:50 UTC +00:00], ["name", "cos"], ["updated_at", Wed, 11 Sep 2013 13:38:50 UTC +00:00]]  (4.0ms) commit transaction Redirected to http://localhost:3000/orders/1 Completed 302 Found in 29ms (ActiveRecord: 7.6ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (56.7ms) Completed 200 OK in 83ms (Views: 80.3ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:38:50 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:39:13 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (18.6ms) Completed 200 OK in 137ms (Views: 76.1ms | ActiveRecord: 4.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:40:39 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:40:42 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:00 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (18.8ms) Completed 200 OK in 140ms (Views: 80.0ms | ActiveRecord: 4.1ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:02 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:13 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:16 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:17 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:41:18 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:43:40 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.0ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (55.1ms) Completed 200 OK in 103ms (Views: 76.0ms | ActiveRecord: 4.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:43:43 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:19 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:45:24 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:45:42 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (56.8ms) Completed 200 OK in 103ms (Views: 77.8ms | ActiveRecord: 4.4ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.4ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (20.7ms) Completed 200 OK in 112ms (Views: 84.4ms | ActiveRecord: 4.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:20 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.0ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:47:26 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:34 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.0ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:48:36 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:42 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:43 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:43 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:44 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:48:44 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:16 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (20.7ms) Completed 200 OK in 106ms (Views: 81.8ms | ActiveRecord: 4.0ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:19 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.4ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:20 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:21 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 15:56:29 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 15:56:40 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:01:52 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:01:54 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:02:40 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 107ms (Views: 82.3ms | ActiveRecord: 4.0ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:02:45 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:02:51 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:03:10 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:03:12 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:03:34 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:03:50 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:05:25 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.0ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (21.1ms) Completed 200 OK in 108ms (Views: 80.1ms | ActiveRecord: 3.9ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:06:34 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.4ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:06:36 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:15:01 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:15:03 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:15:28 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (21.0ms) Completed 200 OK in 104ms (Views: 80.4ms | ActiveRecord: 3.9ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:15:30 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.8ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-09-11 16:15:33 +0200 Processing by OrdersController#index as HTML Order Load (0.3ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (3.4ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:15:34 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:15:34 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:34 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:34 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:34 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:15:36 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:16:08 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.0ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (61.1ms) Completed 200 OK in 108ms (Views: 82.3ms | ActiveRecord: 4.3ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:15 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:17:19 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.9ms) Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:17:20 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:17:20 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:17:41 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:18:16 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (19.4ms) Completed 200 OK in 104ms (Views: 79.3ms | ActiveRecord: 3.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:18:17 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:18:17 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:18:17 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:18:17 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:18:17 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:18:20 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:18:32 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Processing by OrdersController#index as HTML Order Load (0.1ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (18.7ms) Completed 200 OK in 85ms (Views: 78.9ms | ActiveRecord: 1.4ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:31 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (18.0ms) Completed 200 OK in 24ms (Views: 19.9ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:19:33 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:22:03 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:22:47 +0200 DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:24:12 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (56.8ms) Completed 200 OK in 106ms (Views: 77.4ms | ActiveRecord: 4.9ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:24:13 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:24:13 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:13 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:13 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:13 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:24:46 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (3.0ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:24:46 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:47 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:24:47 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:47 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:24:47 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (2.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:00 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (2.3ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:53 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (1.5ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:25:54 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:26:05 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:27:46 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]]  (0.1ms) begin transaction Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'zppxd8Xcjxi9sJNBuMds' ORDER BY "opay_payments"."id" ASC LIMIT 1 SQL (1.8ms) INSERT INTO "opay_payments" ("amount", "created_at", "payable_id", "payable_type", "provider", "session_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["amount", 21], ["created_at", Wed, 11 Sep 2013 14:27:46 UTC +00:00], ["payable_id", 1], ["payable_type", "Order"], ["provider", "payu"], ["session_id", "zppxd8Xcjxi9sJNBuMds"], ["updated_at", Wed, 11 Sep 2013 14:27:46 UTC +00:00]]  (3.9ms) commit transaction Rendered orders/show.html.erb within layouts/application (43.4ms) Completed 200 OK in 48ms (Views: 40.4ms | ActiveRecord: 6.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = '1vVRywaC777Jpn6mxWt8' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "1vVRywaC777Jpn6mxWt8"], ["updated_at", Wed, 11 Sep 2013 14:27:50 UTC +00:00]]  (2.7ms) commit transaction Rendered orders/show.html.erb within layouts/application (10.7ms) Completed 200 OK in 15ms (Views: 10.7ms | ActiveRecord: 3.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:27:50 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'piPsZ75qu4pD89Hmv3xz' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "piPsZ75qu4pD89Hmv3xz"], ["updated_at", Wed, 11 Sep 2013 14:28:07 UTC +00:00]]  (2.3ms) commit transaction Rendered orders/show.html.erb within layouts/application (13.3ms) Completed 200 OK in 18ms (Views: 13.5ms | ActiveRecord: 3.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:07 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'D7wb4r4ivNroL6jBu8sM' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "D7wb4r4ivNroL6jBu8sM"], ["updated_at", Wed, 11 Sep 2013 14:28:15 UTC +00:00]]  (1.7ms) commit transaction Rendered orders/show.html.erb within layouts/application (10.8ms) Completed 200 OK in 17ms (Views: 13.0ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:15 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:28:21 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'PwnnzjQfVQDUs1K9U9Vp' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "PwnnzjQfVQDUs1K9U9Vp"], ["updated_at", Wed, 11 Sep 2013 14:28:21 UTC +00:00]]  (1.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (8.1ms) Completed 200 OK in 13ms (Views: 9.4ms | ActiveRecord: 2.4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:21 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:22 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:28:22 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:22 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:28:22 +0200 Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:28:24 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (33.3ms) Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:28:42 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.5ms) Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:28:57 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.1ms) Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:29:20 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.9ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:30:43 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'DUxFqrSgSev6rVbJxBg1' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.7ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "DUxFqrSgSev6rVbJxBg1"], ["updated_at", Wed, 11 Sep 2013 14:30:44 UTC +00:00]]  (2.7ms) commit transaction Rendered orders/show.html.erb within layouts/application (88.5ms) Completed 200 OK in 111ms (Views: 88.5ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'iG84q4NVyYXCqEhvz9K8' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "iG84q4NVyYXCqEhvz9K8"], ["updated_at", Wed, 11 Sep 2013 14:30:44 UTC +00:00]]  (1.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (8.6ms) Completed 200 OK in 15ms (Views: 10.9ms | ActiveRecord: 2.7ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:30:44 +0200 Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:30:45 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.3ms) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'mpJUAyUJy1WZ63qzypAJ' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "mpJUAyUJy1WZ63qzypAJ"], ["updated_at", Wed, 11 Sep 2013 14:32:00 UTC +00:00]]  (2.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (8.4ms) Completed 200 OK in 13ms (Views: 8.5ms | ActiveRecord: 3.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:00 +0200 Started PATCH "/opay/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:32:02 +0200 ActionController::RoutingError (No route matches [PATCH] "/opay/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.8ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:32:19 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (2.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'zzasUMb2c2zyDAqFPXq5' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (1.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "zzasUMb2c2zyDAqFPXq5"], ["updated_at", Wed, 11 Sep 2013 14:32:20 UTC +00:00]]  (2.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (95.0ms) Completed 200 OK in 140ms (Views: 111.9ms | ActiveRecord: 8.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:32:20 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:32:20 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:20 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:20 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:32:20 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:32:21 +0200 AbstractController::ActionNotFound (The action 'paygw' could not be found for Opay::PayuController): actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__145349241586826586__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.9ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:32:45 +0200 AbstractController::ActionNotFound (The action 'paygw' could not be found for Opay::PayuController): actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__145349241586826586__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:32:48 +0200 AbstractController::ActionNotFound (The action 'paygw' could not be found for Opay::PayuController): actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__145349241586826586__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:33:05 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template opay/payu/paygw, opay/application/paygw with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1002104502223719241__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2658258070209306780__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.4ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:33:52 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Completed 500 Internal Server Error in 1ms ActionView::MissingTemplate (Missing template opay/payu/paygw, opay/application/paygw with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1002104502223719241__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2658258070209306780__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:34:13 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template opay/payu/paygw, opay/application/paygw with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1002104502223719241__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2658258070209306780__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (40.4ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:34:31 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template opay/payu/paygw, opay/application/paygw with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3434036703540167805__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3789120954503419128__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.5ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:35:07 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.4ms) Completed 200 OK in 81ms (Views: 80.7ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:35:07 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:35:07 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:35:07 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:35:07 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:38:24 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:38:24 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:38:24 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:38:24 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:38:24 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:39:04 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:39:04 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:04 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:04 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:04 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:39:35 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.8ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:39:35 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:35 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:35 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:39:35 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:01 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (4.7ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:01 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:40:01 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:01 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:01 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:10 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 500 Internal Server Error in 4ms ActionView::Template::Error (undefined method `/' for "21":String): 4: <%= params[:pos_id] %>
5: <%= params[:pos_auth_key] %>
6: <%= params[:session_id] %>
7: <%= number_to_currency params[:amount] / 10 %>
8: <%= params[:desc] %>
9: <%= params[:client_ip] %>
10: <%= params[:js] %>
/Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb:7:in `___sers_olownia_dev_gems_opay_app_views_opay_payu_paygw_html_erb__3947372212219788853_70288693665280' actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.0) lib/action_view/template.rb:141:in `render' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3434036703540167805__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3789120954503419128__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.6ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:20 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.5ms) Completed 500 Internal Server Error in 46ms ActionView::Template::Error (undefined method `/' for "21":String): 4: <%= params[:pos_id] %>
5: <%= params[:pos_auth_key] %>
6: <%= params[:session_id] %>
7: <%= number_to_currency(params[:amount] / 10) %>
8: <%= params[:desc] %>
9: <%= params[:client_ip] %>
10: <%= params[:js] %>
/Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb:7:in `___sers_olownia_dev_gems_opay_app_views_opay_payu_paygw_html_erb__3947372212219788853_70288664180420' actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.0) lib/action_view/template.rb:141:in `render' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3434036703540167805__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3789120954503419128__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:33 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.2ms) Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:40:33 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:33 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:33 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:33 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:46 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.0ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:46 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:40:46 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:46 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:46 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:40:57 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.2ms) Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:40:57 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:57 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:57 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:40:57 +0200 Started GET "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:41:07 +0200 ActionController::RoutingError (No route matches [GET] "/opay/payu/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.6ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (42.7ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:42:44 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.0ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:42:44 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:42:44 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:42:44 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:42:44 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:43:28 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.3ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:43:28 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:43:28 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:43:28 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:43:28 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:45:04 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.8ms) Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:45:04 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:45:04 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:45:04 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:45:04 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:47:42 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.6ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:47:42 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:47:42 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:47:42 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:47:42 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:49:47 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"zzasUMb2c2zyDAqFPXq5", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378909940", "sig"=>"a39b09c5cc4a8971c2205ba3392e20b9", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.9ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:49:47 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:49:47 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:49:47 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:49:47 +0200 Started GET "/opay/payu/wrong_authorizationt" for 127.0.0.1 at 2013-09-11 16:49:49 +0200 ActionController::RoutingError (No route matches [GET] "/opay/payu/wrong_authorizationt"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (23.4ms) Started GET "/opay/payu/wrong_authorizationt" for 127.0.0.1 at 2013-09-11 16:50:05 +0200 Processing by Opay::PayuController#wrong_authorizationt as HTML Completed 500 Internal Server Error in 2ms NameError (undefined local variable or method `root_path' for #): /Users/olownia/dev/gems/opay/app/controllers/opay/payu_controller.rb:16:in `wrong_authorizationt' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3434036703540167805__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3789120954503419128__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.3ms) Started GET "/opay/payu/wrong_authorizationt" for 127.0.0.1 at 2013-09-11 16:50:19 +0200 Processing by Opay::PayuController#wrong_authorizationt as HTML Completed 500 Internal Server Error in 3ms NameError (undefined local variable or method `root_path' for #): /Users/olownia/dev/gems/opay/app/controllers/opay/payu_controller.rb:16:in `wrong_authorizationt' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3434036703540167805__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3789120954503419128__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (43.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (56.7ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/opay/payu/wrong_authorizationt" for 127.0.0.1 at 2013-09-11 16:50:37 +0200 Processing by Opay::PayuController#wrong_authorizationt as HTML Redirected to http://localhost:3000/ Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (22.1ms) Completed 200 OK in 92ms (Views: 84.8ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:50:38 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:51:08 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (1.9ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = '6pGEAU6U8UzxSMkvVoUX' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (1.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["session_id", "6pGEAU6U8UzxSMkvVoUX"], ["updated_at", Wed, 11 Sep 2013 14:51:08 UTC +00:00]]  (2.6ms) commit transaction Rendered orders/show.html.erb within layouts/application (54.6ms) Completed 200 OK in 60ms (Views: 51.4ms | ActiveRecord: 6.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:51:08 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:09 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:51:09 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:09 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:09 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:51:10 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"6pGEAU6U8UzxSMkvVoUX", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911068", "sig"=>"51e62c7b6a2ffa6da5fa049e6afcb34b", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (5.9ms) Completed 200 OK in 60ms (Views: 59.9ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:10 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:10 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:51:10 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:51:10 +0200 Started GET "/opay/payu/correct_authorization" for 127.0.0.1 at 2013-09-11 16:51:13 +0200 Processing by Opay::PayuController#correct_authorization as HTML Completed 500 Internal Server Error in 54ms ActionView::MissingTemplate (Missing template opay/payu/correct_authorization, opay/application/correct_authorization with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4097377636643197136__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3091699748353752869__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:54:27 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"6pGEAU6U8UzxSMkvVoUX", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911068", "sig"=>"51e62c7b6a2ffa6da5fa049e6afcb34b", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.6ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:54:27 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:27 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:27 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:27 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:54:30 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"6pGEAU6U8UzxSMkvVoUX", "amount"=>"21", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911068", "sig"=>"51e62c7b6a2ffa6da5fa049e6afcb34b", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.3ms) Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:54:30 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:30 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:30 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:54:30 +0200 Started GET "/opay/payu/correct_authorization?session_id=6pGEAU6U8UzxSMkvVoUX" for 127.0.0.1 at 2013-09-11 16:54:31 +0200 Processing by Opay::PayuController#correct_authorization as HTML Parameters: {"session_id"=>"6pGEAU6U8UzxSMkvVoUX"} Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template opay/payu/correct_authorization, opay/application/correct_authorization with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4097377636643197136__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3091699748353752869__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/opay/payu/correct_authorization?session_id=6pGEAU6U8UzxSMkvVoUX" for 127.0.0.1 at 2013-09-11 16:54:52 +0200 Processing by Opay::PayuController#correct_authorization as HTML Parameters: {"session_id"=>"6pGEAU6U8UzxSMkvVoUX"} Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template opay/payu/correct_authorization, opay/application/correct_authorization with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4097377636643197136__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3091699748353752869__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/opay/payu/correct_authorization?session_id=6pGEAU6U8UzxSMkvVoUX" for 127.0.0.1 at 2013-09-11 16:54:54 +0200 Processing by Opay::PayuController#correct_authorization as HTML Parameters: {"session_id"=>"6pGEAU6U8UzxSMkvVoUX"} Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template opay/payu/correct_authorization, opay/application/correct_authorization with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/olownia/dev/gems/opay/spec/dummy/app/views" * "/Users/olownia/dev/gems/opay/app/views" ): actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find' actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4097377636643197136__process_action__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3091699748353752869__call__callbacks' activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138) Started GET "/opay/payu/correct_authorization?session_id=6pGEAU6U8UzxSMkvVoUX" for 127.0.0.1 at 2013-09-11 16:55:04 +0200 Processing by Opay::PayuController#correct_authorization as HTML Parameters: {"session_id"=>"6pGEAU6U8UzxSMkvVoUX"} Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = '6pGEAU6U8UzxSMkvVoUX' ORDER BY "opay_payments"."id" ASC LIMIT 1 Order Load (1.9ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? ORDER BY "orders"."id" ASC LIMIT 1 [["id", 1]] Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]]  (0.1ms) begin transaction SQL (42.6ms) UPDATE "opay_payments" SET "finished" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 1 [["finished", true], ["updated_at", Wed, 11 Sep 2013 14:55:04 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) UPDATE "orders" SET "finished" = ?, "updated_at" = ? WHERE "orders"."id" = 1 [["finished", true], ["updated_at", Wed, 11 Sep 2013 14:55:05 UTC +00:00]]  (1.3ms) commit transaction Redirected to http://localhost:3000/?success Completed 302 Found in 117ms (ActiveRecord: 51.1ms) Started GET "/?success" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Processing by OrdersController#index as HTML Parameters: {"success"=>nil} Order Load (0.2ms) SELECT "orders".* FROM "orders" Rendered orders/index.html.erb within layouts/application (3.4ms) Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:05 +0200 Started GET "/orders/1" for 127.0.0.1 at 2013-09-11 16:55:09 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"1"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "1"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/show.html.erb within layouts/application (5.1ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (Payment was finished): 17: 18: 19: 20: <%= payu_form_for(@order) do |f| %> 21: <%= f.payment_info first_name: 'Jan', last_name: 'Kowalski', email: 'kowalski@gmail.com', desc: 'Test payment', client_ip: '127.0.0.1' %> 22: <%= f.submit :pay_with_payu %> 23: <% end -%> app/views/orders/show.html.erb:20:in `_app_views_orders_show_html_erb___2703401159979776657_70349463737820' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms) Started GET "/?success" for 127.0.0.1 at 2013-09-11 16:55:52 +0200 Processing by OrdersController#index as HTML Parameters: {"success"=>nil} Order Load (0.3ms) SELECT "orders".* FROM "orders" Opay::Payment Load (0.3ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/index.html.erb within layouts/application (4.1ms) Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:55:53 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:53 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:55:53 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:53 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:55:53 +0200 Started GET "/?success" for 127.0.0.1 at 2013-09-11 16:56:10 +0200 Processing by OrdersController#index as HTML Parameters: {"success"=>nil} Order Load (0.2ms) SELECT "orders".* FROM "orders" Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/index.html.erb within layouts/application (4.0ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:10 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:10 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:11 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:11 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:11 +0200 Started GET "/?success" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Processing by OrdersController#index as HTML Parameters: {"success"=>nil} Order Load (0.2ms) SELECT "orders".* FROM "orders" Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Rendered orders/index.html.erb within layouts/application (3.5ms) Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:32 +0200 Started GET "/orders/new" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Processing by OrdersController#new as HTML Rendered orders/_form.html.erb (36.1ms) Rendered orders/new.html.erb within layouts/application (39.4ms) Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:34 +0200 Started POST "/orders" for 127.0.0.1 at 2013-09-11 16:56:38 +0200 Processing by OrdersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "order"=>{"name"=>"kolejne", "amount"=>"435"}, "commit"=>"Create Order"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "orders" ("amount", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["amount", "435"], ["created_at", Wed, 11 Sep 2013 14:56:38 UTC +00:00], ["name", "kolejne"], ["updated_at", Wed, 11 Sep 2013 14:56:38 UTC +00:00]]  (30.9ms) commit transaction Redirected to http://localhost:3000/orders/2 Completed 302 Found in 37ms (ActiveRecord: 31.6ms) Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 16:56:38 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]]  (0.1ms) begin transaction Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'GUWz8pyHgX3RFArGbUjf' ORDER BY "opay_payments"."id" ASC LIMIT 1 SQL (0.5ms) INSERT INTO "opay_payments" ("amount", "created_at", "payable_id", "payable_type", "provider", "session_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["amount", 435], ["created_at", Wed, 11 Sep 2013 14:56:38 UTC +00:00], ["payable_id", 2], ["payable_type", "Order"], ["provider", "payu"], ["session_id", "GUWz8pyHgX3RFArGbUjf"], ["updated_at", Wed, 11 Sep 2013 14:56:38 UTC +00:00]]  (1.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (11.5ms) Completed 200 OK in 16ms (Views: 12.3ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:39 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:39 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:39 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:39 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:39 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:56:41 +0200 Processing by OrdersController#index as HTML Order Load (0.3ms) SELECT "orders".* FROM "orders" Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Rendered orders/index.html.erb within layouts/application (4.0ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:42 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:42 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:56:42 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:42 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:56:42 +0200 Started GET "/orders" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Processing by OrdersController#index as HTML Order Load (0.2ms) SELECT "orders".* FROM "orders" Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 1], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Rendered orders/index.html.erb within layouts/application (3.7ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:58:18 +0200 Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'MsgnhxFHkTwsanHX8irp' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 2 [["session_id", "MsgnhxFHkTwsanHX8irp"], ["updated_at", Wed, 11 Sep 2013 14:59:12 UTC +00:00]]  (2.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (8.5ms) Completed 200 OK in 13ms (Views: 8.5ms | ActiveRecord: 3.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:12 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:59:13 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"MsgnhxFHkTwsanHX8irp", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911552", "sig"=>"746a474ee145fe82d70c535de070979c", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (2.4ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:13 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:13 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:13 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:13 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:59:20 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"MsgnhxFHkTwsanHX8irp", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911552", "sig"=>"746a474ee145fe82d70c535de070979c", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.9ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:20 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:20 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:20 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:20 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:59:37 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"MsgnhxFHkTwsanHX8irp", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911552", "sig"=>"746a474ee145fe82d70c535de070979c", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:37 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:37 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:37 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:37 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 16:59:45 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"MsgnhxFHkTwsanHX8irp", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911552", "sig"=>"746a474ee145fe82d70c535de070979c", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.5ms) Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:45 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:45 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:45 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:45 +0200 Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = '9fHd2eMFS2Lyh7UpsRSZ' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 2 [["session_id", "9fHd2eMFS2Lyh7UpsRSZ"], ["updated_at", Wed, 11 Sep 2013 14:59:47 UTC +00:00]]  (1.9ms) commit transaction Rendered orders/show.html.erb within layouts/application (7.7ms) Completed 200 OK in 13ms (Views: 8.9ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:47 +0200 Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'tLjuVzpdXYm3Tjg8B1YX' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 2 [["session_id", "tLjuVzpdXYm3Tjg8B1YX"], ["updated_at", Wed, 11 Sep 2013 14:59:48 UTC +00:00]]  (2.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (7.7ms) Completed 200 OK in 12ms (Views: 7.7ms | ActiveRecord: 3.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:48 +0200 Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'UfsDnEj9dSYzzMkeVpvy' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.0ms) begin transaction SQL (0.3ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 2 [["session_id", "UfsDnEj9dSYzzMkeVpvy"], ["updated_at", Wed, 11 Sep 2013 14:59:59 UTC +00:00]]  (1.5ms) commit transaction Rendered orders/show.html.erb within layouts/application (6.2ms) Completed 200 OK in 10ms (Views: 6.9ms | ActiveRecord: 2.3ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 16:59:59 +0200 Started GET "/orders/2" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Processing by OrdersController#show as HTML Parameters: {"id"=>"2"} Order Load (0.1ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", "2"]] Opay::Payment Load (0.1ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."payable_id" = ? AND "opay_payments"."payable_type" = ? ORDER BY "opay_payments"."id" ASC LIMIT 1 [["payable_id", 2], ["payable_type", "Order"]] Opay::Payment Load (0.2ms) SELECT "opay_payments".* FROM "opay_payments" WHERE "opay_payments"."session_id" = 'Rdwo4Gna2NwYBzPyAqG3' ORDER BY "opay_payments"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) UPDATE "opay_payments" SET "session_id" = ?, "updated_at" = ? WHERE "opay_payments"."id" = 2 [["session_id", "Rdwo4Gna2NwYBzPyAqG3"], ["updated_at", Wed, 11 Sep 2013 15:00:05 UTC +00:00]]  (2.8ms) commit transaction Rendered orders/show.html.erb within layouts/application (7.8ms) Completed 200 OK in 12ms (Views: 7.0ms | ActiveRecord: 3.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:05 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:00:11 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.3ms) Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:11 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:11 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:11 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:11 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:00:17 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:17 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:17 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:17 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:17 +0200 Started GET "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:00:20 +0200 ActionController::RoutingError (No route matches [GET] "/opay/payu/paygw/UTF/NewPayment"): actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.0) lib/rails/rack/logger.rb:21:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call' railties (4.0.0) lib/rails/engine.rb:511:in `call' railties (4.0.0) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/olownia/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/olownia/.rvm/gems/ruby-2.0.0-p0@opay/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.1ms) Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:00:33 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.6ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:33 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:33 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:33 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:33 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:00:40 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.7ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:00:40 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:41 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:41 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:00:41 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:01:00 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.6ms) Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:01:00 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:01:00 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:01:00 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:01:00 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:02:31 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.7ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:02:31 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:02:31 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:02:31 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:02:31 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:03:56 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.8ms) Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:03:56 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:03:56 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:03:56 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:03:56 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:05:33 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:05:33 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:05:33 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:05:33 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:05:33 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:06:25 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:06:25 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:06:25 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:06:25 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:06:25 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:07:30 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (2.4ms) Completed 200 OK in 75ms (Views: 74.2ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:07:30 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:31 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:31 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:31 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:07:51 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.7ms) Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:07:51 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:51 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:51 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:07:51 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:08:08 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:08 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:08:08 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:08 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:08 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:08:25 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:08:25 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:25 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:25 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:08:25 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:09:03 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.5ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:09:03 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:03 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:03 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:03 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:09:52 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:09:52 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:52 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:52 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:09:52 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:10:13 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:10:13 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:13 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:13 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:13 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:10:21 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.4ms) Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:21 +0200 Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:10:21 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:21 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:21 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:10:47 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (0.7ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:10:47 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:47 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:47 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:10:47 +0200 Started PATCH "/opay/payu/paygw/UTF/NewPayment" for 127.0.0.1 at 2013-09-11 17:11:17 +0200 Processing by Opay::PayuController#paygw as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kdm3IPDENAKs4TC6OIp3vpJfamXu4yRW5KjYz8Lq35s=", "first_name"=>"Jan", "last_name"=>"Kowalski", "email"=>"kowalski@gmail.com", "desc"=>"Test payment", "client_ip"=>"127.0.0.1", "pos_id"=>"123456", "pos_auth_key"=>"DiEKzTD", "session_id"=>"Rdwo4Gna2NwYBzPyAqG3", "amount"=>"435", "js"=>"1", "pay_type"=>"t", "ts"=>"1378911605", "sig"=>"8b73ccf5f77a60d3f49966928f44659e", "commit"=>"pay_with_payu"} Rendered /Users/olownia/dev/gems/opay/app/views/opay/payu/paygw.html.erb within layouts/opay/application (1.5ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/opay/application.css?body=1" for 127.0.0.1 at 2013-09-11 17:11:17 +0200 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-11 17:11:17 +0200 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-11 17:11:17 +0200 Started GET "/assets/opay/application.js?body=1" for 127.0.0.1 at 2013-09-11 17:11:17 +0200