opay 1.0.0.beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +3 -0
  3. data/Rakefile +22 -0
  4. data/app/assets/javascripts/opay/application.js +15 -0
  5. data/app/assets/stylesheets/opay/application.css +13 -0
  6. data/app/controllers/opay/application_controller.rb +4 -0
  7. data/app/controllers/opay/payu_controller.rb +9 -0
  8. data/app/helpers/opay/application_helper.rb +4 -0
  9. data/app/helpers/opay/payu_helper.rb +4 -0
  10. data/app/models/opay/payment.rb +6 -0
  11. data/app/views/layouts/opay/application.html.erb +14 -0
  12. data/config/routes.rb +8 -0
  13. data/db/migrate/20130321114023_create_opay_payments.rb +14 -0
  14. data/lib/generators/opay/config_generator.rb +12 -0
  15. data/lib/generators/opay/templates/opay_config.rb +9 -0
  16. data/lib/opay/configuration.rb +42 -0
  17. data/lib/opay/engine.rb +23 -0
  18. data/lib/opay/form_builder.rb +5 -0
  19. data/lib/opay/helpers/form_helper.rb +14 -0
  20. data/lib/opay/helpers/payu_helper.rb +41 -0
  21. data/lib/opay/helpers.rb +6 -0
  22. data/lib/opay/payable.rb +30 -0
  23. data/lib/opay/providers/payu.rb +76 -0
  24. data/lib/opay/providers.rb +5 -0
  25. data/lib/opay/version.rb +3 -0
  26. data/lib/opay.rb +14 -0
  27. data/lib/tasks/opay_tasks.rake +4 -0
  28. data/spec/dummy/README.rdoc +261 -0
  29. data/spec/dummy/Rakefile +7 -0
  30. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  31. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  32. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  33. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  34. data/spec/dummy/app/controllers/orders_controller.rb +83 -0
  35. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  36. data/spec/dummy/app/helpers/orders_helper.rb +2 -0
  37. data/spec/dummy/app/models/order.rb +7 -0
  38. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  39. data/spec/dummy/app/views/orders/_form.html.erb +25 -0
  40. data/spec/dummy/app/views/orders/edit.html.erb +6 -0
  41. data/spec/dummy/app/views/orders/index.html.erb +25 -0
  42. data/spec/dummy/app/views/orders/new.html.erb +5 -0
  43. data/spec/dummy/app/views/orders/show.html.erb +15 -0
  44. data/spec/dummy/config/application.rb +76 -0
  45. data/spec/dummy/config/boot.rb +10 -0
  46. data/spec/dummy/config/database.yml +30 -0
  47. data/spec/dummy/config/environment.rb +5 -0
  48. data/spec/dummy/config/environments/development.rb +37 -0
  49. data/spec/dummy/config/environments/production.rb +67 -0
  50. data/spec/dummy/config/environments/test.rb +37 -0
  51. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/spec/dummy/config/initializers/inflections.rb +15 -0
  53. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  54. data/spec/dummy/config/initializers/opay_config.rb +9 -0
  55. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  56. data/spec/dummy/config/initializers/session_store.rb +8 -0
  57. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/spec/dummy/config/locales/en.yml +5 -0
  59. data/spec/dummy/config/routes.rb +4 -0
  60. data/spec/dummy/config.ru +4 -0
  61. data/spec/dummy/db/development.sqlite3 +0 -0
  62. data/spec/dummy/db/migrate/20130326152550_create_orders.rb +10 -0
  63. data/spec/dummy/db/schema.rb +36 -0
  64. data/spec/dummy/db/test.sqlite3 +0 -0
  65. data/spec/dummy/log/development.log +1511 -0
  66. data/spec/dummy/log/test.log +1629 -0
  67. data/spec/dummy/opay_config.rb +1 -0
  68. data/spec/dummy/public/404.html +26 -0
  69. data/spec/dummy/public/422.html +26 -0
  70. data/spec/dummy/public/500.html +25 -0
  71. data/spec/dummy/public/favicon.ico +0 -0
  72. data/spec/dummy/script/rails +6 -0
  73. data/spec/dummy/spec/factories/orders.rb +8 -0
  74. data/spec/dummy/spec/models/order_spec.rb +5 -0
  75. data/spec/dummy/tmp/cache/assets/C23/400/sprockets%2F31710301f0d68b89727f5de964446610 +0 -0
  76. data/spec/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  77. data/spec/dummy/tmp/cache/assets/CA6/480/sprockets%2F46f1812fd06c1e0802a414931ff82f71 +0 -0
  78. data/spec/dummy/tmp/cache/assets/CB2/7F0/sprockets%2F9d79a842f086f17d3420e5cb88710c10 +0 -0
  79. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  80. data/spec/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  81. data/spec/dummy/tmp/cache/assets/D25/7A0/sprockets%2F0c58b40b01f62ed06f75ee2d444a111a +0 -0
  82. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  83. data/spec/dummy/tmp/cache/assets/D39/8F0/sprockets%2F931d437216848cdf2a7bbac6c0f4c426 +0 -0
  84. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  85. data/spec/dummy/tmp/cache/assets/D54/F30/sprockets%2F8ea40d0224e2d772232dcbfbf0fc3005 +0 -0
  86. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  87. data/spec/dummy/tmp/cache/assets/D99/A20/sprockets%2F552b4516be6f766a2da35c26be2f1ecf +0 -0
  88. data/spec/dummy/tmp/cache/assets/DC9/EF0/sprockets%2F508b2ee0aa9ed068a10af6d8cf9d0e19 +0 -0
  89. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  90. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  91. data/spec/factories/opay_payments.rb +10 -0
  92. data/spec/lib/opay/helpers/payu_helper_spec.rb +41 -0
  93. data/spec/lib/opay/payable_spec.rb +18 -0
  94. data/spec/lib/opay/providers/payu_spec.rb +106 -0
  95. data/spec/models/opay/payment_spec.rb +7 -0
  96. data/spec/spec_helper.rb +83 -0
  97. data/spec/support/xml/error.xml.erb +8 -0
  98. data/spec/support/xml/success.xml.erb +24 -0
  99. metadata +379 -0
