admin_bits 0.4.0

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 (68) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +20 -0
  3. data/LICENSE +165 -0
  4. data/README.md +19 -0
  5. data/Rakefile +33 -0
  6. data/lib/admin_bits.rb +50 -0
  7. data/lib/admin_bits/admin_resource.rb +96 -0
  8. data/lib/admin_bits/admin_resource/paginator.rb +14 -0
  9. data/lib/admin_bits/admin_resource/path_handler.rb +34 -0
  10. data/lib/admin_bits/base_config.rb +38 -0
  11. data/lib/admin_bits/engine.rb +4 -0
  12. data/lib/admin_bits/helpers.rb +44 -0
  13. data/lib/admin_bits/scopes.rb +52 -0
  14. data/lib/admin_bits/utils.rb +16 -0
  15. data/lib/generators/admin_bits_generator.rb +52 -0
  16. data/lib/generators/templates/controller.rb.erb +35 -0
  17. data/lib/generators/templates/index.html.erb +0 -0
  18. data/lib/generators/templates/layout.html.erb +3 -0
  19. data/test/admin_bits_test.rb +7 -0
  20. data/test/dummy/Rakefile +7 -0
  21. data/test/dummy/app/assets/stylesheets/admin_bits.css +0 -0
  22. data/test/dummy/app/controllers/admin/items_controller.rb +40 -0
  23. data/test/dummy/app/controllers/application_controller.rb +3 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/models/basic_admin_panel.rb +65 -0
  26. data/test/dummy/app/models/item.rb +7 -0
  27. data/test/dummy/app/views/admin/items/index.html.erb +30 -0
  28. data/test/dummy/app/views/admin_bits_modules/basic_admin_panel/edit.html.erb +4 -0
  29. data/test/dummy/app/views/admin_bits_modules/basic_admin_panel/index.html.erb +30 -0
  30. data/test/dummy/app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb +13 -0
  31. data/test/dummy/config.ru +4 -0
  32. data/test/dummy/config/application.rb +45 -0
  33. data/test/dummy/config/boot.rb +10 -0
  34. data/test/dummy/config/database.yml +22 -0
  35. data/test/dummy/config/environment.rb +5 -0
  36. data/test/dummy/config/environments/development.rb +27 -0
  37. data/test/dummy/config/environments/production.rb +50 -0
  38. data/test/dummy/config/environments/test.rb +36 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/inflections.rb +10 -0
  41. data/test/dummy/config/initializers/mime_types.rb +5 -0
  42. data/test/dummy/config/initializers/secret_token.rb +7 -0
  43. data/test/dummy/config/initializers/session_store.rb +8 -0
  44. data/test/dummy/config/locales/en.yml +5 -0
  45. data/test/dummy/config/routes.rb +57 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/db/migrate/20131110141830_create_items.rb +15 -0
  48. data/test/dummy/db/schema.rb +25 -0
  49. data/test/dummy/db/test.sqlite3 +0 -0
  50. data/test/dummy/log/development.log +2368 -0
  51. data/test/dummy/log/test.log +672 -0
  52. data/test/dummy/public/404.html +26 -0
  53. data/test/dummy/public/422.html +26 -0
  54. data/test/dummy/public/500.html +26 -0
  55. data/test/dummy/public/favicon.ico +0 -0
  56. data/test/dummy/public/javascripts/application.js +2 -0
  57. data/test/dummy/public/javascripts/controls.js +965 -0
  58. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  59. data/test/dummy/public/javascripts/effects.js +1123 -0
  60. data/test/dummy/public/javascripts/prototype.js +6001 -0
  61. data/test/dummy/public/javascripts/rails.js +202 -0
  62. data/test/dummy/script/rails +6 -0
  63. data/test/integration/ordering_test.rb +14 -0
  64. data/test/support/integration_case.rb +5 -0
  65. data/test/test_helper.rb +22 -0
  66. data/test/unit/path_handler_test.rb +17 -0
  67. data/test/unit/sorting_test.rb +49 -0
  68. metadata +123 -0
