navinshop 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +21 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/navinshop/application.js +13 -0
  6. data/app/assets/javascripts/navinshop/categories.js +2 -0
  7. data/app/assets/javascripts/navinshop/items.js +2 -0
  8. data/app/assets/stylesheets/navinshop/application.css +15 -0
  9. data/app/assets/stylesheets/navinshop/categories.css +4 -0
  10. data/app/assets/stylesheets/navinshop/items.css +4 -0
  11. data/app/assets/stylesheets/scaffold.css +56 -0
  12. data/app/controllers/navinshop/application_controller.rb +2 -0
  13. data/app/controllers/navinshop/categories_controller.rb +62 -0
  14. data/app/controllers/navinshop/items_controller.rb +63 -0
  15. data/app/helpers/navinshop/application_helper.rb +4 -0
  16. data/app/helpers/navinshop/categories_helper.rb +4 -0
  17. data/app/helpers/navinshop/items_helper.rb +4 -0
  18. data/app/models/navinshop/category.rb +5 -0
  19. data/app/models/navinshop/item.rb +7 -0
  20. data/app/uploaders/navinshop/item_image_uploader.rb +51 -0
  21. data/app/views/navinshop/categories/_form.html.erb +21 -0
  22. data/app/views/navinshop/categories/edit.html.erb +6 -0
  23. data/app/views/navinshop/categories/index.html.erb +25 -0
  24. data/app/views/navinshop/categories/new.html.erb +5 -0
  25. data/app/views/navinshop/categories/show.html.erb +26 -0
  26. data/app/views/navinshop/items/_form.html.erb +33 -0
  27. data/app/views/navinshop/items/edit.html.erb +6 -0
  28. data/app/views/navinshop/items/index.html.erb +31 -0
  29. data/app/views/navinshop/items/new.html.erb +5 -0
  30. data/app/views/navinshop/items/show.html.erb +24 -0
  31. data/config/routes.rb +8 -0
  32. data/db/migrate/20140517051602_create_navinshop_categories.rb +9 -0
  33. data/db/migrate/20140517051719_create_navinshop_items.rb +12 -0
  34. data/lib/navinshop/engine.rb +6 -0
  35. data/lib/navinshop/version.rb +3 -0
  36. data/lib/navinshop.rb +4 -0
  37. data/lib/tasks/navinshop_tasks.rake +4 -0
  38. data/test/controllers/navinshop/categories_controller_test.rb +51 -0
  39. data/test/controllers/navinshop/items_controller_test.rb +51 -0
  40. data/test/dummy/README.rdoc +28 -0
  41. data/test/dummy/Rakefile +6 -0
  42. data/test/dummy/app/assets/javascripts/application.js +13 -0
  43. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  44. data/test/dummy/app/controllers/application_controller.rb +5 -0
  45. data/test/dummy/app/helpers/application_helper.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/config/application.rb +23 -0
  51. data/test/dummy/config/boot.rb +5 -0
  52. data/test/dummy/config/database.yml +25 -0
  53. data/test/dummy/config/environment.rb +5 -0
  54. data/test/dummy/config/environments/development.rb +37 -0
  55. data/test/dummy/config/environments/production.rb +83 -0
  56. data/test/dummy/config/environments/test.rb +39 -0
  57. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  58. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  59. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  60. data/test/dummy/config/initializers/inflections.rb +16 -0
  61. data/test/dummy/config/initializers/mime_types.rb +4 -0
  62. data/test/dummy/config/initializers/session_store.rb +3 -0
  63. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy/config/locales/en.yml +23 -0
  65. data/test/dummy/config/routes.rb +4 -0
  66. data/test/dummy/config/secrets.yml +22 -0
  67. data/test/dummy/config.ru +4 -0
  68. data/test/dummy/db/development.sqlite3 +0 -0
  69. data/test/dummy/db/schema.rb +31 -0
  70. data/test/dummy/db/test.sqlite3 +0 -0
  71. data/test/dummy/log/development.log +1258 -0
  72. data/test/dummy/public/404.html +67 -0
  73. data/test/dummy/public/422.html +67 -0
  74. data/test/dummy/public/500.html +66 -0
  75. data/test/dummy/public/favicon.ico +0 -0
  76. data/test/dummy/public/uploads/navinshop/item/image/1/facebook_256.png +0 -0
  77. data/test/dummy/public/uploads/navinshop/item/image/1/thumb_facebook_256.png +0 -0
  78. data/test/dummy/public/uploads/navinshop/item/image/2/thumb_twitter_256.png +0 -0
  79. data/test/dummy/public/uploads/navinshop/item/image/2/twitter_256.png +0 -0
  80. data/test/dummy/public/uploads/navinshop/item/image/3/github_256.png +0 -0
  81. data/test/dummy/public/uploads/navinshop/item/image/3/thumb_github_256.png +0 -0
  82. data/test/dummy/public/uploads/navinshop/item/image/4/QSWRH___13_____.jpg +0 -0
  83. data/test/dummy/public/uploads/navinshop/item/image/4/thumb_QSWRH___13_____.jpg +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  90. data/test/fixtures/navinshop/categories.yml +7 -0
  91. data/test/fixtures/navinshop/items.yml +13 -0
  92. data/test/helpers/navinshop/categories_helper_test.rb +6 -0
  93. data/test/helpers/navinshop/items_helper_test.rb +6 -0
  94. data/test/integration/navigation_test.rb +10 -0
  95. data/test/models/navinshop/category_test.rb +9 -0
  96. data/test/models/navinshop/item_test.rb +9 -0
  97. data/test/navinshop_test.rb +7 -0
  98. data/test/test_helper.rb +15 -0
  99. metadata +258 -0