@@ -0,0 +1,1511 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+  (0.1ms) select sqlite_version(*)
4
+  (107.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (71.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
7
+ Migrating to CreateProducts (20130320132244)
8
+  (0.0ms) begin transaction
9
+  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
10
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130320132244')
11
+  (25.5ms) commit transaction
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+ Connecting to database specified by database.yml
14
+
15
+
16
+ Started GET "/" for 127.0.0.1 at 2013-03-20 14:24:58 +0100
17
+
18
+ ActionController::RoutingError (No route matches [GET] "/"):
19
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
20
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
21
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
22
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
23
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
24
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
25
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
26
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
27
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
28
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
29
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
30
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
31
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
32
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
33
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
34
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
35
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
36
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
37
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
38
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
39
+
40
+
41
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (31.5ms)
42
+
43
+
44
+ Started GET "/products" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
45
+ Processing by ProductsController#index as HTML
46
+ Product Load (0.1ms) SELECT "products".* FROM "products" 
47
+ Rendered products/index.html.erb within layouts/application (1.5ms)
48
+ Compiled products.css (0ms) (pid 17351)
49
+ Compiled scaffold.css (0ms) (pid 17351)
50
+ Compiled application.css (18ms) (pid 17351)
51
+ Compiled jquery.js (2ms) (pid 17351)
52
+ Compiled jquery_ujs.js (3ms) (pid 17351)
53
+ Compiled products.js (0ms) (pid 17351)
54
+ Compiled application.js (78ms) (pid 17351)
55
+ Completed 200 OK in 258ms (Views: 188.1ms | ActiveRecord: 1.9ms)
56
+
57
+
58
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
59
+ Served asset /application.css - 200 OK (25ms)
60
+
61
+
62
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
63
+ Served asset /jquery_ujs.js - 200 OK (4ms)
64
+
65
+
66
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
67
+ Served asset /scaffold.css - 200 OK (1ms)
68
+
69
+
70
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
71
+ Served asset /products.js - 200 OK (1ms)
72
+
73
+
74
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
75
+ Served asset /jquery.js - 200 OK (1ms)
76
+
77
+
78
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
79
+ Served asset /products.css - 200 OK (1ms)
80
+
81
+
82
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:03 +0100
83
+ Served asset /application.js - 200 OK (4ms)
84
+
85
+
86
+ Started GET "/products/new" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
87
+ Processing by ProductsController#new as HTML
88
+ Rendered products/_form.html.erb (56.1ms)
89
+ Rendered products/new.html.erb within layouts/application (67.7ms)
90
+ Completed 200 OK in 77ms (Views: 71.9ms | ActiveRecord: 0.0ms)
91
+
92
+
93
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
94
+ Served asset /application.css - 304 Not Modified (0ms)
95
+
96
+
97
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
98
+ Served asset /products.css - 304 Not Modified (0ms)
99
+
100
+
101
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
102
+ Served asset /products.js - 304 Not Modified (0ms)
103
+
104
+
105
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
106
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
107
+
108
+
109
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
110
+ Served asset /scaffold.css - 304 Not Modified (0ms)
111
+
112
+
113
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
114
+ Served asset /jquery.js - 304 Not Modified (0ms)
115
+
116
+
117
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:10 +0100
118
+ Served asset /application.js - 304 Not Modified (0ms)
119
+
120
+
121
+ Started POST "/products" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
122
+ Processing by ProductsController#create as HTML
123
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqOJCmDCDnImQxVFjsrfbItIR5pDloV7KUV0wsEKCNU=", "product"=>{"name"=>"product 1", "price"=>"100"}, "commit"=>"Create Product"}
124
+  (0.1ms) begin transaction
125
+ SQL (203.8ms) INSERT INTO "products" ("created_at", "name", "price", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 20 Mar 2013 13:25:18 UTC +00:00], ["name", "product 1"], ["price", 100], ["updated_at", Wed, 20 Mar 2013 13:25:18 UTC +00:00]]
126
+  (16.6ms) commit transaction
127
+ Redirected to http://localhost:3000/products/1
128
+ Completed 302 Found in 225ms (ActiveRecord: 220.4ms)
129
+
130
+
131
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
132
+ Processing by ProductsController#show as HTML
133
+ Parameters: {"id"=>"1"}
134
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
135
+ Rendered products/show.html.erb within layouts/application (1.2ms)
136
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
137
+
138
+
139
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
140
+ Served asset /application.css - 304 Not Modified (0ms)
141
+
142
+
143
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
144
+ Served asset /products.css - 304 Not Modified (0ms)
145
+
146
+
147
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
148
+ Served asset /application.js - 304 Not Modified (0ms)
149
+
150
+
151
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
152
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
153
+
154
+
155
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
156
+ Served asset /scaffold.css - 304 Not Modified (0ms)
157
+
158
+
159
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
160
+ Served asset /jquery.js - 304 Not Modified (0ms)
161
+
162
+
163
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:18 +0100
164
+ Served asset /products.js - 304 Not Modified (0ms)
165
+
166
+
167
+ Started GET "/products" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
168
+ Processing by ProductsController#index as HTML
169
+ Product Load (0.2ms) SELECT "products".* FROM "products"
170
+ Rendered products/index.html.erb within layouts/application (1.1ms)
171
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)
172
+
173
+
174
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
175
+ Served asset /application.css - 304 Not Modified (0ms)
176
+
177
+
178
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
179
+ Served asset /scaffold.css - 304 Not Modified (0ms)
180
+
181
+
182
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
183
+ Served asset /jquery.js - 304 Not Modified (0ms)
184
+
185
+
186
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
187
+ Served asset /products.css - 304 Not Modified (0ms)
188
+
189
+
190
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
191
+ Served asset /products.js - 304 Not Modified (0ms)
192
+
193
+
194
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
195
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
196
+
197
+
198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-20 14:25:21 +0100
199
+ Served asset /application.js - 304 Not Modified (0ms)
200
+
201
+
202
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 14:25:59 +0100
203
+
204
+ ActionController::RoutingError (No route matches [GET] "/opay"):
205
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
206
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
207
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
208
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
209
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
210
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
211
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
212
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
213
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
214
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
215
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
216
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
217
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
218
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
219
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
220
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
221
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
222
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
223
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
224
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
225
+
226
+
227
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
228
+
229
+
230
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 14:26:25 +0100
231
+
232
+ ActionController::RoutingError (No route matches [GET] "/opay"):
233
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
234
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
235
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
236
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
237
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
238
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
239
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
240
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
241
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
242
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
243
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
244
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
245
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
246
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
247
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
248
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
249
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
250
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
251
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
252
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
253
+
254
+
255
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
256
+
257
+
258
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 14:27:13 +0100
259
+
260
+ ActionController::RoutingError (uninitialized constant Opay::HomeController):
261
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
262
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
263
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
264
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
265
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
266
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
267
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
268
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
269
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
270
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
271
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
272
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
273
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
274
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
275
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
276
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
277
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
278
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
279
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
280
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
281
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
282
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
283
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
284
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
285
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
286
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
287
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
288
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
289
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4433136916292117459__call__3875846806398412552__callbacks'
290
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
291
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
292
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
293
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
294
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
295
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
296
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
297
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
298
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
299
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
300
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
301
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
302
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
303
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
304
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
305
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
306
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
307
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
308
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
309
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
310
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
311
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
312
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
313
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
314
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
315
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
316
+
317
+
318
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
319
+
320
+
321
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 14:30:05 +0100
322
+
323
+ ActionController::RoutingError (uninitialized constant Opay::HomeController):
324
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
325
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
326
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
327
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
328
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
329
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
330
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
331
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
332
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
333
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
334
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
335
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
336
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
337
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
338
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
339
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
340
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
341
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
342
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
343
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
344
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
345
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
346
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
347
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
348
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
349
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
350
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
351
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
352
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4433136916292117459__call__3875846806398412552__callbacks'
353
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
354
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
355
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
356
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
357
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
358
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
359
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
360
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
361
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
362
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
363
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
364
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
365
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
366
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
367
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
368
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
369
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
370
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
371
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
372
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
373
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
374
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
375
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
376
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
377
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
378
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
379
+
380
+
381
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
382
+ Connecting to database specified by database.yml
383
+ Connecting to database specified by database.yml
384
+ Connecting to database specified by database.yml
385
+ Connecting to database specified by database.yml
386
+ Connecting to database specified by database.yml
387
+ Connecting to database specified by database.yml
388
+ Connecting to database specified by database.yml
389
+ Connecting to database specified by database.yml
390
+ Connecting to database specified by database.yml
391
+ Connecting to database specified by database.yml
392
+ Connecting to database specified by database.yml
393
+ Connecting to database specified by database.yml
394
+ Connecting to database specified by database.yml
395
+ Connecting to database specified by database.yml
396
+ Connecting to database specified by database.yml
397
+ Connecting to database specified by database.yml
398
+ Connecting to database specified by database.yml
399
+ Connecting to database specified by database.yml
400
+ Connecting to database specified by database.yml
401
+
402
+
403
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:55:48 +0100
404
+ Processing by Opay::PayuController#online as HTML
405
+ Completed 500 Internal Server Error in 34ms
406
+
407
+ ArgumentError ('Opay::Configuration' is not an ActiveModel-compatible object that returns a valid partial path.):
408
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:385:in `partial_path'
409
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:295:in `setup'
410
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:221:in `render'
411
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:41:in `render_partial'
412
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:15:in `render'
413
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
414
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
415
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
416
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
417
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
418
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
419
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
420
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
421
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
422
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
423
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
424
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
425
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
426
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
427
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
428
+ /Users/mariusz/projekty/rails/opay/app/controllers/opay/payu_controller.rb:6:in `online'
429
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
430
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
431
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
432
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
433
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__3236530856422423603__process_action__3703542402287087438__callbacks'
434
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
435
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
436
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
437
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
438
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
439
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
440
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
441
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
442
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
443
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
444
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
445
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
446
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
447
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
448
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
449
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
450
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
451
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
452
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
453
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
454
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
455
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
456
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
457
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
458
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
459
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
460
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
461
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
462
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
463
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
464
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
465
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
466
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
467
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
468
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
469
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
470
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
471
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
472
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
473
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
474
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
475
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
476
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__515505277320657570__call__4558016531051876299__callbacks'
477
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
478
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
479
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
480
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
481
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
482
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
483
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
484
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
485
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
486
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
487
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
488
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
489
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
490
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
491
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
492
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
493
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
494
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
495
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
496
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
497
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
498
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
499
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
500
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
501
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
502
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
503
+
504
+
505
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
506
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
507
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
508
+
509
+
510
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:56:09 +0100
511
+ Processing by Opay::PayuController#online as HTML
512
+ Rendered text template (0.0ms)
513
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
514
+
515
+
516
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:56:20 +0100
517
+ Processing by Opay::PayuController#online as HTML
518
+ Completed 500 Internal Server Error in 0ms
519
+
520
+ NoMethodError (undefined method `provider' for Opay::Configuration:Module):
521
+ /Users/mariusz/projekty/rails/opay/app/controllers/opay/payu_controller.rb:6:in `online'
522
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
523
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
524
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
525
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
526
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__3236530856422423603__process_action__3703542402287087438__callbacks'
527
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
528
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
529
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
530
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
531
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
532
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
533
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
534
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
535
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
536
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
537
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
538
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
539
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
540
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
541
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
542
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
543
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
544
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
545
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
546
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
547
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
548
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
549
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
550
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
551
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
552
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
553
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
554
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
555
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
556
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
557
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
558
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
559
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
560
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
561
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
562
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
563
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
564
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
565
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
566
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
567
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
568
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
569
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__515505277320657570__call__4558016531051876299__callbacks'
570
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
571
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
572
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
573
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
574
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
575
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
576
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
577
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
578
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
579
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
580
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
581
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
582
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
583
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
584
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
585
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
586
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
587
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
588
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
589
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
590
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
591
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
592
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
593
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
594
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
595
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
596
+
597
+
598
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
599
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
600
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
601
+
602
+
603
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:56:30 +0100
604
+ Processing by Opay::PayuController#online as HTML
605
+ Completed 500 Internal Server Error in 0ms
606
+
607
+ NoMethodError (undefined method `config' for Opay::Configuration:Module):
608
+ /Users/mariusz/projekty/rails/opay/app/controllers/opay/payu_controller.rb:6:in `online'
609
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
610
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
611
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
612
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
613
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__3236530856422423603__process_action__3703542402287087438__callbacks'
614
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
615
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
616
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
617
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
618
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
619
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
620
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
621
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
622
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
623
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
624
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
625
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
626
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
627
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
628
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
629
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
630
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
631
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
632
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
633
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
634
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
635
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
636
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
637
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
638
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
639
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
640
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
641
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
642
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
643
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
644
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
645
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
646
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
647
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
648
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
649
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
650
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
651
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
652
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
653
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
654
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
655
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
656
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__515505277320657570__call__4558016531051876299__callbacks'
657
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
658
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
659
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
660
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
661
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
662
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
663
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
664
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
665
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
666
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
667
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
668
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
669
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
670
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
671
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
672
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
673
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
674
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
675
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
676
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
677
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
678
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
679
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
680
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
681
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
682
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
683
+
684
+
685
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
686
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
687
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
688
+
689
+
690
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:57:00 +0100
691
+ Processing by Opay::PayuController#online as HTML
692
+ Rendered text template (0.0ms)
693
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
694
+
695
+
696
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:57:07 +0100
697
+ Processing by Opay::PayuController#online as HTML
698
+ Rendered text template (0.0ms)
699
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
700
+
701
+
702
+ Started GET "/opay" for 127.0.0.1 at 2013-03-20 15:57:17 +0100
703
+ Processing by Opay::PayuController#online as HTML
704
+ Rendered text template (0.0ms)
705
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
706
+ Connecting to database specified by database.yml
707
+
708
+
709
+ Started GET "/" for 127.0.0.1 at 2013-03-21 16:12:52 +0100
710
+
711
+ ActionController::RoutingError (No route matches [GET] "/"):
712
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
713
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
714
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
715
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
716
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
717
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
718
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
719
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
720
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
721
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
722
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
723
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
724
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
725
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
726
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
727
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
728
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
729
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
730
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
731
+ /Users/mariusz/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
732
+
733
+
734
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.2ms)
735
+
736
+
737
+ Started GET "/products" for 127.0.0.1 at 2013-03-21 16:12:59 +0100
738
+
739
+ ArgumentError (Unknown key: aa):
740
+ app/models/product.rb:2:in `<class:Product>'
741
+ app/models/product.rb:1:in `<top (required)>'
742
+ app/controllers/products_controller.rb:1:in `<top (required)>'
743
+
744
+
745
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
746
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
747
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
748
+
749
+
750
+ Started GET "/products" for 127.0.0.1 at 2013-03-21 16:13:14 +0100
751
+ Processing by ProductsController#index as HTML
752
+ Product Load (33.7ms) SELECT "products".* FROM "products" 
753
+ Rendered products/index.html.erb within layouts/application (2.8ms)
754
+ Completed 200 OK in 1161ms (Views: 800.0ms | ActiveRecord: 53.8ms)
755
+
756
+
757
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
758
+ Served asset /application.css - 200 OK (5ms)
759
+
760
+
761
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
762
+ Served asset /jquery.js - 200 OK (76ms)
763
+
764
+
765
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
766
+ Served asset /products.css - 304 Not Modified (62ms)
767
+
768
+
769
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
770
+ Served asset /jquery_ujs.js - 200 OK (2ms)
771
+
772
+
773
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
774
+ Served asset /products.js - 304 Not Modified (29ms)
775
+
776
+
777
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
778
+ Served asset /scaffold.css - 304 Not Modified (27ms)
779
+
780
+
781
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:16 +0100
782
+ Served asset /application.js - 200 OK (71ms)
783
+
784
+
785
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:13:19 +0100
786
+ Processing by ProductsController#show as HTML
787
+ Parameters: {"id"=>"1"}
788
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
789
+ Rendered products/show.html.erb within layouts/application (1.3ms)
790
+ Completed 200 OK in 132ms (Views: 129.6ms | ActiveRecord: 0.3ms)
791
+
792
+
793
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:19 +0100
794
+ Served asset /application.css - 304 Not Modified (0ms)
795
+
796
+
797
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:19 +0100
798
+ Served asset /products.css - 304 Not Modified (0ms)
799
+
800
+
801
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:13:20 +0100
802
+ Served asset /scaffold.css - 304 Not Modified (0ms)
803
+
804
+
805
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:20 +0100
806
+ Served asset /jquery.js - 304 Not Modified (0ms)
807
+
808
+
809
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:20 +0100
810
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
811
+
812
+
813
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:21 +0100
814
+ Served asset /products.js - 304 Not Modified (0ms)
815
+
816
+
817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:13:21 +0100
818
+ Served asset /application.js - 304 Not Modified (0ms)
819
+
820
+
821
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:14:09 +0100
822
+ Processing by ProductsController#show as HTML
823
+ Parameters: {"id"=>"1"}
824
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
825
+ Rendered products/show.html.erb within layouts/application (119.4ms)
826
+ Completed 500 Internal Server Error in 139ms
827
+
828
+ ActionView::Template::Error (undefined method `opay_form_for' for #<#<Class:0x007fc666b21180>:0x007fc664429028>):
829
+ 10: <%= @product.price %>
830
+ 11: </p>
831
+ 12:
832
+ 13: <%= opay_form_for @product do |f| %>
833
+ 14: cd
834
+ 15: <% end %>
835
+ 16:
836
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3152130214115647815_70245031165260'
837
+ app/controllers/products_controller.rb:18:in `show'
838
+
839
+
840
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
841
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
842
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.2ms)
843
+
844
+
845
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:17:10 +0100
846
+ Processing by ProductsController#show as HTML
847
+ Parameters: {"id"=>"1"}
848
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
849
+ Rendered products/show.html.erb within layouts/application (5.0ms)
850
+ Completed 500 Internal Server Error in 8ms
851
+
852
+ ActionView::Template::Error (undefined method `opay_form_for' for #<#<Class:0x007fc666b21180>:0x007fc6642cf498>):
853
+ 10: <%= @product.price %>
854
+ 11: </p>
855
+ 12:
856
+ 13: <%= opay_form_for @product do |f| %>
857
+ 14: cd
858
+ 15: <% end %>
859
+ 16:
860
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3152130214115647815_70245031165260'
861
+ app/controllers/products_controller.rb:18:in `show'
862
+
863
+
864
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
865
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
866
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
867
+ Connecting to database specified by database.yml
868
+ Connecting to database specified by database.yml
869
+
870
+
871
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:18:19 +0100
872
+ Processing by ProductsController#show as HTML
873
+ Parameters: {"id"=>"1"}
874
+ Product Load (5.0ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
875
+ Rendered products/show.html.erb within layouts/application (4.8ms)
876
+ Completed 200 OK in 173ms (Views: 88.9ms | ActiveRecord: 7.4ms)
877
+
878
+
879
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:18:19 +0100
880
+ Served asset /application.css - 304 Not Modified (3ms)
881
+
882
+
883
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
884
+ Served asset /scaffold.css - 304 Not Modified (1ms)
885
+
886
+
887
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
888
+ Served asset /jquery.js - 304 Not Modified (2ms)
889
+
890
+
891
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
892
+ Served asset /products.css - 304 Not Modified (1ms)
893
+
894
+
895
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
896
+ Served asset /products.js - 304 Not Modified (1ms)
897
+
898
+
899
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
900
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
901
+
902
+
903
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:18:20 +0100
904
+ Served asset /application.js - 304 Not Modified (5ms)
905
+ Connecting to database specified by database.yml
906
+ Connecting to database specified by database.yml
907
+ Connecting to database specified by database.yml
908
+
909
+
910
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
911
+ Processing by ProductsController#show as HTML
912
+ Parameters: {"id"=>"1"}
913
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
914
+ Rendered products/show.html.erb within layouts/application (4.9ms)
915
+ Completed 200 OK in 79ms (Views: 31.4ms | ActiveRecord: 2.2ms)
916
+
917
+
918
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
919
+ Served asset /application.css - 304 Not Modified (31ms)
920
+
921
+
922
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
923
+ Served asset /products.js - 304 Not Modified (1ms)
924
+
925
+
926
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
927
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
928
+
929
+
930
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
931
+ Served asset /jquery.js - 304 Not Modified (4ms)
932
+
933
+
934
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
935
+ Served asset /scaffold.css - 304 Not Modified (5ms)
936
+
937
+
938
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
939
+ Served asset /products.css - 304 Not Modified (1ms)
940
+
941
+
942
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:20:11 +0100
943
+ Served asset /application.js - 304 Not Modified (39ms)
944
+ Connecting to database specified by database.yml
945
+
946
+
947
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:25:01 +0100
948
+ Processing by ProductsController#show as HTML
949
+ Parameters: {"id"=>"1"}
950
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
951
+ Rendered products/show.html.erb within layouts/application (10.4ms)
952
+ Completed 500 Internal Server Error in 67ms
953
+
954
+ ActionView::Template::Error (undefined method `opay_form_for' for #<#<Class:0x007f8ccbc949b0>:0x007f8ccbd12ef0>):
955
+ 10: <%= @product.price %>
956
+ 11: </p>
957
+ 12:
958
+ 13: <%= opay_form_for @product do |f| %>
959
+ 14: cd
960
+ 15: <% end %>
961
+ 16:
962
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb__3056843916972674487_70121353760140'
963
+ app/controllers/products_controller.rb:18:in `show'
964
+
965
+
966
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
967
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
968
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
969
+ Connecting to database specified by database.yml
970
+
971
+
972
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:36:39 +0100
973
+ Processing by ProductsController#show as HTML
974
+ Parameters: {"id"=>"1"}
975
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
976
+ Rendered products/show.html.erb within layouts/application (11.8ms)
977
+ Completed 500 Internal Server Error in 69ms
978
+
979
+ ActionView::Template::Error (undefined method `payu' for #<ActionView::Helpers::FormBuilder:0x007f8b74432e28>):
980
+ 11: </p>
981
+ 12:
982
+ 13: <%= opay_form_for @product do |f| %>
983
+ 14: <%= f.payu %>
984
+ 15: <% end %>
985
+ 16:
986
+ 17:
987
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb__3066636752553584687_70118463091240'
988
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb__3066636752553584687_70118463091240'
989
+ app/controllers/products_controller.rb:18:in `show'
990
+
991
+
992
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
993
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
994
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
995
+
996
+
997
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:38:19 +0100
998
+ Processing by ProductsController#show as HTML
999
+ Parameters: {"id"=>"1"}
1000
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1001
+ Rendered products/show.html.erb within layouts/application (35.4ms)
1002
+ Completed 500 Internal Server Error in 38ms
1003
+
1004
+ ActionView::Template::Error (undefined method `payu' for #<ActionView::Helpers::FormBuilder:0x007f8b71ebda08>):
1005
+ 11: </p>
1006
+ 12:
1007
+ 13: <%= opay_form_for @product do |f| %>
1008
+ 14: <%= f.payu %>
1009
+ 15: <% end %>
1010
+ 16:
1011
+ 17:
1012
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb__3066636752553584687_70118463091240'
1013
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb__3066636752553584687_70118463091240'
1014
+ app/controllers/products_controller.rb:18:in `show'
1015
+
1016
+
1017
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1018
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1019
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms)
1020
+ Connecting to database specified by database.yml
1021
+
1022
+
1023
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:43:43 +0100
1024
+ Processing by ProductsController#show as HTML
1025
+ Parameters: {"id"=>"1"}
1026
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1027
+ Rendered products/show.html.erb within layouts/application (12.3ms)
1028
+ Completed 500 Internal Server Error in 141ms
1029
+
1030
+ ActionView::Template::Error (undefined method `payu' for #<ActionView::Helpers::FormBuilder:0x007fba38da4c20>):
1031
+ 11: </p>
1032
+ 12:
1033
+ 13: <%= opay_form_for @product do |f| %>
1034
+ 14: <%= f.payu %>
1035
+ 15: <% end %>
1036
+ 16:
1037
+ 17:
1038
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb__1277346441317852476_70218910525100'
1039
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb__1277346441317852476_70218910525100'
1040
+ app/controllers/products_controller.rb:18:in `show'
1041
+
1042
+
1043
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1044
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1045
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
1046
+ Connecting to database specified by database.yml
1047
+
1048
+
1049
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1050
+ Processing by ProductsController#show as HTML
1051
+ Parameters: {"id"=>"1"}
1052
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1053
+ Rendered products/show.html.erb within layouts/application (24.6ms)
1054
+ Completed 200 OK in 207ms (Views: 127.2ms | ActiveRecord: 2.4ms)
1055
+
1056
+
1057
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1058
+ Served asset /application.css - 304 Not Modified (7ms)
1059
+
1060
+
1061
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1062
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1063
+
1064
+
1065
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1066
+ Served asset /products.css - 304 Not Modified (3ms)
1067
+
1068
+
1069
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1070
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1071
+
1072
+
1073
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1074
+ Served asset /jquery.js - 304 Not Modified (2ms)
1075
+
1076
+
1077
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1078
+ Served asset /products.js - 304 Not Modified (27ms)
1079
+
1080
+
1081
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:48:38 +0100
1082
+ Served asset /application.js - 304 Not Modified (4ms)
1083
+
1084
+
1085
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1086
+ Processing by ProductsController#show as HTML
1087
+ Parameters: {"id"=>"1"}
1088
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1089
+ Rendered products/show.html.erb within layouts/application (1.4ms)
1090
+ Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.1ms)
1091
+
1092
+
1093
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1094
+ Served asset /application.css - 304 Not Modified (0ms)
1095
+
1096
+
1097
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1098
+ Served asset /products.css - 304 Not Modified (0ms)
1099
+
1100
+
1101
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1102
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1103
+
1104
+
1105
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1106
+ Served asset /jquery.js - 304 Not Modified (0ms)
1107
+
1108
+
1109
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1110
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1111
+
1112
+
1113
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1114
+ Served asset /products.js - 304 Not Modified (0ms)
1115
+
1116
+
1117
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:55:36 +0100
1118
+ Served asset /application.js - 304 Not Modified (0ms)
1119
+ Connecting to database specified by database.yml
1120
+
1121
+
1122
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:55:58 +0100
1123
+ Processing by ProductsController#show as HTML
1124
+ Parameters: {"id"=>"1"}
1125
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1126
+ Rendered products/show.html.erb within layouts/application (34.6ms)
1127
+ Completed 500 Internal Server Error in 147ms
1128
+
1129
+ ActionView::Template::Error (undefined method `content_tag' for #<Opay::FormBuilder:0x007faf444b65e0>):
1130
+ 11: </p>
1131
+ 12:
1132
+ 13: <%= opay_form_for @product do |f| %>
1133
+ 14: <%= f.payu %>
1134
+ 15: <% end %>
1135
+ 16:
1136
+ 17:
1137
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb___3641402905806552961_70195370918940'
1138
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3641402905806552961_70195370918940'
1139
+ app/controllers/products_controller.rb:18:in `show'
1140
+
1141
+
1142
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1143
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1144
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
1145
+
1146
+
1147
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:57:02 +0100
1148
+ Processing by ProductsController#show as HTML
1149
+ Parameters: {"id"=>"1"}
1150
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1151
+ Rendered products/show.html.erb within layouts/application (6.8ms)
1152
+ Completed 500 Internal Server Error in 36ms
1153
+
1154
+ ActionView::Template::Error (undefined method `content_tag' for #<Opay::FormBuilder:0x007faf44054c90>):
1155
+ 11: </p>
1156
+ 12:
1157
+ 13: <%= opay_form_for @product do |f| %>
1158
+ 14: <%= f.payu %>
1159
+ 15: <% end %>
1160
+ 16:
1161
+ 17:
1162
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb___3641402905806552961_70195370918940'
1163
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3641402905806552961_70195370918940'
1164
+ app/controllers/products_controller.rb:18:in `show'
1165
+
1166
+
1167
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1168
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1169
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
1170
+ Connecting to database specified by database.yml
1171
+
1172
+
1173
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 16:59:39 +0100
1174
+ Processing by ProductsController#show as HTML
1175
+ Parameters: {"id"=>"1"}
1176
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1177
+ Rendered products/show.html.erb within layouts/application (18.3ms)
1178
+ Completed 200 OK in 215ms (Views: 137.0ms | ActiveRecord: 2.4ms)
1179
+
1180
+
1181
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1182
+ Served asset /application.css - 304 Not Modified (3ms)
1183
+
1184
+
1185
+ Started GET "/assets/products.css?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1186
+ Served asset /products.css - 304 Not Modified (1ms)
1187
+
1188
+
1189
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1190
+ Served asset /jquery.js - 304 Not Modified (3ms)
1191
+
1192
+
1193
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1194
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1195
+
1196
+
1197
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1198
+ Served asset /scaffold.css - 304 Not Modified (1ms)
1199
+
1200
+
1201
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1202
+ Served asset /application.js - 304 Not Modified (9ms)
1203
+
1204
+
1205
+ Started GET "/assets/products.js?body=1" for 127.0.0.1 at 2013-03-21 16:59:40 +0100
1206
+ Served asset /products.js - 304 Not Modified (1ms)
1207
+ Connecting to database specified by database.yml
1208
+
1209
+
1210
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 17:01:47 +0100
1211
+ Processing by ProductsController#show as HTML
1212
+ Parameters: {"id"=>"1"}
1213
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1214
+ Rendered products/show.html.erb within layouts/application (37.2ms)
1215
+ Completed 500 Internal Server Error in 96ms
1216
+
1217
+ ActionView::Template::Error (undefined method `jkjk' for #<Product:0x007fe71268b658>):
1218
+ 11: </p>
1219
+ 12:
1220
+ 13: <%= opay_form_for @product do |f| %>
1221
+ 14: <%= f.payu %>
1222
+ 15: <% end %>
1223
+ 16:
1224
+ 17:
1225
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb___3787525202601926261_70315224150200'
1226
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3787525202601926261_70315224150200'
1227
+ app/controllers/products_controller.rb:18:in `show'
1228
+
1229
+
1230
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1231
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1232
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
1233
+
1234
+
1235
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 17:02:26 +0100
1236
+ Processing by ProductsController#show as HTML
1237
+ Parameters: {"id"=>"1"}
1238
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1239
+ Rendered products/show.html.erb within layouts/application (1.6ms)
1240
+ Completed 500 Internal Server Error in 4ms
1241
+
1242
+ ActionView::Template::Error (undefined method `jkjk' for #<Product:0x007fe7157c3400>):
1243
+ 11: </p>
1244
+ 12:
1245
+ 13: <%= opay_form_for @product do |f| %>
1246
+ 14: <%= f.payu %>
1247
+ 15: <% end %>
1248
+ 16:
1249
+ 17:
1250
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb___3787525202601926261_70315224150200'
1251
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3787525202601926261_70315224150200'
1252
+ app/controllers/products_controller.rb:18:in `show'
1253
+
1254
+
1255
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1256
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (23.5ms)
1257
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (30.6ms)
1258
+
1259
+
1260
+ Started GET "/products/1" for 127.0.0.1 at 2013-03-21 17:02:28 +0100
1261
+ Processing by ProductsController#show as HTML
1262
+ Parameters: {"id"=>"1"}
1263
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
1264
+ Rendered products/show.html.erb within layouts/application (1.4ms)
1265
+ Completed 500 Internal Server Error in 4ms
1266
+
1267
+ ActionView::Template::Error (undefined method `jkjk' for #<Product:0x007fe713a5e450>):
1268
+ 11: </p>
1269
+ 12:
1270
+ 13: <%= opay_form_for @product do |f| %>
1271
+ 14: <%= f.payu %>
1272
+ 15: <% end %>
1273
+ 16:
1274
+ 17:
1275
+ app/views/products/show.html.erb:14:in `block in _app_views_products_show_html_erb___3787525202601926261_70315224150200'
1276
+ app/views/products/show.html.erb:13:in `_app_views_products_show_html_erb___3787525202601926261_70315224150200'
1277
+ app/controllers/products_controller.rb:18:in `show'
1278
+
1279
+
1280
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1281
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1282
+ Rendered /Users/mariusz/.rvm/gems/ruby-1.9.3-p0@payments_engine/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
1283
+ Connecting to database specified by database.yml
1284
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1285
+ Migrating to CreateProducts (20130320132244)
1286
+  (0.1ms) select sqlite_version(*)
1287
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1288
+ Connecting to database specified by database.yml
1289
+  (11.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1290
+ Migrating to CreateProducts (20130320132244)
1291
+ Migrating to CreateOpayPayments (20130326141947)
1292
+  (0.1ms) select sqlite_version(*)
1293
+  (0.0ms) begin transaction
1294
+  (0.5ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session" varchar(255), "amount" float, "finished" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1295
+  (0.1ms) CREATE INDEX "index_opay_payments_on_item_id" ON "opay_payments" ("item_id")
1296
+ SQLite3::SQLException: table opay_payments has no column named item_id: CREATE INDEX "index_opay_payments_on_item_id" ON "opay_payments" ("item_id")
1297
+  (35.3ms) rollback transaction
1298
+ Connecting to database specified by database.yml
1299
+  (11.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1300
+ Migrating to CreateProducts (20130320132244)
1301
+ Migrating to CreateOpayPayments (20130326142236)
1302
+  (0.1ms) select sqlite_version(*)
1303
+  (0.1ms) begin transaction
1304
+  (0.6ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session" varchar(255), "amount" float, "finished" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1305
+  (0.1ms) CREATE INDEX "index_opay_payments_on_payable_id_and_payable_type" ON "opay_payments" ("payable_id", "payable_type")
1306
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130326142236')
1307
+  (1.8ms) commit transaction
1308
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1309
+ Connecting to database specified by database.yml
1310
+ Connecting to database specified by database.yml
1311
+  (2.2ms) select sqlite_version(*)
1312
+  (1.5ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session" varchar(255), "amount" float, "finished" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1313
+  (1.4ms) CREATE INDEX "index_opay_payments_on_payable_id_and_payable_type" ON "opay_payments" ("payable_id", "payable_type")
1314
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1315
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1316
+  (8.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1317
+  (0.1ms) SELECT version FROM "schema_migrations"
1318
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130326142236')
1319
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130320132244')
1320
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130321114023')
1321
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1322
+ Connecting to database specified by database.yml
1323
+ Connecting to database specified by database.yml
1324
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1325
+ Migrating to CreateProducts (20130320132244)
1326
+ Migrating to CreateOpayPayments (20130321114023)
1327
+  (0.1ms) select sqlite_version(*)
1328
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
+ Connecting to database specified by database.yml
1330
+ Connecting to database specified by database.yml
1331
+ Connecting to database specified by database.yml
1332
+ Connecting to database specified by database.yml
1333
+ Connecting to database specified by database.yml
1334
+  (16.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1335
+ Connecting to database specified by database.yml
1336
+  (1.7ms) select sqlite_version(*)
1337
+  (2.0ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session" varchar(255), "amount" float, "finished" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1338
+  (1.7ms) CREATE INDEX "index_opay_payments_on_payable_id_and_payable_type" ON "opay_payments" ("payable_id", "payable_type")
1339
+  (1.6ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "amount" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1340
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1341
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1342
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1343
+  (0.2ms) SELECT version FROM "schema_migrations"
1344
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130326152550')
1345
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130321114023')
1346
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1347
+ Connecting to database specified by database.yml
1348
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1349
+  (0.5ms) select sqlite_version(*)
1350
+  (17.7ms) DROP TABLE "opay_payments"
1351
+  (1.7ms) CREATE TABLE "opay_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "payable_id" integer, "payable_type" varchar(255), "session" varchar(255), "amount" float, "finished" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1352
+  (5.9ms) CREATE INDEX "index_opay_payments_on_payable_id_and_payable_type" ON "opay_payments" ("payable_id", "payable_type")
1353
+  (2.0ms) DROP TABLE "orders"
1354
+  (1.7ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "amount" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1355
+  (1.7ms) DROP TABLE "products"
1356
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1357
+  (0.1ms) SELECT version FROM "schema_migrations"
1358
+ Connecting to database specified by database.yml
1359
+ Connecting to database specified by database.yml
1360
+ Connecting to database specified by database.yml
1361
+ Connecting to database specified by database.yml
1362
+  (29.9ms) DELETE FROM "opay_payments";
1363
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1364
+  (1.6ms) DELETE FROM "orders";
1365
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1366
+  (1.5ms) DELETE FROM "products";
1367
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1368
+  (1.9ms) DELETE FROM "opay_payments";
1369
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1370
+  (2.2ms) DELETE FROM "orders";
1371
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1372
+  (1.5ms) DELETE FROM "products";
1373
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1374
+  (1.7ms) DELETE FROM "opay_payments";
1375
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1376
+  (1.5ms) DELETE FROM "orders";
1377
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1378
+  (1.3ms) DELETE FROM "products";
1379
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1380
+  (2.3ms) DELETE FROM "opay_payments";
1381
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1382
+  (1.9ms) DELETE FROM "orders";
1383
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1384
+  (1.5ms) DELETE FROM "products";
1385
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1386
+  (2.1ms) DELETE FROM "opay_payments";
1387
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1388
+  (1.3ms) DELETE FROM "orders";
1389
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1390
+  (1.4ms) DELETE FROM "products";
1391
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1392
+  (1.8ms) DELETE FROM "opay_payments";
1393
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1394
+  (1.5ms) DELETE FROM "orders";
1395
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1396
+  (1.5ms) DELETE FROM "products";
1397
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'products';
1398
+  (78.0ms) DELETE FROM "opay_payments";
1399
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1400
+  (12.1ms) DELETE FROM "orders";
1401
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1402
+  (12.3ms) DELETE FROM "products";
1403
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'products';
1404
+  (20.5ms) DELETE FROM "opay_payments";
1405
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1406
+  (2.4ms) DELETE FROM "orders";
1407
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1408
+  (5.7ms) DELETE FROM "products";
1409
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1410
+  (9.3ms) DELETE FROM "opay_payments";
1411
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1412
+  (3.5ms) DELETE FROM "orders";
1413
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1414
+  (19.1ms) DELETE FROM "products";
1415
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'products';
1416
+  (4.1ms) DELETE FROM "opay_payments";
1417
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1418
+  (12.3ms) DELETE FROM "orders";
1419
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1420
+  (13.7ms) DELETE FROM "products";
1421
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'products';
1422
+  (13.5ms) DELETE FROM "opay_payments";
1423
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1424
+  (5.9ms) DELETE FROM "orders";
1425
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1426
+  (12.3ms) DELETE FROM "products";
1427
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'products';
1428
+  (6.2ms) DELETE FROM "opay_payments";
1429
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1430
+  (23.7ms) DELETE FROM "orders";
1431
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'orders';
1432
+  (2.4ms) DELETE FROM "products";
1433
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1434
+  (2.1ms) DELETE FROM "opay_payments";
1435
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1436
+  (1.6ms) DELETE FROM "orders";
1437
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1438
+  (1.7ms) DELETE FROM "products";
1439
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1440
+  (2.2ms) DELETE FROM "opay_payments";
1441
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1442
+  (1.3ms) DELETE FROM "orders";
1443
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1444
+  (1.3ms) DELETE FROM "products";
1445
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1446
+  (1.7ms) DELETE FROM "opay_payments";
1447
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1448
+  (1.4ms) DELETE FROM "orders";
1449
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1450
+  (1.4ms) DELETE FROM "products";
1451
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1452
+  (1.7ms) DELETE FROM "opay_payments";
1453
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1454
+  (1.7ms) DELETE FROM "orders";
1455
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1456
+  (1.5ms) DELETE FROM "products";
1457
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1458
+  (1.6ms) DELETE FROM "opay_payments";
1459
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1460
+  (1.7ms) DELETE FROM "orders";
1461
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1462
+  (1.2ms) DELETE FROM "products";
1463
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1464
+  (1.6ms) DELETE FROM "opay_payments";
1465
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1466
+  (1.5ms) DELETE FROM "orders";
1467
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1468
+  (1.5ms) DELETE FROM "products";
1469
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1470
+  (8.1ms) DELETE FROM "opay_payments";
1471
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1472
+  (1.4ms) DELETE FROM "orders";
1473
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1474
+  (1.4ms) DELETE FROM "products";
1475
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1476
+  (1.7ms) DELETE FROM "opay_payments";
1477
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1478
+  (1.6ms) DELETE FROM "orders";
1479
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'orders';
1480
+  (1.5ms) DELETE FROM "products";
1481
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1482
+  (1.5ms) DELETE FROM "opay_payments";
1483
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1484
+  (1.3ms) DELETE FROM "orders";
1485
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1486
+  (1.3ms) DELETE FROM "products";
1487
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1488
+  (1.5ms) DELETE FROM "opay_payments";
1489
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1490
+  (1.3ms) DELETE FROM "orders";
1491
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1492
+  (1.3ms) DELETE FROM "products";
1493
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1494
+  (1.5ms) DELETE FROM "opay_payments";
1495
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1496
+  (2.1ms) DELETE FROM "orders";
1497
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1498
+  (1.4ms) DELETE FROM "products";
1499
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'products';
1500
+  (55.0ms) DELETE FROM "opay_payments";
1501
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'opay_payments';
1502
+  (1.5ms) DELETE FROM "orders";
1503
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'orders';
1504
+  (1.4ms) DELETE FROM "products";
1505
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'products';
1506
+ Connecting to database specified by database.yml
1507
+ Connecting to database specified by database.yml
1508
+ Connecting to database specified by database.yml
1509
+ Connecting to database specified by database.yml
1510
+ Connecting to database specified by database.yml
1511
+ Connecting to database specified by database.yml