gopseng 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/gopseng/application.js +15 -0
  6. data/app/assets/javascripts/gopseng/pricelists.js +2 -0
  7. data/app/assets/stylesheets/gopseng/application.css +13 -0
  8. data/app/assets/stylesheets/gopseng/pricelists.css +4 -0
  9. data/app/assets/stylesheets/scaffold.css +56 -0
  10. data/app/controllers/gopseng/application_controller.rb +4 -0
  11. data/app/controllers/gopseng/pricelists_controller.rb +87 -0
  12. data/app/helpers/gopseng/application_helper.rb +4 -0
  13. data/app/helpers/gopseng/pricelists_helper.rb +4 -0
  14. data/app/models/gopseng/pricelist.rb +5 -0
  15. data/app/views/gopseng/pricelists/_form.html.erb +25 -0
  16. data/app/views/gopseng/pricelists/edit.html.erb +6 -0
  17. data/app/views/gopseng/pricelists/index.html.erb +25 -0
  18. data/app/views/gopseng/pricelists/new.html.erb +5 -0
  19. data/app/views/gopseng/pricelists/show.html.erb +15 -0
  20. data/app/views/layouts/gopseng/application.html.erb +14 -0
  21. data/config/routes.rb +5 -0
  22. data/db/migrate/20140824123153_create_gopseng_pricelists.rb +10 -0
  23. data/lib/gopseng.rb +4 -0
  24. data/lib/gopseng/engine.rb +5 -0
  25. data/lib/gopseng/version.rb +3 -0
  26. data/lib/tasks/gopseng_tasks.rake +4 -0
  27. data/test/dummy/README.rdoc +261 -0
  28. data/test/dummy/Rakefile +7 -0
  29. data/test/dummy/app/assets/javascripts/application.js +15 -0
  30. data/test/dummy/app/assets/javascripts/failures.js +2 -0
  31. data/test/dummy/app/assets/javascripts/pricelists.js +2 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/test/dummy/app/assets/stylesheets/failures.css +4 -0
  34. data/test/dummy/app/assets/stylesheets/pricelists.css +4 -0
  35. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  36. data/test/dummy/app/controllers/application_controller.rb +3 -0
  37. data/test/dummy/app/controllers/failures_controller.rb +4 -0
  38. data/test/dummy/app/helpers/application_helper.rb +2 -0
  39. data/test/dummy/app/helpers/failures_helper.rb +2 -0
  40. data/test/dummy/app/helpers/pricelists_helper.rb +2 -0
  41. data/test/dummy/app/models/pricelist.rb +3 -0
  42. data/test/dummy/app/views/failures/index.html.erb +1 -0
  43. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  44. data/test/dummy/config.ru +4 -0
  45. data/test/dummy/config/application.rb +59 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/database.yml +23 -0
  48. data/test/dummy/config/environment.rb +5 -0
  49. data/test/dummy/config/environments/development.rb +37 -0
  50. data/test/dummy/config/environments/production.rb +67 -0
  51. data/test/dummy/config/environments/test.rb +37 -0
  52. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/test/dummy/config/initializers/inflections.rb +15 -0
  54. data/test/dummy/config/initializers/mime_types.rb +5 -0
  55. data/test/dummy/config/initializers/secret_token.rb +7 -0
  56. data/test/dummy/config/initializers/session_store.rb +8 -0
  57. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/dummy/config/locales/en.yml +5 -0
  59. data/test/dummy/config/routes.rb +11 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20140824123605_create_pricelists.rb +10 -0
  62. data/test/dummy/db/schema.rb +30 -0
  63. data/test/dummy/db/test.sqlite3 +0 -0
  64. data/test/dummy/log/development.log +560 -0
  65. data/test/dummy/public/404.html +26 -0
  66. data/test/dummy/public/422.html +26 -0
  67. data/test/dummy/public/500.html +25 -0
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/dummy/script/rails +6 -0
  70. data/test/dummy/test/fixtures/pricelists.yml +9 -0
  71. data/test/dummy/test/functional/failures_controller_test.rb +9 -0
  72. data/test/dummy/test/functional/pricelists_controller_test.rb +49 -0
  73. data/test/dummy/test/unit/helpers/failures_helper_test.rb +4 -0
  74. data/test/dummy/test/unit/helpers/pricelists_helper_test.rb +4 -0
  75. data/test/dummy/test/unit/pricelist_test.rb +7 -0
  76. data/test/dummy/tmp/cache/assets/C27/910/sprockets%2F37543c5533a312658782327ad976a57c +0 -0
  77. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  78. data/test/dummy/tmp/cache/assets/CA8/5E0/sprockets%2F711b00251cd82eb164b2fe584992382e +0 -0
  79. data/test/dummy/tmp/cache/assets/CB5/C70/sprockets%2F37a8fa3860de3236ca0949995557aa21 +0 -0
  80. data/test/dummy/tmp/cache/assets/CD7/CC0/sprockets%2Fc1f33ca9500917295c32de33690a5b8b +0 -0
  81. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  82. data/test/dummy/tmp/cache/assets/CDA/DB0/sprockets%2F06991b057becc4b32d864f3863b3140e +0 -0
  83. data/test/dummy/tmp/cache/assets/CDE/1E0/sprockets%2F8e8b232a74f07d41c952319fed452b51 +0 -0
  84. data/test/dummy/tmp/cache/assets/CDE/CA0/sprockets%2F19d30e54d12eb83632c972f0d030ff98 +0 -0
  85. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  86. data/test/dummy/tmp/cache/assets/D04/140/sprockets%2F55d610c10e76a09133234f8cc57ae6dc +0 -0
  87. data/test/dummy/tmp/cache/assets/D10/DA0/sprockets%2F122838c7fd19e335a6ae68943070acdd +0 -0
  88. data/test/dummy/tmp/cache/assets/D26/BA0/sprockets%2Fcdbf8221e513d5611a4502bf9dac5050 +0 -0
  89. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  90. data/test/dummy/tmp/cache/assets/D49/040/sprockets%2F4cb480f85353dab78c6e7336a95c4b5f +0 -0
  91. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  92. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  93. data/test/dummy/tmp/cache/assets/D6A/220/sprockets%2Fd87140a2bf31949b147b76f6a6abbc8a +0 -0
  94. data/test/dummy/tmp/cache/assets/D6F/810/sprockets%2F5a605c924b3a8338f1f1bf4ce9ef52b5 +0 -0
  95. data/test/dummy/tmp/cache/assets/D71/520/sprockets%2F30ec6fc4049a9849b8f80ea74a7b0bd2 +0 -0
  96. data/test/dummy/tmp/cache/assets/D76/A20/sprockets%2F52e8f912ec0593ad1dd2fb3d787c1f75 +0 -0
  97. data/test/dummy/tmp/cache/assets/D7C/000/sprockets%2F46be98e5a77fd8deb0a660938ab44e43 +0 -0
  98. data/test/dummy/tmp/cache/assets/D8C/680/sprockets%2F2f4757cbd4606a5f4ed352bba81acb10 +0 -0
  99. data/test/dummy/tmp/cache/assets/D93/780/sprockets%2F0d7cbcea57be467c83ed13033337ac2f +0 -0
  100. data/test/dummy/tmp/cache/assets/D96/E20/sprockets%2Fbfcf05e9041d8302db1eb7c4ef577a41 +0 -0
  101. data/test/dummy/tmp/cache/assets/D98/A20/sprockets%2F51de16f12f8a14df329be1bab75fc744 +0 -0
  102. data/test/dummy/tmp/cache/assets/DAC/700/sprockets%2F9f0fac97dcf660dd617f3c14f917d4c5 +0 -0
  103. data/test/dummy/tmp/cache/assets/DAF/940/sprockets%2F6f0bb36f849be67c6128d28cfa99bce3 +0 -0
  104. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  105. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  106. data/test/fixtures/gopseng/pricelists.yml +9 -0
  107. data/test/functional/gopseng/pricelists_controller_test.rb +51 -0
  108. data/test/gopseng_test.rb +7 -0
  109. data/test/integration/navigation_test.rb +10 -0
  110. data/test/test_helper.rb +15 -0
  111. data/test/unit/gopseng/pricelist_test.rb +9 -0
  112. data/test/unit/helpers/gopseng/pricelists_helper_test.rb +6 -0
  113. metadata +282 -0
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'e6c2dcbc89bcdbf83cd2ac07f55147bf283f15c5da6a14b2f4d87af69e81ce893422b040121d9b4e8d4db641dfaca1fa02b0c10228a9475e2979cde1a427209e'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,11 @@
1
+ Rails.application.routes.draw do
2
+
3
+ root :to => "failures#index"
4
+ get "failures/index"
5
+
6
+ get "pricelists/index"
7
+ resources :pricelists
8
+
9
+
10
+ mount Gopseng::Engine => "/gopseng"
11
+ end
Binary file
@@ -0,0 +1,10 @@
1
+ class CreatePricelists < ActiveRecord::Migration
2
+ def change
3
+ create_table :pricelists do |t|
4
+ t.string :title
5
+ t.integer :price
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,30 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20140824123605) do
15
+
16
+ create_table "gopseng_pricelists", :force => true do |t|
17
+ t.string "name"
18
+ t.integer "price"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ create_table "pricelists", :force => true do |t|
24
+ t.string "title"
25
+ t.integer "price"
26
+ t.datetime "created_at", :null => false
27
+ t.datetime "updated_at", :null => false
28
+ end
29
+
30
+ end
File without changes
@@ -0,0 +1,560 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:04:07 +0530
4
+ Connecting to database specified by database.yml
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
11
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
19
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
20
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
21
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
24
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
25
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
26
+ c:/Ruby200/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
27
+
28
+
29
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.0ms)
30
+ Connecting to database specified by database.yml
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:06:22 +0530
34
+ Connecting to database specified by database.yml
35
+
36
+ ActionController::RoutingError (No route matches [GET] "/"):
37
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
38
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
39
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
40
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
41
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
42
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
43
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
44
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
45
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
46
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
47
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
48
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
49
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
50
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
51
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
52
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
53
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
54
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
55
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
56
+ c:/Ruby200/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
57
+
58
+
59
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
60
+
61
+
62
+ Started GET "/pricelists" for 127.0.0.1 at 2014-08-24 18:06:30 +0530
63
+ Processing by PricelistsController#index as HTML
64
+ Completed 500 Internal Server Error in 58ms
65
+
66
+ ActiveRecord::StatementInvalid (Could not find table 'pricelists'):
67
+ app/controllers/pricelists_controller.rb:5:in `index'
68
+
69
+
70
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
71
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
72
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
73
+
74
+
75
+ Started GET "/pricelists/index" for 127.0.0.1 at 2014-08-24 18:06:50 +0530
76
+ Processing by PricelistsController#show as HTML
77
+ Parameters: {"id"=>"index"}
78
+ Completed 500 Internal Server Error in 2ms
79
+
80
+ ActiveRecord::StatementInvalid (Could not find table 'pricelists'):
81
+ app/controllers/pricelists_controller.rb:16:in `show'
82
+
83
+
84
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (23.0ms)
85
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
86
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.0ms)
87
+
88
+
89
+ Started GET "/gopseng" for 127.0.0.1 at 2014-08-24 18:11:15 +0530
90
+
91
+ ActionController::RoutingError (No route matches [GET] "/gopseng"):
92
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
93
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
94
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
95
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
96
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
97
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
98
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
99
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
100
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
101
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
102
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
103
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
104
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
105
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
106
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
107
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
108
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
109
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
110
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
111
+ c:/Ruby200/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
112
+
113
+
114
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
115
+
116
+
117
+ Started GET "/pricelists/index" for 127.0.0.1 at 2014-08-24 18:13:55 +0530
118
+ Processing by PricelistsController#index as HTML
119
+ Completed 500 Internal Server Error in 2ms
120
+
121
+ ActiveRecord::StatementInvalid (Could not find table 'pricelists'):
122
+ app/controllers/pricelists_controller.rb:5:in `index'
123
+
124
+
125
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
126
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
127
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (30.0ms)
128
+
129
+
130
+ Started GET "/gopseng/pricelists/index" for 127.0.0.1 at 2014-08-24 18:14:20 +0530
131
+ Processing by Gopseng::PricelistsController#show as HTML
132
+ Parameters: {"id"=>"index"}
133
+ Completed 500 Internal Server Error in 2ms
134
+
135
+ ActiveRecord::StatementInvalid (Could not find table 'gopseng_pricelists'):
136
+ activerecord (3.2.11) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
137
+ activerecord (3.2.11) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
138
+ activerecord (3.2.11) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
139
+ activerecord (3.2.11) lib/active_record/model_schema.rb:228:in `yield'
140
+ activerecord (3.2.11) lib/active_record/model_schema.rb:228:in `columns'
141
+ activerecord (3.2.11) lib/active_record/model_schema.rb:237:in `columns_hash'
142
+ c:in `columns_hash'
143
+ activerecord (3.2.11) lib/active_record/relation/finder_methods.rb:331:in `find_one'
144
+ activerecord (3.2.11) lib/active_record/relation/finder_methods.rb:312:in `find_with_ids'
145
+ activerecord (3.2.11) lib/active_record/relation/finder_methods.rb:107:in `find'
146
+ c:in `find'
147
+ F:/ROR PRO/gopseng/app/controllers/gopseng/pricelists_controller.rb:19:in `show'
148
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
149
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
150
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
151
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
152
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__172184807__process_action__716285848__callbacks'
153
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
154
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
155
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
156
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
157
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
158
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
159
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
160
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
161
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
162
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
163
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
164
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
165
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
166
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
167
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
168
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
169
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
170
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
171
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
172
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
173
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
174
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
175
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
176
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
177
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
178
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
179
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
180
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
181
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
182
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
183
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
184
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
185
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
186
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
187
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
188
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
189
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
190
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
191
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
192
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
193
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
194
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
195
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__975234242__call__652065929__callbacks'
196
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
197
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
198
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
199
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
200
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
201
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
202
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
203
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
204
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
205
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
206
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
207
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
208
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
209
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
210
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
211
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
212
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
213
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
214
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
215
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
216
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
217
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
218
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
219
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
220
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
221
+ c:/Ruby200/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
222
+
223
+
224
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
225
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
226
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.0ms)
227
+
228
+
229
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:17:36 +0530
230
+ Connecting to database specified by database.yml
231
+ Processing by FailuresController#index as HTML
232
+ Rendered failures/index.html.erb within layouts/application (18.0ms)
233
+ Compiled failures.css (0ms) (pid 6632)
234
+ Compiled pricelists.css (1ms) (pid 6632)
235
+ Compiled scaffold.css (0ms) (pid 6632)
236
+ Compiled application.css (37ms) (pid 6632)
237
+ Compiled jquery.js (7ms) (pid 6632)
238
+ Compiled jquery_ujs.js (0ms) (pid 6632)
239
+ Compiled failures.js (0ms) (pid 6632)
240
+ Compiled pricelists.js (1ms) (pid 6632)
241
+ Compiled application.js (101ms) (pid 6632)
242
+ Completed 200 OK in 234ms (Views: 233.0ms | ActiveRecord: 0.0ms)
243
+
244
+
245
+ Started GET "/assets/failures.css?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
246
+ Served asset /failures.css - 200 OK (6ms)
247
+
248
+
249
+ Started GET "/assets/pricelists.css?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
250
+ Served asset /pricelists.css - 200 OK (3ms)
251
+
252
+
253
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
254
+ Served asset /jquery.js - 200 OK (6ms)
255
+
256
+
257
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
258
+ Served asset /application.css - 200 OK (10ms)
259
+
260
+
261
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
262
+ Served asset /scaffold.css - 200 OK (3ms)
263
+
264
+
265
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
266
+ Served asset /jquery_ujs.js - 200 OK (4ms)
267
+
268
+
269
+ Started GET "/assets/failures.js?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
270
+ Served asset /failures.js - 200 OK (7ms)
271
+
272
+
273
+ Started GET "/assets/pricelists.js?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
274
+ Served asset /pricelists.js - 200 OK (4ms)
275
+
276
+
277
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-24 18:17:37 +0530
278
+ Served asset /application.js - 200 OK (5ms)
279
+
280
+
281
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
282
+ Processing by FailuresController#index as HTML
283
+ Rendered failures/index.html.erb within layouts/application (1.0ms)
284
+ Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
285
+
286
+
287
+ Started GET "/assets/pricelists.css?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
288
+ Served asset /pricelists.css - 304 Not Modified (0ms)
289
+
290
+
291
+ Started GET "/assets/pricelists.js?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
292
+ Served asset /pricelists.js - 304 Not Modified (0ms)
293
+
294
+
295
+ Started GET "/assets/failures.js?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
296
+ Served asset /failures.js - 304 Not Modified (0ms)
297
+
298
+
299
+ Started GET "/assets/failures.css?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
300
+ Served asset /failures.css - 304 Not Modified (0ms)
301
+
302
+
303
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
304
+ Served asset /scaffold.css - 304 Not Modified (0ms)
305
+
306
+
307
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
308
+ Served asset /application.css - 304 Not Modified (0ms)
309
+
310
+
311
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-24 18:21:04 +0530
312
+ Served asset /application.js - 304 Not Modified (0ms)
313
+
314
+
315
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:22:47 +0530
316
+ Processing by FailuresController#index as HTML
317
+ Rendered failures/index.html.erb within layouts/application (1.0ms)
318
+ Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.0ms)
319
+
320
+
321
+ Started GET "/assets/failures.css?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
322
+ Served asset /failures.css - 304 Not Modified (0ms)
323
+
324
+
325
+ Started GET "/assets/pricelists.css?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
326
+ Served asset /pricelists.css - 304 Not Modified (0ms)
327
+
328
+
329
+ Started GET "/assets/failures.js?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
330
+ Served asset /failures.js - 304 Not Modified (0ms)
331
+
332
+
333
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
334
+ Served asset /application.css - 304 Not Modified (0ms)
335
+
336
+
337
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
338
+ Served asset /scaffold.css - 304 Not Modified (0ms)
339
+
340
+
341
+ Started GET "/assets/pricelists.js?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
342
+ Served asset /pricelists.js - 304 Not Modified (0ms)
343
+
344
+
345
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-24 18:22:48 +0530
346
+ Served asset /application.js - 304 Not Modified (0ms)
347
+
348
+
349
+ Started GET "/" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
350
+ Processing by FailuresController#index as HTML
351
+ Rendered failures/index.html.erb within layouts/application (0.0ms)
352
+ Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
353
+
354
+
355
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
356
+ Served asset /application.css - 304 Not Modified (0ms)
357
+
358
+
359
+ Started GET "/assets/failures.css?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
360
+ Served asset /failures.css - 304 Not Modified (0ms)
361
+
362
+
363
+ Started GET "/assets/failures.js?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
364
+ Served asset /failures.js - 304 Not Modified (0ms)
365
+
366
+
367
+ Started GET "/assets/pricelists.js?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
368
+ Served asset /pricelists.js - 304 Not Modified (0ms)
369
+
370
+
371
+ Started GET "/assets/pricelists.css?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
372
+ Served asset /pricelists.css - 304 Not Modified (0ms)
373
+
374
+
375
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
376
+ Served asset /scaffold.css - 304 Not Modified (0ms)
377
+
378
+
379
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-24 18:24:50 +0530
380
+ Served asset /application.js - 304 Not Modified (0ms)
381
+ Connecting to database specified by database.yml
382
+  (0.0ms) select sqlite_version(*)
383
+  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
384
+  (8.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
385
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
386
+ Migrating to CreateGopsengPricelists (20140824123153)
387
+  (0.0ms) begin transaction
388
+  (1.0ms) CREATE TABLE "gopseng_pricelists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
389
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140824123153')
390
+  (8.0ms) commit transaction
391
+ Migrating to CreatePricelists (20140824123605)
392
+  (0.0ms) begin transaction
393
+  (2.0ms) CREATE TABLE "pricelists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
394
+  (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140824123605')
395
+  (5.0ms) commit transaction
396
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
397
+ Connecting to database specified by database.yml
398
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
399
+ Migrating to CreatePricelists (20140824123605)
400
+  (0.0ms) select sqlite_version(*)
401
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
402
+
403
+
404
+ Started GET "/pricelists" for 127.0.0.1 at 2014-08-26 08:05:18 +0530
405
+ Connecting to database specified by database.yml
406
+
407
+ ActionController::RoutingError (uninitialized constant PricelistsController):
408
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:230:in `block in constantize'
409
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:229:in `each'
410
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:229:in `constantize'
411
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
412
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:54:in `controller'
413
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:32:in `call'
414
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
415
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
416
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
417
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
418
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
419
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
420
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
421
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
422
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
423
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
424
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
425
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
426
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
427
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
428
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
429
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
430
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__103906307__call__575982866__callbacks'
431
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
432
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
433
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
434
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
435
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
436
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
437
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
438
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
439
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
440
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
441
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
442
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
443
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
444
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
445
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
446
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
447
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
448
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
449
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
450
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
451
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
452
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
453
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
454
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
455
+ c:/Ruby200/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
456
+ c:/Ruby200/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
457
+
458
+
459
+ Rendered c:/Ruby200/lib/ruby/gems/2.0.0/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
460
+
461
+
462
+ Started GET "/" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
463
+ Processing by FailuresController#index as HTML
464
+ Rendered failures/index.html.erb within layouts/application (1.0ms)
465
+ Completed 200 OK in 52ms (Views: 51.0ms | ActiveRecord: 0.0ms)
466
+
467
+
468
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
469
+ Served asset /application.css - 304 Not Modified (32ms)
470
+
471
+
472
+ Started GET "/assets/failures.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
473
+ Served asset /failures.css - 304 Not Modified (3ms)
474
+
475
+
476
+ Started GET "/assets/pricelists.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
477
+ Served asset /pricelists.css - 304 Not Modified (1ms)
478
+
479
+
480
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
481
+ Served asset /scaffold.css - 304 Not Modified (1ms)
482
+
483
+
484
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
485
+ Served asset /jquery.js - 304 Not Modified (3ms)
486
+
487
+
488
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
489
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
490
+
491
+
492
+ Started GET "/assets/failures.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
493
+ Served asset /failures.js - 304 Not Modified (2ms)
494
+
495
+
496
+ Started GET "/assets/pricelists.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
497
+ Served asset /pricelists.js - 304 Not Modified (2ms)
498
+
499
+
500
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:29 +0530
501
+ Served asset /application.js - 304 Not Modified (20ms)
502
+
503
+
504
+ Started GET "/gopseng/pricelists" for 127.0.0.1 at 2014-08-26 08:05:34 +0530
505
+ Processing by Gopseng::PricelistsController#index as HTML
506
+ Gopseng::Pricelist Load (0.0ms) SELECT "gopseng_pricelists".* FROM "gopseng_pricelists" 
507
+ Rendered F:/ROR PRO/checkeng/gopseng/app/views/gopseng/pricelists/index.html.erb within layouts/gopseng/application (1.0ms)
508
+ Compiled gopseng/pricelists.css (0ms) (pid 5444)
509
+ Compiled gopseng/application.css (14ms) (pid 5444)
510
+ Compiled gopseng/pricelists.js (1ms) (pid 5444)
511
+ Compiled gopseng/application.js (19ms) (pid 5444)
512
+ Completed 200 OK in 121ms (Views: 96.0ms | ActiveRecord: 3.0ms)
513
+
514
+
515
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
516
+ Served asset /jquery.js - 304 Not Modified (0ms)
517
+
518
+
519
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
520
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
521
+
522
+
523
+ Started GET "/assets/gopseng/application.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
524
+ Served asset /gopseng/application.css - 304 Not Modified (3ms)
525
+
526
+
527
+ Started GET "/assets/gopseng/pricelists.css?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
528
+ Served asset /gopseng/pricelists.css - 304 Not Modified (3ms)
529
+
530
+
531
+ Started GET "/assets/gopseng/pricelists.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
532
+ Served asset /gopseng/pricelists.js - 304 Not Modified (3ms)
533
+
534
+
535
+ Started GET "/assets/gopseng/application.js?body=1" for 127.0.0.1 at 2014-08-26 08:05:35 +0530
536
+ Served asset /gopseng/application.js - 304 Not Modified (8ms)
537
+ Connecting to database specified by database.yml
538
+  (1.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
539
+ Migrating to CreatePricelists (20140824123605)
540
+  (35.0ms) CREATE TABLE `pricelists` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `price` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
541
+  (1.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20140824123605')
542
+  (0.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
543
+ Connecting to database specified by database.yml
544
+  (0.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
545
+ Migrating to CreateGopsengPricelists (20140824123153)
546
+  (57.0ms) CREATE TABLE `gopseng_pricelists` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `price` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
547
+  (2.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20140824123153')
548
+ Migrating to CreatePricelists (20140824123605)
549
+  (0.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
550
+ Connecting to database specified by database.yml
551
+  (531.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
552
+  (1687.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
553
+  (31.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
554
+ Migrating to CreateGopsengPricelists (20140824123153)
555
+  (468.7ms) CREATE TABLE `gopseng_pricelists` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `price` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
556
+  (31.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20140824123153')
557
+ Migrating to CreatePricelists (20140824123605)
558
+  (265.6ms) CREATE TABLE `pricelists` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `price` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
559
+  (31.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20140824123605')
560
+  (0.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`