@@ -0,0 +1,1258 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-05-17 11:42:21 +0530
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (57.5ms)
6
+ Completed 200 OK in 202ms (Views: 201.1ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2014-05-17 11:42:22 +0530
10
+ Processing by Rails::WelcomeController#index as HTML
11
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
12
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/l" for 127.0.0.1 at 2014-05-17 11:42:27 +0530
16
+
17
+ ActionController::RoutingError (No route matches [GET] "/l"):
18
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
19
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
21
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
22
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
24
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
25
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
26
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
27
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
28
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
29
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
30
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
31
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
32
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
33
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
34
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
35
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
36
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
37
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
38
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
39
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
40
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
41
+
42
+
43
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
44
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
45
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
46
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (74.5ms)
47
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (229.3ms)
48
+
49
+
50
+ Started GET "/items" for 127.0.0.1 at 2014-05-17 11:42:35 +0530
51
+
52
+ ActionController::RoutingError (No route matches [GET] "/items"):
53
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
54
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
55
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
56
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
57
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
58
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
59
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
60
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
61
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
62
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
63
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
64
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
65
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
66
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
67
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
68
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
69
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
70
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
71
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
72
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
73
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
74
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
75
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
76
+
77
+
78
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
79
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
80
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms)
81
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
82
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.2ms)
83
+
84
+
85
+ Started GET "/items/1" for 127.0.0.1 at 2014-05-17 11:42:47 +0530
86
+
87
+ ActionController::RoutingError (No route matches [GET] "/items/1"):
88
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
89
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
90
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
91
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
92
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
93
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
94
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
95
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
96
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
97
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
98
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
99
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
100
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
101
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
102
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
103
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
104
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
105
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
106
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
107
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
108
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
109
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
110
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
111
+
112
+
113
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
114
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
115
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
116
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
117
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (33.4ms)
118
+
119
+
120
+ Started GET "/category" for 127.0.0.1 at 2014-05-17 11:43:04 +0530
121
+
122
+ ActionController::RoutingError (No route matches [GET] "/category"):
123
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
124
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
125
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
126
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
127
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
128
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
129
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
130
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
131
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
132
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
133
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
134
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
135
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
136
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
137
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
138
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
139
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
140
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
141
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
142
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
143
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
144
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
145
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
146
+
147
+
148
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
149
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
150
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
151
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
152
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (33.3ms)
153
+
154
+
155
+ Started GET "/" for 127.0.0.1 at 2014-05-17 11:49:13 +0530
156
+ Processing by Rails::WelcomeController#index as HTML
157
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
158
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
159
+
160
+
161
+ Started GET "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:49:25 +0530
162
+
163
+ SyntaxError (/home/navin/Desktop/navinshop/app/controllers/navinshop/application_controller.rb:2: syntax error, unexpected end-of-input, expecting keyword_end):
164
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `load'
165
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `block in load_file'
166
+ activesupport (4.1.1) lib/active_support/dependencies.rb:633:in `new_constants_in'
167
+ activesupport (4.1.1) lib/active_support/dependencies.rb:442:in `load_file'
168
+ activesupport (4.1.1) lib/active_support/dependencies.rb:342:in `require_or_load'
169
+ activesupport (4.1.1) lib/active_support/dependencies.rb:307:in `depend_on'
170
+ activesupport (4.1.1) lib/active_support/dependencies.rb:225:in `require_dependency'
171
+ /home/navin/Desktop/navinshop/app/controllers/navinshop/categories_controller.rb:1:in `<top (required)>'
172
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `load'
173
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `block in load_file'
174
+ activesupport (4.1.1) lib/active_support/dependencies.rb:633:in `new_constants_in'
175
+ activesupport (4.1.1) lib/active_support/dependencies.rb:442:in `load_file'
176
+ activesupport (4.1.1) lib/active_support/dependencies.rb:342:in `require_or_load'
177
+ activesupport (4.1.1) lib/active_support/dependencies.rb:480:in `load_missing_constant'
178
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
179
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `const_get'
180
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `block in constantize'
181
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
182
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
183
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
184
+ activesupport (4.1.1) lib/active_support/dependencies.rb:552:in `get'
185
+ activesupport (4.1.1) lib/active_support/dependencies.rb:583:in `constantize'
186
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
187
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:66:in `controller'
188
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:44:in `call'
189
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
190
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
191
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
192
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
193
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
194
+ railties (4.1.1) lib/rails/railtie.rb:194:in `public_send'
195
+ railties (4.1.1) lib/rails/railtie.rb:194:in `method_missing'
196
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
197
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
198
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
199
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
200
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
201
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
202
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
203
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
204
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
205
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
206
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
207
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
208
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
209
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
210
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
211
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
212
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
213
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
214
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
215
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
216
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
217
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
218
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
219
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
220
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
221
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
222
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
223
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
224
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
225
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
226
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
227
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
228
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
229
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
230
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
231
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
232
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
233
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
234
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
235
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
236
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
237
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
238
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
239
+
240
+
241
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.3ms)
242
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
243
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (44.1ms)
244
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (153.4ms)
245
+
246
+
247
+ Started GET "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:49:58 +0530
248
+ Processing by Navinshop::CategoriesController#index as HTML
249
+ Navinshop::Category Load (1.4ms) SELECT "navinshop_categories".* FROM "navinshop_categories"
250
+ SQLite3::SQLException: no such table: navinshop_categories: SELECT "navinshop_categories".* FROM "navinshop_categories"
251
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/index.html.erb within layouts/application (6.5ms)
252
+ Completed 500 Internal Server Error in 129ms
253
+
254
+ ActionView::Template::Error (SQLite3::SQLException: no such table: navinshop_categories: SELECT "navinshop_categories".* FROM "navinshop_categories"):
255
+ 9: </thead>
256
+ 10:
257
+ 11: <tbody>
258
+ 12: <% @categories.each do |category| %>
259
+ 13: <tr>
260
+ 14: <td><%= category.title %></td>
261
+ 15: <td><%= link_to 'Show', category %></td>
262
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `initialize'
263
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `new'
264
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `prepare'
265
+ activerecord (4.1.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:301:in `block in exec_query'
266
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
267
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
268
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
269
+ activerecord (4.1.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query'
270
+ activerecord (4.1.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:507:in `select'
271
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/database_statements.rb:31:in `select_all'
272
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/query_cache.rb:67:in `block in select_all'
273
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/query_cache.rb:82:in `cache_sql'
274
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/query_cache.rb:67:in `select_all'
275
+ activerecord (4.1.1) lib/active_record/querying.rb:39:in `find_by_sql'
276
+ activerecord (4.1.1) lib/active_record/relation.rb:603:in `exec_queries'
277
+ activerecord (4.1.1) lib/active_record/relation.rb:487:in `load'
278
+ activerecord (4.1.1) lib/active_record/relation.rb:231:in `to_a'
279
+ activerecord (4.1.1) lib/active_record/relation/delegation.rb:46:in `each'
280
+ /home/navin/Desktop/navinshop/app/views/navinshop/categories/index.html.erb:12:in `__home_navin__esktop_navinshop_app_views_navinshop_categories_index_html_erb___892936990_93591710'
281
+ actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
282
+ activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
283
+ actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
284
+ actionview (4.1.1) lib/action_view/template.rb:143:in `render'
285
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
286
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
287
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
288
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
289
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
290
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
291
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
292
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
293
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
294
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
295
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
296
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
297
+ actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
298
+ actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
299
+ actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
300
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
301
+ actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
302
+ actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
303
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
304
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
305
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
306
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
307
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
308
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
309
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
310
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
311
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
312
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
313
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
314
+ actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
315
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
316
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
317
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
318
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
319
+ activesupport (4.1.1) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
320
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `call'
321
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
322
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
323
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
324
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
325
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
326
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
327
+ actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
328
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
329
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
330
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
331
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
332
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
333
+ actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
334
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
335
+ actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
336
+ actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
337
+ actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
338
+ actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
339
+ actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
340
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
341
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
342
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
343
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
344
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
345
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
346
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
347
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
348
+ railties (4.1.1) lib/rails/railtie.rb:194:in `public_send'
349
+ railties (4.1.1) lib/rails/railtie.rb:194:in `method_missing'
350
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
351
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
352
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
353
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
354
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
355
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
356
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
357
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
358
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
359
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
360
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
361
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
362
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
363
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
364
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
365
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
366
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
367
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
368
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
369
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
370
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
371
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
372
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
373
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
374
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
375
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
376
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
377
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
378
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
379
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
380
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
381
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
382
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
383
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
384
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
385
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
386
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
387
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
388
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
389
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
390
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
391
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
392
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
393
+
394
+
395
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
396
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
397
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.1ms)
398
+  (106.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
399
+  (0.5ms) select sqlite_version(*)
400
+  (108.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
401
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
402
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
403
+ Migrating to CreateNavinshopCategories (20140517051602)
404
+  (0.1ms) begin transaction
405
+  (0.8ms) CREATE TABLE "navinshop_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
406
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140517051602"]]
407
+  (107.8ms) commit transaction
408
+ Migrating to CreateNavinshopItems (20140517051719)
409
+  (0.1ms) begin transaction
410
+  (0.6ms) CREATE TABLE "navinshop_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "text" text, "category_id" integer, "image" varchar(255), "created_at" datetime, "updated_at" datetime) 
411
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140517051719"]]
412
+  (106.7ms) commit transaction
413
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
414
+
415
+
416
+ Started GET "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:51:00 +0530
417
+ Processing by Navinshop::CategoriesController#index as HTML
418
+ Navinshop::Category Load (1.6ms) SELECT "navinshop_categories".* FROM "navinshop_categories"
419
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/index.html.erb within layouts/application (4.9ms)
420
+ Completed 200 OK in 89ms (Views: 83.5ms | ActiveRecord: 1.6ms)
421
+
422
+
423
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:51:01 +0530
424
+
425
+
426
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:51:01 +0530
427
+
428
+
429
+ Started GET "/navinshop/categories/new" for 127.0.0.1 at 2014-05-17 11:51:12 +0530
430
+ Processing by Navinshop::CategoriesController#new as HTML
431
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/_form.html.erb (94.0ms)
432
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/new.html.erb within layouts/application (99.8ms)
433
+ Completed 200 OK in 109ms (Views: 106.4ms | ActiveRecord: 0.7ms)
434
+
435
+
436
+ Started POST "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:51:16 +0530
437
+ Processing by Navinshop::CategoriesController#create as HTML
438
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "category"=>{"title"=>"FOOD"}, "commit"=>"Create Category"}
439
+  (0.2ms) begin transaction
440
+ SQL (0.7ms) INSERT INTO "navinshop_categories" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-17 06:21:16.711363"], ["title", "FOOD"], ["updated_at", "2014-05-17 06:21:16.711363"]]
441
+  (108.8ms) commit transaction
442
+ Redirected to http://localhost:3000/navinshop/categories/1
443
+ Completed 302 Found in 140ms (ActiveRecord: 109.7ms)
444
+
445
+
446
+ Started GET "/navinshop/categories/1" for 127.0.0.1 at 2014-05-17 11:51:16 +0530
447
+ Processing by Navinshop::CategoriesController#show as HTML
448
+ Parameters: {"id"=>"1"}
449
+ Navinshop::Category Load (0.3ms) SELECT "navinshop_categories".* FROM "navinshop_categories" WHERE "navinshop_categories"."id" = ? LIMIT 1 [["id", 1]]
450
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb within layouts/application (402.9ms)
451
+ Completed 500 Internal Server Error in 410ms
452
+
453
+ LoadError (Unable to autoload constant Navinshop::ItemImageUploader, expected /home/navin/Desktop/navinshop/app/uploaders/navinshop/item_image_uploader.rb to define it):
454
+ activesupport (4.1.1) lib/active_support/dependencies.rb:481:in `load_missing_constant'
455
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
456
+ activesupport (4.1.1) lib/active_support/dependencies.rb:512:in `load_missing_constant'
457
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
458
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:3:in `<class:Item>'
459
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:2:in `<module:Navinshop>'
460
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:1:in `<top (required)>'
461
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `load'
462
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `block in load_file'
463
+ activesupport (4.1.1) lib/active_support/dependencies.rb:633:in `new_constants_in'
464
+ activesupport (4.1.1) lib/active_support/dependencies.rb:442:in `load_file'
465
+ activesupport (4.1.1) lib/active_support/dependencies.rb:342:in `require_or_load'
466
+ activesupport (4.1.1) lib/active_support/dependencies.rb:480:in `load_missing_constant'
467
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
468
+ activesupport (4.1.1) lib/active_support/dependencies.rb:512:in `load_missing_constant'
469
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
470
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `const_get'
471
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `block in constantize'
472
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
473
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
474
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
475
+ activesupport (4.1.1) lib/active_support/dependencies.rb:552:in `get'
476
+ activesupport (4.1.1) lib/active_support/dependencies.rb:583:in `constantize'
477
+ activerecord (4.1.1) lib/active_record/inheritance.rb:124:in `block in compute_type'
478
+ activerecord (4.1.1) lib/active_record/inheritance.rb:122:in `each'
479
+ activerecord (4.1.1) lib/active_record/inheritance.rb:122:in `compute_type'
480
+ activerecord (4.1.1) lib/active_record/reflection.rb:190:in `klass'
481
+ activerecord (4.1.1) lib/active_record/reflection.rb:406:in `automatic_inverse_of'
482
+ activerecord (4.1.1) lib/active_record/reflection.rb:395:in `block in inverse_name'
483
+ activerecord (4.1.1) lib/active_record/reflection.rb:391:in `fetch'
484
+ activerecord (4.1.1) lib/active_record/reflection.rb:391:in `inverse_name'
485
+ activerecord (4.1.1) lib/active_record/reflection.rb:294:in `has_inverse?'
486
+ activerecord (4.1.1) lib/active_record/reflection.rb:261:in `check_validity_of_inverse!'
487
+ activerecord (4.1.1) lib/active_record/reflection.rb:256:in `check_validity!'
488
+ activerecord (4.1.1) lib/active_record/associations/association.rb:25:in `initialize'
489
+ activerecord (4.1.1) lib/active_record/associations.rb:149:in `new'
490
+ activerecord (4.1.1) lib/active_record/associations.rb:149:in `association'
491
+ activerecord (4.1.1) lib/active_record/associations/builder/association.rb:110:in `items'
492
+ /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb:9:in `__home_navin__esktop_navinshop_app_views_navinshop_categories_show_html_erb___808497897_84449550'
493
+ actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
494
+ activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
495
+ actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
496
+ actionview (4.1.1) lib/action_view/template.rb:143:in `render'
497
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
498
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
499
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
500
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
501
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
502
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
503
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
504
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
505
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
506
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
507
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
508
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
509
+ actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
510
+ actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
511
+ actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
512
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
513
+ actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
514
+ actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
515
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
516
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
517
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
518
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
519
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
520
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
521
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
522
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
523
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
524
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
525
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
526
+ actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
527
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
528
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
529
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
530
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
531
+ activesupport (4.1.1) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
532
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `call'
533
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
534
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
535
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
536
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
537
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
538
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
539
+ actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
540
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
541
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
542
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
543
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
544
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
545
+ actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
546
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
547
+ actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
548
+ actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
549
+ actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
550
+ actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
551
+ actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
552
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
553
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
554
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
555
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
556
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
557
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
558
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
559
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
560
+ railties (4.1.1) lib/rails/railtie.rb:194:in `public_send'
561
+ railties (4.1.1) lib/rails/railtie.rb:194:in `method_missing'
562
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
563
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
564
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
565
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
566
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
567
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
568
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
569
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
570
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
571
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
572
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
573
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
574
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
575
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
576
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
577
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
578
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
579
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
580
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
581
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
582
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
583
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
584
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
585
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
586
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
587
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
588
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
589
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
590
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
591
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
592
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
593
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
594
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
595
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
596
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
597
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
598
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
599
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
600
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
601
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
602
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
603
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
604
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
605
+
606
+
607
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
608
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
609
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
610
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.4ms)
611
+
612
+
613
+ Started GET "/navinshop/categories/1" for 127.0.0.1 at 2014-05-17 11:52:05 +0530
614
+ Processing by Navinshop::CategoriesController#show as HTML
615
+ Parameters: {"id"=>"1"}
616
+ Navinshop::Category Load (0.2ms) SELECT "navinshop_categories".* FROM "navinshop_categories" WHERE "navinshop_categories"."id" = ? LIMIT 1 [["id", 1]]
617
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb within layouts/application (15.5ms)
618
+ Completed 500 Internal Server Error in 20ms
619
+
620
+ ActionView::Template::Error (undefined method `belongs_To' for #<Class:0xaee0674>):
621
+ 6: </div>
622
+ 7:
623
+ 8:
624
+ 9: <% @category.items.each do |item| %>
625
+ 10: <div class="span2 navinshop-item">
626
+ 11: <%= iamge_tag item.image_url(:thumb).to_s %>
627
+ 12: <h3><%= item.title %></h3>
628
+ activerecord (4.1.1) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
629
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:4:in `<class:Item>'
630
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:2:in `<module:Navinshop>'
631
+ /home/navin/Desktop/navinshop/app/models/navinshop/item.rb:1:in `<top (required)>'
632
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `load'
633
+ activesupport (4.1.1) lib/active_support/dependencies.rb:443:in `block in load_file'
634
+ activesupport (4.1.1) lib/active_support/dependencies.rb:633:in `new_constants_in'
635
+ activesupport (4.1.1) lib/active_support/dependencies.rb:442:in `load_file'
636
+ activesupport (4.1.1) lib/active_support/dependencies.rb:342:in `require_or_load'
637
+ activesupport (4.1.1) lib/active_support/dependencies.rb:480:in `load_missing_constant'
638
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
639
+ activesupport (4.1.1) lib/active_support/dependencies.rb:512:in `load_missing_constant'
640
+ activesupport (4.1.1) lib/active_support/dependencies.rb:180:in `const_missing'
641
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `const_get'
642
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:240:in `block in constantize'
643
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
644
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
645
+ activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
646
+ activesupport (4.1.1) lib/active_support/dependencies.rb:552:in `get'
647
+ activesupport (4.1.1) lib/active_support/dependencies.rb:583:in `constantize'
648
+ activerecord (4.1.1) lib/active_record/inheritance.rb:124:in `block in compute_type'
649
+ activerecord (4.1.1) lib/active_record/inheritance.rb:122:in `each'
650
+ activerecord (4.1.1) lib/active_record/inheritance.rb:122:in `compute_type'
651
+ activerecord (4.1.1) lib/active_record/reflection.rb:190:in `klass'
652
+ activerecord (4.1.1) lib/active_record/associations/association.rb:118:in `klass'
653
+ activerecord (4.1.1) lib/active_record/associations/collection_association.rb:36:in `reader'
654
+ activerecord (4.1.1) lib/active_record/associations/builder/association.rb:110:in `items'
655
+ /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb:9:in `__home_navin__esktop_navinshop_app_views_navinshop_categories_show_html_erb___808497897_84449550'
656
+ actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
657
+ activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
658
+ actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
659
+ actionview (4.1.1) lib/action_view/template.rb:143:in `render'
660
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
661
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
662
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
663
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
664
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
665
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
666
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
667
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
668
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
669
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
670
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
671
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
672
+ actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
673
+ actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
674
+ actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
675
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
676
+ actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
677
+ actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
678
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
679
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
680
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
681
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
682
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
683
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
684
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
685
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
686
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
687
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
688
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
689
+ actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
690
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
691
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
692
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
693
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
694
+ activesupport (4.1.1) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
695
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `call'
696
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
697
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
698
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
699
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
700
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
701
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
702
+ actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
703
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
704
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
705
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
706
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
707
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
708
+ actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
709
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
710
+ actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
711
+ actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
712
+ actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
713
+ actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
714
+ actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
715
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
716
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
717
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
718
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
719
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
720
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
721
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
722
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
723
+ railties (4.1.1) lib/rails/railtie.rb:194:in `public_send'
724
+ railties (4.1.1) lib/rails/railtie.rb:194:in `method_missing'
725
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
726
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
727
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
728
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
729
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
730
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
731
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
732
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
733
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
734
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
735
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
736
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
737
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
738
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
739
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
740
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
741
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
742
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
743
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
744
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
745
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
746
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
747
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
748
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
749
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
750
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
751
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
752
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
753
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
754
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
755
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
756
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
757
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
758
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
759
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
760
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
761
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
762
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
763
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
764
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
765
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
766
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
767
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
768
+
769
+
770
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
771
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
772
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.1ms)
773
+
774
+
775
+ Started GET "/navinshop/categories/1" for 127.0.0.1 at 2014-05-17 11:52:35 +0530
776
+ Processing by Navinshop::CategoriesController#show as HTML
777
+ Parameters: {"id"=>"1"}
778
+ Navinshop::Category Load (0.3ms) SELECT "navinshop_categories".* FROM "navinshop_categories" WHERE "navinshop_categories"."id" = ? LIMIT 1 [["id", 1]]
779
+ Navinshop::Item Load (0.5ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."category_id" = ? [["category_id", 1]]
780
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb within layouts/application (68.1ms)
781
+ Completed 200 OK in 82ms (Views: 73.4ms | ActiveRecord: 1.9ms)
782
+
783
+
784
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:52:35 +0530
785
+
786
+
787
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:52:35 +0530
788
+
789
+
790
+ Started GET "/navinshop/categories/1/items/new" for 127.0.0.1 at 2014-05-17 11:52:40 +0530
791
+ Processing by Navinshop::ItemsController#new as HTML
792
+ Parameters: {"category_id"=>"1"}
793
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (37.5ms)
794
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (39.6ms)
795
+ Completed 500 Internal Server Error in 61ms
796
+
797
+ ActionView::Template::Error (undefined method `hideen_field' for #<ActionView::Helpers::FormBuilder:0xb299284>):
798
+ 25: <%= f.file_field :image %>
799
+ 26: </div>
800
+ 27: <div class="field">
801
+ 28: <%= f.hideen_field :category_id %>
802
+ 29: </div>
803
+ 30: <div class="actions">
804
+ 31: <%= f.submit %>
805
+ /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb:28:in `block in __home_navin__esktop_navinshop_app_views_navinshop_items__form_html_erb___376905961_93799890'
806
+ actionview (4.1.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
807
+ actionview (4.1.1) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
808
+ actionview (4.1.1) lib/action_view/helpers/capture_helper.rb:38:in `capture'
809
+ actionview (4.1.1) lib/action_view/helpers/form_helper.rb:434:in `form_for'
810
+ /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb:1:in `__home_navin__esktop_navinshop_app_views_navinshop_items__form_html_erb___376905961_93799890'
811
+ actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
812
+ activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
813
+ actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
814
+ actionview (4.1.1) lib/action_view/template.rb:143:in `render'
815
+ actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
816
+ actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
817
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
818
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
819
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
820
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
821
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
822
+ actionview (4.1.1) lib/action_view/renderer/partial_renderer.rb:278:in `render'
823
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
824
+ actionview (4.1.1) lib/action_view/helpers/rendering_helper.rb:35:in `render'
825
+ /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb:3:in `__home_navin__esktop_navinshop_app_views_navinshop_items_new_html_erb__44715925_93852350'
826
+ actionview (4.1.1) lib/action_view/template.rb:145:in `block in render'
827
+ activesupport (4.1.1) lib/active_support/notifications.rb:161:in `instrument'
828
+ actionview (4.1.1) lib/action_view/template.rb:339:in `instrument'
829
+ actionview (4.1.1) lib/action_view/template.rb:143:in `render'
830
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
831
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
832
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
833
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
834
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
835
+ actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
836
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
837
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
838
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
839
+ actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:17:in `render'
840
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
841
+ actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
842
+ actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
843
+ actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
844
+ actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
845
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
846
+ actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
847
+ actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
848
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
849
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
850
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
851
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
852
+ activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
853
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
854
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
855
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
856
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
857
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
858
+ actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
859
+ actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
860
+ actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
861
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
862
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
863
+ activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
864
+ activesupport (4.1.1) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
865
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `call'
866
+ activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
867
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
868
+ activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
869
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
870
+ activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
871
+ actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
872
+ actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
873
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
874
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
875
+ activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
876
+ activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
877
+ actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
878
+ actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
879
+ activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
880
+ actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
881
+ actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
882
+ actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
883
+ actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
884
+ actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
885
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
886
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
887
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
888
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
889
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
890
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
891
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
892
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
893
+ railties (4.1.1) lib/rails/railtie.rb:194:in `public_send'
894
+ railties (4.1.1) lib/rails/railtie.rb:194:in `method_missing'
895
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
896
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
897
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
898
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
899
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
900
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
901
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
902
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
903
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
904
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
905
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
906
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
907
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
908
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
909
+ activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
910
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
911
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
912
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
913
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
914
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
915
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
916
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
917
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
918
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
919
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
920
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
921
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
922
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
923
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
924
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
925
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
926
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
927
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
928
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
929
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
930
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
931
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
932
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
933
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
934
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
935
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
936
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
937
+ /home/navin/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
938
+
939
+
940
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
941
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms)
942
+ Rendered /home/navin/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms)
943
+
944
+
945
+ Started GET "/navinshop/categories/1/items/new" for 127.0.0.1 at 2014-05-17 11:53:13 +0530
946
+ Processing by Navinshop::ItemsController#new as HTML
947
+ Parameters: {"category_id"=>"1"}
948
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (7.5ms)
949
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (9.3ms)
950
+ Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
951
+
952
+
953
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:13 +0530
954
+
955
+
956
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:13 +0530
957
+
958
+
959
+ Started GET "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:53:18 +0530
960
+ Processing by Navinshop::CategoriesController#index as HTML
961
+ Navinshop::Category Load (0.4ms) SELECT "navinshop_categories".* FROM "navinshop_categories"
962
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/index.html.erb within layouts/application (5.2ms)
963
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.4ms)
964
+
965
+
966
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:18 +0530
967
+
968
+
969
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:18 +0530
970
+
971
+
972
+ Started GET "/navinshop/categories/new" for 127.0.0.1 at 2014-05-17 11:53:19 +0530
973
+ Processing by Navinshop::CategoriesController#new as HTML
974
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/_form.html.erb (3.5ms)
975
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/new.html.erb within layouts/application (5.7ms)
976
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
977
+
978
+
979
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:19 +0530
980
+
981
+
982
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:19 +0530
983
+
984
+
985
+ Started POST "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:53:29 +0530
986
+ Processing by Navinshop::CategoriesController#create as HTML
987
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "category"=>{"title"=>"Clothes"}, "commit"=>"Create Category"}
988
+  (0.2ms) begin transaction
989
+ SQL (0.5ms) INSERT INTO "navinshop_categories" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-05-17 06:23:29.536767"], ["title", "Clothes"], ["updated_at", "2014-05-17 06:23:29.536767"]]
990
+  (128.2ms) commit transaction
991
+ Redirected to http://localhost:3000/navinshop/categories/2
992
+ Completed 302 Found in 136ms (ActiveRecord: 128.9ms)
993
+
994
+
995
+ Started GET "/navinshop/categories/2" for 127.0.0.1 at 2014-05-17 11:53:29 +0530
996
+ Processing by Navinshop::CategoriesController#show as HTML
997
+ Parameters: {"id"=>"2"}
998
+ Navinshop::Category Load (0.2ms) SELECT "navinshop_categories".* FROM "navinshop_categories" WHERE "navinshop_categories"."id" = ? LIMIT 1 [["id", 2]]
999
+ Navinshop::Item Load (0.3ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."category_id" = ? [["category_id", 2]]
1000
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb within layouts/application (4.1ms)
1001
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.5ms)
1002
+
1003
+
1004
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:29 +0530
1005
+
1006
+
1007
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:29 +0530
1008
+
1009
+
1010
+ Started GET "/navinshop/categories" for 127.0.0.1 at 2014-05-17 11:53:31 +0530
1011
+ Processing by Navinshop::CategoriesController#index as HTML
1012
+ Navinshop::Category Load (0.3ms) SELECT "navinshop_categories".* FROM "navinshop_categories"
1013
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/index.html.erb within layouts/application (4.1ms)
1014
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.3ms)
1015
+
1016
+
1017
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:32 +0530
1018
+
1019
+
1020
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:32 +0530
1021
+
1022
+
1023
+ Started GET "/navinshop/categories/1" for 127.0.0.1 at 2014-05-17 11:53:51 +0530
1024
+ Processing by Navinshop::CategoriesController#show as HTML
1025
+ Parameters: {"id"=>"1"}
1026
+ Navinshop::Category Load (0.2ms) SELECT "navinshop_categories".* FROM "navinshop_categories" WHERE "navinshop_categories"."id" = ? LIMIT 1 [["id", 1]]
1027
+ Navinshop::Item Load (0.2ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."category_id" = ? [["category_id", 1]]
1028
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/categories/show.html.erb within layouts/application (4.5ms)
1029
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.4ms)
1030
+
1031
+
1032
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:53:51 +0530
1033
+
1034
+
1035
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:53:51 +0530
1036
+
1037
+
1038
+ Started GET "/navinshop/categories/1/items/new" for 127.0.0.1 at 2014-05-17 11:53:59 +0530
1039
+ Processing by Navinshop::ItemsController#new as HTML
1040
+ Parameters: {"category_id"=>"1"}
1041
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (5.0ms)
1042
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (8.1ms)
1043
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
1044
+
1045
+
1046
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:54:00 +0530
1047
+
1048
+
1049
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:54:00 +0530
1050
+
1051
+
1052
+ Started POST "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:55:25 +0530
1053
+ Processing by Navinshop::ItemsController#create as HTML
1054
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "item"=>{"title"=>"facebook", "text"=>"buy facebook for lowest price", "image"=>#<ActionDispatch::Http::UploadedFile:0xb31e790 @tempfile=#<Tempfile:/tmp/RackMultipart20140517-15206-14c07z3>, @original_filename="facebook_256.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"item[image]\"; filename=\"facebook_256.png\"\r\nContent-Type: image/png\r\n">, "category_id"=>"1"}, "commit"=>"Create Item"}
1055
+  (0.2ms) begin transaction
1056
+ SQL (0.4ms) INSERT INTO "navinshop_items" ("category_id", "created_at", "image", "text", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["category_id", 1], ["created_at", "2014-05-17 06:25:26.004701"], ["image", "facebook_256.png"], ["text", "buy facebook for lowest price"], ["title", "facebook"], ["updated_at", "2014-05-17 06:25:26.004701"]]
1057
+  (124.6ms) commit transaction
1058
+ Redirected to http://localhost:3000/navinshop/items/1
1059
+ Completed 302 Found in 310ms (ActiveRecord: 125.3ms)
1060
+
1061
+
1062
+ Started GET "/navinshop/items/1" for 127.0.0.1 at 2014-05-17 11:55:26 +0530
1063
+ Processing by Navinshop::ItemsController#show as HTML
1064
+ Parameters: {"id"=>"1"}
1065
+ Navinshop::Item Load (0.3ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."id" = ? LIMIT 1 [["id", 1]]
1066
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/show.html.erb within layouts/application (3.1ms)
1067
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.3ms)
1068
+
1069
+
1070
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:55:26 +0530
1071
+
1072
+
1073
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:55:26 +0530
1074
+
1075
+
1076
+ Started GET "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:55:28 +0530
1077
+ Processing by Navinshop::ItemsController#index as HTML
1078
+ Navinshop::Item Load (1.7ms) SELECT "navinshop_items".* FROM "navinshop_items"
1079
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/index.html.erb within layouts/application (6.6ms)
1080
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 1.7ms)
1081
+
1082
+
1083
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:55:28 +0530
1084
+
1085
+
1086
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:55:28 +0530
1087
+
1088
+
1089
+ Started GET "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:55:39 +0530
1090
+ Processing by Navinshop::ItemsController#index as HTML
1091
+ Navinshop::Item Load (0.3ms) SELECT "navinshop_items".* FROM "navinshop_items"
1092
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/index.html.erb within layouts/application (5.7ms)
1093
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.3ms)
1094
+
1095
+
1096
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:55:39 +0530
1097
+
1098
+
1099
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:55:39 +0530
1100
+
1101
+
1102
+ Started GET "/navinshop/items/new" for 127.0.0.1 at 2014-05-17 11:55:41 +0530
1103
+ Processing by Navinshop::ItemsController#new as HTML
1104
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (5.0ms)
1105
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (6.6ms)
1106
+ Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms)
1107
+
1108
+
1109
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:55:41 +0530
1110
+
1111
+
1112
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:55:41 +0530
1113
+
1114
+
1115
+ Started POST "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:55:59 +0530
1116
+ Processing by Navinshop::ItemsController#create as HTML
1117
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "item"=>{"title"=>"twitter", "text"=>"buy twitter", "image"=>#<ActionDispatch::Http::UploadedFile:0xadd1c74 @tempfile=#<Tempfile:/tmp/RackMultipart20140517-15206-ndn60i>, @original_filename="twitter_256.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"item[image]\"; filename=\"twitter_256.png\"\r\nContent-Type: image/png\r\n">, "category_id"=>""}, "commit"=>"Create Item"}
1118
+  (0.1ms) begin transaction
1119
+ SQL (0.9ms) INSERT INTO "navinshop_items" ("created_at", "image", "text", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-05-17 06:25:59.445881"], ["image", "twitter_256.png"], ["text", "buy twitter"], ["title", "twitter"], ["updated_at", "2014-05-17 06:25:59.445881"]]
1120
+  (166.0ms) commit transaction
1121
+ Redirected to http://localhost:3000/navinshop/items/2
1122
+ Completed 302 Found in 227ms (ActiveRecord: 167.0ms)
1123
+
1124
+
1125
+ Started GET "/navinshop/items/2" for 127.0.0.1 at 2014-05-17 11:55:59 +0530
1126
+ Processing by Navinshop::ItemsController#show as HTML
1127
+ Parameters: {"id"=>"2"}
1128
+ Navinshop::Item Load (0.2ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."id" = ? LIMIT 1 [["id", 2]]
1129
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/show.html.erb within layouts/application (2.8ms)
1130
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1131
+
1132
+
1133
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:55:59 +0530
1134
+
1135
+
1136
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:55:59 +0530
1137
+
1138
+
1139
+ Started GET "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:56:01 +0530
1140
+ Processing by Navinshop::ItemsController#index as HTML
1141
+ Navinshop::Item Load (0.3ms) SELECT "navinshop_items".* FROM "navinshop_items"
1142
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/index.html.erb within layouts/application (7.1ms)
1143
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.3ms)
1144
+
1145
+
1146
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:56:01 +0530
1147
+
1148
+
1149
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:56:01 +0530
1150
+
1151
+
1152
+ Started GET "/navinshop/items/new" for 127.0.0.1 at 2014-05-17 11:56:02 +0530
1153
+ Processing by Navinshop::ItemsController#new as HTML
1154
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (4.6ms)
1155
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (6.2ms)
1156
+ Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms)
1157
+
1158
+
1159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:56:03 +0530
1160
+
1161
+
1162
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:56:03 +0530
1163
+
1164
+
1165
+ Started POST "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:56:17 +0530
1166
+ Processing by Navinshop::ItemsController#create as HTML
1167
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "item"=>{"title"=>"github", "text"=>"buy github", "image"=>#<ActionDispatch::Http::UploadedFile:0xa55ebb4 @tempfile=#<Tempfile:/tmp/RackMultipart20140517-15206-1nh74dz>, @original_filename="github_256.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"item[image]\"; filename=\"github_256.png\"\r\nContent-Type: image/png\r\n">, "category_id"=>""}, "commit"=>"Create Item"}
1168
+  (0.1ms) begin transaction
1169
+ SQL (0.5ms) INSERT INTO "navinshop_items" ("created_at", "image", "text", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-05-17 06:26:17.766110"], ["image", "github_256.png"], ["text", "buy github"], ["title", "github"], ["updated_at", "2014-05-17 06:26:17.766110"]]
1170
+  (166.4ms) commit transaction
1171
+ Redirected to http://localhost:3000/navinshop/items/3
1172
+ Completed 302 Found in 230ms (ActiveRecord: 167.1ms)
1173
+
1174
+
1175
+ Started GET "/navinshop/items/3" for 127.0.0.1 at 2014-05-17 11:56:17 +0530
1176
+ Processing by Navinshop::ItemsController#show as HTML
1177
+ Parameters: {"id"=>"3"}
1178
+ Navinshop::Item Load (0.2ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."id" = ? LIMIT 1 [["id", 3]]
1179
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/show.html.erb within layouts/application (1.9ms)
1180
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.2ms)
1181
+
1182
+
1183
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:56:18 +0530
1184
+
1185
+
1186
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:56:18 +0530
1187
+
1188
+
1189
+ Started GET "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:56:20 +0530
1190
+ Processing by Navinshop::ItemsController#index as HTML
1191
+ Navinshop::Item Load (0.4ms) SELECT "navinshop_items".* FROM "navinshop_items"
1192
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/index.html.erb within layouts/application (10.8ms)
1193
+ Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.4ms)
1194
+
1195
+
1196
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:56:20 +0530
1197
+
1198
+
1199
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:56:20 +0530
1200
+
1201
+
1202
+ Started GET "/navinshop/items/new" for 127.0.0.1 at 2014-05-17 11:57:45 +0530
1203
+ Processing by Navinshop::ItemsController#new as HTML
1204
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/_form.html.erb (14.1ms)
1205
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/new.html.erb within layouts/application (15.7ms)
1206
+ Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.0ms)
1207
+
1208
+
1209
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:57:45 +0530
1210
+
1211
+
1212
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:57:45 +0530
1213
+
1214
+
1215
+ Started POST "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:58:27 +0530
1216
+ Processing by Navinshop::ItemsController#create as HTML
1217
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"asncf2PvALmPe6+VrGHMkyc31PmtL0ZpVbYszProl/k=", "item"=>{"title"=>"kareena", "text"=>"buy kareena", "image"=>#<ActionDispatch::Http::UploadedFile:0xb1dbc98 @tempfile=#<Tempfile:/tmp/RackMultipart20140517-15206-11felw7>, @original_filename="QSWRH ‫(13)‬ ‫‬.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"item[image]\"; filename=\"QSWRH \xE2\x80\xAB(13)\xE2\x80\xAC \xE2\x80\xAB\xE2\x80\xAC.jpg\"\r\nContent-Type: image/jpeg\r\n">, "category_id"=>""}, "commit"=>"Create Item"}
1218
+  (0.1ms) begin transaction
1219
+ SQL (0.3ms) INSERT INTO "navinshop_items" ("created_at", "image", "text", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-05-17 06:28:27.693228"], ["image", "QSWRH___13_____.jpg"], ["text", "buy kareena"], ["title", "kareena"], ["updated_at", "2014-05-17 06:28:27.693228"]]
1220
+  (239.0ms) commit transaction
1221
+ Redirected to http://localhost:3000/navinshop/items/4
1222
+ Completed 302 Found in 423ms (ActiveRecord: 239.5ms)
1223
+
1224
+
1225
+ Started GET "/navinshop/items/4" for 127.0.0.1 at 2014-05-17 11:58:27 +0530
1226
+ Processing by Navinshop::ItemsController#show as HTML
1227
+ Parameters: {"id"=>"4"}
1228
+ Navinshop::Item Load (0.5ms) SELECT "navinshop_items".* FROM "navinshop_items" WHERE "navinshop_items"."id" = ? LIMIT 1 [["id", 4]]
1229
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/show.html.erb within layouts/application (8.4ms)
1230
+ Completed 200 OK in 27ms (Views: 21.5ms | ActiveRecord: 0.5ms)
1231
+
1232
+
1233
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:58:28 +0530
1234
+
1235
+
1236
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:58:28 +0530
1237
+
1238
+
1239
+ Started GET "/navinshop/items" for 127.0.0.1 at 2014-05-17 11:58:30 +0530
1240
+ Processing by Navinshop::ItemsController#index as HTML
1241
+ Navinshop::Item Load (0.3ms) SELECT "navinshop_items".* FROM "navinshop_items"
1242
+ Rendered /home/navin/Desktop/navinshop/app/views/navinshop/items/index.html.erb within layouts/application (13.7ms)
1243
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.3ms)
1244
+
1245
+
1246
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-17 11:58:30 +0530
1247
+
1248
+
1249
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-17 11:58:30 +0530
1250
+  (136.6ms) CREATE TABLE "navinshop_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
1251
+  (131.7ms) CREATE TABLE "navinshop_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "text" text, "category_id" integer, "image" varchar(255), "created_at" datetime, "updated_at" datetime)
1252
+  (112.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1253
+  (0.3ms) select sqlite_version(*)
1254
+  (109.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1255
+  (0.4ms) SELECT version FROM "schema_migrations"
1256
+  (109.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140517051719')
1257
+  (111.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140517051602')
1258
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"