@@ -0,0 +1,30 @@
1
+ <div id="filtering">
2
+ <%= admin_form :method => :get do %>
3
+ Name: <%= admin_text_filter :name %>
4
+ <br>
5
+ Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
6
+
7
+ <button>Filter!</button>
8
+ <% end %>
9
+ </div>
10
+
11
+ <table>
12
+ <thead>
13
+ <th>
14
+ <%= admin_link(:name, "Name") %>
15
+ <%= admin_link(:price, "Total price") %>
16
+ </th>
17
+ </thead>
18
+ <tbody>
19
+ <% items.each do |item| %>
20
+ <tr>
21
+ <td>
22
+ <%= item.name %>
23
+ </td>
24
+ <td>
25
+ <%= item.price %>
26
+ </td>
27
+ </tr>
28
+ <% end %>
29
+ </tbody>
30
+ </table>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <title><%= "Admin bits" %></title>
6
+ <%= stylesheet_link_tag "admin_bits.css" %>
7
+ </head>
8
+ <body>
9
+ <div>Header</div>
10
+ <%= yield %>
11
+ <div>Footer</div>
12
+ </body>
13
+ </head>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,45 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "active_model/railtie"
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_view/railtie"
7
+ require "action_mailer/railtie"
8
+
9
+ Bundler.require
10
+ require "admin_bits"
11
+
12
+ module Dummy
13
+ class Application < Rails::Application
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration should go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded.
17
+
18
+ # Custom directories with classes and modules you want to be autoloadable.
19
+ # config.autoload_paths += %W(#{config.root}/extras)
20
+
21
+ # Only load the plugins named here, in the order given (default is alphabetical).
22
+ # :all can be used as a placeholder for all plugins not explicitly named.
23
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
24
+
25
+ # Activate observers that should always be running.
26
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
27
+
28
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
29
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
30
+ # config.time_zone = 'Central Time (US & Canada)'
31
+
32
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
33
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
34
+ # config.i18n.default_locale = :de
35
+
36
+ # JavaScript files you want as :defaults (application.js is always included).
37
+ # config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
38
+
39
+ # Configure the default encoding used in templates for Ruby 1.9.
40
+ config.encoding = "utf-8"
41
+
42
+ # Configure sensitive parameters which will be filtered from the log file.
43
+ config.filter_parameters += [:password]
44
+ end
45
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ config.eager_load = false
26
+ end
27
+
@@ -0,0 +1,50 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ config.eager_load = true
50
+ end
@@ -0,0 +1,36 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ config.eager_load = false
36
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -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 = '55f52be5aa63a8738a872cd30cadc1f042158c3a6f7f2fda229d06735cde2e32c8daac5cb7c30298d4a3d10fbc7f1b31a45afdd0426d8160d3ac78e7e8472de1'
@@ -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,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,57 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ namespace :admin do
43
+ # Directs /admin/items/* to Admin::ProductsController
44
+ # (app/controllers/admin/products_controller.rb)
45
+ resources :items
46
+ end
47
+
48
+ # You can have the root of your site routed with "root"
49
+ # just remember to delete public/index.html.
50
+ # root :to => "welcome#index"
51
+
52
+ # See how all your routes lay out with "rake routes"
53
+
54
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
55
+ # Note: This route will make all actions in every controller accessible via GET requests.
56
+ # match ':controller(/:action(/:id(.:format)))'
57
+ end
Binary file
@@ -0,0 +1,15 @@
1
+ class CreateItems < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :items do |t|
4
+ t.string :name
5
+ t.decimal :price
6
+ t.text :description
7
+ t.integer :order_id
8
+ t.timestamps
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ drop_table :items
14
+ end
15
+ end
@@ -0,0 +1,25 @@
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 => 20131110141830) do
15
+
16
+ create_table "items", :force => true do |t|
17
+ t.string "name"
18
+ t.decimal "price"
19
+ t.text "description"
20
+ t.integer "order_id"
21
+ t.datetime "created_at"
22
+ t.datetime "updated_at"
23
+ end
24
+
25
+ end
Binary file
@@ -0,0 +1,2368 @@
1
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
2
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
3
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
4
+
5
+
6
+ Started GET "/" for 127.0.0.1 at 2014-10-28 12:45:46 +0100
7
+
8
+ ActionController::RoutingError (No route matches "/"):
9
+
10
+
11
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
12
+
13
+
14
+ Started GET "/items" for 127.0.0.1 at 2014-10-28 12:45:51 +0100
15
+
16
+ ActionController::RoutingError (No route matches "/items"):
17
+
18
+
19
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
20
+
21
+
22
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:46:12 +0100
23
+ Processing by Admin::ItemsController#index as HTML
24
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
25
+ SQLite3::SQLException: no such table: items: SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
26
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (17.1ms)
27
+ Completed 500 Internal Server Error in 22ms
28
+
29
+ ActionView::Template::Error (SQLite3::SQLException: no such table: items: SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0):
30
+ 16: </th>
31
+ 17: </thead>
32
+ 18: <tbody>
33
+ 19: <% items.each do |item| %>
34
+ 20: <tr>
35
+ 21: <td>
36
+ 22: <%= item.name %>
37
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___3319031690614338142_23465180__2716824650248541654'
38
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
39
+
40
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
41
+ SQL (0.5ms) SELECT name
42
+ FROM sqlite_master
43
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
44
+ SQL (0.1ms)  SELECT name
45
+ FROM sqlite_master
46
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
47
+ 
48
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.6ms)
49
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
50
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
51
+ SQL (0.3ms)  SELECT name
52
+ FROM sqlite_master
53
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
54
+ 
55
+ SQL (0.1ms) select sqlite_version(*)
56
+ SQL (12.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
57
+ SQL (0.3ms) PRAGMA index_list("schema_migrations")
58
+ SQL (16.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
59
+ SQL (0.3ms) SELECT name
60
+ FROM sqlite_master
61
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
62
+ SQL (0.3ms)  SELECT name
63
+ FROM sqlite_master
64
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
65
+ 
66
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
67
+ Migrating to CreateItems (20131110141830)
68
+ SQL (0.4ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "price" decimal, "description" text, "order_id" integer, "created_at" datetime, "updated_at" datetime) 
69
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131110141830')
70
+ SQL (0.9ms) select sqlite_version(*)
71
+ SQL (0.2ms) SELECT name
72
+ FROM sqlite_master
73
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
74
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
75
+ SQL (0.2ms) SELECT name
76
+ FROM sqlite_master
77
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
78
+ SQL (0.1ms) PRAGMA index_list("items")
79
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
80
+
81
+
82
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:46:30 +0100
83
+ Processing by Admin::ItemsController#index as HTML
84
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
85
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (19.1ms)
86
+ Completed 500 Internal Server Error in 23ms
87
+
88
+ ActionView::Template::Error (no implicit conversion of nil into String):
89
+ 3: <meta charset="utf-8">
90
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
91
+ 5: <title><%= "Admin bits" %></title>
92
+ 6: <%= stylesheet_link_tag "admin_bits" %>
93
+ 7: </head>
94
+ 8: <body>
95
+ 9: <div>Header</div>
96
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
97
+
98
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
99
+ SQL (0.2ms) SELECT name
100
+ FROM sqlite_master
101
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
102
+ SQL (0.2ms)  SELECT name
103
+ FROM sqlite_master
104
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
105
+ 
106
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (27.3ms)
107
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (31.3ms)
108
+
109
+
110
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:46:31 +0100
111
+ Processing by Admin::ItemsController#index as HTML
112
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
113
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.3ms)
114
+ Completed 500 Internal Server Error in 12ms
115
+
116
+ ActionView::Template::Error (no implicit conversion of nil into String):
117
+ 3: <meta charset="utf-8">
118
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
119
+ 5: <title><%= "Admin bits" %></title>
120
+ 6: <%= stylesheet_link_tag "admin_bits" %>
121
+ 7: </head>
122
+ 8: <body>
123
+ 9: <div>Header</div>
124
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
125
+
126
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
127
+ SQL (0.3ms)  SELECT name
128
+ FROM sqlite_master
129
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
130
+ 
131
+ SQL (0.1ms) SELECT name
132
+ FROM sqlite_master
133
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
134
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
135
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
136
+
137
+
138
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:47:11 +0100
139
+ Processing by Admin::ItemsController#index as HTML
140
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
141
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.6ms)
142
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms)
143
+
144
+
145
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:48:02 +0100
146
+ Processing by Admin::ItemsController#index as HTML
147
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
148
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.0ms)
149
+ Completed 500 Internal Server Error in 8ms
150
+
151
+ ActionView::Template::Error (no implicit conversion of nil into String):
152
+ 3: <meta charset="utf-8">
153
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
154
+ 5: <title><%= "Admin bits" %></title>
155
+ 6: <%= stylesheet_link_tag "admin_bits" %>
156
+ 7: </head>
157
+ 8: <body>
158
+ 9: <div>Header</div>
159
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
160
+
161
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
162
+ SQL (0.3ms)  SELECT name
163
+ FROM sqlite_master
164
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
165
+ 
166
+ SQL (0.1ms) SELECT name
167
+ FROM sqlite_master
168
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms)
170
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
171
+
172
+
173
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:49:22 +0100
174
+ Processing by Admin::ItemsController#index as HTML
175
+ Item Load (1.0ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
176
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.5ms)
177
+ Completed 500 Internal Server Error in 9ms
178
+
179
+ ActionView::Template::Error (no implicit conversion of nil into String):
180
+ 3: <meta charset="utf-8">
181
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
182
+ 5: <title><%= "Admin bits" %></title>
183
+ 6: <%= stylesheet_link_tag "admin_bits" %>
184
+ 7: </head>
185
+ 8: <body>
186
+ 9: <div>Header</div>
187
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
188
+
189
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
190
+ SQL (0.3ms) SELECT name
191
+ FROM sqlite_master
192
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
193
+ SQL (0.2ms)  SELECT name
194
+ FROM sqlite_master
195
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
196
+ 
197
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.0ms)
198
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
199
+
200
+
201
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:49:23 +0100
202
+ Processing by Admin::ItemsController#index as HTML
203
+ Item Load (0.7ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
204
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (9.3ms)
205
+ Completed 500 Internal Server Error in 13ms
206
+
207
+ ActionView::Template::Error (no implicit conversion of nil into String):
208
+ 3: <meta charset="utf-8">
209
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
210
+ 5: <title><%= "Admin bits" %></title>
211
+ 6: <%= stylesheet_link_tag "admin_bits" %>
212
+ 7: </head>
213
+ 8: <body>
214
+ 9: <div>Header</div>
215
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
216
+
217
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
218
+ SQL (0.3ms)  SELECT name
219
+ FROM sqlite_master
220
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
221
+ 
222
+ SQL (0.1ms) SELECT name
223
+ FROM sqlite_master
224
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
225
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms)
226
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
227
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
228
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
229
+
230
+
231
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:53:54 +0100
232
+ Processing by Admin::ItemsController#index as HTML
233
+ Completed 500 Internal Server Error in 9ms
234
+
235
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
236
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
237
+
238
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
239
+
240
+
241
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:53:56 +0100
242
+ Processing by Admin::ItemsController#index as HTML
243
+ Completed 500 Internal Server Error in 8ms
244
+
245
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
246
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
247
+
248
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
249
+
250
+
251
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:53:57 +0100
252
+ Processing by Admin::ItemsController#index as HTML
253
+ Completed 500 Internal Server Error in 8ms
254
+
255
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
256
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
257
+
258
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
259
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
260
+
261
+
262
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:54:22 +0100
263
+ Processing by Admin::ItemsController#index as HTML
264
+ Completed 500 Internal Server Error in 9ms
265
+
266
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
267
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
268
+
269
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
270
+
271
+
272
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:55:28 +0100
273
+ Processing by Admin::ItemsController#index as HTML
274
+ Completed 500 Internal Server Error in 7ms
275
+
276
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
277
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
278
+
279
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.7ms)
280
+
281
+
282
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:11 +0100
283
+ Processing by Admin::ItemsController#index as HTML
284
+ Completed 500 Internal Server Error in 8ms
285
+
286
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
287
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
288
+
289
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
290
+
291
+
292
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:42 +0100
293
+ Processing by Admin::ItemsController#index as HTML
294
+ Completed 500 Internal Server Error in 13ms
295
+
296
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
297
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
298
+
299
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
300
+
301
+
302
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:42 +0100
303
+ Processing by Admin::ItemsController#index as HTML
304
+ Completed 500 Internal Server Error in 8ms
305
+
306
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
307
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
308
+
309
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.4ms)
310
+
311
+
312
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:43 +0100
313
+ Processing by Admin::ItemsController#index as HTML
314
+ Completed 500 Internal Server Error in 11ms
315
+
316
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
317
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
318
+
319
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
320
+
321
+
322
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:43 +0100
323
+ Processing by Admin::ItemsController#index as HTML
324
+ Completed 500 Internal Server Error in 10ms
325
+
326
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
327
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
328
+
329
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
330
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from <top (required)> at /projects/admin_bits/test/dummy/config/environment.rb:5)
331
+
332
+
333
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:56:49 +0100
334
+ Processing by Admin::ItemsController#index as HTML
335
+ Completed 500 Internal Server Error in 10ms
336
+
337
+ ActionView::MissingTemplate (Missing layout layouts/admin_bits_modules/basic_admin_panel/layout with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/projects/admin_bits/test/dummy/app/views", "/home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/kaminari-0.13.0/app/views"):
338
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
339
+
340
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
341
+
342
+
343
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 12:59:38 +0100
344
+ Processing by Admin::ItemsController#index as HTML
345
+ Item Load (0.5ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
346
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (46.8ms)
347
+ Completed 500 Internal Server Error in 50ms
348
+
349
+ ActionView::Template::Error (no implicit conversion of nil into String):
350
+ 3: <meta charset="utf-8">
351
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
352
+ 5: <title><%= "Admin bits" %></title>
353
+ 6: <%= stylesheet_link_tag "admin_bits" %>
354
+ 7: </head>
355
+ 8: <body>
356
+ 9: <div>Header</div>
357
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_23441840_3414674993312060512'
358
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
359
+
360
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
361
+ SQL (0.3ms) SELECT name
362
+ FROM sqlite_master
363
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
364
+ SQL (0.1ms)  SELECT name
365
+ FROM sqlite_master
366
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
367
+ 
368
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms)
369
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
370
+
371
+
372
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:00:23 +0100
373
+ Processing by Admin::ItemsController#index as HTML
374
+ Item Load (0.5ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
375
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.0ms)
376
+ Completed 500 Internal Server Error in 8ms
377
+
378
+ ActionView::Template::Error (no implicit conversion of nil into String):
379
+ 3: <meta charset="utf-8">
380
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
381
+ 5: <title><%= "Admin bits" %></title>
382
+ 6: <%= stylesheet_link_tag "admin_bits" %>
383
+ 7: </head>
384
+ 8: <body>
385
+ 9: <div>Header</div>
386
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_22504880_3414674993312060512'
387
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
388
+
389
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
390
+ SQL (0.3ms)  SELECT name
391
+ FROM sqlite_master
392
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
393
+ 
394
+ SQL (0.1ms) SELECT name
395
+ FROM sqlite_master
396
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
397
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
398
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
399
+
400
+
401
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:00:24 +0100
402
+ Processing by Admin::ItemsController#index as HTML
403
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
404
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.8ms)
405
+ Completed 500 Internal Server Error in 9ms
406
+
407
+ ActionView::Template::Error (no implicit conversion of nil into String):
408
+ 3: <meta charset="utf-8">
409
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
410
+ 5: <title><%= "Admin bits" %></title>
411
+ 6: <%= stylesheet_link_tag "admin_bits" %>
412
+ 7: </head>
413
+ 8: <body>
414
+ 9: <div>Header</div>
415
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_23479040_3414674993312060512'
416
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
417
+
418
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
419
+ SQL (0.3ms) SELECT name
420
+ FROM sqlite_master
421
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
422
+ SQL (0.1ms)  SELECT name
423
+ FROM sqlite_master
424
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
425
+ 
426
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.1ms)
427
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
428
+
429
+
430
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:01:55 +0100
431
+ Processing by Admin::ItemsController#index as HTML
432
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
433
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.6ms)
434
+ Completed 500 Internal Server Error in 8ms
435
+
436
+ ActionView::Template::Error (no implicit conversion of nil into String):
437
+ 3: <meta charset="utf-8">
438
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
439
+ 5: <title><%= "Admin bits" %></title>
440
+ 6: <%= stylesheet_link_tag "asdfadmin_bits" %>
441
+ 7: </head>
442
+ 8: <body>
443
+ 9: <div>Header</div>
444
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_18720440_3414674993312060512'
445
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
446
+
447
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
448
+ SQL (0.3ms)  SELECT name
449
+ FROM sqlite_master
450
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
451
+ 
452
+ SQL (0.1ms) SELECT name
453
+ FROM sqlite_master
454
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
455
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.8ms)
456
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
457
+
458
+
459
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:02:03 +0100
460
+ Processing by Admin::ItemsController#index as HTML
461
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
462
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.5ms)
463
+ Completed 500 Internal Server Error in 6ms
464
+
465
+ ActionView::Template::Error (no implicit conversion of nil into String):
466
+ 3: <meta charset="utf-8">
467
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
468
+ 5: <title><%= "Admin bits" %></title>
469
+ 6: <%= stylesheet_link_tag "admin_bits.css" %>
470
+ 7: </head>
471
+ 8: <body>
472
+ 9: <div>Header</div>
473
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_22916280_3414674993312060512'
474
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
475
+
476
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
477
+ SQL (0.3ms) SELECT name
478
+ FROM sqlite_master
479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
+ SQL (0.1ms)  SELECT name
481
+ FROM sqlite_master
482
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
483
+ 
484
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.2ms)
485
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms)
486
+
487
+
488
+ Started GET "/" for 127.0.0.1 at 2014-10-28 13:05:21 +0100
489
+
490
+ ActionController::RoutingError (No route matches "/"):
491
+
492
+
493
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.5ms)
494
+
495
+
496
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:36:36 +0100
497
+ Processing by Admin::ItemsController#index as HTML
498
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
499
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (31.4ms)
500
+ Completed 500 Internal Server Error in 34ms
501
+
502
+ ActionView::Template::Error (no implicit conversion of nil into String):
503
+ 3: <meta charset="utf-8">
504
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
505
+ 5: <title><%= "Admin bits" %></title>
506
+ 6: <%= stylesheet_link_tag "admin_bits.css" %>
507
+ 7: </head>
508
+ 8: <body>
509
+ 9: <div>Header</div>
510
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_26281600_3414674993312060512'
511
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
512
+
513
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
514
+ SQL (0.3ms)  SELECT name
515
+ FROM sqlite_master
516
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
517
+ 
518
+ SQL (0.1ms) SELECT name
519
+ FROM sqlite_master
520
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
521
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms)
522
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
523
+
524
+
525
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:36:39 +0100
526
+ Processing by Admin::ItemsController#index as HTML
527
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
528
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.0ms)
529
+ Completed 500 Internal Server Error in 8ms
530
+
531
+ ActionView::Template::Error (no implicit conversion of nil into String):
532
+ 3: <meta charset="utf-8">
533
+ 4: <meta name="viewport" content="width=device-width, initial-scale=1.0">
534
+ 5: <title><%= "Admin bits" %></title>
535
+ 6: <%= stylesheet_link_tag "admin_bits.css" %>
536
+ 7: </head>
537
+ 8: <body>
538
+ 9: <div>Header</div>
539
+ app/views/layouts/admin_bits_modules/basic_admin_panel/layout.html.erb:6:in `_app_views_layouts_admin_bits_modules_basic_admin_panel_layout_html_erb__830569070798725227_22012460_3414674993312060512'
540
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
541
+
542
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
543
+ SQL (0.3ms) SELECT name
544
+ FROM sqlite_master
545
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
546
+ SQL (0.1ms)  SELECT name
547
+ FROM sqlite_master
548
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
+ 
550
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms)
551
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-3.0.20/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
552
+
553
+
554
+ Started GET "/admin/items" for 127.0.0.1 at 2014-10-28 13:38:24 +0100
555
+ Processing by Admin::ItemsController#index as HTML
556
+ Item Load (2.1ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
557
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (9.8ms)
558
+ Completed 200 OK in 32ms (Views: 12.8ms | ActiveRecord: 2.1ms)
559
+
560
+
561
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-10-28 13:38:24 +0100
562
+
563
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
564
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
565
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
566
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
567
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
568
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
569
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
570
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
571
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
572
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
573
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
574
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
575
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
576
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
577
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
578
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
579
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
580
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
581
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
582
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
583
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
584
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
585
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
586
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
587
+
588
+
589
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
590
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
591
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.8ms)
592
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.1ms)
593
+
594
+
595
+ Started GET "/" for 127.0.0.1 at 2014-11-01 16:21:25 +0100
596
+ Processing by Rails::WelcomeController#index as HTML
597
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (37.5ms)
598
+ Completed 200 OK in 43ms (Views: 43.0ms | ActiveRecord: 0.0ms)
599
+
600
+
601
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:21:30 +0100
602
+
603
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input):
604
+ app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input
605
+
606
+
607
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
608
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
609
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
610
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.2ms)
611
+
612
+
613
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:22:07 +0100
614
+
615
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input):
616
+ app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input
617
+
618
+
619
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
620
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
621
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
622
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
623
+
624
+
625
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:22:19 +0100
626
+
627
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input):
628
+ app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input
629
+
630
+
631
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
632
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
633
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
634
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.2ms)
635
+
636
+
637
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:22:20 +0100
638
+
639
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input):
640
+ app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input
641
+
642
+
643
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.6ms)
644
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
645
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
646
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
647
+
648
+
649
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:22:21 +0100
650
+
651
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input):
652
+ app/controllers/admin/items_controller.rb:35: syntax error, unexpected keyword_end, expecting end-of-input
653
+
654
+
655
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
656
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
657
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
658
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
659
+
660
+
661
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:23:23 +0100
662
+ Processing by Admin::ItemsController#index as HTML
663
+ Rendered admin/items/index.html.erb (2.6ms)
664
+ Completed 500 Internal Server Error in 31ms
665
+
666
+ SyntaxError (/projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
667
+ <br>
668
+ ^
669
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:5: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
670
+ Price from '.freeze;@output_buffer.appe...
671
+ ^
672
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
673
+ <button>Filter!</button>
674
+ ^
675
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:9: unknown regexp options - dv
676
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
677
+ <table>
678
+ ^
679
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
680
+ </th>
681
+ ^
682
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:18: unknown regexp options - th
683
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
684
+ </thead>
685
+ ^
686
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:25: unknown regexp options - td
687
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
688
+ <td>
689
+ ^
690
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
691
+ </td>
692
+ ^
693
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:29: unknown regexp options - tr
694
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
695
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: unterminated string meets end of file
696
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'):
697
+ app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
698
+ app/views/admin/items/index.html.erb:5: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
699
+ app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
700
+ app/views/admin/items/index.html.erb:9: unknown regexp options - dv
701
+ app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
702
+ app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
703
+ app/views/admin/items/index.html.erb:18: unknown regexp options - th
704
+ app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
705
+ app/views/admin/items/index.html.erb:25: unknown regexp options - td
706
+ app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
707
+ app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
708
+ app/views/admin/items/index.html.erb:29: unknown regexp options - tr
709
+ app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
710
+ app/views/admin/items/index.html.erb:33: unterminated string meets end of file
711
+ app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'
712
+
713
+
714
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
715
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (32.1ms)
716
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
717
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.6ms)
718
+
719
+
720
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:23:24 +0100
721
+ Processing by Admin::ItemsController#index as HTML
722
+ Rendered admin/items/index.html.erb (1.2ms)
723
+ Completed 500 Internal Server Error in 4ms
724
+
725
+ SyntaxError (/projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
726
+ <br>
727
+ ^
728
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:5: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
729
+ Price from '.freeze;@output_buffer.appe...
730
+ ^
731
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
732
+ <button>Filter!</button>
733
+ ^
734
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:9: unknown regexp options - dv
735
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
736
+ <table>
737
+ ^
738
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
739
+ </th>
740
+ ^
741
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:18: unknown regexp options - th
742
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
743
+ </thead>
744
+ ^
745
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:25: unknown regexp options - td
746
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
747
+ <td>
748
+ ^
749
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
750
+ </td>
751
+ ^
752
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:29: unknown regexp options - tr
753
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
754
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: unterminated string meets end of file
755
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'):
756
+ app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
757
+ app/views/admin/items/index.html.erb:5: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
758
+ app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
759
+ app/views/admin/items/index.html.erb:9: unknown regexp options - dv
760
+ app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
761
+ app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
762
+ app/views/admin/items/index.html.erb:18: unknown regexp options - th
763
+ app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
764
+ app/views/admin/items/index.html.erb:25: unknown regexp options - td
765
+ app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
766
+ app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
767
+ app/views/admin/items/index.html.erb:29: unknown regexp options - tr
768
+ app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
769
+ app/views/admin/items/index.html.erb:33: unterminated string meets end of file
770
+ app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'
771
+
772
+
773
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
774
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
775
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
776
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
777
+
778
+
779
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:24:45 +0100
780
+ Processing by Admin::ItemsController#index as HTML
781
+ Rendered admin/items/index.html.erb (0.8ms)
782
+ Completed 500 Internal Server Error in 5ms
783
+
784
+ SyntaxError (/projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
785
+ <br/>
786
+ ^
787
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
788
+ <button>Filter!</button>
789
+ ^
790
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:9: unknown regexp options - dv
791
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
792
+ <table>
793
+ ^
794
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
795
+ </th>
796
+ ^
797
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:18: unknown regexp options - th
798
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
799
+ </thead>
800
+ ^
801
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:25: unknown regexp options - td
802
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
803
+ <td>
804
+ ^
805
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
806
+ </td>
807
+ ^
808
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:29: unknown regexp options - tr
809
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
810
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: unterminated string meets end of file
811
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'):
812
+ app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
813
+ app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
814
+ app/views/admin/items/index.html.erb:9: unknown regexp options - dv
815
+ app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
816
+ app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
817
+ app/views/admin/items/index.html.erb:18: unknown regexp options - th
818
+ app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
819
+ app/views/admin/items/index.html.erb:25: unknown regexp options - td
820
+ app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
821
+ app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
822
+ app/views/admin/items/index.html.erb:29: unknown regexp options - tr
823
+ app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
824
+ app/views/admin/items/index.html.erb:33: unterminated string meets end of file
825
+ app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'
826
+
827
+
828
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
829
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
830
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
831
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
832
+
833
+
834
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:24:46 +0100
835
+ Processing by Admin::ItemsController#index as HTML
836
+ Rendered admin/items/index.html.erb (1.3ms)
837
+ Completed 500 Internal Server Error in 4ms
838
+
839
+ SyntaxError (/projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
840
+ <br/>
841
+ ^
842
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
843
+ <button>Filter!</button>
844
+ ^
845
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:9: unknown regexp options - dv
846
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
847
+ <table>
848
+ ^
849
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
850
+ </th>
851
+ ^
852
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:18: unknown regexp options - th
853
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
854
+ </thead>
855
+ ^
856
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:25: unknown regexp options - td
857
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
858
+ <td>
859
+ ^
860
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
861
+ </td>
862
+ ^
863
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:29: unknown regexp options - tr
864
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
865
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: unterminated string meets end of file
866
+ /projects/admin_bits/test/dummy/app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'):
867
+ app/views/admin/items/index.html.erb:4: syntax error, unexpected '<'
868
+ app/views/admin/items/index.html.erb:7: syntax error, unexpected '<', expecting ')'
869
+ app/views/admin/items/index.html.erb:9: unknown regexp options - dv
870
+ app/views/admin/items/index.html.erb:11: syntax error, unexpected '<'
871
+ app/views/admin/items/index.html.erb:15: syntax error, unexpected '<', expecting ')'
872
+ app/views/admin/items/index.html.erb:18: unknown regexp options - th
873
+ app/views/admin/items/index.html.erb:19: syntax error, unexpected '<'
874
+ app/views/admin/items/index.html.erb:25: unknown regexp options - td
875
+ app/views/admin/items/index.html.erb:26: syntax error, unexpected '<'
876
+ app/views/admin/items/index.html.erb:28: syntax error, unexpected '<', expecting ')'
877
+ app/views/admin/items/index.html.erb:29: unknown regexp options - tr
878
+ app/views/admin/items/index.html.erb:32: unknown regexp options - tabl
879
+ app/views/admin/items/index.html.erb:33: unterminated string meets end of file
880
+ app/views/admin/items/index.html.erb:33: syntax error, unexpected end-of-input, expecting ')'
881
+
882
+
883
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
884
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
885
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
886
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
887
+
888
+
889
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:08 +0100
890
+ Processing by Admin::ItemsController#index as HTML
891
+ Rendered admin/items/index.html.erb (4.8ms)
892
+ Completed 500 Internal Server Error in 9ms
893
+
894
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
895
+ 18: </th>
896
+ 19: </thead>
897
+ 20: <tbody>
898
+ 21: <% items.each do |item| %>
899
+ 22: <tr>
900
+ 23: <td>
901
+ 24: <%= item.id %>
902
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
903
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___664104146037581716_36614400'
904
+
905
+
906
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
907
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
908
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.2ms)
909
+
910
+
911
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:41 +0100
912
+ Processing by Admin::ItemsController#index as HTML
913
+ Rendered admin/items/index.html.erb (2.2ms)
914
+ Completed 500 Internal Server Error in 6ms
915
+
916
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
917
+ 18: </th>
918
+ 19: </thead>
919
+ 20: <tbody>
920
+ 21: <% items.each do |item| %>
921
+ 22: <tr>
922
+ 23: <td>
923
+ 24: <%= item.id %>
924
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
925
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___664104146037581716_36614400'
926
+
927
+
928
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (35.1ms)
929
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
930
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.0ms)
931
+
932
+
933
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:42 +0100
934
+ Processing by Admin::ItemsController#index as HTML
935
+ Rendered admin/items/index.html.erb (3.7ms)
936
+ Completed 500 Internal Server Error in 8ms
937
+
938
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
939
+ 18: </th>
940
+ 19: </thead>
941
+ 20: <tbody>
942
+ 21: <% items.each do |item| %>
943
+ 22: <tr>
944
+ 23: <td>
945
+ 24: <%= item.id %>
946
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
947
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___664104146037581716_36614400'
948
+
949
+
950
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
951
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
952
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.1ms)
953
+
954
+
955
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:49 +0100
956
+ Processing by Admin::ItemsController#index as HTML
957
+ Rendered admin/items/index.html.erb (4.3ms)
958
+ Completed 500 Internal Server Error in 58ms
959
+
960
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
961
+ 18: </th>
962
+ 19: </thead>
963
+ 20: <tbody>
964
+ 21: <% items.each do |item| %>
965
+ 22: <tr>
966
+ 23: <td>
967
+ 24: <%= item.id %>
968
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
969
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___3287639726318097747_37024800'
970
+
971
+
972
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
973
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
974
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.1ms)
975
+
976
+
977
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:50 +0100
978
+ Processing by Admin::ItemsController#index as HTML
979
+ Rendered admin/items/index.html.erb (2.5ms)
980
+ Completed 500 Internal Server Error in 7ms
981
+
982
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
983
+ 18: </th>
984
+ 19: </thead>
985
+ 20: <tbody>
986
+ 21: <% items.each do |item| %>
987
+ 22: <tr>
988
+ 23: <td>
989
+ 24: <%= item.id %>
990
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
991
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___3287639726318097747_37024800'
992
+
993
+
994
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
995
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
996
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.3ms)
997
+
998
+
999
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:25:50 +0100
1000
+ Processing by Admin::ItemsController#index as HTML
1001
+ Rendered admin/items/index.html.erb (2.5ms)
1002
+ Completed 500 Internal Server Error in 4ms
1003
+
1004
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
1005
+ 18: </th>
1006
+ 19: </thead>
1007
+ 20: <tbody>
1008
+ 21: <% items.each do |item| %>
1009
+ 22: <tr>
1010
+ 23: <td>
1011
+ 24: <%= item.id %>
1012
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1013
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___3287639726318097747_37024800'
1014
+
1015
+
1016
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1017
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1018
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.3ms)
1019
+
1020
+
1021
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:28:18 +0100
1022
+ Processing by Admin::ItemsController#index as HTML
1023
+ Item Load (2.7ms) SELECT "items".* FROM "items"
1024
+ Rendered admin/items/index.html.erb (9.6ms)
1025
+ Completed 500 Internal Server Error in 64ms
1026
+
1027
+ ActionView::Template::Error (undefined local variable or method `filter_params' for #<ActiveRecord::Relation []>):
1028
+ 18: </th>
1029
+ 19: </thead>
1030
+ 20: <tbody>
1031
+ 21: <% items.each do |item| %>
1032
+ 22: <tr>
1033
+ 23: <td>
1034
+ 24: <%= item.id %>
1035
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1036
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___2224389192607649328_31724580'
1037
+
1038
+
1039
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1040
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1041
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
1042
+
1043
+
1044
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:28:19 +0100
1045
+ Processing by Admin::ItemsController#index as HTML
1046
+ Item Load (0.2ms) SELECT "items".* FROM "items"
1047
+ Rendered admin/items/index.html.erb (4.5ms)
1048
+ Completed 500 Internal Server Error in 9ms
1049
+
1050
+ ActionView::Template::Error (undefined local variable or method `filter_params' for #<ActiveRecord::Relation []>):
1051
+ 18: </th>
1052
+ 19: </thead>
1053
+ 20: <tbody>
1054
+ 21: <% items.each do |item| %>
1055
+ 22: <tr>
1056
+ 23: <td>
1057
+ 24: <%= item.id %>
1058
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1059
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___2224389192607649328_31724580'
1060
+
1061
+
1062
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1063
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1064
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.6ms)
1065
+
1066
+
1067
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:28:55 +0100
1068
+ Processing by Admin::ItemsController#index as HTML
1069
+ Item Load (0.8ms) SELECT "items".* FROM "items"
1070
+ Rendered admin/items/index.html.erb (6.8ms)
1071
+ Completed 500 Internal Server Error in 61ms
1072
+
1073
+ ActionView::Template::Error (undefined method `filter_params' for #<ActiveRecord::Relation []>):
1074
+ 18: </th>
1075
+ 19: </thead>
1076
+ 20: <tbody>
1077
+ 21: <% items.each do |item| %>
1078
+ 22: <tr>
1079
+ 23: <td>
1080
+ 24: <%= item.id %>
1081
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1082
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___639629495236243040_30880720'
1083
+
1084
+
1085
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1086
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1087
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.7ms)
1088
+
1089
+
1090
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:28:56 +0100
1091
+ Processing by Admin::ItemsController#index as HTML
1092
+ Item Load (0.2ms) SELECT "items".* FROM "items"
1093
+ Rendered admin/items/index.html.erb (4.2ms)
1094
+ Completed 500 Internal Server Error in 9ms
1095
+
1096
+ ActionView::Template::Error (undefined method `filter_params' for #<ActiveRecord::Relation []>):
1097
+ 18: </th>
1098
+ 19: </thead>
1099
+ 20: <tbody>
1100
+ 21: <% items.each do |item| %>
1101
+ 22: <tr>
1102
+ 23: <td>
1103
+ 24: <%= item.id %>
1104
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1105
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___639629495236243040_30880720'
1106
+
1107
+
1108
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1109
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
1110
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.4ms)
1111
+
1112
+
1113
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:36:45 +0100
1114
+ Processing by Admin::ItemsController#index as HTML
1115
+ Item Load (0.4ms) SELECT "items".* FROM "items"
1116
+ Rendered admin/items/index.html.erb (2.9ms)
1117
+ Completed 500 Internal Server Error in 6ms
1118
+
1119
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1120
+ 18: </th>
1121
+ 19: </thead>
1122
+ 20: <tbody>
1123
+ 21: <% items.each do |item| %>
1124
+ 22: <tr>
1125
+ 23: <td>
1126
+ 24: <%= item.id %>
1127
+ app/controllers/admin/items_controller.rb:18:in `block (2 levels) in <class:ItemsController>'
1128
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb___639629495236243040_30880720'
1129
+
1130
+
1131
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
1132
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1133
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
1134
+
1135
+
1136
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:36:52 +0100
1137
+ Processing by Admin::ItemsController#index as HTML
1138
+ Item Load (1.7ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id ASC LIMIT 25 OFFSET 0
1139
+ Rendered admin/items/index.html.erb (15.7ms)
1140
+ Completed 200 OK in 71ms (Views: 18.3ms | ActiveRecord: 1.7ms)
1141
+
1142
+
1143
+ Started GET "/admin/items?asc=true&order=price" for 127.0.0.1 at 2014-11-01 16:37:01 +0100
1144
+ Processing by Admin::ItemsController#index as HTML
1145
+ Parameters: {"asc"=>"true", "order"=>"price"}
1146
+ Item Load (0.2ms) SELECT "items".* FROM "items"
1147
+ Rendered admin/items/index.html.erb (4.0ms)
1148
+ Completed 500 Internal Server Error in 6ms
1149
+
1150
+ ActionView::Template::Error (undefined local variable or method `order' for #<AdminBits::AdminResource:0x00000004828968>):
1151
+ 18: </th>
1152
+ 19: </thead>
1153
+ 20: <tbody>
1154
+ 21: <% items.each do |item| %>
1155
+ 22: <tr>
1156
+ 23: <td>
1157
+ 24: <%= item.id %>
1158
+ app/views/admin/items/index.html.erb:21:in `_app_views_admin_items_index_html_erb__2913317439047747083_36402420'
1159
+
1160
+
1161
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
1162
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
1163
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.7ms)
1164
+
1165
+
1166
+ Started GET "/admin/items?asc=false&order=id" for 127.0.0.1 at 2014-11-01 16:37:12 +0100
1167
+ Processing by Admin::ItemsController#index as HTML
1168
+ Parameters: {"asc"=>"false", "order"=>"id"}
1169
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id DESC LIMIT 25 OFFSET 0
1170
+ Rendered admin/items/index.html.erb (4.1ms)
1171
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
1172
+
1173
+
1174
+ Started GET "/admin/items?asc=true&order=id" for 127.0.0.1 at 2014-11-01 16:37:14 +0100
1175
+ Processing by Admin::ItemsController#index as HTML
1176
+ Parameters: {"asc"=>"true", "order"=>"id"}
1177
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id ASC LIMIT 25 OFFSET 0
1178
+ Rendered admin/items/index.html.erb (4.7ms)
1179
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.3ms)
1180
+
1181
+
1182
+ Started GET "/admin/items?asc=false&order=id" for 127.0.0.1 at 2014-11-01 16:37:15 +0100
1183
+ Processing by Admin::ItemsController#index as HTML
1184
+ Parameters: {"asc"=>"false", "order"=>"id"}
1185
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id DESC LIMIT 25 OFFSET 0
1186
+ Rendered admin/items/index.html.erb (4.0ms)
1187
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.3ms)
1188
+
1189
+
1190
+ Started GET "/admin/items?asc=true&order=id" for 127.0.0.1 at 2014-11-01 16:37:15 +0100
1191
+ Processing by Admin::ItemsController#index as HTML
1192
+ Parameters: {"asc"=>"true", "order"=>"id"}
1193
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id ASC LIMIT 25 OFFSET 0
1194
+ Rendered admin/items/index.html.erb (3.2ms)
1195
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms)
1196
+
1197
+
1198
+ Started GET "/admin/items?asc=false&order=id" for 127.0.0.1 at 2014-11-01 16:37:16 +0100
1199
+ Processing by Admin::ItemsController#index as HTML
1200
+ Parameters: {"asc"=>"false", "order"=>"id"}
1201
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id DESC LIMIT 25 OFFSET 0
1202
+ Rendered admin/items/index.html.erb (5.0ms)
1203
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms)
1204
+
1205
+
1206
+ Started GET "/admin/items?asc=true&order=id" for 127.0.0.1 at 2014-11-01 16:37:16 +0100
1207
+ Processing by Admin::ItemsController#index as HTML
1208
+ Parameters: {"asc"=>"true", "order"=>"id"}
1209
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id ASC LIMIT 25 OFFSET 0
1210
+ Rendered admin/items/index.html.erb (3.0ms)
1211
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
1212
+
1213
+
1214
+ Started GET "/admin/items?asc=false&order=id" for 127.0.0.1 at 2014-11-01 16:37:17 +0100
1215
+ Processing by Admin::ItemsController#index as HTML
1216
+ Parameters: {"asc"=>"false", "order"=>"id"}
1217
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id DESC LIMIT 25 OFFSET 0
1218
+ Rendered admin/items/index.html.erb (3.7ms)
1219
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
1220
+
1221
+
1222
+ Started GET "/admin/items?asc=true&order=id" for 127.0.0.1 at 2014-11-01 16:37:17 +0100
1223
+ Processing by Admin::ItemsController#index as HTML
1224
+ Parameters: {"asc"=>"true", "order"=>"id"}
1225
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN NULL AND NULL) ORDER BY items.id ASC LIMIT 25 OFFSET 0
1226
+ Rendered admin/items/index.html.erb (2.5ms)
1227
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
1228
+
1229
+
1230
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=&filters%5Bto%5D=" for 127.0.0.1 at 2014-11-01 16:37:20 +0100
1231
+ Processing by Admin::ItemsController#index as HTML
1232
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"", "to"=>""}}
1233
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN '' AND '') ORDER BY items.id ASC LIMIT 25 OFFSET 0
1234
+ Rendered admin/items/index.html.erb (3.3ms)
1235
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
1236
+
1237
+
1238
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=12&filters%5Bto%5D=" for 127.0.0.1 at 2014-11-01 16:37:23 +0100
1239
+ Processing by Admin::ItemsController#index as HTML
1240
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"12", "to"=>""}}
1241
+ Item Load (1.8ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN '12' AND '') ORDER BY items.id ASC LIMIT 25 OFFSET 0
1242
+ Rendered admin/items/index.html.erb (5.4ms)
1243
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 1.8ms)
1244
+
1245
+
1246
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=12&filters%5Bto%5D=432" for 127.0.0.1 at 2014-11-01 16:37:25 +0100
1247
+ Processing by Admin::ItemsController#index as HTML
1248
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"12", "to"=>"432"}}
1249
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (items.id BETWEEN '12' AND '432') ORDER BY items.id ASC LIMIT 25 OFFSET 0
1250
+ Rendered admin/items/index.html.erb (5.4ms)
1251
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms)
1252
+  (0.3ms) begin transaction
1253
+ SQL (0.6ms) INSERT INTO "items" ("created_at", "name", "price", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-11-01 15:53:14.842434"], ["name", "Ala"], ["price", 5.0], ["updated_at", "2014-11-01 15:53:14.842434"]]
1254
+  (11.0ms) commit transaction
1255
+  (0.2ms) begin transaction
1256
+ SQL (0.6ms) INSERT INTO "items" ("created_at", "name", "price", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-11-01 15:53:20.380477"], ["name", "Ela"], ["price", 52.0], ["updated_at", "2014-11-01 15:53:20.380477"]]
1257
+  (22.8ms) commit transaction
1258
+
1259
+
1260
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=12&filters%5Bto%5D=432" for 127.0.0.1 at 2014-11-01 16:53:21 +0100
1261
+ Processing by Admin::ItemsController#index as HTML
1262
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"12", "to"=>"432"}}
1263
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.0ms)
1264
+ Completed 500 Internal Server Error in 7ms
1265
+
1266
+ ActionView::Template::Error (undefined local variable or method `order' for #<AdminBits::AdminResource:0x00000004704cd0>):
1267
+ 16: </th>
1268
+ 17: </thead>
1269
+ 18: <tbody>
1270
+ 19: <% items.each do |item| %>
1271
+ 20: <tr>
1272
+ 21: <td>
1273
+ 22: <%= item.name %>
1274
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1275
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1276
+
1277
+
1278
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1279
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1280
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.4ms)
1281
+
1282
+
1283
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=12&filters%5Bto%5D=432" for 127.0.0.1 at 2014-11-01 16:54:24 +0100
1284
+ Processing by Admin::ItemsController#index as HTML
1285
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"12", "to"=>"432"}}
1286
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.1ms)
1287
+ Completed 500 Internal Server Error in 5ms
1288
+
1289
+ ActionView::Template::Error (undefined local variable or method `order' for #<AdminBits::AdminResource:0x000000053cbf40>):
1290
+ 16: </th>
1291
+ 17: </thead>
1292
+ 18: <tbody>
1293
+ 19: <% items.each do |item| %>
1294
+ 20: <tr>
1295
+ 21: <td>
1296
+ 22: <%= item.name %>
1297
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1298
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1299
+
1300
+
1301
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1302
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1303
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.6ms)
1304
+
1305
+
1306
+ Started GET "/admin/items?utf8=%E2%9C%93&order=id&asc=true&filters%5Bname%5D=adf&filters%5Bfrom%5D=12&filters%5Bto%5D=432" for 127.0.0.1 at 2014-11-01 16:54:24 +0100
1307
+ Processing by Admin::ItemsController#index as HTML
1308
+ Parameters: {"utf8"=>"✓", "order"=>"id", "asc"=>"true", "filters"=>{"name"=>"adf", "from"=>"12", "to"=>"432"}}
1309
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.3ms)
1310
+ Completed 500 Internal Server Error in 7ms
1311
+
1312
+ ActionView::Template::Error (undefined local variable or method `order' for #<AdminBits::AdminResource:0x000000054a0b28>):
1313
+ 16: </th>
1314
+ 17: </thead>
1315
+ 18: <tbody>
1316
+ 19: <% items.each do |item| %>
1317
+ 20: <tr>
1318
+ 21: <td>
1319
+ 22: <%= item.name %>
1320
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1321
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1322
+
1323
+
1324
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1325
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1326
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.1ms)
1327
+
1328
+
1329
+ Started GET "/admin/items" for 127.0.0.1 at 2014-11-01 16:55:22 +0100
1330
+ Processing by Admin::ItemsController#index as HTML
1331
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
1332
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (9.9ms)
1333
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.4ms)
1334
+
1335
+
1336
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:22 +0100
1337
+
1338
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1339
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1340
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1341
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1342
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1343
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1344
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1345
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1346
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1347
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1348
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1349
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1350
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1351
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1352
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1353
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1354
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1355
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1356
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1357
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1358
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1359
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1360
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1361
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1362
+
1363
+
1364
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (37.7ms)
1365
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1366
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.8ms)
1367
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.8ms)
1368
+
1369
+
1370
+ Started GET "/admin/items?asc=true&order=price" for 127.0.0.1 at 2014-11-01 16:55:24 +0100
1371
+ Processing by Admin::ItemsController#index as HTML
1372
+ Parameters: {"asc"=>"true", "order"=>"price"}
1373
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price ASC LIMIT 25 OFFSET 0
1374
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.3ms)
1375
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
1376
+
1377
+
1378
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:24 +0100
1379
+
1380
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1381
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1382
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1383
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1384
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1385
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1386
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1387
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1388
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1389
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1390
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1391
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1392
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1393
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1394
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1395
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1396
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1397
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1398
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1399
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1400
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1401
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1402
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1403
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1404
+
1405
+
1406
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1407
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1408
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
1409
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.4ms)
1410
+
1411
+
1412
+ Started GET "/admin/items?asc=false&order=price" for 127.0.0.1 at 2014-11-01 16:55:25 +0100
1413
+ Processing by Admin::ItemsController#index as HTML
1414
+ Parameters: {"asc"=>"false", "order"=>"price"}
1415
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price DESC LIMIT 25 OFFSET 0
1416
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.7ms)
1417
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1418
+
1419
+
1420
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:25 +0100
1421
+
1422
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1423
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1424
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1425
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1426
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1427
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1428
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1429
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1430
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1431
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1432
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1433
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1434
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1435
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1436
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1437
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1438
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1439
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1440
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1441
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1442
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1443
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1444
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1445
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1446
+
1447
+
1448
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1449
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1450
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
1451
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.4ms)
1452
+
1453
+
1454
+ Started GET "/admin/items?asc=true&order=price" for 127.0.0.1 at 2014-11-01 16:55:25 +0100
1455
+ Processing by Admin::ItemsController#index as HTML
1456
+ Parameters: {"asc"=>"true", "order"=>"price"}
1457
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.price ASC LIMIT 25 OFFSET 0
1458
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.7ms)
1459
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.4ms)
1460
+
1461
+
1462
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:25 +0100
1463
+
1464
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1465
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1466
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1467
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1468
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1469
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1470
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1471
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1472
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1473
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1474
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1475
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1476
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1477
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1478
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1479
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1480
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1481
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1482
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1483
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1484
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1485
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1486
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1487
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1488
+
1489
+
1490
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1491
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1492
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1493
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.6ms)
1494
+
1495
+
1496
+ Started GET "/admin/items?asc=true&order=name" for 127.0.0.1 at 2014-11-01 16:55:26 +0100
1497
+ Processing by Admin::ItemsController#index as HTML
1498
+ Parameters: {"asc"=>"true", "order"=>"name"}
1499
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.name ASC LIMIT 25 OFFSET 0
1500
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.6ms)
1501
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1502
+
1503
+
1504
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:26 +0100
1505
+
1506
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1507
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1508
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1509
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1510
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1511
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1512
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1513
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1514
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1515
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1516
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1517
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1518
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1519
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1520
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1521
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1522
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1523
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1524
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1525
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1526
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1527
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1528
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1529
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1530
+
1531
+
1532
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1533
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1534
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1535
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.5ms)
1536
+
1537
+
1538
+ Started GET "/admin/items?asc=false&order=name" for 127.0.0.1 at 2014-11-01 16:55:27 +0100
1539
+ Processing by Admin::ItemsController#index as HTML
1540
+ Parameters: {"asc"=>"false", "order"=>"name"}
1541
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.name DESC LIMIT 25 OFFSET 0
1542
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.8ms)
1543
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms)
1544
+
1545
+
1546
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:27 +0100
1547
+
1548
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1549
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1550
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1551
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1552
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1553
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1554
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1555
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1556
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1557
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1558
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1559
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1560
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1561
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1562
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1563
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1564
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1565
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1566
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1567
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1568
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1569
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1570
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1571
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1572
+
1573
+
1574
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1575
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1576
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
1577
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.4ms)
1578
+
1579
+
1580
+ Started GET "/admin/items?asc=true&order=name" for 127.0.0.1 at 2014-11-01 16:55:27 +0100
1581
+ Processing by Admin::ItemsController#index as HTML
1582
+ Parameters: {"asc"=>"true", "order"=>"name"}
1583
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') ORDER BY items.name ASC LIMIT 25 OFFSET 0
1584
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.2ms)
1585
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
1586
+
1587
+
1588
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:28 +0100
1589
+
1590
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1591
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1592
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1593
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1594
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1595
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1596
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1597
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1598
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1599
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1600
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1601
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1602
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1603
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1604
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1605
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1606
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1607
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1608
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1609
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1610
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1611
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1612
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1613
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1614
+
1615
+
1616
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1617
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (36.9ms)
1618
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1619
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.2ms)
1620
+
1621
+
1622
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 16:55:32 +0100
1623
+ Processing by Admin::ItemsController#index as HTML
1624
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1625
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 0) AND (price >= 0) ORDER BY items.name ASC LIMIT 25 OFFSET 0
1626
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.2ms)
1627
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.3ms)
1628
+
1629
+
1630
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:32 +0100
1631
+
1632
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1633
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1634
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1635
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1636
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1637
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1638
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1639
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1640
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1641
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1642
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1643
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1644
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1645
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1646
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1647
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1648
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1649
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1650
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1651
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1652
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1653
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1654
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1655
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1656
+
1657
+
1658
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1659
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1660
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1661
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.6ms)
1662
+
1663
+
1664
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 16:55:34 +0100
1665
+ Processing by Admin::ItemsController#index as HTML
1666
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1667
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 0) AND (price >= 0) ORDER BY items.name ASC LIMIT 25 OFFSET 0
1668
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.5ms)
1669
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
1670
+
1671
+
1672
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:55:34 +0100
1673
+
1674
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1675
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1676
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1677
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1678
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1679
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1680
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1681
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1682
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1683
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1684
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1685
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1686
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1687
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1688
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1689
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1690
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1691
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1692
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1693
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1694
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1695
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1696
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1697
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1698
+
1699
+
1700
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1701
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1702
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1703
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.7ms)
1704
+
1705
+
1706
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 16:56:36 +0100
1707
+ Processing by Admin::ItemsController#index as HTML
1708
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1709
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.6ms)
1710
+ Completed 500 Internal Server Error in 6ms
1711
+
1712
+ ActionView::Template::Error (exception class/object expected):
1713
+ 16: </th>
1714
+ 17: </thead>
1715
+ 18: <tbody>
1716
+ 19: <% items.each do |item| %>
1717
+ 20: <tr>
1718
+ 21: <td>
1719
+ 22: <%= item.name %>
1720
+ app/controllers/admin/items_controller.rb:17:in `raise'
1721
+ app/controllers/admin/items_controller.rb:17:in `block (2 levels) in <class:ItemsController>'
1722
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1723
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1724
+
1725
+
1726
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1727
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1728
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.5ms)
1729
+
1730
+
1731
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 16:56:42 +0100
1732
+ Processing by Admin::ItemsController#index as HTML
1733
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1734
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.3ms)
1735
+ Completed 500 Internal Server Error in 5ms
1736
+
1737
+ ActionView::Template::Error ({"name"=>"", "from"=>"1", "to"=>"7"}):
1738
+ 16: </th>
1739
+ 17: </thead>
1740
+ 18: <tbody>
1741
+ 19: <% items.each do |item| %>
1742
+ 20: <tr>
1743
+ 21: <td>
1744
+ 22: <%= item.name %>
1745
+ app/controllers/admin/items_controller.rb:17:in `block (2 levels) in <class:ItemsController>'
1746
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1747
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1748
+
1749
+
1750
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1751
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
1752
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
1753
+
1754
+
1755
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 16:56:59 +0100
1756
+ Processing by Admin::ItemsController#index as HTML
1757
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1758
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 0) AND (price >= 0) ORDER BY items.name ASC LIMIT 25 OFFSET 0
1759
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.9ms)
1760
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.3ms)
1761
+
1762
+
1763
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 16:56:59 +0100
1764
+
1765
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
1766
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1767
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1768
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1769
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1770
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1771
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1772
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1773
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1774
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1775
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1776
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1777
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1778
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1779
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1780
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1781
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1782
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1783
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1784
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1785
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1786
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1787
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1788
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1789
+
1790
+
1791
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1792
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1793
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
1794
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.0ms)
1795
+
1796
+
1797
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:40 +0100
1798
+ Processing by Admin::ItemsController#index as HTML
1799
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1800
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.3ms)
1801
+ Completed 500 Internal Server Error in 5ms
1802
+
1803
+ ActionView::Template::Error (0):
1804
+ 16: </th>
1805
+ 17: </thead>
1806
+ 18: <tbody>
1807
+ 19: <% items.each do |item| %>
1808
+ 20: <tr>
1809
+ 21: <td>
1810
+ 22: <%= item.name %>
1811
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1812
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1813
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1814
+
1815
+
1816
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1817
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1818
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.5ms)
1819
+
1820
+
1821
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:49 +0100
1822
+ Processing by Admin::ItemsController#index as HTML
1823
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1824
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.3ms)
1825
+ Completed 500 Internal Server Error in 5ms
1826
+
1827
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1828
+ 16: </th>
1829
+ 17: </thead>
1830
+ 18: <tbody>
1831
+ 19: <% items.each do |item| %>
1832
+ 20: <tr>
1833
+ 21: <td>
1834
+ 22: <%= item.name %>
1835
+ app/controllers/admin/items_controller.rb:19:in `[]'
1836
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1837
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1838
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1839
+
1840
+
1841
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1842
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1843
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.0ms)
1844
+
1845
+
1846
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:54 +0100
1847
+ Processing by Admin::ItemsController#index as HTML
1848
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1849
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.6ms)
1850
+ Completed 500 Internal Server Error in 5ms
1851
+
1852
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1853
+ 16: </th>
1854
+ 17: </thead>
1855
+ 18: <tbody>
1856
+ 19: <% items.each do |item| %>
1857
+ 20: <tr>
1858
+ 21: <td>
1859
+ 22: <%= item.name %>
1860
+ app/controllers/admin/items_controller.rb:19:in `[]'
1861
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1862
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1863
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1864
+
1865
+
1866
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1867
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms)
1868
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms)
1869
+
1870
+
1871
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:55 +0100
1872
+ Processing by Admin::ItemsController#index as HTML
1873
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1874
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.0ms)
1875
+ Completed 500 Internal Server Error in 3ms
1876
+
1877
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1878
+ 16: </th>
1879
+ 17: </thead>
1880
+ 18: <tbody>
1881
+ 19: <% items.each do |item| %>
1882
+ 20: <tr>
1883
+ 21: <td>
1884
+ 22: <%= item.name %>
1885
+ app/controllers/admin/items_controller.rb:19:in `[]'
1886
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1887
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1888
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1889
+
1890
+
1891
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1892
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1893
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.2ms)
1894
+
1895
+
1896
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:56 +0100
1897
+ Processing by Admin::ItemsController#index as HTML
1898
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1899
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.0ms)
1900
+ Completed 500 Internal Server Error in 7ms
1901
+
1902
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1903
+ 16: </th>
1904
+ 17: </thead>
1905
+ 18: <tbody>
1906
+ 19: <% items.each do |item| %>
1907
+ 20: <tr>
1908
+ 21: <td>
1909
+ 22: <%= item.name %>
1910
+ app/controllers/admin/items_controller.rb:19:in `[]'
1911
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1912
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1913
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1914
+
1915
+
1916
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1917
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
1918
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
1919
+
1920
+
1921
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:59 +0100
1922
+ Processing by Admin::ItemsController#index as HTML
1923
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1924
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.9ms)
1925
+ Completed 500 Internal Server Error in 7ms
1926
+
1927
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1928
+ 16: </th>
1929
+ 17: </thead>
1930
+ 18: <tbody>
1931
+ 19: <% items.each do |item| %>
1932
+ 20: <tr>
1933
+ 21: <td>
1934
+ 22: <%= item.name %>
1935
+ app/controllers/admin/items_controller.rb:19:in `[]'
1936
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1937
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1938
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1939
+
1940
+
1941
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1942
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1943
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.8ms)
1944
+
1945
+
1946
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:00:59 +0100
1947
+ Processing by Admin::ItemsController#index as HTML
1948
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1949
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.8ms)
1950
+ Completed 500 Internal Server Error in 6ms
1951
+
1952
+ ActionView::Template::Error (no implicit conversion of Symbol into Integer):
1953
+ 16: </th>
1954
+ 17: </thead>
1955
+ 18: <tbody>
1956
+ 19: <% items.each do |item| %>
1957
+ 20: <tr>
1958
+ 21: <td>
1959
+ 22: <%= item.name %>
1960
+ app/controllers/admin/items_controller.rb:19:in `[]'
1961
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1962
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1963
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1964
+
1965
+
1966
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1967
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (38.9ms)
1968
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.0ms)
1969
+
1970
+
1971
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:01:10 +0100
1972
+ Processing by Admin::ItemsController#index as HTML
1973
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1974
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (2.4ms)
1975
+ Completed 500 Internal Server Error in 5ms
1976
+
1977
+ ActionView::Template::Error ("1"):
1978
+ 16: </th>
1979
+ 17: </thead>
1980
+ 18: <tbody>
1981
+ 19: <% items.each do |item| %>
1982
+ 20: <tr>
1983
+ 21: <td>
1984
+ 22: <%= item.name %>
1985
+ app/controllers/admin/items_controller.rb:19:in `block (2 levels) in <class:ItemsController>'
1986
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:19:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___4447077122601446343_36903840'
1987
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
1988
+
1989
+
1990
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1991
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
1992
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.3ms)
1993
+
1994
+
1995
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:01:45 +0100
1996
+ Processing by Admin::ItemsController#index as HTML
1997
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
1998
+ Item Load (0.4ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 7) AND (price >= 1) ORDER BY items.name ASC LIMIT 25 OFFSET 0
1999
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (8.9ms)
2000
+ Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.8ms)
2001
+
2002
+
2003
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 17:01:45 +0100
2004
+
2005
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
2006
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2007
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2008
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
2009
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
2010
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2011
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
2012
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
2013
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
2014
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2015
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2016
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2017
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2018
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2019
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
2020
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2021
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
2022
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
2023
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2024
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2025
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2026
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
2027
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
2028
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2029
+
2030
+
2031
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2032
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
2033
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2034
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.2ms)
2035
+
2036
+
2037
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:03:07 +0100
2038
+
2039
+ ActionController::RoutingError (undefined local variable or method `asdf' for #<AdminBits::BaseConfig:0x000000054d37f8>):
2040
+ app/controllers/admin/items_controller.rb:28:in `block in <class:ItemsController>'
2041
+ app/controllers/admin/items_controller.rb:16:in `<class:ItemsController>'
2042
+ app/controllers/admin/items_controller.rb:1:in `<top (required)>'
2043
+
2044
+
2045
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2046
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
2047
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2048
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.7ms)
2049
+
2050
+
2051
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:03:13 +0100
2052
+
2053
+ ActionController::RoutingError (undefined local variable or method `asdf' for #<AdminBits::BaseConfig:0x00000002566d58>):
2054
+ app/controllers/admin/items_controller.rb:28:in `block in <class:ItemsController>'
2055
+ app/controllers/admin/items_controller.rb:16:in `<class:ItemsController>'
2056
+ app/controllers/admin/items_controller.rb:1:in `<top (required)>'
2057
+
2058
+
2059
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
2060
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
2061
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
2062
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.6ms)
2063
+
2064
+
2065
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:03:14 +0100
2066
+
2067
+ ActionController::RoutingError (undefined local variable or method `asdf' for #<AdminBits::BaseConfig:0x0000000463cde8>):
2068
+ app/controllers/admin/items_controller.rb:28:in `block in <class:ItemsController>'
2069
+ app/controllers/admin/items_controller.rb:16:in `<class:ItemsController>'
2070
+ app/controllers/admin/items_controller.rb:1:in `<top (required)>'
2071
+
2072
+
2073
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2074
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
2075
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
2076
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.3ms)
2077
+
2078
+
2079
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:03:58 +0100
2080
+ Processing by Admin::ItemsController#index as HTML
2081
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
2082
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 7) AND (price >= 1) ORDER BY items.name ASC LIMIT 25 OFFSET 0
2083
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (7.0ms)
2084
+ Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.6ms)
2085
+
2086
+
2087
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 17:03:58 +0100
2088
+
2089
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
2090
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2091
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2092
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
2093
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
2094
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2095
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
2096
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
2097
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
2098
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2099
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2100
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2101
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2102
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2103
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
2104
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2105
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
2106
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
2107
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2108
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2109
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2110
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
2111
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
2112
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2113
+
2114
+
2115
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2116
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
2117
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2118
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.5ms)
2119
+
2120
+
2121
+ Started GET "/" for 127.0.0.1 at 2014-11-01 17:08:06 +0100
2122
+ Processing by Rails::WelcomeController#index as HTML
2123
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (0.6ms)
2124
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2125
+
2126
+
2127
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:16:43 +0100
2128
+ Processing by Admin::ItemsController#index as HTML
2129
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
2130
+ Item Load (1.0ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 7) AND (price >= 1) ORDER BY items.name ASC LIMIT 25 OFFSET 0
2131
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (14.7ms)
2132
+ Completed 200 OK in 71ms (Views: 17.7ms | ActiveRecord: 1.3ms)
2133
+
2134
+
2135
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 17:16:43 +0100
2136
+
2137
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
2138
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2139
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2140
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
2141
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
2142
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2143
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
2144
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
2145
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
2146
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2147
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2148
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2149
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2150
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2151
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
2152
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2153
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
2154
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
2155
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2156
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2157
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2158
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
2159
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
2160
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2161
+
2162
+
2163
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2164
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
2165
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms)
2166
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.8ms)
2167
+
2168
+
2169
+ Started GET "/admin/items?utf8=%E2%9C%93&order=name&asc=true&filters%5Bname%5D=&filters%5Bfrom%5D=1&filters%5Bto%5D=7" for 127.0.0.1 at 2014-11-01 17:16:44 +0100
2170
+ Processing by Admin::ItemsController#index as HTML
2171
+ Parameters: {"utf8"=>"✓", "order"=>"name", "asc"=>"true", "filters"=>{"name"=>"", "from"=>"1", "to"=>"7"}}
2172
+ Item Load (0.3ms) SELECT "items".* FROM "items" WHERE (name LIKE '%%') AND (price <= 7) AND (price >= 1) ORDER BY items.name ASC LIMIT 25 OFFSET 0
2173
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (4.4ms)
2174
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.3ms)
2175
+
2176
+
2177
+ Started GET "/stylesheets/admin_bits.css" for 127.0.0.1 at 2014-11-01 17:16:44 +0100
2178
+
2179
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/admin_bits.css"):
2180
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2181
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2182
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
2183
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
2184
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2185
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
2186
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
2187
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
2188
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2189
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2190
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2191
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2192
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2193
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
2194
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2195
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
2196
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
2197
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2198
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2199
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2200
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
2201
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
2202
+ /home/lukasz/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2203
+
2204
+
2205
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2206
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
2207
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2208
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.9ms)
2209
+
2210
+
2211
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:05:04 +0100
2212
+ Processing by Admin::ItemsController#index as HTML
2213
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.7ms)
2214
+ Completed 500 Internal Server Error in 70ms
2215
+
2216
+ ActionView::Template::Error (undefined local variable or method `admin_items_path' for #<AdminBits::AdminResource:0x000000036dfbc0>):
2217
+ 1: <div id="filtering">
2218
+ 2: <%= admin_form :method => :get do %>
2219
+ 3: Name: <%= admin_text_filter :name %>
2220
+ 4: <br>
2221
+ 5: Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
2222
+ app/controllers/admin/items_controller.rb:5:in `block (2 levels) in <class:ItemsController>'
2223
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:2:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb__436980842224294105_28533960'
2224
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
2225
+
2226
+
2227
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
2228
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2229
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.1ms)
2230
+
2231
+
2232
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:06:26 +0100
2233
+
2234
+ SyntaxError (/projects/admin_bits/test/dummy/app/controllers/admin/items_controller.rb:5: syntax error, unexpected '}', expecting =>):
2235
+ app/controllers/admin/items_controller.rb:5: syntax error, unexpected '}', expecting =>
2236
+
2237
+
2238
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
2239
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2240
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2241
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.3ms)
2242
+
2243
+
2244
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:06:42 +0100
2245
+
2246
+ ActionController::RoutingError (undefined local variable or method `throw_error' for {}:AdminBits::BaseConfig):
2247
+ app/controllers/admin/items_controller.rb:5:in `block in <class:ItemsController>'
2248
+ app/controllers/admin/items_controller.rb:4:in `<class:ItemsController>'
2249
+ app/controllers/admin/items_controller.rb:1:in `<top (required)>'
2250
+
2251
+
2252
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2253
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
2254
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.4ms)
2255
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.1ms)
2256
+
2257
+
2258
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:07:40 +0100
2259
+
2260
+ RuntimeError (Please provide either block of value):
2261
+ app/controllers/admin/items_controller.rb:5:in `block in <class:ItemsController>'
2262
+ app/controllers/admin/items_controller.rb:4:in `<class:ItemsController>'
2263
+ app/controllers/admin/items_controller.rb:1:in `<top (required)>'
2264
+
2265
+
2266
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
2267
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2268
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
2269
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.9ms)
2270
+
2271
+
2272
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:08:14 +0100
2273
+ Processing by Admin::ItemsController#index as HTML
2274
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (5.0ms)
2275
+ Completed 500 Internal Server Error in 21ms
2276
+
2277
+ ActionView::Template::Error (undefined local variable or method `admin_items_path' for #<AdminBits::AdminResource:0x000000052cb8c0>):
2278
+ 1: <div id="filtering">
2279
+ 2: <%= admin_form :method => :get do %>
2280
+ 3: Name: <%= admin_text_filter :name %>
2281
+ 4: <br>
2282
+ 5: Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
2283
+ app/controllers/admin/items_controller.rb:5:in `block (2 levels) in <class:ItemsController>'
2284
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:2:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb___2535102125232319755_43355000'
2285
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
2286
+
2287
+
2288
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2289
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2290
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.2ms)
2291
+
2292
+
2293
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:08:36 +0100
2294
+ Processing by Admin::ItemsController#index as HTML
2295
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (3.7ms)
2296
+ Completed 500 Internal Server Error in 59ms
2297
+
2298
+ ActionView::Template::Error (undefined method `/admin/items' for #<Module:0x0000000450bcf8>):
2299
+ 1: <div id="filtering">
2300
+ 2: <%= admin_form :method => :get do %>
2301
+ 3: Name: <%= admin_text_filter :name %>
2302
+ 4: <br>
2303
+ 5: Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
2304
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:2:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb__1732786557272518613_29452020'
2305
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
2306
+
2307
+
2308
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2309
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
2310
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.5ms)
2311
+
2312
+
2313
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:08:38 +0100
2314
+ Processing by Admin::ItemsController#index as HTML
2315
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (1.3ms)
2316
+ Completed 500 Internal Server Error in 3ms
2317
+
2318
+ ActionView::Template::Error (undefined method `/admin/items' for #<Module:0x0000000450bcf8>):
2319
+ 1: <div id="filtering">
2320
+ 2: <%= admin_form :method => :get do %>
2321
+ 3: Name: <%= admin_text_filter :name %>
2322
+ 4: <br>
2323
+ 5: Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
2324
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:2:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb__1732786557272518613_29452020'
2325
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
2326
+
2327
+
2328
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2329
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2330
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.9ms)
2331
+
2332
+
2333
+ Started GET "/admin/items/" for 127.0.0.1 at 2014-11-02 12:08:39 +0100
2334
+ Processing by Admin::ItemsController#index as HTML
2335
+ Rendered admin_bits_modules/basic_admin_panel/index.html.erb within layouts/admin_bits_modules/basic_admin_panel/layout (1.3ms)
2336
+ Completed 500 Internal Server Error in 3ms
2337
+
2338
+ ActionView::Template::Error (undefined method `/admin/items' for #<Module:0x0000000450bcf8>):
2339
+ 1: <div id="filtering">
2340
+ 2: <%= admin_form :method => :get do %>
2341
+ 3: Name: <%= admin_text_filter :name %>
2342
+ 4: <br>
2343
+ 5: Price from <%= text_field_tag("filters[from]", admin_filter(:from)) %> and <%= text_field_tag("filters[to]", admin_filter(:to)) %>
2344
+ app/views/admin_bits_modules/basic_admin_panel/index.html.erb:2:in `_app_views_admin_bits_modules_basic_admin_panel_index_html_erb__1732786557272518613_29452020'
2345
+ app/models/basic_admin_panel.rb:19:in `block in redefine_action'
2346
+
2347
+
2348
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2349
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2350
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.5ms)
2351
+
2352
+
2353
+ Started GET "/" for 127.0.0.1 at 2014-11-03 16:31:48 +0100
2354
+ Processing by Rails::WelcomeController#index as HTML
2355
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
2356
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
2357
+
2358
+
2359
+ Started GET "/" for 127.0.0.1 at 2014-11-03 17:31:58 +0100
2360
+ Processing by Rails::WelcomeController#index as HTML
2361
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2362
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2363
+
2364
+
2365
+ Started GET "/" for 127.0.0.1 at 2014-11-03 21:24:55 +0100
2366
+ Processing by Rails::WelcomeController#index as HTML
2367
+ Rendered /home/lukasz/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2368
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)