railstrap 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/helpers/railstrap/application_helper.rb +260 -0
  5. data/config/routes.rb +2 -0
  6. data/lib/generators/railstrap/crud/USAGE +8 -0
  7. data/lib/generators/railstrap/crud/crud_generator.rb +160 -0
  8. data/lib/generators/railstrap/crud/templates/controller.rb +109 -0
  9. data/lib/generators/railstrap/crud/templates/view_edit.html.erb +12 -0
  10. data/lib/generators/railstrap/crud/templates/view_form.html.erb +18 -0
  11. data/lib/generators/railstrap/crud/templates/view_index.html.erb +11 -0
  12. data/lib/generators/railstrap/crud/templates/view_new.html.erb +12 -0
  13. data/lib/generators/railstrap/crud/templates/view_print.html.erb +13 -0
  14. data/lib/generators/railstrap/crud/templates/view_show.html.erb +14 -0
  15. data/lib/generators/railstrap/crud/templates/view_sidebar.html.erb +13 -0
  16. data/lib/generators/railstrap/crud/templates/view_signin.html.erb +36 -0
  17. data/lib/generators/railstrap/crud/templates/view_signup.html.erb +52 -0
  18. data/lib/generators/railstrap/crud/templates/view_text.html.erb +18 -0
  19. data/lib/generators/railstrap/install/install_generator.rb +74 -0
  20. data/lib/generators/railstrap/kaminari/templates/_first_page.html.erb +14 -0
  21. data/lib/generators/railstrap/kaminari/templates/_gap.html.erb +8 -0
  22. data/lib/generators/railstrap/kaminari/templates/_last_page.html.erb +14 -0
  23. data/lib/generators/railstrap/kaminari/templates/_next_page.html.erb +13 -0
  24. data/lib/generators/railstrap/kaminari/templates/_page.html.erb +12 -0
  25. data/lib/generators/railstrap/kaminari/templates/_paginator.html.erb +25 -0
  26. data/lib/generators/railstrap/kaminari/templates/_prev_page.html.erb +13 -0
  27. data/lib/generators/railstrap/layout/layout_generator.rb +30 -0
  28. data/lib/generators/railstrap/layout/templates/layout_railstrap.html.erb +134 -0
  29. data/lib/generators/railstrap/layout/templates/railstrap_painel.css.scss.erb +284 -0
  30. data/lib/generators/railstrap/layout/templates/railstrap_painel.js.erb +35 -0
  31. data/lib/railstrap.rb +9 -0
  32. data/lib/railstrap/action_controller.rb +29 -0
  33. data/lib/railstrap/active_record.rb +8 -0
  34. data/lib/railstrap/active_record/search.rb +52 -0
  35. data/lib/railstrap/engine.rb +29 -0
  36. data/lib/railstrap/version.rb +3 -0
  37. data/lib/tasks/railstrap_tasks.rake +4 -0
  38. data/test/dummy/README.rdoc +261 -0
  39. data/test/dummy/Rakefile +7 -0
  40. data/test/dummy/app/assets/javascripts/application.js +15 -0
  41. data/test/dummy/app/assets/javascripts/railstrap_painel.js +35 -0
  42. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  43. data/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss +284 -0
  44. data/test/dummy/app/controllers/application_controller.rb +7 -0
  45. data/test/dummy/app/controllers/painel/authors_controller.rb +84 -0
  46. data/test/dummy/app/helpers/application_helper.rb +2 -0
  47. data/test/dummy/app/models/article.rb +3 -0
  48. data/test/dummy/app/models/author.rb +3 -0
  49. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  50. data/test/dummy/app/views/layouts/painel.html.erb +135 -0
  51. data/test/dummy/app/views/painel/authors/_form.html.erb +20 -0
  52. data/test/dummy/app/views/painel/authors/edit.html.erb +12 -0
  53. data/test/dummy/app/views/painel/authors/index.html.erb +12 -0
  54. data/test/dummy/app/views/painel/authors/new.html.erb +12 -0
  55. data/test/dummy/app/views/painel/authors/show.html.erb +14 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/config/application.rb +56 -0
  58. data/test/dummy/config/boot.rb +10 -0
  59. data/test/dummy/config/database.yml +25 -0
  60. data/test/dummy/config/environment.rb +5 -0
  61. data/test/dummy/config/environments/development.rb +37 -0
  62. data/test/dummy/config/environments/production.rb +67 -0
  63. data/test/dummy/config/environments/test.rb +37 -0
  64. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/test/dummy/config/initializers/inflections.rb +15 -0
  66. data/test/dummy/config/initializers/mime_types.rb +5 -0
  67. data/test/dummy/config/initializers/secret_token.rb +7 -0
  68. data/test/dummy/config/initializers/session_store.rb +8 -0
  69. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  70. data/test/dummy/config/locales/en.yml +5 -0
  71. data/test/dummy/config/routes.rb +65 -0
  72. data/test/dummy/db/development.sqlite3 +0 -0
  73. data/test/dummy/db/migrate/20120604170000_create_articles.rb +12 -0
  74. data/test/dummy/db/migrate/20120604170057_create_authors.rb +10 -0
  75. data/test/dummy/db/schema.rb +31 -0
  76. data/test/dummy/log/development.log +3278 -0
  77. data/test/dummy/public/404.html +26 -0
  78. data/test/dummy/public/422.html +26 -0
  79. data/test/dummy/public/500.html +25 -0
  80. data/test/dummy/public/favicon.ico +0 -0
  81. data/test/dummy/script/rails +6 -0
  82. data/test/dummy/test/fixtures/articles.yml +13 -0
  83. data/test/dummy/test/fixtures/authors.yml +9 -0
  84. data/test/dummy/test/unit/article_test.rb +7 -0
  85. data/test/dummy/test/unit/author_test.rb +7 -0
  86. data/test/dummy/tmp/cache/assets/C86/B70/sprockets%2Fcd9a89973c62604382628d4b42365c1a +0 -0
  87. data/test/dummy/tmp/cache/assets/CB3/120/sprockets%2F0725460776a8a901aa58b85f4cce5456 +0 -0
  88. data/test/dummy/tmp/cache/assets/CDD/EE0/sprockets%2F7ab399ca754638905a70e366e1c1ab33 +0 -0
  89. data/test/dummy/tmp/cache/assets/CE2/EE0/sprockets%2Fd78ec4726951f44cb085d0db080960e3 +0 -0
  90. data/test/dummy/tmp/cache/assets/D09/2B0/sprockets%2F045947e6b2bba2ff33c67b51b63734a6 +0 -0
  91. data/test/dummy/tmp/cache/assets/D0B/A40/sprockets%2F241cecf5326c934ab0440a7c76ad7597 +0 -0
  92. data/test/dummy/tmp/cache/assets/D1D/870/sprockets%2Fa9e5ee43f30c1886f8d66c413395bd63 +0 -0
  93. data/test/dummy/tmp/cache/assets/D2B/DD0/sprockets%2Fddc372002f3306cc0d74fea616ed1138 +0 -0
  94. data/test/dummy/tmp/cache/assets/D46/920/sprockets%2F8f3c0c4bf52b27a6646e49751e4e8f0c +0 -0
  95. data/test/dummy/tmp/cache/assets/D72/0B0/sprockets%2F56e9ec06e41d1cf9d692d674b5ddb210 +0 -0
  96. data/test/dummy/tmp/cache/assets/D7C/A80/sprockets%2Fd2d9ec09fb9bc7f8a0758392420e5c7d +0 -0
  97. data/test/dummy/tmp/cache/assets/D7D/9D0/sprockets%2F28fea8457f4a95a2c2d34a6e77df509e +0 -0
  98. data/test/dummy/tmp/cache/assets/D98/3C0/sprockets%2F36f548ab10ebcf8badf47d2719bb8500 +0 -0
  99. data/test/dummy/tmp/cache/assets/DB6/7B0/sprockets%2F120aa322daea3a2aa3667ffd6931eb9b +0 -0
  100. data/test/dummy/tmp/cache/assets/DCB/E50/sprockets%2F89f6b8aeb7d09c0bad5151bab92e5f42 +0 -0
  101. data/test/dummy/tmp/cache/assets/DCF/B50/sprockets%2F5ef130bc93784a52897bbab7bbd4c8ea +0 -0
  102. data/test/dummy/tmp/cache/assets/DD4/B00/sprockets%2F518e3d3f425eccc9558a03f6ddd36ced +0 -0
  103. data/test/dummy/tmp/cache/assets/E53/040/sprockets%2Fb7edacfada15c14fe43ea3b5fc8e2463 +0 -0
  104. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap-responsive.scssc +997 -0
  105. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap.scssc +0 -0
  106. data/test/dummy/tmp/cache/sass/1ea5acef392f2f8c40312d480463a71d2049b360/railstrap_painel.css.scssc +0 -0
  107. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_accordion.scssc +0 -0
  108. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_alerts.scssc +0 -0
  109. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_breadcrumbs.scssc +0 -0
  110. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_button-groups.scssc +0 -0
  111. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_buttons.scssc +0 -0
  112. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_carousel.scssc +0 -0
  113. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_close.scssc +0 -0
  114. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_code.scssc +0 -0
  115. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_component-animations.scssc +0 -0
  116. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_dropdowns.scssc +0 -0
  117. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_forms.scssc +1494 -0
  118. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_grid.scssc +0 -0
  119. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_hero-unit.scssc +0 -0
  120. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_labels-badges.scssc +0 -0
  121. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_layouts.scssc +0 -0
  122. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_mixins.scssc +2620 -0
  123. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_modals.scssc +0 -0
  124. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navbar.scssc +1209 -0
  125. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navs.scssc +0 -0
  126. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pager.scssc +0 -0
  127. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pagination.scssc +0 -0
  128. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_popovers.scssc +0 -0
  129. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_progress-bars.scssc +0 -0
  130. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_reset.scssc +0 -0
  131. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_scaffolding.scssc +0 -0
  132. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_sprites.scssc +1064 -0
  133. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tables.scssc +0 -0
  134. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_thumbnails.scssc +0 -0
  135. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tooltip.scssc +0 -0
  136. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_type.scssc +0 -0
  137. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_utilities.scssc +0 -0
  138. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_variables.scssc +684 -0
  139. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_wells.scssc +0 -0
  140. data/test/integration/navigation_test.rb +10 -0
  141. data/test/railstrap_test.rb +7 -0
  142. data/test/test_helper.rb +15 -0
  143. metadata +420 -0
@@ -0,0 +1,37 @@
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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ 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,15 @@
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
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # 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 = '2964c4cae3706f521e8e20160957d506e7256caa0bdd25f891b6358dbc00f7412c43713cfb0e6b7ed82db7f1c2e6ea25bda52b2cc79f356e0a4379255e12de46'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,65 @@
1
+ Dummy::Application.routes.draw do
2
+
3
+
4
+ ##
5
+ namespace :painel do
6
+ resources :authors
7
+ end
8
+
9
+ # The priority is based upon order of creation:
10
+ # first created -> highest priority.
11
+
12
+ # Sample of regular route:
13
+ # match 'products/:id' => 'catalog#view'
14
+ # Keep in mind you can assign values other than :controller and :action
15
+
16
+ # Sample of named route:
17
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
18
+ # This route can be invoked with purchase_url(:id => product.id)
19
+
20
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
21
+ # resources :products
22
+
23
+ # Sample resource route with options:
24
+ # resources :products do
25
+ # member do
26
+ # get 'short'
27
+ # post 'toggle'
28
+ # end
29
+ #
30
+ # collection do
31
+ # get 'sold'
32
+ # end
33
+ # end
34
+
35
+ # Sample resource route with sub-resources:
36
+ # resources :products do
37
+ # resources :comments, :sales
38
+ # resource :seller
39
+ # end
40
+
41
+ # Sample resource route with more complex sub-resources
42
+ # resources :products do
43
+ # resources :comments
44
+ # resources :sales do
45
+ # get 'recent', :on => :collection
46
+ # end
47
+ # end
48
+
49
+ # Sample resource route within a namespace:
50
+ # namespace :admin do
51
+ # # Directs /admin/products/* to Admin::ProductsController
52
+ # # (app/controllers/admin/products_controller.rb)
53
+ # resources :products
54
+ # end
55
+
56
+ # You can have the root of your site routed with "root"
57
+ # just remember to delete public/index.html.
58
+ # root :to => 'welcome#index'
59
+
60
+ # See how all your routes lay out with "rake routes"
61
+
62
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
63
+ # Note: This route will make all actions in every controller accessible via GET requests.
64
+ # match ':controller(/:action(/:id))(.:format)'
65
+ end
Binary file
@@ -0,0 +1,12 @@
1
+ class CreateArticles < ActiveRecord::Migration
2
+ def change
3
+ create_table :articles do |t|
4
+ t.string :title
5
+ t.text :content
6
+ t.integer :author_id
7
+ t.boolean :published
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+ class CreateAuthors < ActiveRecord::Migration
2
+ def change
3
+ create_table :authors do |t|
4
+ t.string :name
5
+ t.boolean :status
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,31 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20120604170057) do
14
+
15
+ create_table "articles", :force => true do |t|
16
+ t.string "title"
17
+ t.text "content"
18
+ t.integer "author_id"
19
+ t.boolean "published"
20
+ t.datetime "created_at", :null => false
21
+ t.datetime "updated_at", :null => false
22
+ end
23
+
24
+ create_table "authors", :force => true do |t|
25
+ t.string "name"
26
+ t.boolean "status"
27
+ t.datetime "created_at", :null => false
28
+ t.datetime "updated_at", :null => false
29
+ end
30
+
31
+ end
@@ -0,0 +1,3278 @@
1
+  (0.2ms) select sqlite_version(*)
2
+  (11.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.1ms) PRAGMA index_list("schema_migrations")
4
+  (439.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateArticles (20120604170000)
7
+  (0.0ms) begin transaction
8
+  (2.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "author_id" integer, "published" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120604170000')
10
+  (13.1ms) commit transaction
11
+ Migrating to CreateAuthors (20120604170057)
12
+  (0.1ms) begin transaction
13
+  (1.2ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "status" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120604170057')
15
+  (11.5ms) commit transaction
16
+  (0.1ms) select sqlite_version(*)
17
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (0.0ms) PRAGMA index_list("articles")
19
+  (0.0ms) PRAGMA index_list("authors")
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at Mon Jun 04 21:59:27 -0300 2012
23
+
24
+ ActionController::RoutingError (No route matches [GET] "/"):
25
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
26
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
27
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
28
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
29
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
30
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
31
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
32
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
33
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
34
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
35
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
36
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
37
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
38
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
39
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
40
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
41
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
42
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
43
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
44
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
45
+
46
+
47
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.8ms)
48
+
49
+
50
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 21:59:34 -0300 2012
51
+
52
+ ActionController::RoutingError (No route matches [GET] "/painel/authors"):
53
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
54
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
55
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
56
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
57
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
58
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
59
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
60
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
61
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
62
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
63
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
64
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
65
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
66
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
67
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
68
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
69
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
70
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
71
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
72
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
73
+
74
+
75
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
76
+
77
+
78
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 22:00:48 -0300 2012
79
+ Processing by Painel::AuthorsController#index as HTML
80
+ Completed 500 Internal Server Error in 60ms
81
+
82
+ NoMethodError (undefined method `tb_search' for #<Class:0x2c5f650>):
83
+ app/controllers/painel/authors_controller.rb:6:in `index'
84
+
85
+
86
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
87
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.5ms)
88
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.8ms)
89
+
90
+
91
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 22:01:13 -0300 2012
92
+ Processing by Painel::AuthorsController#index as HTML
93
+ Author Load (0.4ms) SELECT "authors".* FROM "authors" 
94
+ Rendered painel/authors/index.html.erb within layouts/painel (61.7ms)
95
+ Completed 500 Internal Server Error in 217ms
96
+
97
+ ActionView::Template::Error (undefined method `tb_fixed_toolbar' for #<#<Class:0x17d0cc0>:0x1766488>):
98
+ 1: <%= tb_fixed_toolbar("Authors", authors_path) do %>
99
+ 2: <%= tb_add_button_to Author %>
100
+ 3: <%=tb_search_tool Author %>
101
+ 4: <%= paginate @authors %>
102
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb___934370099_11101700'
103
+ app/controllers/painel/authors_controller.rb:9:in `index'
104
+
105
+
106
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
107
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
108
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.2ms)
109
+
110
+
111
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 22:35:12 -0300 2012
112
+
113
+ LoadError (no such file to load -- railstrap/active_record_extensions):
114
+ activesupport (3.2.3) lib/active_support/dependencies.rb:251:in `require'
115
+ activesupport (3.2.3) lib/active_support/dependencies.rb:251:in `require'
116
+ activesupport (3.2.3) lib/active_support/dependencies.rb:236:in `load_dependency'
117
+ activesupport (3.2.3) lib/active_support/dependencies.rb:251:in `require'
118
+ /home/allan/projetos/ruby/gems/railstrap/lib/railstrap/engine.rb:6
119
+ activesupport (3.2.3) lib/active_support/lazy_load_hooks.rb:36:in `instance_eval'
120
+ activesupport (3.2.3) lib/active_support/lazy_load_hooks.rb:36:in `execute_hook'
121
+ activesupport (3.2.3) lib/active_support/lazy_load_hooks.rb:43:in `run_load_hooks'
122
+ activesupport (3.2.3) lib/active_support/lazy_load_hooks.rb:42:in `each'
123
+ activesupport (3.2.3) lib/active_support/lazy_load_hooks.rb:42:in `run_load_hooks'
124
+ activerecord (3.2.3) lib/active_record/base.rb:721
125
+ activerecord (3.2.3) lib/active_record/query_cache.rb:61:in `call'
126
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
127
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
128
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1437115523__call__4__callbacks'
129
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
130
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
131
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
132
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
133
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
134
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
135
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
136
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
137
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
138
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
139
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
140
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
141
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
142
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
143
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
144
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
145
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
146
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
147
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
148
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
149
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
150
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
151
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
152
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
153
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
154
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
155
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
156
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
157
+
158
+
159
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
160
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.9ms)
161
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.8ms)
162
+
163
+
164
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 22:35:30 -0300 2012
165
+ Processing by Painel::AuthorsController#index as HTML
166
+ Completed 500 Internal Server Error in 50ms
167
+
168
+ NoMethodError (undefined method `tb_search' for #<Class:0x25f0530>):
169
+ app/controllers/painel/authors_controller.rb:6:in `index'
170
+
171
+
172
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
173
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
174
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms)
175
+
176
+
177
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 23:08:38 -0300 2012
178
+ Processing by Painel::AuthorsController#index as HTML
179
+ Author Load (0.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
180
+ Rendered painel/authors/index.html.erb within layouts/painel (68.6ms)
181
+ Completed 500 Internal Server Error in 163ms
182
+
183
+ ActionView::Template::Error (undefined local variable or method `authors_path' for #<#<Class:0x3eb4d78>:0x3eb2280>):
184
+ 1: <%= tb_fixed_toolbar("Authors", authors_path) do %>
185
+ 2: <%= tb_add_button_to Author %>
186
+ 3: <%=tb_search_tool Author %>
187
+ 4: <%= paginate @authors %>
188
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__427161631_32765420'
189
+ app/controllers/painel/authors_controller.rb:9:in `index'
190
+
191
+
192
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
193
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
194
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.8ms)
195
+
196
+
197
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 23:13:01 -0300 2012
198
+ Processing by Painel::AuthorsController#index as HTML
199
+ Author Load (0.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
200
+ Rendered painel/authors/index.html.erb within layouts/painel (58.0ms)
201
+ Completed 500 Internal Server Error in 65ms
202
+
203
+ ActionView::Template::Error (undefined method `tb_fixed_toolbar' for #<#<Class:0x3eb4d78>:0x3c368a8>):
204
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
205
+ 2: <%= tb_add_button_to Author %>
206
+ 3: <%=tb_search_tool Author %>
207
+ 4: <%= paginate @authors %>
208
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__427161631_31565040'
209
+ app/controllers/painel/authors_controller.rb:9:in `index'
210
+
211
+
212
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
213
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
214
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.5ms)
215
+
216
+
217
+ Started GET "/painel/authors" for 127.0.0.1 at Mon Jun 04 23:15:56 -0300 2012
218
+ Processing by Painel::AuthorsController#index as HTML
219
+ Author Load (0.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
220
+ Rendered painel/authors/index.html.erb within layouts/painel (33.5ms)
221
+ Completed 500 Internal Server Error in 43ms
222
+
223
+ ActionView::Template::Error (undefined method `tb_page_title' for #<#<Class:0x5c12de8>:0x5c102f0>):
224
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
225
+ 2: <%= tb_add_button_to Author %>
226
+ 3: <%=tb_search_tool Author %>
227
+ 4: <%= paginate @authors %>
228
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__427161631_31565040'
229
+ app/controllers/painel/authors_controller.rb:9:in `index'
230
+
231
+
232
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
233
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
234
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
235
+
236
+
237
+ Started GET "/" for 192.168.56.1 at Mon Jun 11 00:04:05 -0300 2012
238
+
239
+ ActionController::RoutingError (No route matches [GET] "/"):
240
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
241
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
242
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
243
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
244
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
245
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
246
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
247
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
248
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
249
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
250
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
251
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
252
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
253
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
254
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
255
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
256
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
257
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
258
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
259
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
260
+
261
+
262
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.6ms)
263
+
264
+
265
+ Started GET "/paine" for 192.168.56.1 at Mon Jun 11 00:04:15 -0300 2012
266
+
267
+ ActionController::RoutingError (No route matches [GET] "/paine"):
268
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
269
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
270
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
271
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
272
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
273
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
274
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
275
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
276
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
277
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
278
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
279
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
280
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
281
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
282
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
283
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
284
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
285
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
286
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
287
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
288
+
289
+
290
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
291
+
292
+
293
+ Started GET "/painel" for 192.168.56.1 at Mon Jun 11 00:04:18 -0300 2012
294
+
295
+ ActionController::RoutingError (No route matches [GET] "/painel"):
296
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
297
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
298
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
299
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
300
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
301
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
302
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
303
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
304
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
305
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
306
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
307
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
308
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
309
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
310
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
311
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
312
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
313
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
314
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
315
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
316
+
317
+
318
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
319
+
320
+
321
+ Started GET "/painel/authors" for 192.168.56.1 at Mon Jun 11 00:04:42 -0300 2012
322
+ Processing by Painel::AuthorsController#index as HTML
323
+ Author Load (2.2ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
324
+ Rendered painel/authors/index.html.erb within layouts/painel (142.6ms)
325
+ Completed 500 Internal Server Error in 352ms
326
+
327
+ ActionView::Template::Error (undefined method `tb_add_button_to' for #<#<Class:0x912fa1c>:0x912e478>):
328
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
329
+ 2: <%= tb_add_button_to Author %>
330
+ 3: <%=tb_search_tool Author %>
331
+ 4: <%= paginate @authors %>
332
+ 5: <% end %>
333
+ app/views/painel/authors/index.html.erb:2:in `_app_views_painel_authors_index_html_erb__889503875_76114370'
334
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__889503875_76114370'
335
+ app/controllers/painel/authors_controller.rb:9:in `index'
336
+
337
+
338
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
339
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
340
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.1ms)
341
+
342
+
343
+ Started GET "/painel/authors" for 192.168.56.1 at Mon Jun 11 00:06:08 -0300 2012
344
+ Processing by Painel::AuthorsController#index as HTML
345
+ Author Load (3.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
346
+ Rendered painel/authors/index.html.erb within layouts/painel (47.1ms)
347
+ Completed 500 Internal Server Error in 72ms
348
+
349
+ ActionView::Template::Error (undefined method `tb_add_button_to' for #<#<Class:0x912fa1c>:0x8a31864>):
350
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
351
+ 2: <%= tb_add_button_to Author %>
352
+ 3: <%=tb_search_tool Author %>
353
+ 4: <%= paginate @authors %>
354
+ 5: <% end %>
355
+ app/views/painel/authors/index.html.erb:2:in `_app_views_painel_authors_index_html_erb__889503875_76114370'
356
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__889503875_76114370'
357
+ app/controllers/painel/authors_controller.rb:9:in `index'
358
+
359
+
360
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
361
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
362
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.5ms)
363
+
364
+
365
+ Started GET "/painel/authors" for 192.168.56.1 at Mon Jun 11 23:56:39 -0300 2012
366
+ Processing by Painel::AuthorsController#index as HTML
367
+ Author Load (2.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
368
+ Rendered painel/authors/index.html.erb within layouts/painel (119.7ms)
369
+ Completed 500 Internal Server Error in 406ms
370
+
371
+ ActionView::Template::Error (undefined method `tb_add_button_to' for #<#<Class:0x97d9a34>:0x97d5b8c>):
372
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
373
+ 2: <%= tb_add_button_to Author %>
374
+ 3: <%=tb_search_tool Author %>
375
+ 4: <%= paginate @authors %>
376
+ 5: <% end %>
377
+ app/views/painel/authors/index.html.erb:2:in `_app_views_painel_authors_index_html_erb__20037570_79541800'
378
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__20037570_79541800'
379
+ app/controllers/painel/authors_controller.rb:9:in `index'
380
+
381
+
382
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
383
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
384
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.6ms)
385
+
386
+
387
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:01:29 -0300 2012
388
+ Processing by Painel::AuthorsController#index as HTML
389
+ Author Load (4.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
390
+ Rendered painel/authors/index.html.erb within layouts/painel (145.3ms)
391
+ Completed 500 Internal Server Error in 175ms
392
+
393
+ ActionView::Template::Error (undefined method `new_author_path' for #<#<Class:0x908899c>:0x9079cf8>):
394
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
395
+ 2: <%= tb_add_button_to Author %>
396
+ 3: <%=tb_search_tool Author %>
397
+ 4: <%= paginate @authors %>
398
+ 5: <% end %>
399
+ app/views/painel/authors/index.html.erb:2:in `_app_views_painel_authors_index_html_erb__20037570_79541800'
400
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__20037570_79541800'
401
+ app/controllers/painel/authors_controller.rb:9:in `index'
402
+
403
+
404
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (125.3ms)
405
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
406
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (142.5ms)
407
+
408
+
409
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:32:57 -0300 2012
410
+ Processing by Painel::AuthorsController#index as HTML
411
+ Completed 500 Internal Server Error in 5ms
412
+
413
+ NameError (undefined local variable or method `tb_namespace' for #<Painel::AuthorsController:0xa871c98>):
414
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__254629457__process_action__143658189__callbacks'
415
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
416
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
417
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
418
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
419
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
420
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
421
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
422
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
423
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
424
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
425
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
426
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
427
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
428
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
429
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
430
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
431
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
432
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
433
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `action'
434
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
435
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
436
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
437
+ journey (1.0.3) lib/journey/router.rb:68:in `call'
438
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
439
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
440
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
441
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
442
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
443
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
444
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
445
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
446
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
447
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
448
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
449
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
450
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
451
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
452
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
453
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__295922208__call__4__callbacks'
454
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
455
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
456
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
457
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
458
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
459
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
460
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
461
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
462
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
463
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
464
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
465
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
466
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
467
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
468
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
469
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
470
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
471
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
472
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
473
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
474
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
475
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
476
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
477
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
478
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
479
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
480
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
481
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
482
+
483
+
484
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
485
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.7ms)
486
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.8ms)
487
+
488
+
489
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:34:00 -0300 2012
490
+ Processing by Painel::AuthorsController#index as HTML
491
+ Completed 500 Internal Server Error in 6ms
492
+
493
+ NameError (undefined local variable or method `tb_namespace' for #<Painel::AuthorsController:0x98f281c>):
494
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__343533978__process_action__811054334__callbacks'
495
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
496
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
497
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
498
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
499
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
500
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
501
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
502
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
503
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
504
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
505
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
506
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
507
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
508
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
509
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
510
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
511
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
512
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
513
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `action'
514
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
515
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
516
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
517
+ journey (1.0.3) lib/journey/router.rb:68:in `call'
518
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
519
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
520
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
521
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
522
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
523
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
524
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
525
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
526
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
527
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
528
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
529
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
530
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
531
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
532
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
533
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__235239624__call__4__callbacks'
534
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
535
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
536
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
537
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
538
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
539
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
540
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
541
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
542
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
543
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
544
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
545
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
546
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
547
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
548
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
549
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
550
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
551
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
552
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
553
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
554
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
555
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
556
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
557
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
558
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
559
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
560
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
561
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
562
+
563
+
564
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms)
565
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
566
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (38.4ms)
567
+
568
+
569
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:40:08 -0300 2012
570
+ Processing by Painel::AuthorsController#index as HTML
571
+ Completed 500 Internal Server Error in 12ms
572
+
573
+ NameError (undefined local variable or method `tb_namespace' for #<Painel::AuthorsController:0x996d990>):
574
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__721237201__process_action__925099577__callbacks'
575
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
576
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
577
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
578
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
579
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
580
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
581
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
582
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
583
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
584
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
585
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
586
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
587
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
588
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
589
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
590
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
591
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
592
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
593
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `action'
594
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
595
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
596
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
597
+ journey (1.0.3) lib/journey/router.rb:68:in `call'
598
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
599
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
600
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
601
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
602
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
603
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
604
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
605
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
606
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
607
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
608
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
609
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
610
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
611
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
612
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
613
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__465836661__call__4__callbacks'
614
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
615
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
616
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
617
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
618
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
619
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
620
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
621
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
622
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
623
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
624
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
625
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
626
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
627
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
628
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
629
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
630
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
631
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
632
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
633
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
634
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
635
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
636
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
637
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
638
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
639
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
640
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
641
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
642
+
643
+
644
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (10.3ms)
645
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.4ms)
646
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (81.4ms)
647
+
648
+
649
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:48:13 -0300 2012
650
+ Processing by Painel::AuthorsController#index as HTML
651
+ Author Load (2.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
652
+ Rendered painel/authors/index.html.erb within layouts/painel (100.7ms)
653
+ Completed 500 Internal Server Error in 274ms
654
+
655
+ ActionView::Template::Error (undefined method `tb_search_tool' for #<#<Class:0xa36dfd0>:0xa36aee8>):
656
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
657
+ 2: <%= tb_add_button_to Author %>
658
+ 3: <%=tb_search_tool Author %>
659
+ 4: <%= paginate @authors %>
660
+ 5: <% end %>
661
+ 6:
662
+ app/views/painel/authors/index.html.erb:3:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
663
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
664
+ app/controllers/painel/authors_controller.rb:9:in `index'
665
+
666
+
667
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
668
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
669
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.9ms)
670
+
671
+
672
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:49:05 -0300 2012
673
+ Processing by Painel::AuthorsController#index as HTML
674
+ Author Load (3.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
675
+ Rendered painel/authors/index.html.erb within layouts/painel (53.5ms)
676
+ Completed 500 Internal Server Error in 78ms
677
+
678
+ ActionView::Template::Error (undefined method `tb_search_tool' for #<#<Class:0xa36dfd0>:0x9d0010c>):
679
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
680
+ 2: <%= tb_add_button_to Author %>
681
+ 3: <%=tb_search_tool Author %>
682
+ 4: <%= paginate @authors %>
683
+ 5: <% end %>
684
+ 6:
685
+ app/views/painel/authors/index.html.erb:3:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
686
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
687
+ app/controllers/painel/authors_controller.rb:9:in `index'
688
+
689
+
690
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
691
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
692
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.1ms)
693
+
694
+
695
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:49:17 -0300 2012
696
+ Processing by Painel::AuthorsController#index as HTML
697
+ Author Load (19.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
698
+ Rendered painel/authors/index.html.erb within layouts/painel (197.6ms)
699
+ Completed 500 Internal Server Error in 222ms
700
+
701
+ ActionView::Template::Error (undefined method `tb_search_tool' for #<#<Class:0xa36dfd0>:0x9b2d848>):
702
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
703
+ 2: <%= tb_add_button_to Author %>
704
+ 3: <%=tb_search_tool Author %>
705
+ 4: <%= paginate @authors %>
706
+ 5: <% end %>
707
+ 6:
708
+ app/views/painel/authors/index.html.erb:3:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
709
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb___951316024_85609300'
710
+ app/controllers/painel/authors_controller.rb:9:in `index'
711
+
712
+
713
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
714
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.8ms)
715
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.3ms)
716
+
717
+
718
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:49:36 -0300 2012
719
+ Processing by Painel::AuthorsController#index as HTML
720
+ Author Load (4.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
721
+ Rendered painel/authors/index.html.erb within layouts/painel (74.6ms)
722
+ Completed 500 Internal Server Error in 203ms
723
+
724
+ ActionView::Template::Error (undefined method `tb_search_tool' for #<#<Class:0xaf39f80>:0xaf36330>):
725
+ 1: <%= tb_fixed_toolbar("Authors", painel_authors_path) do %>
726
+ 2: <%= tb_add_button_to Author %>
727
+ 3: <%=tb_search_tool Author %>
728
+ 4: <%= paginate @authors %>
729
+ 5: <% end %>
730
+ 6:
731
+ app/views/painel/authors/index.html.erb:3:in `_app_views_painel_authors_index_html_erb__685618497_91793250'
732
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__685618497_91793250'
733
+ app/controllers/painel/authors_controller.rb:9:in `index'
734
+
735
+
736
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
737
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms)
738
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.7ms)
739
+
740
+
741
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:50:34 -0300 2012
742
+ Processing by Painel::AuthorsController#index as HTML
743
+  (4.3ms) SELECT COUNT(*) FROM "authors"
744
+ Author Load (1.8ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
745
+ Rendered painel/authors/index.html.erb within layouts/painel (320.7ms)
746
+ Completed 500 Internal Server Error in 369ms
747
+
748
+ ActionView::Template::Error (undefined method `tb_table_for' for #<#<Class:0xa7bda04>:0xa7b780c>):
749
+ 4: <%= paginate @authors %>
750
+ 5: <% end %>
751
+ 6:
752
+ 7: <%= tb_table_for @authors, :actions=>[:show,:edit,:delete] do -%>
753
+ 8: <% column :name, :title=>"Name" %>
754
+ 9: <% column :status, :title=>"Status" %>
755
+ 10:
756
+ app/views/painel/authors/index.html.erb:7:in `_app_views_painel_authors_index_html_erb__685618497_91793250'
757
+ app/controllers/painel/authors_controller.rb:9:in `index'
758
+
759
+
760
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
761
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
762
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.9ms)
763
+
764
+
765
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:52:24 -0300 2012
766
+ Processing by Painel::AuthorsController#index as HTML
767
+  (2.7ms) SELECT COUNT(*) FROM "authors"
768
+ Author Load (2.8ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
769
+ Rendered painel/authors/index.html.erb within layouts/painel (146.5ms)
770
+ Completed 500 Internal Server Error in 9625ms
771
+
772
+ ActionView::Template::Error (File to import not found or unreadable: responsive.
773
+ Load path: Sass::Rails::Importer(/media/sf_C_DRIVE/projetos/ruby/gems/railstrap/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss)
774
+ (in /media/sf_C_DRIVE/projetos/ruby/gems/railstrap/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss)):
775
+ 6: <!--[if lt IE 9]>
776
+ 7:
777
+ 8: <![endif]-->
778
+ 9: <%= stylesheet_link_tag "railstrap_painel", :media => "all" %>
779
+ 10: <%= javascript_include_tag "railstrap_painel" %>
780
+ 11: <style type="text/css">
781
+ 12: body {
782
+ app/assets/stylesheets/railstrap_painel.css.scss:284
783
+ app/views/layouts/painel.html.erb:9:in `_app_views_layouts_painel_html_erb___728962688_91784840'
784
+ app/controllers/painel/authors_controller.rb:9:in `index'
785
+
786
+
787
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
788
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
789
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.1ms)
790
+
791
+
792
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 00:59:43 -0300 2012
793
+ Processing by Painel::AuthorsController#index as HTML
794
+  (3.7ms) SELECT COUNT(*) FROM "authors" 
795
+ Author Load (3.1ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
796
+ Rendered painel/authors/index.html.erb within layouts/painel (63.3ms)
797
+ Completed 500 Internal Server Error in 2710ms
798
+
799
+ ActionView::Template::Error (File to import not found or unreadable: responsive.
800
+ Load path: Sass::Rails::Importer(/media/sf_C_DRIVE/projetos/ruby/gems/railstrap/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss)
801
+ (in /media/sf_C_DRIVE/projetos/ruby/gems/railstrap/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss)):
802
+ 6: <!--[if lt IE 9]>
803
+ 7:
804
+ 8: <![endif]-->
805
+ 9: <%= stylesheet_link_tag "railstrap_painel", :media => "all" %>
806
+ 10: <%= javascript_include_tag "railstrap_painel" %>
807
+ 11: <style type="text/css">
808
+ 12: body {
809
+ app/assets/stylesheets/railstrap_painel.css.scss:284
810
+ app/views/layouts/painel.html.erb:9:in `_app_views_layouts_painel_html_erb__701499004_88508750'
811
+ app/controllers/painel/authors_controller.rb:9:in `index'
812
+
813
+
814
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
815
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
816
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.3ms)
817
+
818
+
819
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 01:04:06 -0300 2012
820
+ Processing by Painel::AuthorsController#index as HTML
821
+  (2.1ms) SELECT COUNT(*) FROM "authors" 
822
+ Author Load (1.9ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
823
+ Rendered painel/authors/index.html.erb within layouts/painel (34.4ms)
824
+ Compiled railstrap_painel.css (8958ms) (pid 2627)
825
+ Completed 500 Internal Server Error in 9631ms
826
+
827
+ ActionView::Template::Error (couldn't find file 'ckeditor/init'
828
+ (in /media/sf_C_DRIVE/projetos/ruby/gems/railstrap/test/dummy/app/assets/javascripts/railstrap_painel.js:21)):
829
+ 7:
830
+ 8: <![endif]-->
831
+ 9: <%= stylesheet_link_tag "railstrap_painel", :media => "all" %>
832
+ 10: <%= javascript_include_tag "railstrap_painel" %>
833
+ 11: <style type="text/css">
834
+ 12: body {
835
+ 13: / padding-top: 60px;
836
+ app/views/layouts/painel.html.erb:10:in `_app_views_layouts_painel_html_erb__701499004_88508750'
837
+ app/controllers/painel/authors_controller.rb:9:in `index'
838
+
839
+
840
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
841
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.2ms)
842
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.6ms)
843
+
844
+
845
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 01:04:44 -0300 2012
846
+ Processing by Painel::AuthorsController#index as HTML
847
+  (1.8ms) SELECT COUNT(*) FROM "authors" 
848
+ Author Load (4.5ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
849
+ Rendered painel/authors/index.html.erb within layouts/painel (42.0ms)
850
+ Compiled jquery.js (12ms) (pid 2627)
851
+ Compiled jquery_ujs.js (2ms) (pid 2627)
852
+ Compiled bootstrap-tooltip.js (2ms) (pid 2627)
853
+ Compiled bootstrap-dropdown.js (1ms) (pid 2627)
854
+ Compiled railstrap_painel.js (1004ms) (pid 2627)
855
+ Completed 200 OK in 1333ms (Views: 1324.9ms | ActiveRecord: 6.3ms)
856
+
857
+
858
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 01:04:49 -0300 2012
859
+ Served asset /railstrap_painel.css - 200 OK (84ms)
860
+
861
+
862
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 01:04:50 -0300 2012
863
+ Served asset /jquery.js - 200 OK (62ms)
864
+
865
+
866
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 01:04:50 -0300 2012
867
+ Served asset /jquery_ujs.js - 200 OK (73ms)
868
+
869
+
870
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 01:04:50 -0300 2012
871
+ Served asset /bootstrap-tooltip.js - 200 OK (24ms)
872
+
873
+
874
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 01:04:50 -0300 2012
875
+ Served asset /bootstrap-dropdown.js - 200 OK (30ms)
876
+
877
+
878
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 01:04:50 -0300 2012
879
+ Served asset /railstrap_painel.js - 200 OK (59ms)
880
+
881
+
882
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 01:05:24 -0300 2012
883
+ Processing by Painel::AuthorsController#index as HTML
884
+  (1.6ms) SELECT COUNT(*) FROM "authors" 
885
+ Author Load (4.1ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
886
+ Rendered painel/authors/index.html.erb within layouts/painel (40.5ms)
887
+ Completed 200 OK in 84ms (Views: 75.8ms | ActiveRecord: 5.7ms)
888
+
889
+
890
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
891
+ Served asset /railstrap_painel.css - 200 OK (36ms)
892
+
893
+
894
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
895
+ Served asset /jquery.js - 200 OK (1ms)
896
+
897
+
898
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
899
+ Served asset /jquery_ujs.js - 200 OK (8ms)
900
+
901
+
902
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
903
+ Served asset /bootstrap-tooltip.js - 200 OK (2ms)
904
+
905
+
906
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
907
+ Served asset /bootstrap-dropdown.js - 200 OK (0ms)
908
+
909
+
910
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 01:05:28 -0300 2012
911
+ Served asset /railstrap_painel.js - 200 OK (1ms)
912
+
913
+
914
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 01:07:19 -0300 2012
915
+ Served asset /glyphicons-halflings-white.png - 200 OK (148ms)
916
+
917
+
918
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 01:08:48 -0300 2012
919
+ Processing by Painel::AuthorsController#index as HTML
920
+  (3.1ms) SELECT COUNT(*) FROM "authors" 
921
+ Author Load (1.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
922
+ Rendered painel/authors/index.html.erb within layouts/painel (33.1ms)
923
+ Compiled railstrap_painel.css (6194ms) (pid 2627)
924
+ Completed 200 OK in 6718ms (Views: 6710.9ms | ActiveRecord: 4.7ms)
925
+
926
+
927
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 01:08:56 -0300 2012
928
+ Served asset /railstrap_painel.css - 304 Not Modified (56ms)
929
+
930
+
931
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 01:08:56 -0300 2012
932
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
933
+
934
+
935
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 01:08:57 -0300 2012
936
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
937
+
938
+
939
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 01:08:57 -0300 2012
940
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
941
+
942
+
943
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 01:08:57 -0300 2012
944
+ Served asset /jquery.js - 304 Not Modified (0ms)
945
+
946
+
947
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 01:08:57 -0300 2012
948
+ Served asset /railstrap_painel.js - 304 Not Modified (7ms)
949
+
950
+
951
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 01:10:15 -0300 2012
952
+ Processing by Painel::AuthorsController#index as HTML
953
+  (4.7ms) SELECT COUNT(*) FROM "authors" 
954
+ Author Load (2.9ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
955
+ Rendered painel/authors/index.html.erb within layouts/painel (30.1ms)
956
+ Compiled railstrap_painel.css (5367ms) (pid 2627)
957
+ Completed 200 OK in 5770ms (Views: 5760.1ms | ActiveRecord: 7.6ms)
958
+
959
+
960
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 01:10:23 -0300 2012
961
+ Served asset /railstrap_painel.css - 200 OK (58ms)
962
+
963
+
964
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 01:10:23 -0300 2012
965
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
966
+
967
+
968
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 01:10:23 -0300 2012
969
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
970
+
971
+
972
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 01:10:24 -0300 2012
973
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
974
+
975
+
976
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 01:10:24 -0300 2012
977
+ Served asset /jquery.js - 304 Not Modified (0ms)
978
+
979
+
980
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 01:10:24 -0300 2012
981
+ Served asset /railstrap_painel.js - 304 Not Modified (5ms)
982
+
983
+
984
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 01:10:25 -0300 2012
985
+ Served asset /glyphicons-halflings.png - 200 OK (167ms)
986
+
987
+
988
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 01:10:25 -0300 2012
989
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (0ms)
990
+
991
+
992
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jun 12 01:10:52 -0300 2012
993
+ Processing by Painel::AuthorsController#new as HTML
994
+ Rendered painel/authors/new.html.erb within layouts/painel (45.4ms)
995
+ Completed 500 Internal Server Error in 87ms
996
+
997
+ ActionView::Template::Error (undefined local variable or method `authors_path' for #<#<Class:0xa8f99a4>:0xb9e5e0c>):
998
+ 1:
999
+ 2: <%= tb_fixed_toolbar("Authors", authors_path) do %>
1000
+ 3: <%= tb_submit_button_to @author%>
1001
+ 4: <%= tb_cancel_button_to @author %>
1002
+ 5: <% end %>
1003
+ app/views/painel/authors/new.html.erb:2:in `_app_views_painel_authors_new_html_erb__60802759_97462170'
1004
+ app/controllers/painel/authors_controller.rb:31:in `new'
1005
+
1006
+
1007
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
1008
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
1009
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.2ms)
1010
+
1011
+
1012
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 01:11:51 -0300 2012
1013
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1014
+
1015
+
1016
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 18:24:27 -0300 2012
1017
+ Processing by Painel::AuthorsController#index as HTML
1018
+  (2.0ms) SELECT COUNT(*) FROM "authors" 
1019
+ Author Load (1.7ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1020
+ Rendered painel/authors/index.html.erb within layouts/painel (160.4ms)
1021
+ Completed 200 OK in 1052ms (Views: 985.7ms | ActiveRecord: 21.5ms)
1022
+
1023
+
1024
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 18:24:38 -0300 2012
1025
+ Served asset /railstrap_painel.css - 304 Not Modified (53ms)
1026
+
1027
+
1028
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 18:24:52 -0300 2012
1029
+ Served asset /glyphicons-halflings.png - 304 Not Modified (44ms)
1030
+
1031
+
1032
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 18:24:52 -0300 2012
1033
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (20ms)
1034
+
1035
+
1036
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 18:26:06 -0300 2012
1037
+ Processing by Painel::AuthorsController#index as HTML
1038
+  (3.3ms) SELECT COUNT(*) FROM "authors" 
1039
+ Author Load (2.9ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1040
+ Rendered painel/authors/index.html.erb within layouts/painel (42.6ms)
1041
+ Completed 200 OK in 91ms (Views: 72.5ms | ActiveRecord: 14.3ms)
1042
+
1043
+
1044
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 18:26:47 -0300 2012
1045
+ Served asset /railstrap_painel.css - 304 Not Modified (30ms)
1046
+
1047
+
1048
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 18:26:47 -0300 2012
1049
+ Served asset /jquery.js - 304 Not Modified (96ms)
1050
+
1051
+
1052
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 18:26:47 -0300 2012
1053
+ Served asset /jquery_ujs.js - 304 Not Modified (99ms)
1054
+
1055
+
1056
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 18:26:48 -0300 2012
1057
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (55ms)
1058
+
1059
+
1060
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 18:26:48 -0300 2012
1061
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (41ms)
1062
+
1063
+
1064
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 18:26:48 -0300 2012
1065
+ Served asset /railstrap_painel.js - 304 Not Modified (159ms)
1066
+
1067
+
1068
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 18:26:59 -0300 2012
1069
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 18:26:59 -0300 2012
1073
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1074
+
1075
+
1076
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 19:23:01 -0300 2012
1077
+ Processing by Painel::AuthorsController#index as HTML
1078
+  (78.3ms) SELECT COUNT(*) FROM "authors" 
1079
+ Author Load (35.5ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1080
+ Rendered painel/authors/index.html.erb within layouts/painel (1071.7ms)
1081
+ Completed 200 OK in 1223ms (Views: 1105.9ms | ActiveRecord: 113.8ms)
1082
+
1083
+
1084
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 19:24:06 -0300 2012
1085
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
1086
+
1087
+
1088
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 19:24:06 -0300 2012
1089
+ Served asset /jquery.js - 304 Not Modified (0ms)
1090
+
1091
+
1092
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 19:24:06 -0300 2012
1093
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1094
+
1095
+
1096
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 19:24:07 -0300 2012
1097
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1098
+
1099
+
1100
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 19:24:07 -0300 2012
1101
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1102
+
1103
+
1104
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 19:24:07 -0300 2012
1105
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
1106
+
1107
+
1108
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 19:24:19 -0300 2012
1109
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1110
+
1111
+
1112
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 19:24:19 -0300 2012
1113
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (0ms)
1114
+
1115
+
1116
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 22:10:51 -0300 2012
1117
+ Processing by Painel::AuthorsController#index as HTML
1118
+ Author Load (2.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1119
+ Rendered painel/authors/index.html.erb within layouts/painel (164.5ms)
1120
+ Completed 500 Internal Server Error in 438ms
1121
+
1122
+ ActionView::Template::Error (undefined local variable or method `authors_path' for #<#<Class:0xa8235fc>:0xa820a8c>):
1123
+ 1: <%= tb_fixed_toolbar("Authors", authors_path) do %>
1124
+ 2: <%= tb_add_button_to Author %>
1125
+ 3: <%=tb_search_tool Author %>
1126
+ 4: <%= paginate @authors %>
1127
+ app/views/painel/authors/index.html.erb:1:in `_app_views_painel_authors_index_html_erb__71924140_88083680'
1128
+ app/controllers/painel/authors_controller.rb:8:in `index'
1129
+
1130
+
1131
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
1132
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
1133
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.5ms)
1134
+
1135
+
1136
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 22:34:39 -0300 2012
1137
+ Processing by Painel::AuthorsController#index as HTML
1138
+  (3.0ms) SELECT COUNT(*) FROM "authors"
1139
+ Author Load (1.5ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1140
+ Rendered painel/authors/index.html.erb within layouts/painel (215.0ms)
1141
+ Completed 200 OK in 789ms (Views: 775.1ms | ActiveRecord: 8.7ms)
1142
+
1143
+
1144
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1145
+ Served asset /railstrap_painel.css - 304 Not Modified (93ms)
1146
+
1147
+
1148
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1149
+ Served asset /jquery.js - 304 Not Modified (34ms)
1150
+
1151
+
1152
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1153
+ Served asset /jquery_ujs.js - 304 Not Modified (31ms)
1154
+
1155
+
1156
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1157
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (19ms)
1158
+
1159
+
1160
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1161
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (21ms)
1162
+
1163
+
1164
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:44 -0300 2012
1165
+ Served asset /railstrap_painel.js - 304 Not Modified (250ms)
1166
+
1167
+
1168
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 22:34:46 -0300 2012
1169
+ Served asset /glyphicons-halflings.png - 304 Not Modified (18ms)
1170
+
1171
+
1172
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 22:34:46 -0300 2012
1173
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (17ms)
1174
+
1175
+
1176
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jun 12 22:34:51 -0300 2012
1177
+ Processing by Painel::AuthorsController#new as HTML
1178
+ Rendered painel/authors/_form.html.erb (92.9ms)
1179
+ Rendered painel/authors/new.html.erb within layouts/painel (582.3ms)
1180
+ Completed 200 OK in 641ms (Views: 626.9ms | ActiveRecord: 0.0ms)
1181
+
1182
+
1183
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1184
+ Served asset /jquery.js - 304 Not Modified (0ms)
1185
+
1186
+
1187
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1188
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
1189
+
1190
+
1191
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1192
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1193
+
1194
+
1195
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1196
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1197
+
1198
+
1199
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1200
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
1201
+
1202
+
1203
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 22:34:59 -0300 2012
1204
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (1ms)
1205
+
1206
+
1207
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 22:35:00 -0300 2012
1208
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1209
+
1210
+
1211
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jun 12 22:35:07 -0300 2012
1212
+ Processing by Painel::AuthorsController#index as HTML
1213
+  (2.5ms) SELECT COUNT(*) FROM "authors"
1214
+ Author Load (6.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1215
+ Rendered painel/authors/index.html.erb within layouts/painel (30.7ms)
1216
+ Completed 200 OK in 152ms (Views: 140.7ms | ActiveRecord: 9.1ms)
1217
+
1218
+
1219
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1220
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
1221
+
1222
+
1223
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1224
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1225
+
1226
+
1227
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1228
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1229
+
1230
+
1231
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1232
+ Served asset /jquery.js - 304 Not Modified (0ms)
1233
+
1234
+
1235
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1236
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
1237
+
1238
+
1239
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:10 -0300 2012
1240
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1241
+
1242
+
1243
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 22:35:11 -0300 2012
1244
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1245
+
1246
+
1247
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jun 12 22:35:11 -0300 2012
1248
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (0ms)
1249
+
1250
+
1251
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jun 12 22:35:43 -0300 2012
1252
+ Processing by Painel::AuthorsController#new as HTML
1253
+ Rendered painel/authors/_form.html.erb (18.9ms)
1254
+ Rendered painel/authors/new.html.erb within layouts/painel (37.9ms)
1255
+ Completed 200 OK in 76ms (Views: 74.8ms | ActiveRecord: 0.0ms)
1256
+
1257
+
1258
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1259
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
1260
+
1261
+
1262
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1263
+ Served asset /jquery.js - 304 Not Modified (0ms)
1264
+
1265
+
1266
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1267
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1268
+
1269
+
1270
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1271
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1272
+
1273
+
1274
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1275
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1276
+
1277
+
1278
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jun 12 22:35:47 -0300 2012
1279
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
1280
+
1281
+
1282
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jun 12 22:35:53 -0300 2012
1283
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1284
+
1285
+
1286
+ Started POST "/authors" for 192.168.56.1 at Tue Jun 12 22:35:57 -0300 2012
1287
+
1288
+ ActionController::RoutingError (uninitialized constant AuthorsController):
1289
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:218:in `constantize'
1290
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:217:in `each'
1291
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:217:in `constantize'
1292
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1293
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1294
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
1295
+ journey (1.0.3) lib/journey/router.rb:68:in `call'
1296
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1297
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1298
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1299
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1300
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1301
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1302
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1303
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1304
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1305
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1306
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1307
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1308
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1309
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1310
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
1311
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__32583373__call__4__callbacks'
1312
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `send'
1313
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1314
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1315
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `send'
1316
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1317
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1318
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1319
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1320
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1321
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1322
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1323
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1324
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1325
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1326
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1327
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1328
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1329
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1330
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1331
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1332
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1333
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1334
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1335
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1336
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1337
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1338
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
1339
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
1340
+
1341
+
1342
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1343
+
1344
+
1345
+ Started GET "/painel/authors" for 192.168.56.1 at Sat Jun 16 19:09:39 -0300 2012
1346
+ Processing by Painel::AuthorsController#index as HTML
1347
+  (2.2ms) SELECT COUNT(*) FROM "authors" 
1348
+ Author Load (2.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1349
+ Rendered painel/authors/index.html.erb within layouts/painel (188.0ms)
1350
+ Completed 200 OK in 988ms (Views: 815.5ms | ActiveRecord: 51.9ms)
1351
+
1352
+
1353
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 16 19:09:45 -0300 2012
1354
+ Served asset /railstrap_painel.css - 304 Not Modified (372ms)
1355
+
1356
+
1357
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 16 19:09:46 -0300 2012
1358
+ Served asset /jquery_ujs.js - 304 Not Modified (60ms)
1359
+
1360
+
1361
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 16 19:09:46 -0300 2012
1362
+ Served asset /jquery.js - 304 Not Modified (39ms)
1363
+
1364
+
1365
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 16 19:09:46 -0300 2012
1366
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (16ms)
1367
+
1368
+
1369
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 16 19:09:46 -0300 2012
1370
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (17ms)
1371
+
1372
+
1373
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 16 19:09:46 -0300 2012
1374
+ Served asset /railstrap_painel.js - 304 Not Modified (60ms)
1375
+
1376
+
1377
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 16 19:09:48 -0300 2012
1378
+ Served asset /glyphicons-halflings.png - 304 Not Modified (15ms)
1379
+
1380
+
1381
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Sat Jun 16 19:09:48 -0300 2012
1382
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (17ms)
1383
+
1384
+
1385
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 16 19:09:56 -0300 2012
1386
+ Processing by Painel::AuthorsController#new as HTML
1387
+ Rendered painel/authors/new.html.erb within layouts/painel (259.9ms)
1388
+ Completed 500 Internal Server Error in 299ms
1389
+
1390
+ ActionView::Template::Error (undefined method `authors_path' for #<#<Class:0x9c27adc>:0xad03f68>):
1391
+ 5: <% end %>
1392
+ 6:
1393
+ 7:
1394
+ 8: <%= simple_form_for @author,:html => { :class => 'form-vertical' } do |f| %>
1395
+ 9:
1396
+ 10: <%= render :partial=>'form', :locals=>{:f=>f} %>
1397
+ 11:
1398
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__9427919_90708440'
1399
+ app/controllers/painel/authors_controller.rb:30:in `new'
1400
+
1401
+
1402
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
1403
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1404
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.2ms)
1405
+
1406
+
1407
+ Started GET "/" for 192.168.56.1 at Sat Jun 30 22:05:39 -0300 2012
1408
+
1409
+ ActionController::RoutingError (No route matches [GET] "/"):
1410
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1411
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1412
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1413
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1414
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1415
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1416
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1417
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1418
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1419
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1420
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1421
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1422
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1423
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1424
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1425
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1426
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1427
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1428
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
1429
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
1430
+
1431
+
1432
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.0ms)
1433
+
1434
+
1435
+ Started GET "/authors" for 192.168.56.1 at Sat Jun 30 22:05:48 -0300 2012
1436
+
1437
+ ActionController::RoutingError (No route matches [GET] "/authors"):
1438
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1439
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1440
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1441
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1442
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1443
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1444
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1445
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1446
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1447
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1448
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1449
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1450
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1451
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1452
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1453
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1454
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1455
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1456
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
1457
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
1458
+
1459
+
1460
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1461
+
1462
+
1463
+ Started GET "/painel/authors" for 192.168.56.1 at Sat Jun 30 22:06:16 -0300 2012
1464
+ Processing by Painel::AuthorsController#index as HTML
1465
+  (4.0ms) SELECT COUNT(*) FROM "authors" 
1466
+ Author Load (8.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1467
+ Rendered painel/authors/index.html.erb within layouts/painel (232.1ms)
1468
+ Completed 200 OK in 1553ms (Views: 1236.7ms | ActiveRecord: 92.1ms)
1469
+
1470
+
1471
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 30 22:06:28 -0300 2012
1472
+ Served asset /jquery.js - 200 OK (168ms)
1473
+
1474
+
1475
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 30 22:06:28 -0300 2012
1476
+ Served asset /railstrap_painel.css - 200 OK (84ms)
1477
+
1478
+
1479
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:06:28 -0300 2012
1480
+ Served asset /jquery_ujs.js - 200 OK (44ms)
1481
+
1482
+
1483
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:06:28 -0300 2012
1484
+ Served asset /bootstrap-tooltip.js - 200 OK (32ms)
1485
+
1486
+
1487
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:06:29 -0300 2012
1488
+ Served asset /bootstrap-dropdown.js - 200 OK (28ms)
1489
+
1490
+
1491
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:06:29 -0300 2012
1492
+ Served asset /railstrap_painel.js - 200 OK (88ms)
1493
+
1494
+
1495
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 30 22:06:31 -0300 2012
1496
+ Served asset /glyphicons-halflings.png - 200 OK (20ms)
1497
+
1498
+
1499
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Sat Jun 30 22:06:31 -0300 2012
1500
+ Served asset /glyphicons-halflings-white.png - 200 OK (24ms)
1501
+
1502
+
1503
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:09:58 -0300 2012
1504
+ Processing by Painel::AuthorsController#new as HTML
1505
+ Rendered painel/authors/new.html.erb within layouts/painel (400.2ms)
1506
+ Completed 500 Internal Server Error in 456ms
1507
+
1508
+ ActionView::Template::Error (undefined method `authors_path' for #<#<Class:0x94fa05c>:0xa62a3e0>):
1509
+ 5: <% end %>
1510
+ 6:
1511
+ 7:
1512
+ 8: <%= simple_form_for @author,:html => { :class => 'form-vertical' } do |f| %>
1513
+ 9:
1514
+ 10: <%= render :partial=>'form', :locals=>{:f=>f} %>
1515
+ 11:
1516
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__299443267_87116820'
1517
+ app/controllers/painel/authors_controller.rb:30:in `new'
1518
+
1519
+
1520
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1521
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
1522
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (40.0ms)
1523
+
1524
+
1525
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:17:40 -0300 2012
1526
+ Processing by Painel::AuthorsController#new as HTML
1527
+ Rendered painel/authors/_form.html.erb (292.2ms)
1528
+ Rendered painel/authors/new.html.erb within layouts/painel (332.2ms)
1529
+ Completed 200 OK in 412ms (Views: 380.2ms | ActiveRecord: 8.0ms)
1530
+
1531
+
1532
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1533
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
1534
+
1535
+
1536
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1537
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1538
+
1539
+
1540
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1541
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1542
+
1543
+
1544
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1545
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1546
+
1547
+
1548
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1549
+ Served asset /railstrap_painel.js - 304 Not Modified (0ms)
1550
+
1551
+
1552
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:45 -0300 2012
1553
+ Served asset /jquery.js - 304 Not Modified (0ms)
1554
+
1555
+
1556
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:46 -0300 2012
1557
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1558
+
1559
+
1560
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:52 -0300 2012
1561
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1562
+
1563
+
1564
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:53 -0300 2012
1565
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1566
+
1567
+
1568
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:17:53 -0300 2012
1569
+ Served asset /railstrap_painel.js - 304 Not Modified (0ms)
1570
+
1571
+
1572
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 30 22:17:54 -0300 2012
1573
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1574
+
1575
+
1576
+ Started GET "/painel/authors" for 192.168.56.1 at Sat Jun 30 22:18:18 -0300 2012
1577
+ Processing by Painel::AuthorsController#index as HTML
1578
+  (8.0ms) SELECT COUNT(*) FROM "authors" 
1579
+ Author Load (4.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1580
+ Rendered painel/authors/index.html.erb within layouts/painel (268.2ms)
1581
+ Completed 200 OK in 324ms (Views: 300.2ms | ActiveRecord: 20.0ms)
1582
+
1583
+
1584
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 30 22:18:27 -0300 2012
1585
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
1586
+
1587
+
1588
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:27 -0300 2012
1589
+ Served asset /railstrap_painel.js - 304 Not Modified (0ms)
1590
+
1591
+
1592
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:27 -0300 2012
1593
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1594
+
1595
+
1596
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:27 -0300 2012
1597
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1598
+
1599
+
1600
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:28 -0300 2012
1601
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1602
+
1603
+
1604
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:28 -0300 2012
1605
+ Served asset /jquery.js - 304 Not Modified (0ms)
1606
+
1607
+
1608
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:29 -0300 2012
1609
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1610
+
1611
+
1612
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:29 -0300 2012
1613
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1614
+
1615
+
1616
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:30 -0300 2012
1617
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1618
+
1619
+
1620
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:31 -0300 2012
1621
+ Served asset /railstrap_painel.js - 304 Not Modified (8ms)
1622
+
1623
+
1624
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 30 22:18:31 -0300 2012
1625
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1626
+
1627
+
1628
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:18:34 -0300 2012
1629
+ Processing by Painel::AuthorsController#new as HTML
1630
+ Rendered painel/authors/_form.html.erb (16.0ms)
1631
+ Rendered painel/authors/new.html.erb within layouts/painel (44.0ms)
1632
+ Completed 200 OK in 116ms (Views: 92.1ms | ActiveRecord: 0.0ms)
1633
+
1634
+
1635
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 30 22:18:38 -0300 2012
1636
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
1637
+
1638
+
1639
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:38 -0300 2012
1640
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1641
+
1642
+
1643
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:38 -0300 2012
1644
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1645
+
1646
+
1647
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:38 -0300 2012
1648
+ Served asset /railstrap_painel.js - 304 Not Modified (4ms)
1649
+
1650
+
1651
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:39 -0300 2012
1652
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1653
+
1654
+
1655
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:39 -0300 2012
1656
+ Served asset /jquery.js - 304 Not Modified (0ms)
1657
+
1658
+
1659
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:39 -0300 2012
1660
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1661
+
1662
+
1663
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:40 -0300 2012
1664
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (4ms)
1665
+
1666
+
1667
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:41 -0300 2012
1668
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1669
+
1670
+
1671
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:18:41 -0300 2012
1672
+ Served asset /railstrap_painel.js - 304 Not Modified (4ms)
1673
+
1674
+
1675
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 30 22:18:43 -0300 2012
1676
+ Served asset /glyphicons-halflings.png - 304 Not Modified (0ms)
1677
+
1678
+
1679
+ Started POST "/authors" for 192.168.56.1 at Sat Jun 30 22:19:06 -0300 2012
1680
+
1681
+ ActionController::RoutingError (No route matches [POST] "/authors"):
1682
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1683
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1684
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1685
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1686
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1687
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1688
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1689
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1690
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1691
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1692
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1693
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1694
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1695
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1696
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1697
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1698
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1699
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1700
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
1701
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
1702
+
1703
+
1704
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
1705
+
1706
+
1707
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:23:05 -0300 2012
1708
+ Processing by Painel::AuthorsController#new as HTML
1709
+ Rendered painel/authors/new.html.erb within layouts/painel (272.2ms)
1710
+ Completed 500 Internal Server Error in 332ms
1711
+
1712
+ ActionView::Template::Error (undefined local variable or method `painel_authors' for #<#<Class:0xa4cde84>:0xa4cc8f4>):
1713
+ 5: <% end %>
1714
+ 6:
1715
+ 7:
1716
+ 8: <%= simple_form_for @author, :url => painel_authors,:html => { :class => 'form-vertical' } do |f| %>
1717
+ 9:
1718
+ 10: <%= render :partial=>'form', :locals=>{:f=>f} %>
1719
+ 11:
1720
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__299443267_86400670'
1721
+ app/controllers/painel/authors_controller.rb:30:in `new'
1722
+
1723
+
1724
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1725
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1726
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.0ms)
1727
+
1728
+
1729
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:35:22 -0300 2012
1730
+ Processing by Painel::AuthorsController#new as HTML
1731
+ Rendered painel/authors/new.html.erb within layouts/painel (56.0ms)
1732
+ Completed 500 Internal Server Error in 112ms
1733
+
1734
+ ActionView::Template::Error (undefined local variable or method `painel_authors' for #<#<Class:0xa628fe0>:0xa627564>):
1735
+ 5: <% end %>
1736
+ 6:
1737
+ 7:
1738
+ 8: <%= simple_form_for @author, :url => painel_authors,:html => { :class => 'form-vertical' } do |f| %>
1739
+ 9:
1740
+ 10: <%= render :partial=>'form', :locals=>{:f=>f} %>
1741
+ 11:
1742
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__299443267_86400670'
1743
+ app/controllers/painel/authors_controller.rb:30:in `new'
1744
+
1745
+
1746
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1747
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1748
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.0ms)
1749
+
1750
+
1751
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:36:54 -0300 2012
1752
+ Processing by Painel::AuthorsController#new as HTML
1753
+ Rendered painel/authors/new.html.erb within layouts/painel (24.0ms)
1754
+ Completed 500 Internal Server Error in 52ms
1755
+
1756
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"painel/authors"}):
1757
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__299443267_86772370'
1758
+ app/controllers/painel/authors_controller.rb:30:in `new'
1759
+
1760
+
1761
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1762
+
1763
+
1764
+ Started GET "/painel/authors" for 192.168.56.1 at Sat Jun 30 22:37:31 -0300 2012
1765
+ Processing by Painel::AuthorsController#index as HTML
1766
+  (4.0ms) SELECT COUNT(*) FROM "authors" 
1767
+ Author Load (4.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1768
+ Rendered painel/authors/index.html.erb within layouts/painel (36.0ms)
1769
+ Completed 200 OK in 300ms (Views: 292.2ms | ActiveRecord: 8.0ms)
1770
+
1771
+
1772
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Sat Jun 30 22:37:36 -0300 2012
1773
+ Served asset /railstrap_painel.css - 304 Not Modified (16ms)
1774
+
1775
+
1776
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:36 -0300 2012
1777
+ Served asset /jquery.js - 304 Not Modified (4ms)
1778
+
1779
+
1780
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:36 -0300 2012
1781
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1782
+
1783
+
1784
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:36 -0300 2012
1785
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1786
+
1787
+
1788
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:37 -0300 2012
1789
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1790
+
1791
+
1792
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:37 -0300 2012
1793
+ Served asset /railstrap_painel.js - 304 Not Modified (0ms)
1794
+
1795
+
1796
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:37 -0300 2012
1797
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1798
+
1799
+
1800
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:38 -0300 2012
1801
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1802
+
1803
+
1804
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:38 -0300 2012
1805
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1806
+
1807
+
1808
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Sat Jun 30 22:37:39 -0300 2012
1809
+ Served asset /railstrap_painel.js - 304 Not Modified (4ms)
1810
+
1811
+
1812
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Sat Jun 30 22:37:40 -0300 2012
1813
+ Served asset /glyphicons-halflings.png - 304 Not Modified (4ms)
1814
+
1815
+
1816
+ Started GET "/painel/authors/new" for 192.168.56.1 at Sat Jun 30 22:37:45 -0300 2012
1817
+ Processing by Painel::AuthorsController#new as HTML
1818
+ Rendered painel/authors/new.html.erb within layouts/painel (20.0ms)
1819
+ Completed 500 Internal Server Error in 48ms
1820
+
1821
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"painel/authors"}):
1822
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__299443267_86772370'
1823
+ app/controllers/painel/authors_controller.rb:30:in `new'
1824
+
1825
+
1826
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1827
+
1828
+
1829
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:26:13 -0300 2012
1830
+ Processing by Painel::AuthorsController#new as HTML
1831
+ Rendered painel/authors/new.html.erb within layouts/painel (54.0ms)
1832
+ Completed 500 Internal Server Error in 420ms
1833
+
1834
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"painel/authors"}):
1835
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__899676456_85025490'
1836
+ app/controllers/painel/authors_controller.rb:30:in `new'
1837
+
1838
+
1839
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
1840
+
1841
+
1842
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:26:39 -0300 2012
1843
+ Processing by Painel::AuthorsController#index as HTML
1844
+  (2.0ms) SELECT COUNT(*) FROM "authors" 
1845
+ Author Load (5.5ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1846
+ Rendered painel/authors/index.html.erb within layouts/painel (228.1ms)
1847
+ Completed 200 OK in 717ms (Views: 707.5ms | ActiveRecord: 7.6ms)
1848
+
1849
+
1850
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:40 -0300 2012
1851
+ Served asset /bootstrap-dropdown.js - 200 OK (18ms)
1852
+
1853
+
1854
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:40 -0300 2012
1855
+ Served asset /bootstrap-tooltip.js - 200 OK (18ms)
1856
+
1857
+
1858
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1859
+ Served asset /jquery_ujs.js - 200 OK (23ms)
1860
+
1861
+
1862
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1863
+ Served asset /jquery.js - 200 OK (38ms)
1864
+
1865
+
1866
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1867
+ Served asset /railstrap_painel.js - 200 OK (57ms)
1868
+
1869
+
1870
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1871
+ Served asset /railstrap_painel.css - 200 OK (55ms)
1872
+
1873
+
1874
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1875
+ Served asset /glyphicons-halflings.png - 200 OK (14ms)
1876
+
1877
+
1878
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jul 03 21:26:41 -0300 2012
1879
+ Served asset /glyphicons-halflings-white.png - 200 OK (18ms)
1880
+
1881
+
1882
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:26:52 -0300 2012
1883
+ Processing by Painel::AuthorsController#index as HTML
1884
+  (3.3ms) SELECT COUNT(*) FROM "authors" 
1885
+ Author Load (2.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
1886
+ Rendered painel/authors/index.html.erb within layouts/painel (29.7ms)
1887
+ Completed 200 OK in 74ms (Views: 65.3ms | ActiveRecord: 5.8ms)
1888
+
1889
+
1890
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:26:53 -0300 2012
1891
+ Served asset /railstrap_painel.css - 200 OK (13ms)
1892
+
1893
+
1894
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:53 -0300 2012
1895
+ Served asset /jquery.js - 200 OK (0ms)
1896
+
1897
+
1898
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:53 -0300 2012
1899
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1900
+
1901
+
1902
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:53 -0300 2012
1903
+ Served asset /bootstrap-tooltip.js - 200 OK (0ms)
1904
+
1905
+
1906
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:54 -0300 2012
1907
+ Served asset /bootstrap-dropdown.js - 200 OK (2ms)
1908
+
1909
+
1910
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:26:54 -0300 2012
1911
+ Served asset /railstrap_painel.js - 200 OK (3ms)
1912
+
1913
+
1914
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Tue Jul 03 21:26:54 -0300 2012
1915
+ Served asset /glyphicons-halflings.png - 200 OK (0ms)
1916
+
1917
+
1918
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Tue Jul 03 21:26:54 -0300 2012
1919
+ Served asset /glyphicons-halflings-white.png - 200 OK (0ms)
1920
+
1921
+
1922
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:26:58 -0300 2012
1923
+ Processing by Painel::AuthorsController#new as HTML
1924
+ Rendered painel/authors/new.html.erb within layouts/painel (15.4ms)
1925
+ Completed 500 Internal Server Error in 37ms
1926
+
1927
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"painel/authors"}):
1928
+ app/views/painel/authors/new.html.erb:8:in `_app_views_painel_authors_new_html_erb__899676456_85025490'
1929
+ app/controllers/painel/authors_controller.rb:30:in `new'
1930
+
1931
+
1932
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
1933
+
1934
+
1935
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:33:04 -0300 2012
1936
+ Processing by Painel::AuthorsController#new as HTML
1937
+ Rendered painel/authors/_form.html.erb (113.5ms)
1938
+ Rendered painel/authors/new.html.erb within layouts/painel (408.5ms)
1939
+ Completed 200 OK in 449ms (Views: 448.0ms | ActiveRecord: 0.0ms)
1940
+
1941
+
1942
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1943
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
1944
+
1945
+
1946
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1947
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1948
+
1949
+
1950
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1951
+ Served asset /jquery.js - 304 Not Modified (0ms)
1952
+
1953
+
1954
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1955
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1956
+
1957
+
1958
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1959
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1960
+
1961
+
1962
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:33:05 -0300 2012
1963
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
1964
+
1965
+
1966
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:45:43 -0300 2012
1967
+ Processing by Painel::AuthorsController#new as HTML
1968
+ Rendered painel/authors/_form.html.erb (23.9ms)
1969
+ Rendered painel/authors/new.html.erb within layouts/painel (43.1ms)
1970
+ Completed 200 OK in 85ms (Views: 83.5ms | ActiveRecord: 0.0ms)
1971
+
1972
+
1973
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1974
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
1975
+
1976
+
1977
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1978
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1979
+
1980
+
1981
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1982
+ Served asset /jquery.js - 304 Not Modified (0ms)
1983
+
1984
+
1985
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1986
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
1987
+
1988
+
1989
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1990
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
1991
+
1992
+
1993
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:44 -0300 2012
1994
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
1995
+
1996
+
1997
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:45:45 -0300 2012
1998
+ Processing by Painel::AuthorsController#index as HTML
1999
+  (2.7ms) SELECT COUNT(*) FROM "authors" 
2000
+ Author Load (2.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2001
+ Rendered painel/authors/index.html.erb within layouts/painel (26.7ms)
2002
+ Completed 200 OK in 256ms (Views: 248.6ms | ActiveRecord: 5.3ms)
2003
+
2004
+
2005
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2006
+ Served asset /railstrap_painel.css - 304 Not Modified (37ms)
2007
+
2008
+
2009
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2010
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2011
+
2012
+
2013
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2014
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2015
+
2016
+
2017
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2018
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2019
+
2020
+
2021
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2022
+ Served asset /jquery.js - 304 Not Modified (0ms)
2023
+
2024
+
2025
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:47 -0300 2012
2026
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2027
+
2028
+
2029
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:45:49 -0300 2012
2030
+ Processing by Painel::AuthorsController#new as HTML
2031
+ Rendered painel/authors/_form.html.erb (14.2ms)
2032
+ Rendered painel/authors/new.html.erb within layouts/painel (28.6ms)
2033
+ Completed 200 OK in 64ms (Views: 62.5ms | ActiveRecord: 0.0ms)
2034
+
2035
+
2036
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2037
+ Served asset /railstrap_painel.css - 304 Not Modified (14ms)
2038
+
2039
+
2040
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2041
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2042
+
2043
+
2044
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2045
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2046
+
2047
+
2048
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2049
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2050
+
2051
+
2052
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2053
+ Served asset /jquery.js - 304 Not Modified (0ms)
2054
+
2055
+
2056
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:50 -0300 2012
2057
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2058
+
2059
+
2060
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:45:52 -0300 2012
2061
+ Processing by Painel::AuthorsController#index as HTML
2062
+  (3.0ms) SELECT COUNT(*) FROM "authors" 
2063
+ Author Load (3.1ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2064
+ Rendered painel/authors/index.html.erb within layouts/painel (26.7ms)
2065
+ Completed 200 OK in 72ms (Views: 63.4ms | ActiveRecord: 6.1ms)
2066
+
2067
+
2068
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:45:52 -0300 2012
2069
+ Served asset /railstrap_painel.css - 304 Not Modified (24ms)
2070
+
2071
+
2072
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:53 -0300 2012
2073
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2074
+
2075
+
2076
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:53 -0300 2012
2077
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2078
+
2079
+
2080
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:53 -0300 2012
2081
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2082
+
2083
+
2084
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:53 -0300 2012
2085
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2086
+
2087
+
2088
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:53 -0300 2012
2089
+ Served asset /jquery.js - 304 Not Modified (0ms)
2090
+
2091
+
2092
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 21:45:54 -0300 2012
2093
+ Processing by Painel::AuthorsController#new as HTML
2094
+ Rendered painel/authors/_form.html.erb (13.6ms)
2095
+ Rendered painel/authors/new.html.erb within layouts/painel (32.6ms)
2096
+ Completed 200 OK in 81ms (Views: 77.7ms | ActiveRecord: 0.0ms)
2097
+
2098
+
2099
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:45:55 -0300 2012
2100
+ Served asset /railstrap_painel.css - 304 Not Modified (15ms)
2101
+
2102
+
2103
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:55 -0300 2012
2104
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2105
+
2106
+
2107
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:55 -0300 2012
2108
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2109
+
2110
+
2111
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:56 -0300 2012
2112
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2113
+
2114
+
2115
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:56 -0300 2012
2116
+ Served asset /jquery.js - 304 Not Modified (0ms)
2117
+
2118
+
2119
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:45:56 -0300 2012
2120
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2121
+
2122
+
2123
+ Started POST "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:46:04 -0300 2012
2124
+ Processing by Painel::AuthorsController#create as HTML
2125
+ Parameters: {"author"=>{"name"=>"Allan", "status"=>"1"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI="}
2126
+  (0.2ms) begin transaction
2127
+ SQL (91.5ms) INSERT INTO "authors" ("created_at", "name", "status", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jul 2012 00:46:04 UTC +00:00], ["name", "Allan"], ["status", true], ["updated_at", Wed, 04 Jul 2012 00:46:04 UTC +00:00]]
2128
+  (7.9ms) commit transaction
2129
+ Redirected to
2130
+ Completed 500 Internal Server Error in 125ms
2131
+
2132
+ NoMethodError (undefined method `author_url' for #<Painel::AuthorsController:0xb215808>):
2133
+ app/controllers/painel/authors_controller.rb:48:in `create'
2134
+ app/controllers/painel/authors_controller.rb:46:in `create'
2135
+
2136
+
2137
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
2138
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
2139
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (88.7ms)
2140
+
2141
+
2142
+ Started POST "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:51:47 -0300 2012
2143
+ Processing by Painel::AuthorsController#create as HTML
2144
+ Parameters: {"author"=>{"name"=>"Allan", "status"=>"1"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI="}
2145
+  (0.2ms) begin transaction
2146
+ SQL (11.8ms) INSERT INTO "authors" ("created_at", "name", "status", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jul 2012 00:51:48 UTC +00:00], ["name", "Allan"], ["status", true], ["updated_at", Wed, 04 Jul 2012 00:51:48 UTC +00:00]]
2147
+  (7.2ms) commit transaction
2148
+ Redirected to http://vmlnx:3000/painel/authors/2
2149
+ Completed 302 Found in 58ms (ActiveRecord: 25.1ms)
2150
+
2151
+
2152
+ Started GET "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:51:48 -0300 2012
2153
+ Processing by Painel::AuthorsController#show as HTML
2154
+ Parameters: {"id"=>"2"}
2155
+ Author Load (3.3ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2156
+ Rendered painel/authors/show.html.erb within layouts/painel (54.5ms)
2157
+ Completed 500 Internal Server Error in 88ms
2158
+
2159
+ ActionView::Template::Error (undefined method `author_path' for #<#<Class:0xb2ed7d0>:0xb2ebf20>):
2160
+ 7:
2161
+ 8: <% @readonly = true %>
2162
+ 9:
2163
+ 10: <%= simple_form_for @author,:html => { :class => 'form-vertical' } do |f| %>
2164
+ 11:
2165
+ 12: <%= render :partial=>'form', :locals=>{:f=>f} %>
2166
+ 13:
2167
+ app/views/painel/authors/show.html.erb:10:in `_app_views_painel_authors_show_html_erb___867505710_93804870'
2168
+ app/controllers/painel/authors_controller.rb:19:in `show'
2169
+
2170
+
2171
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
2172
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
2173
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
2174
+
2175
+
2176
+ Started GET "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:52:50 -0300 2012
2177
+ Processing by Painel::AuthorsController#show as HTML
2178
+ Parameters: {"id"=>"2"}
2179
+ Author Load (3.7ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2180
+ Rendered painel/authors/_form.html.erb (14.2ms)
2181
+ Rendered painel/authors/show.html.erb within layouts/painel (33.9ms)
2182
+ Completed 200 OK in 87ms (Views: 79.6ms | ActiveRecord: 3.7ms)
2183
+
2184
+
2185
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2186
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2187
+
2188
+
2189
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2190
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2191
+
2192
+
2193
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2194
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2195
+
2196
+
2197
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2198
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2199
+
2200
+
2201
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2202
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2203
+
2204
+
2205
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:52:51 -0300 2012
2206
+ Served asset /jquery.js - 304 Not Modified (0ms)
2207
+
2208
+
2209
+ Started GET "/painel/authors/2/edit" for 192.168.56.1 at Tue Jul 03 21:53:00 -0300 2012
2210
+ Processing by Painel::AuthorsController#edit as HTML
2211
+ Parameters: {"id"=>"2"}
2212
+ Author Load (2.4ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2213
+ Rendered painel/authors/_form.html.erb (12.2ms)
2214
+ Rendered painel/authors/edit.html.erb within layouts/painel (33.9ms)
2215
+ Completed 200 OK in 239ms (Views: 230.4ms | ActiveRecord: 2.4ms)
2216
+
2217
+
2218
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2219
+ Served asset /railstrap_painel.css - 304 Not Modified (25ms)
2220
+
2221
+
2222
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2223
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2224
+
2225
+
2226
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2227
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2228
+
2229
+
2230
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2231
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2232
+
2233
+
2234
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2235
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2236
+
2237
+
2238
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:53:01 -0300 2012
2239
+ Served asset /jquery.js - 304 Not Modified (0ms)
2240
+
2241
+
2242
+ Started PUT "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:53:08 -0300 2012
2243
+
2244
+ ActionController::RoutingError (No route matches [PUT] "/painel/authors"):
2245
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2246
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2247
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
2248
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
2249
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2250
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2251
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2252
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2253
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2254
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
2255
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2256
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
2257
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2258
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
2259
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2260
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
2261
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
2262
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
2263
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
2264
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
2265
+
2266
+
2267
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
2268
+
2269
+
2270
+ Started GET "/painel/authors/2/edit" for 192.168.56.1 at Tue Jul 03 21:53:59 -0300 2012
2271
+ Processing by Painel::AuthorsController#edit as HTML
2272
+ Parameters: {"id"=>"2"}
2273
+ Author Load (3.6ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2274
+ Rendered painel/authors/_form.html.erb (13.6ms)
2275
+ Rendered painel/authors/edit.html.erb within layouts/painel (33.2ms)
2276
+ Completed 200 OK in 123ms (Views: 115.7ms | ActiveRecord: 3.6ms)
2277
+
2278
+
2279
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:53:59 -0300 2012
2280
+ Served asset /railstrap_painel.css - 304 Not Modified (25ms)
2281
+
2282
+
2283
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:00 -0300 2012
2284
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2285
+
2286
+
2287
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:00 -0300 2012
2288
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2289
+
2290
+
2291
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:00 -0300 2012
2292
+ Served asset /jquery.js - 304 Not Modified (0ms)
2293
+
2294
+
2295
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:00 -0300 2012
2296
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2297
+
2298
+
2299
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:00 -0300 2012
2300
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2301
+
2302
+
2303
+ Started PUT "/painel/authors.2" for 192.168.56.1 at Tue Jul 03 21:54:05 -0300 2012
2304
+
2305
+ ActionController::RoutingError (No route matches [PUT] "/painel/authors.2"):
2306
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2307
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2308
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
2309
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
2310
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2311
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2312
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2313
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2314
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2315
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
2316
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2317
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
2318
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2319
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
2320
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2321
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
2322
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
2323
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
2324
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162:in `start'
2325
+ /home/allan/.rvm/rubies/ree-1.8.7-2012.02/lib/ruby/1.8/webrick/server.rb:162
2326
+
2327
+
2328
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2329
+
2330
+
2331
+ Started GET "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:54:50 -0300 2012
2332
+ Processing by Painel::AuthorsController#show as HTML
2333
+ Parameters: {"id"=>"2"}
2334
+ Author Load (3.2ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2335
+ Rendered painel/authors/_form.html.erb (13.3ms)
2336
+ Rendered painel/authors/show.html.erb within layouts/painel (31.1ms)
2337
+ Completed 200 OK in 74ms (Views: 66.9ms | ActiveRecord: 3.2ms)
2338
+
2339
+
2340
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2341
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2342
+
2343
+
2344
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2345
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2346
+
2347
+
2348
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2349
+ Served asset /jquery.js - 304 Not Modified (1ms)
2350
+
2351
+
2352
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2353
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2354
+
2355
+
2356
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2357
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2358
+
2359
+
2360
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:51 -0300 2012
2361
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2362
+
2363
+
2364
+ Started GET "/painel/authors/2/edit" for 192.168.56.1 at Tue Jul 03 21:54:53 -0300 2012
2365
+ Processing by Painel::AuthorsController#edit as HTML
2366
+ Parameters: {"id"=>"2"}
2367
+ Author Load (2.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2368
+ Rendered painel/authors/_form.html.erb (14.5ms)
2369
+ Rendered painel/authors/edit.html.erb within layouts/painel (32.2ms)
2370
+ Completed 200 OK in 75ms (Views: 69.9ms | ActiveRecord: 2.1ms)
2371
+
2372
+
2373
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2374
+ Served asset /railstrap_painel.css - 304 Not Modified (15ms)
2375
+
2376
+
2377
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2378
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2379
+
2380
+
2381
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2382
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2383
+
2384
+
2385
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2386
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2387
+
2388
+
2389
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2390
+ Served asset /jquery.js - 304 Not Modified (0ms)
2391
+
2392
+
2393
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:54:54 -0300 2012
2394
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2395
+
2396
+
2397
+ Started GET "/painel/authors/2/edit" for 192.168.56.1 at Tue Jul 03 21:55:42 -0300 2012
2398
+ Processing by Painel::AuthorsController#edit as HTML
2399
+ Parameters: {"id"=>"2"}
2400
+ Author Load (4.3ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2401
+ Rendered painel/authors/_form.html.erb (19.2ms)
2402
+ Rendered painel/authors/edit.html.erb within layouts/painel (36.9ms)
2403
+ Completed 200 OK in 82ms (Views: 74.2ms | ActiveRecord: 4.3ms)
2404
+
2405
+
2406
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:55:42 -0300 2012
2407
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2408
+
2409
+
2410
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:55:42 -0300 2012
2411
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2412
+
2413
+
2414
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:55:42 -0300 2012
2415
+ Served asset /jquery.js - 304 Not Modified (0ms)
2416
+
2417
+
2418
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:55:43 -0300 2012
2419
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2420
+
2421
+
2422
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:55:43 -0300 2012
2423
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2424
+
2425
+
2426
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:55:43 -0300 2012
2427
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2428
+
2429
+
2430
+ Started PUT "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:55:47 -0300 2012
2431
+ Processing by Painel::AuthorsController#update as HTML
2432
+ Parameters: {"author"=>{"name"=>"Andressa", "status"=>"0"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"2"}
2433
+ Author Load (2.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2434
+  (0.2ms) begin transaction
2435
+  (134.7ms) UPDATE "authors" SET "updated_at" = '2012-07-04 00:55:47.913959', "status" = 'f', "name" = 'Andressa' WHERE "authors"."id" = 2
2436
+  (7.0ms) commit transaction
2437
+ Redirected to
2438
+ Completed 500 Internal Server Error in 177ms
2439
+
2440
+ NoMethodError (undefined method `author_url' for #<Painel::AuthorsController:0xb3d312c>):
2441
+ app/controllers/painel/authors_controller.rb:64:in `update'
2442
+ app/controllers/painel/authors_controller.rb:62:in `update'
2443
+
2444
+
2445
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2446
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
2447
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.1ms)
2448
+
2449
+
2450
+ Started PUT "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:57:04 -0300 2012
2451
+ Processing by Painel::AuthorsController#update as HTML
2452
+ Parameters: {"author"=>{"name"=>"Andressa", "status"=>"0"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"2"}
2453
+ Author Load (3.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2454
+  (0.2ms) begin transaction
2455
+  (0.2ms) commit transaction
2456
+ Redirected to http://vmlnx:3000/painel/authors/2
2457
+ Completed 302 Found in 36ms (ActiveRecord: 8.7ms)
2458
+
2459
+
2460
+ Started GET "/painel/authors/2" for 192.168.56.1 at Tue Jul 03 21:57:04 -0300 2012
2461
+ Processing by Painel::AuthorsController#show as HTML
2462
+ Parameters: {"id"=>"2"}
2463
+ Author Load (1.5ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2464
+ Rendered painel/authors/_form.html.erb (14.0ms)
2465
+ Rendered painel/authors/show.html.erb within layouts/painel (34.9ms)
2466
+ Completed 200 OK in 85ms (Views: 79.5ms | ActiveRecord: 1.5ms)
2467
+
2468
+
2469
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2470
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2471
+
2472
+
2473
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2474
+ Served asset /jquery.js - 304 Not Modified (0ms)
2475
+
2476
+
2477
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2478
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2479
+
2480
+
2481
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2482
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2483
+
2484
+
2485
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2486
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2487
+
2488
+
2489
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:05 -0300 2012
2490
+ Served asset /railstrap_painel.js - 304 Not Modified (4ms)
2491
+
2492
+
2493
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 21:57:08 -0300 2012
2494
+ Processing by Painel::AuthorsController#index as HTML
2495
+  (3.3ms) SELECT COUNT(*) FROM "authors"
2496
+ Author Load (2.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2497
+ Rendered painel/authors/index.html.erb within layouts/painel (127.7ms)
2498
+ Completed 200 OK in 351ms (Views: 342.3ms | ActiveRecord: 6.0ms)
2499
+
2500
+
2501
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 21:57:08 -0300 2012
2502
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2503
+
2504
+
2505
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:08 -0300 2012
2506
+ Served asset /jquery.js - 304 Not Modified (0ms)
2507
+
2508
+
2509
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:08 -0300 2012
2510
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2511
+
2512
+
2513
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:08 -0300 2012
2514
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2515
+
2516
+
2517
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:09 -0300 2012
2518
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 21:57:09 -0300 2012
2522
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2523
+
2524
+
2525
+ Started GET "/painel/authors/2/edit" for 192.168.56.1 at Tue Jul 03 22:03:00 -0300 2012
2526
+ Processing by Painel::AuthorsController#edit as HTML
2527
+ Parameters: {"id"=>"2"}
2528
+ Author Load (4.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "2"]]
2529
+ Rendered painel/authors/_form.html.erb (16.2ms)
2530
+ Rendered painel/authors/edit.html.erb within layouts/painel (34.7ms)
2531
+ Completed 200 OK in 80ms (Views: 71.3ms | ActiveRecord: 4.0ms)
2532
+
2533
+
2534
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:03:00 -0300 2012
2535
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2536
+
2537
+
2538
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:01 -0300 2012
2539
+ Served asset /jquery.js - 304 Not Modified (0ms)
2540
+
2541
+
2542
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:01 -0300 2012
2543
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2544
+
2545
+
2546
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:01 -0300 2012
2547
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2548
+
2549
+
2550
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:01 -0300 2012
2551
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2552
+
2553
+
2554
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:01 -0300 2012
2555
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2556
+
2557
+
2558
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:03:03 -0300 2012
2559
+ Processing by Painel::AuthorsController#index as HTML
2560
+  (2.6ms) SELECT COUNT(*) FROM "authors" 
2561
+ Author Load (2.2ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2562
+ Rendered painel/authors/index.html.erb within layouts/painel (48.5ms)
2563
+ Completed 200 OK in 94ms (Views: 87.7ms | ActiveRecord: 4.8ms)
2564
+
2565
+
2566
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:03:03 -0300 2012
2567
+ Served asset /railstrap_painel.css - 304 Not Modified (10ms)
2568
+
2569
+
2570
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:04 -0300 2012
2571
+ Served asset /jquery.js - 304 Not Modified (0ms)
2572
+
2573
+
2574
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:04 -0300 2012
2575
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2576
+
2577
+
2578
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:04 -0300 2012
2579
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2580
+
2581
+
2582
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:04 -0300 2012
2583
+ Served asset /railstrap_painel.js - 304 Not Modified (5ms)
2584
+
2585
+
2586
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:04 -0300 2012
2587
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2588
+
2589
+
2590
+ Started GET "/painel/authors/1/edit" for 192.168.56.1 at Tue Jul 03 22:03:06 -0300 2012
2591
+ Processing by Painel::AuthorsController#edit as HTML
2592
+ Parameters: {"id"=>"1"}
2593
+ Author Load (2.3ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "1"]]
2594
+ Rendered painel/authors/_form.html.erb (15.6ms)
2595
+ Rendered painel/authors/edit.html.erb within layouts/painel (33.8ms)
2596
+ Completed 200 OK in 76ms (Views: 70.0ms | ActiveRecord: 2.3ms)
2597
+
2598
+
2599
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:03:06 -0300 2012
2600
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2601
+
2602
+
2603
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:06 -0300 2012
2604
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2605
+
2606
+
2607
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:06 -0300 2012
2608
+ Served asset /jquery.js - 304 Not Modified (0ms)
2609
+
2610
+
2611
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:07 -0300 2012
2612
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2613
+
2614
+
2615
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:07 -0300 2012
2616
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2617
+
2618
+
2619
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:07 -0300 2012
2620
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2621
+
2622
+
2623
+ Started DELETE "/painel/authors/1" for 192.168.56.1 at Tue Jul 03 22:03:09 -0300 2012
2624
+ Processing by Painel::AuthorsController#destroy as HTML
2625
+ Parameters: {"authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"1"}
2626
+ Author Load (2.3ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "1"]]
2627
+  (0.2ms) begin transaction
2628
+ SQL (6.9ms) DELETE FROM "authors" WHERE "authors"."id" = ? [["id", 1]]
2629
+  (8.3ms) commit transaction
2630
+ Completed 500 Internal Server Error in 32ms
2631
+
2632
+ NameError (undefined local variable or method `painel_authors_index_url' for #<Painel::AuthorsController:0xb1c5ba0>):
2633
+ app/controllers/painel/authors_controller.rb:80:in `destroy'
2634
+ app/controllers/painel/authors_controller.rb:79:in `destroy'
2635
+
2636
+
2637
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
2638
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms)
2639
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (197.5ms)
2640
+
2641
+
2642
+ Started DELETE "/painel/authors/1" for 192.168.56.1 at Tue Jul 03 22:03:52 -0300 2012
2643
+ Processing by Painel::AuthorsController#destroy as HTML
2644
+ Parameters: {"authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"1"}
2645
+ Author Load (2.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "1"]]
2646
+ Completed 500 Internal Server Error in 13ms
2647
+
2648
+ ActiveRecord::RecordNotFound (Couldn't find Author with id=1):
2649
+ app/controllers/painel/authors_controller.rb:76:in `destroy'
2650
+
2651
+
2652
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
2653
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.4ms)
2654
+ Rendered /home/allan/.rvm/gems/ree-1.8.7-2012.02/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.4ms)
2655
+
2656
+
2657
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:03:58 -0300 2012
2658
+ Processing by Painel::AuthorsController#index as HTML
2659
+  (2.7ms) SELECT COUNT(*) FROM "authors" 
2660
+ Author Load (3.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2661
+ Rendered painel/authors/index.html.erb within layouts/painel (58.3ms)
2662
+ Completed 200 OK in 102ms (Views: 94.0ms | ActiveRecord: 6.0ms)
2663
+
2664
+
2665
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:03:58 -0300 2012
2666
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
2667
+
2668
+
2669
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:58 -0300 2012
2670
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2671
+
2672
+
2673
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:59 -0300 2012
2674
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2675
+
2676
+
2677
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:59 -0300 2012
2678
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2679
+
2680
+
2681
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:59 -0300 2012
2682
+ Served asset /jquery.js - 304 Not Modified (0ms)
2683
+
2684
+
2685
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:03:59 -0300 2012
2686
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2687
+
2688
+
2689
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 22:04:00 -0300 2012
2690
+ Processing by Painel::AuthorsController#new as HTML
2691
+ Rendered painel/authors/_form.html.erb (13.5ms)
2692
+ Rendered painel/authors/new.html.erb within layouts/painel (30.6ms)
2693
+ Completed 200 OK in 77ms (Views: 74.8ms | ActiveRecord: 0.0ms)
2694
+
2695
+
2696
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2697
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2698
+
2699
+
2700
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2701
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2702
+
2703
+
2704
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2705
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2706
+
2707
+
2708
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2709
+ Served asset /jquery.js - 304 Not Modified (0ms)
2710
+
2711
+
2712
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2713
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2714
+
2715
+
2716
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:01 -0300 2012
2717
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2718
+
2719
+
2720
+ Started POST "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:04:07 -0300 2012
2721
+ Processing by Painel::AuthorsController#create as HTML
2722
+ Parameters: {"author"=>{"name"=>"Allan", "status"=>"1"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI="}
2723
+  (0.2ms) begin transaction
2724
+ SQL (24.3ms) INSERT INTO "authors" ("created_at", "name", "status", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jul 2012 01:04:07 UTC +00:00], ["name", "Allan"], ["status", true], ["updated_at", Wed, 04 Jul 2012 01:04:07 UTC +00:00]]
2725
+  (9.3ms) commit transaction
2726
+ Redirected to http://vmlnx:3000/painel/authors/3
2727
+ Completed 302 Found in 47ms (ActiveRecord: 33.7ms)
2728
+
2729
+
2730
+ Started GET "/painel/authors/3" for 192.168.56.1 at Tue Jul 03 22:04:07 -0300 2012
2731
+ Processing by Painel::AuthorsController#show as HTML
2732
+ Parameters: {"id"=>"3"}
2733
+ Author Load (2.5ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "3"]]
2734
+ Rendered painel/authors/_form.html.erb (14.4ms)
2735
+ Rendered painel/authors/show.html.erb within layouts/painel (31.2ms)
2736
+ Completed 200 OK in 248ms (Views: 241.5ms | ActiveRecord: 2.5ms)
2737
+
2738
+
2739
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2740
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2741
+
2742
+
2743
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2744
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2745
+
2746
+
2747
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2748
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2749
+
2750
+
2751
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2752
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2753
+
2754
+
2755
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2756
+ Served asset /jquery.js - 304 Not Modified (0ms)
2757
+
2758
+
2759
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:08 -0300 2012
2760
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2761
+
2762
+
2763
+ Started DELETE "/painel/authors/3" for 192.168.56.1 at Tue Jul 03 22:04:12 -0300 2012
2764
+ Processing by Painel::AuthorsController#destroy as HTML
2765
+ Parameters: {"authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"3"}
2766
+ Author Load (3.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "3"]]
2767
+  (0.2ms) begin transaction
2768
+ SQL (6.3ms) DELETE FROM "authors" WHERE "authors"."id" = ? [["id", 3]]
2769
+  (6.6ms) commit transaction
2770
+ Redirected to http://vmlnx:3000/painel/authors
2771
+ Completed 302 Found in 32ms (ActiveRecord: 16.0ms)
2772
+
2773
+
2774
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:04:12 -0300 2012
2775
+ Processing by Painel::AuthorsController#index as HTML
2776
+  (2.9ms) SELECT COUNT(*) FROM "authors" 
2777
+ Author Load (2.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2778
+ Rendered painel/authors/index.html.erb within layouts/painel (37.3ms)
2779
+ Completed 200 OK in 91ms (Views: 83.9ms | ActiveRecord: 5.2ms)
2780
+
2781
+
2782
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2783
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2784
+
2785
+
2786
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2787
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2788
+
2789
+
2790
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2791
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2792
+
2793
+
2794
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2795
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2796
+
2797
+
2798
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2799
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2800
+
2801
+
2802
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:04:13 -0300 2012
2803
+ Served asset /jquery.js - 304 Not Modified (0ms)
2804
+
2805
+
2806
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 22:05:47 -0300 2012
2807
+ Processing by Painel::AuthorsController#new as HTML
2808
+ Rendered painel/authors/_form.html.erb (13.2ms)
2809
+ Rendered painel/authors/new.html.erb within layouts/painel (30.4ms)
2810
+ Completed 200 OK in 68ms (Views: 66.4ms | ActiveRecord: 0.0ms)
2811
+
2812
+
2813
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:05:47 -0300 2012
2814
+ Served asset /railstrap_painel.css - 304 Not Modified (9ms)
2815
+
2816
+
2817
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:47 -0300 2012
2818
+ Served asset /jquery.js - 304 Not Modified (0ms)
2819
+
2820
+
2821
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:48 -0300 2012
2822
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2823
+
2824
+
2825
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:48 -0300 2012
2826
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2827
+
2828
+
2829
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:48 -0300 2012
2830
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2831
+
2832
+
2833
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:48 -0300 2012
2834
+ Served asset /railstrap_painel.js - 304 Not Modified (3ms)
2835
+
2836
+
2837
+ Started POST "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:05:51 -0300 2012
2838
+ Processing by Painel::AuthorsController#create as HTML
2839
+ Parameters: {"author"=>{"name"=>"Allan", "status"=>"1"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI="}
2840
+  (0.2ms) begin transaction
2841
+ SQL (10.7ms) INSERT INTO "authors" ("created_at", "name", "status", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jul 2012 01:05:51 UTC +00:00], ["name", "Allan"], ["status", true], ["updated_at", Wed, 04 Jul 2012 01:05:51 UTC +00:00]]
2842
+  (9.3ms) commit transaction
2843
+ Redirected to http://vmlnx:3000/painel/authors/4
2844
+ Completed 302 Found in 32ms (ActiveRecord: 20.1ms)
2845
+
2846
+
2847
+ Started GET "/painel/authors/4" for 192.168.56.1 at Tue Jul 03 22:05:51 -0300 2012
2848
+ Processing by Painel::AuthorsController#show as HTML
2849
+ Parameters: {"id"=>"4"}
2850
+ Author Load (2.7ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "4"]]
2851
+ Rendered painel/authors/_form.html.erb (14.4ms)
2852
+ Rendered painel/authors/show.html.erb within layouts/painel (34.9ms)
2853
+ Completed 200 OK in 89ms (Views: 82.5ms | ActiveRecord: 2.7ms)
2854
+
2855
+
2856
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2857
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
2858
+
2859
+
2860
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2861
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2862
+
2863
+
2864
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2865
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2866
+
2867
+
2868
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2869
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2870
+
2871
+
2872
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2873
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2874
+
2875
+
2876
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:52 -0300 2012
2877
+ Served asset /jquery.js - 304 Not Modified (0ms)
2878
+
2879
+
2880
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:05:54 -0300 2012
2881
+ Processing by Painel::AuthorsController#index as HTML
2882
+  (3.0ms) SELECT COUNT(*) FROM "authors" 
2883
+ Author Load (3.3ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
2884
+ Rendered painel/authors/index.html.erb within layouts/painel (246.7ms)
2885
+ Completed 200 OK in 295ms (Views: 286.9ms | ActiveRecord: 6.3ms)
2886
+
2887
+
2888
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2889
+ Served asset /railstrap_painel.css - 304 Not Modified (7ms)
2890
+
2891
+
2892
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2893
+ Served asset /jquery.js - 304 Not Modified (0ms)
2894
+
2895
+
2896
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2897
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
2898
+
2899
+
2900
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2901
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2902
+
2903
+
2904
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2905
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2906
+
2907
+
2908
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:55 -0300 2012
2909
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2910
+
2911
+
2912
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 22:05:56 -0300 2012
2913
+ Processing by Painel::AuthorsController#new as HTML
2914
+ Rendered painel/authors/_form.html.erb (12.8ms)
2915
+ Rendered painel/authors/new.html.erb within layouts/painel (28.1ms)
2916
+ Completed 200 OK in 68ms (Views: 65.8ms | ActiveRecord: 0.0ms)
2917
+
2918
+
2919
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2920
+ Served asset /railstrap_painel.css - 304 Not Modified (11ms)
2921
+
2922
+
2923
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2924
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2925
+
2926
+
2927
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2928
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2929
+
2930
+
2931
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2932
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2933
+
2934
+
2935
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2936
+ Served asset /jquery.js - 304 Not Modified (0ms)
2937
+
2938
+
2939
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:05:57 -0300 2012
2940
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2941
+
2942
+
2943
+ Started POST "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:06:12 -0300 2012
2944
+ Processing by Painel::AuthorsController#create as HTML
2945
+ Parameters: {"author"=>{"name"=>"Moises", "status"=>"0"}, "utf8"=>"✓", "authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI="}
2946
+  (0.2ms) begin transaction
2947
+ SQL (10.1ms) INSERT INTO "authors" ("created_at", "name", "status", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jul 2012 01:06:12 UTC +00:00], ["name", "Moises"], ["status", false], ["updated_at", Wed, 04 Jul 2012 01:06:12 UTC +00:00]]
2948
+  (8.0ms) commit transaction
2949
+ Redirected to http://vmlnx:3000/painel/authors/5
2950
+ Completed 302 Found in 29ms (ActiveRecord: 18.3ms)
2951
+
2952
+
2953
+ Started GET "/painel/authors/5" for 192.168.56.1 at Tue Jul 03 22:06:12 -0300 2012
2954
+ Processing by Painel::AuthorsController#show as HTML
2955
+ Parameters: {"id"=>"5"}
2956
+ Author Load (3.8ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "5"]]
2957
+ Rendered painel/authors/_form.html.erb (13.9ms)
2958
+ Rendered painel/authors/show.html.erb within layouts/painel (36.2ms)
2959
+ Completed 200 OK in 81ms (Views: 72.7ms | ActiveRecord: 3.8ms)
2960
+
2961
+
2962
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2963
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
2964
+
2965
+
2966
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2967
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
2968
+
2969
+
2970
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2971
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2972
+
2973
+
2974
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2975
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
2976
+
2977
+
2978
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2979
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
2980
+
2981
+
2982
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:13 -0300 2012
2983
+ Served asset /jquery.js - 304 Not Modified (0ms)
2984
+
2985
+
2986
+ Started DELETE "/painel/authors/5" for 192.168.56.1 at Tue Jul 03 22:06:18 -0300 2012
2987
+ Processing by Painel::AuthorsController#destroy as HTML
2988
+ Parameters: {"authenticity_token"=>"5yPbMOIt60aYD9ew5Nvg3UQMut81bUjmwN89CHH2WOI=", "id"=>"5"}
2989
+ Author Load (2.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", "5"]]
2990
+  (0.6ms) begin transaction
2991
+ SQL (5.1ms) DELETE FROM "authors" WHERE "authors"."id" = ? [["id", 5]]
2992
+  (6.5ms) commit transaction
2993
+ Redirected to http://vmlnx:3000/painel/authors
2994
+ Completed 302 Found in 24ms (ActiveRecord: 14.2ms)
2995
+
2996
+
2997
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:06:18 -0300 2012
2998
+ Processing by Painel::AuthorsController#index as HTML
2999
+  (4.5ms) SELECT COUNT(*) FROM "authors" 
3000
+ Author Load (3.6ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
3001
+ Rendered painel/authors/index.html.erb within layouts/painel (50.6ms)
3002
+ Completed 200 OK in 94ms (Views: 84.0ms | ActiveRecord: 8.1ms)
3003
+
3004
+
3005
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3006
+ Served asset /railstrap_painel.css - 304 Not Modified (12ms)
3007
+
3008
+
3009
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3010
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
3011
+
3012
+
3013
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3014
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3015
+
3016
+
3017
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3018
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3019
+
3020
+
3021
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3022
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3023
+
3024
+
3025
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:19 -0300 2012
3026
+ Served asset /jquery.js - 304 Not Modified (0ms)
3027
+
3028
+
3029
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:06:21 -0300 2012
3030
+ Processing by Painel::AuthorsController#index as HTML
3031
+  (8.0ms) SELECT COUNT(*) FROM "authors" 
3032
+ Author Load (2.8ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
3033
+ Rendered painel/authors/index.html.erb within layouts/painel (235.1ms)
3034
+ Completed 200 OK in 292ms (Views: 278.9ms | ActiveRecord: 10.8ms)
3035
+
3036
+
3037
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3038
+ Served asset /railstrap_painel.css - 304 Not Modified (8ms)
3039
+
3040
+
3041
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3042
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
3043
+
3044
+
3045
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3046
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3047
+
3048
+
3049
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3050
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3051
+
3052
+
3053
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3054
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3055
+
3056
+
3057
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:22 -0300 2012
3058
+ Served asset /jquery.js - 304 Not Modified (0ms)
3059
+
3060
+
3061
+ Started GET "/painel/authors?utf8=%E2%9C%93&search=an" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3062
+ Processing by Painel::AuthorsController#index as HTML
3063
+ Parameters: {"utf8"=>"✓", "search"=>"an"}
3064
+  (2.7ms) SELECT COUNT(*) FROM "authors" WHERE ((UPPER(id) LIKE UPPER('%an%')))
3065
+ Author Load (8.2ms) SELECT "authors".* FROM "authors" WHERE ((UPPER(id) LIKE UPPER('%an%'))) LIMIT 25 OFFSET 0
3066
+ Rendered painel/authors/index.html.erb within layouts/painel (34.5ms)
3067
+ Completed 200 OK in 73ms (Views: 60.0ms | ActiveRecord: 10.9ms)
3068
+
3069
+
3070
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3071
+ Served asset /railstrap_painel.css - 304 Not Modified (7ms)
3072
+
3073
+
3074
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3075
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
3076
+
3077
+
3078
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3079
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3080
+
3081
+
3082
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3083
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3084
+
3085
+
3086
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3087
+ Served asset /jquery.js - 304 Not Modified (0ms)
3088
+
3089
+
3090
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:28 -0300 2012
3091
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3092
+
3093
+
3094
+ Started GET "/painel/authors?utf8=%E2%9C%93&search=allan" for 192.168.56.1 at Tue Jul 03 22:06:34 -0300 2012
3095
+ Processing by Painel::AuthorsController#index as HTML
3096
+ Parameters: {"utf8"=>"✓", "search"=>"allan"}
3097
+  (3.4ms) SELECT COUNT(*) FROM "authors" WHERE ((UPPER(id) LIKE UPPER('%allan%')))
3098
+ Author Load (2.0ms) SELECT "authors".* FROM "authors" WHERE ((UPPER(id) LIKE UPPER('%allan%'))) LIMIT 25 OFFSET 0
3099
+ Rendered painel/authors/index.html.erb within layouts/painel (28.3ms)
3100
+ Completed 200 OK in 68ms (Views: 59.5ms | ActiveRecord: 5.4ms)
3101
+
3102
+
3103
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3104
+ Served asset /railstrap_painel.css - 304 Not Modified (7ms)
3105
+
3106
+
3107
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3108
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
3109
+
3110
+
3111
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3112
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3113
+
3114
+
3115
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3116
+ Served asset /jquery.js - 304 Not Modified (0ms)
3117
+
3118
+
3119
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3120
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (1ms)
3121
+
3122
+
3123
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:06:35 -0300 2012
3124
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3125
+
3126
+
3127
+ Started GET "/painel/authors/new" for 192.168.56.1 at Tue Jul 03 22:21:57 -0300 2012
3128
+ Processing by Painel::AuthorsController#new as HTML
3129
+ Rendered painel/authors/_form.html.erb (30.2ms)
3130
+ Rendered painel/authors/new.html.erb within layouts/painel (56.7ms)
3131
+ Completed 200 OK in 115ms (Views: 113.9ms | ActiveRecord: 0.0ms)
3132
+
3133
+
3134
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3135
+ Served asset /railstrap_painel.css - 304 Not Modified (16ms)
3136
+
3137
+
3138
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3139
+ Served asset /jquery.js - 304 Not Modified (0ms)
3140
+
3141
+
3142
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3143
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
3144
+
3145
+
3146
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3147
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3148
+
3149
+
3150
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3151
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3152
+
3153
+
3154
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:21:58 -0300 2012
3155
+ Served asset /railstrap_painel.js - 304 Not Modified (2ms)
3156
+
3157
+
3158
+ Started GET "/painel/authors" for 192.168.56.1 at Tue Jul 03 22:22:09 -0300 2012
3159
+ Processing by Painel::AuthorsController#index as HTML
3160
+  (3.0ms) SELECT COUNT(*) FROM "authors" 
3161
+ Author Load (3.2ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
3162
+ Rendered painel/authors/index.html.erb within layouts/painel (251.5ms)
3163
+ Completed 200 OK in 303ms (Views: 294.5ms | ActiveRecord: 6.2ms)
3164
+
3165
+
3166
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Tue Jul 03 22:22:10 -0300 2012
3167
+ Served asset /railstrap_painel.css - 304 Not Modified (10ms)
3168
+
3169
+
3170
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Tue Jul 03 22:22:10 -0300 2012
3171
+ Served asset /jquery.js - 304 Not Modified (0ms)
3172
+
3173
+
3174
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Tue Jul 03 22:22:10 -0300 2012
3175
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (0ms)
3176
+
3177
+
3178
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Tue Jul 03 22:22:10 -0300 2012
3179
+ Served asset /railstrap_painel.js - 304 Not Modified (1ms)
3180
+
3181
+
3182
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Tue Jul 03 22:22:10 -0300 2012
3183
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3184
+
3185
+
3186
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Tue Jul 03 22:22:11 -0300 2012
3187
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (0ms)
3188
+
3189
+
3190
+ Started GET "/painel/authors" for 192.168.56.1 at Wed Jul 04 22:43:02 -0300 2012
3191
+ Processing by Painel::AuthorsController#index as HTML
3192
+  (2.0ms) SELECT COUNT(*) FROM "authors" 
3193
+ Author Load (2.4ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
3194
+ Rendered painel/authors/index.html.erb within layouts/painel (173.0ms)
3195
+ Completed 200 OK in 787ms (Views: 674.1ms | ActiveRecord: 75.6ms)
3196
+
3197
+
3198
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Wed Jul 04 22:43:07 -0300 2012
3199
+ Served asset /railstrap_painel.css - 200 OK (69ms)
3200
+
3201
+
3202
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Wed Jul 04 22:43:07 -0300 2012
3203
+ Served asset /jquery.js - 200 OK (143ms)
3204
+
3205
+
3206
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Wed Jul 04 22:43:07 -0300 2012
3207
+ Served asset /jquery_ujs.js - 200 OK (33ms)
3208
+
3209
+
3210
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Wed Jul 04 22:43:07 -0300 2012
3211
+ Served asset /bootstrap-tooltip.js - 200 OK (24ms)
3212
+
3213
+
3214
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Wed Jul 04 22:43:07 -0300 2012
3215
+ Served asset /bootstrap-dropdown.js - 200 OK (15ms)
3216
+
3217
+
3218
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Wed Jul 04 22:43:08 -0300 2012
3219
+ Served asset /railstrap_painel.js - 200 OK (67ms)
3220
+
3221
+
3222
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Wed Jul 04 22:43:09 -0300 2012
3223
+ Served asset /glyphicons-halflings.png - 200 OK (15ms)
3224
+
3225
+
3226
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Wed Jul 04 22:43:09 -0300 2012
3227
+ Served asset /glyphicons-halflings-white.png - 200 OK (15ms)
3228
+
3229
+
3230
+ Started GET "/painel/authors/new" for 192.168.56.1 at Wed Jul 04 23:49:30 -0300 2012
3231
+ Processing by Painel::AuthorsController#new as HTML
3232
+ Rendered painel/authors/_form.html.erb (138.6ms)
3233
+ Rendered painel/authors/new.html.erb within layouts/painel (303.1ms)
3234
+ Completed 200 OK in 420ms (Views: 417.3ms | ActiveRecord: 0.0ms)
3235
+
3236
+
3237
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Wed Jul 04 23:57:28 -0300 2012
3238
+ Served asset /railstrap_painel.css - 304 Not Modified (10ms)
3239
+
3240
+
3241
+ Started GET "/painel/authors" for 192.168.56.1 at Fri Jul 06 09:01:02 -0300 2012
3242
+ Processing by Painel::AuthorsController#index as HTML
3243
+  (5.0ms) SELECT COUNT(*) FROM "authors" 
3244
+ Author Load (3.0ms) SELECT "authors".* FROM "authors" LIMIT 25 OFFSET 0
3245
+ Rendered painel/authors/index.html.erb within layouts/painel (237.0ms)
3246
+ Completed 200 OK in 817ms (Views: 730.3ms | ActiveRecord: 44.2ms)
3247
+
3248
+
3249
+ Started GET "/assets/railstrap_painel.css?body=1" for 192.168.56.1 at Fri Jul 06 09:01:04 -0300 2012
3250
+ Served asset /railstrap_painel.css - 304 Not Modified (75ms)
3251
+
3252
+
3253
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.56.1 at Fri Jul 06 09:01:04 -0300 2012
3254
+ Served asset /jquery_ujs.js - 304 Not Modified (25ms)
3255
+
3256
+
3257
+ Started GET "/assets/jquery.js?body=1" for 192.168.56.1 at Fri Jul 06 09:01:04 -0300 2012
3258
+ Served asset /jquery.js - 304 Not Modified (41ms)
3259
+
3260
+
3261
+ Started GET "/assets/bootstrap-tooltip.js?body=1" for 192.168.56.1 at Fri Jul 06 09:01:04 -0300 2012
3262
+ Served asset /bootstrap-tooltip.js - 304 Not Modified (24ms)
3263
+
3264
+
3265
+ Started GET "/assets/bootstrap-dropdown.js?body=1" for 192.168.56.1 at Fri Jul 06 09:01:05 -0300 2012
3266
+ Served asset /bootstrap-dropdown.js - 304 Not Modified (23ms)
3267
+
3268
+
3269
+ Started GET "/assets/railstrap_painel.js?body=1" for 192.168.56.1 at Fri Jul 06 09:01:05 -0300 2012
3270
+ Served asset /railstrap_painel.js - 304 Not Modified (78ms)
3271
+
3272
+
3273
+ Started GET "/assets/glyphicons-halflings.png" for 192.168.56.1 at Fri Jul 06 09:01:05 -0300 2012
3274
+ Served asset /glyphicons-halflings.png - 304 Not Modified (30ms)
3275
+
3276
+
3277
+ Started GET "/assets/glyphicons-halflings-white.png" for 192.168.56.1 at Fri Jul 06 09:01:05 -0300 2012
3278
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (17ms)