slug-engine 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +35 -0
  3. data/Rakefile +39 -0
  4. data/app/controllers/permalinks_controller.rb +45 -0
  5. data/app/helpers/permalinks_helper.rb +2 -0
  6. data/app/models/permalink.rb +28 -0
  7. data/config/routes.rb +5 -0
  8. data/db/migrate/20111108194929_create_permalinks.rb +11 -0
  9. data/lib/slug-engine.rb +1 -0
  10. data/lib/slug.rb +80 -0
  11. data/lib/slug/engine.rb +8 -0
  12. data/lib/slug/filter.rb +31 -0
  13. data/lib/slug/version.rb +3 -0
  14. data/lib/tasks/slug_tasks.rake +4 -0
  15. data/test/dummy/Rakefile +7 -0
  16. data/test/dummy/app/assets/javascripts/application.js +9 -0
  17. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  18. data/test/dummy/app/assets/javascripts/users.js +2 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  20. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  21. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  22. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  23. data/test/dummy/app/controllers/application_controller.rb +3 -0
  24. data/test/dummy/app/controllers/posts_controller.rb +83 -0
  25. data/test/dummy/app/controllers/users_controller.rb +83 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  28. data/test/dummy/app/helpers/users_helper.rb +2 -0
  29. data/test/dummy/app/models/post.rb +10 -0
  30. data/test/dummy/app/models/user.rb +2 -0
  31. data/test/dummy/app/views/layouts/_application.html.erb +14 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/app/views/posts/_form.html.erb +29 -0
  34. data/test/dummy/app/views/posts/_post.html.erb +22 -0
  35. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  36. data/test/dummy/app/views/posts/index.html.erb +27 -0
  37. data/test/dummy/app/views/posts/new.html.erb +5 -0
  38. data/test/dummy/app/views/posts/show.html.erb +1 -0
  39. data/test/dummy/app/views/users/_form.html.erb +25 -0
  40. data/test/dummy/app/views/users/edit.html.erb +6 -0
  41. data/test/dummy/app/views/users/index.html.erb +25 -0
  42. data/test/dummy/app/views/users/new.html.erb +5 -0
  43. data/test/dummy/app/views/users/show.html.erb +15 -0
  44. data/test/dummy/config.ru +4 -0
  45. data/test/dummy/config/application.rb +45 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/database.yml +25 -0
  48. data/test/dummy/config/environment.rb +5 -0
  49. data/test/dummy/config/environments/development.rb +30 -0
  50. data/test/dummy/config/environments/production.rb +60 -0
  51. data/test/dummy/config/environments/test.rb +39 -0
  52. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/test/dummy/config/initializers/inflections.rb +10 -0
  54. data/test/dummy/config/initializers/mime_types.rb +5 -0
  55. data/test/dummy/config/initializers/secret_token.rb +7 -0
  56. data/test/dummy/config/initializers/session_store.rb +8 -0
  57. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/dummy/config/locales/en.yml +5 -0
  59. data/test/dummy/config/routes.rb +6 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20111108195813_create_posts.rb +10 -0
  62. data/test/dummy/db/migrate/20111108195947_create_users.rb +10 -0
  63. data/test/dummy/db/schema.rb +37 -0
  64. data/test/dummy/log/development.log +4475 -0
  65. data/test/dummy/public/404.html +26 -0
  66. data/test/dummy/public/422.html +26 -0
  67. data/test/dummy/public/500.html +26 -0
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/dummy/script/rails +6 -0
  70. data/test/dummy/test/fixtures/posts.yml +9 -0
  71. data/test/dummy/test/fixtures/users.yml +9 -0
  72. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  73. data/test/dummy/test/functional/users_controller_test.rb +49 -0
  74. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  75. data/test/dummy/test/unit/helpers/users_helper_test.rb +4 -0
  76. data/test/dummy/test/unit/post_test.rb +7 -0
  77. data/test/dummy/test/unit/user_test.rb +7 -0
  78. data/test/dummy/tmp/cache/assets/C06/A00/sprockets%2Fe8698635e3a42938c23078559237f054 +0 -0
  79. data/test/dummy/tmp/cache/assets/CAA/620/sprockets%2F87b209c0c9da28094a8d5581a21262c6 +0 -0
  80. data/test/dummy/tmp/cache/assets/CC7/5F0/sprockets%2F8bf37168fb70e08b9e4578e72739a543 +0 -0
  81. data/test/dummy/tmp/cache/assets/CDA/250/sprockets%2F9f6ba51c401a4b1885146d692f56dd20 +9051 -0
  82. data/test/dummy/tmp/cache/assets/CDF/070/sprockets%2F70e3c8a3916622c17858d520dcee0d92 +0 -0
  83. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  84. data/test/dummy/tmp/cache/assets/D03/AF0/sprockets%2F79009b48c13f7b213134c8ac51caf65b +9051 -0
  85. data/test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4 +0 -0
  86. data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  87. data/test/dummy/tmp/cache/assets/D23/E70/sprockets%2F8de174e8fa8a6828ee7fa348335900f4 +369 -0
  88. data/test/dummy/tmp/cache/assets/D2E/090/sprockets%2Fc54283e81ce52bf9d542ab12492a01ad +0 -0
  89. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  90. data/test/dummy/tmp/cache/assets/D36/030/sprockets%2F63bdbca18172eaab4b20628e4399d663 +9048 -0
  91. data/test/dummy/tmp/cache/assets/D3E/B20/sprockets%2F1f79ee84bd6d74d100c5cb018b662b67 +0 -0
  92. data/test/dummy/tmp/cache/assets/D46/650/sprockets%2Ff56253b5f374fff1a33fbbc9881c9124 +0 -0
  93. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  94. data/test/dummy/tmp/cache/assets/D73/220/sprockets%2F3dbc0a37f98fb43ec819b85a64d32c55 +0 -0
  95. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +9429 -0
  96. data/test/dummy/tmp/cache/assets/D9B/9C0/sprockets%2F4e197c078b17aea1ec1df9746ddf2a30 +372 -0
  97. data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
  98. data/test/dummy/tmp/cache/assets/DA1/4A0/sprockets%2Fb398851b563c62cf3bf4cbbad8c57d25 +369 -0
  99. data/test/dummy/tmp/cache/assets/DBA/AB0/sprockets%2F8be4208fd77cb5ef9b6f77e5fcf18670 +0 -0
  100. data/test/dummy/tmp/cache/assets/DC0/870/sprockets%2F289d3a70441ad26d24edcd25fd0dca6c +372 -0
  101. data/test/dummy/tmp/cache/assets/E03/E80/sprockets%2F4a6c93824e15c2d5fdfbbbf7cfdc3646 +9048 -0
  102. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  103. data/test/dummy/tmp/cache/assets/E06/920/sprockets%2F6baa37d1c26468aef4fe5fe4bf982fa3 +0 -0
  104. data/test/dummy/tmp/pids/server.pid +1 -0
  105. data/test/slug_test.rb +7 -0
  106. data/test/test_helper.rb +10 -0
  107. metadata +291 -0
@@ -0,0 +1,60 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Use a different logger for distributed setups
37
+ # config.logger = SyslogLogger.new
38
+
39
+ # Use a different cache store in production
40
+ # config.cache_store = :mem_cache_store
41
+
42
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
+ # config.action_controller.asset_host = "http://assets.example.com"
44
+
45
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
+ # config.assets.precompile += %w( search.js )
47
+
48
+ # Disable delivery errors, bad email addresses will be ignored
49
+ # config.action_mailer.raise_delivery_errors = false
50
+
51
+ # Enable threaded mode
52
+ # config.threadsafe!
53
+
54
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
+ # the I18n.default_locale when a translation can not be found)
56
+ config.i18n.fallbacks = true
57
+
58
+ # Send deprecation notices to registered listeners
59
+ config.active_support.deprecation = :notify
60
+ end
@@ -0,0 +1,39 @@
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
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '1f1d1c14f0d7a1ac3e7f65685fbe7e539543c95209433a5252aaffa883d3eb36ebf2e54202bef478a862b3dad0b522d758fa8ae05626454e6caca422f03c7377'
@@ -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,6 @@
1
+ Dummy::Application.routes.draw do
2
+ root :to => 'posts#index'
3
+ resources :posts
4
+ mount Slug::Engine => "/"
5
+ resources :users
6
+ end
@@ -0,0 +1,10 @@
1
+ class CreatePosts < ActiveRecord::Migration
2
+ def change
3
+ create_table :posts do |t|
4
+ t.string :title
5
+ t.text :content
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :username
5
+ t.string :email
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,37 @@
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 => 20111108195947) do
14
+
15
+ create_table "permalinks", :force => true do |t|
16
+ t.string "slug"
17
+ t.integer "content_id"
18
+ t.string "content_type"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ create_table "posts", :force => true do |t|
24
+ t.string "title"
25
+ t.text "content"
26
+ t.datetime "created_at"
27
+ t.datetime "updated_at"
28
+ end
29
+
30
+ create_table "users", :force => true do |t|
31
+ t.string "username"
32
+ t.string "email"
33
+ t.datetime "created_at"
34
+ t.datetime "updated_at"
35
+ end
36
+
37
+ end
@@ -0,0 +1,4475 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.1ms) PRAGMA index_list("schema_migrations")
4
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreatePermalinks (20111108194929)
7
+  (0.4ms) CREATE TABLE "permalinks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "slug" varchar(255), "content_id" integer, "content_type" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108194929')
9
+  (0.1ms) select sqlite_version(*)
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("permalinks")
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+ Migrating to CreatePosts (20111108195813)
14
+  (0.0ms) select sqlite_version(*)
15
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime) 
16
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108195813')
17
+  (0.1ms) select sqlite_version(*)
18
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
19
+  (0.0ms) PRAGMA index_list("permalinks")
20
+  (0.0ms) PRAGMA index_list("posts")
21
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
22
+ Migrating to CreatePosts (20111108195813)
23
+ Migrating to CreateUsers (20111108195947)
24
+  (0.0ms) select sqlite_version(*)
25
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
26
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108195947')
27
+  (0.1ms) select sqlite_version(*)
28
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
29
+  (0.0ms) PRAGMA index_list("permalinks")
30
+  (0.0ms) PRAGMA index_list("posts")
31
+  (0.0ms) PRAGMA index_list("users")
32
+
33
+
34
+ Started GET "/" for 127.0.0.1 at Tue Nov 08 15:12:49 -0500 2011
35
+
36
+ ActionController::RoutingError (No route matches [GET] "/"):
37
+
38
+
39
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
40
+
41
+
42
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
43
+ Processing by PostsController#index as HTML
44
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
45
+ Rendered posts/index.html.erb within layouts/application (0.7ms)
46
+ Compiled application.css (2ms) (pid 78462)
47
+ Compiled posts.css (0ms) (pid 78462)
48
+ Compiled scaffold.css (0ms) (pid 78462)
49
+ Compiled users.css (0ms) (pid 78462)
50
+ Compiled application.js (6ms) (pid 78462)
51
+ Compiled jquery.js (4ms) (pid 78462)
52
+ Compiled jquery_ujs.js (12ms) (pid 78462)
53
+ Compiled posts.js (0ms) (pid 78462)
54
+ Compiled users.js (0ms) (pid 78462)
55
+ Completed 200 OK in 173ms (Views: 171.9ms | ActiveRecord: 0.1ms)
56
+
57
+
58
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
59
+ Served asset /posts.css - 200 OK (3ms)
60
+
61
+
62
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
63
+ Served asset /application.css - 200 OK (0ms)
64
+
65
+
66
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
67
+ Served asset /scaffold.css - 200 OK (2ms)
68
+
69
+
70
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
71
+ Served asset /users.css - 200 OK (3ms)
72
+
73
+
74
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
75
+ Served asset /jquery.js - 200 OK (8ms)
76
+
77
+
78
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
79
+ Served asset /jquery_ujs.js - 200 OK (6ms)
80
+
81
+
82
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
83
+ Served asset /posts.js - 200 OK (2ms)
84
+
85
+
86
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
87
+ Served asset /users.js - 200 OK (3ms)
88
+
89
+
90
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 15:12:55 -0500 2011
91
+ Served asset /application.js - 200 OK (0ms)
92
+
93
+
94
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:07:30 -0500 2011
95
+ Processing by PostsController#index as HTML
96
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
97
+ Rendered posts/index.html.erb within layouts/application (3.0ms)
98
+ Cache for Asset (application.js) is stale
99
+ /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/jquery-rails-1.0.16/vendor/assets/javascripts/jquery.js isn't in paths: /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/images, /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/javascripts, /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/stylesheets, /Library/Ruby/Gems/1.8/gems/jquery-rails-1.0.16/vendor/assets/javascripts
100
+ Compiled application.js (8ms) (pid 79999)
101
+ Compiled jquery.js (102ms) (pid 79999)
102
+ Compiled jquery_ujs.js (2ms) (pid 79999)
103
+ Completed 200 OK in 195ms (Views: 193.6ms | ActiveRecord: 0.2ms)
104
+
105
+
106
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
107
+ Served asset /jquery.js - 304 Not Modified (11ms)
108
+
109
+
110
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
111
+ Served asset /users.css - 304 Not Modified (3ms)
112
+
113
+
114
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
115
+ Served asset /scaffold.css - 304 Not Modified (3ms)
116
+
117
+
118
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
119
+ Served asset /jquery_ujs.js - 304 Not Modified (102ms)
120
+
121
+
122
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
123
+ Served asset /application.css - 304 Not Modified (0ms)
124
+
125
+
126
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
127
+ Served asset /posts.css - 304 Not Modified (3ms)
128
+
129
+
130
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
131
+ Served asset /posts.js - 304 Not Modified (2ms)
132
+
133
+
134
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
135
+ Served asset /users.js - 304 Not Modified (2ms)
136
+
137
+
138
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:07:31 -0500 2011
139
+ Served asset /application.js - 304 Not Modified (0ms)
140
+
141
+
142
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
143
+ Processing by PostsController#index as HTML
144
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
145
+ Rendered posts/index.html.erb within layouts/application (2.3ms)
146
+ Cache for Asset (application.js) is stale
147
+ /Library/Ruby/Gems/1.8/gems/jquery-rails-1.0.16/vendor/assets/javascripts/jquery.js isn't in paths: /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/images, /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/javascripts, /Users/jcarlson/Projects/has_permalink/test/dummy/app/assets/stylesheets, /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/jquery-rails-1.0.16/vendor/assets/javascripts
148
+ Compiled application.js (6ms) (pid 80421)
149
+ Completed 200 OK in 104ms (Views: 102.7ms | ActiveRecord: 0.1ms)
150
+
151
+
152
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
153
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
154
+
155
+
156
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
157
+ Served asset /jquery.js - 304 Not Modified (8ms)
158
+
159
+
160
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
161
+ Served asset /scaffold.css - 304 Not Modified (2ms)
162
+
163
+
164
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
165
+ Served asset /posts.css - 304 Not Modified (2ms)
166
+
167
+
168
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
169
+ Served asset /application.css - 304 Not Modified (0ms)
170
+
171
+
172
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
173
+ Served asset /users.css - 304 Not Modified (2ms)
174
+
175
+
176
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
177
+ Served asset /posts.js - 304 Not Modified (2ms)
178
+
179
+
180
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
181
+ Served asset /users.js - 304 Not Modified (1ms)
182
+
183
+
184
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:14 -0500 2011
185
+ Served asset /application.js - 304 Not Modified (0ms)
186
+
187
+
188
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:17:15 -0500 2011
189
+ Processing by PostsController#new as HTML
190
+ Rendered posts/_form.html.erb (27.1ms)
191
+ Rendered posts/new.html.erb within layouts/application (31.2ms)
192
+ Completed 200 OK in 41ms (Views: 39.9ms | ActiveRecord: 0.6ms)
193
+
194
+
195
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
196
+ Served asset /application.css - 304 Not Modified (1ms)
197
+
198
+
199
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
200
+ Served asset /posts.css - 304 Not Modified (0ms)
201
+
202
+
203
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
204
+ Served asset /posts.js - 304 Not Modified (0ms)
205
+
206
+
207
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
208
+ Served asset /jquery.js - 304 Not Modified (0ms)
209
+
210
+
211
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
212
+ Served asset /users.css - 304 Not Modified (0ms)
213
+
214
+
215
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
216
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
217
+
218
+
219
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
220
+ Served asset /scaffold.css - 304 Not Modified (0ms)
221
+
222
+
223
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
224
+ Served asset /users.js - 304 Not Modified (0ms)
225
+
226
+
227
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:16 -0500 2011
228
+ Served asset /application.js - 304 Not Modified (0ms)
229
+
230
+
231
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:17:24 -0500 2011
232
+ Processing by PostsController#create as HTML
233
+ Parameters: {"commit"=>"Create Post", "post"=>{"slug"=>"", "title"=>"Foo Bar Post", "content"=>"the content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
234
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = '' LIMIT 1
235
+ Completed 404 Not Found in 113ms
236
+
237
+ ActionController::RoutingError (No route matches "/"):
238
+ app/controllers/posts_controller.rb:46:in `create'
239
+ app/controllers/posts_controller.rb:45:in `create'
240
+
241
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
242
+
243
+
244
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
245
+ Processing by PostsController#index as HTML
246
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
247
+ Rendered posts/index.html.erb within layouts/application (0.4ms)
248
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
249
+
250
+
251
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
252
+ Served asset /application.css - 304 Not Modified (0ms)
253
+
254
+
255
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
256
+ Served asset /posts.css - 304 Not Modified (0ms)
257
+
258
+
259
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
260
+ Served asset /jquery.js - 304 Not Modified (0ms)
261
+
262
+
263
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
264
+ Served asset /users.css - 304 Not Modified (0ms)
265
+
266
+
267
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
268
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
269
+
270
+
271
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
272
+ Served asset /scaffold.css - 304 Not Modified (0ms)
273
+
274
+
275
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
276
+ Served asset /posts.js - 304 Not Modified (0ms)
277
+
278
+
279
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
280
+ Served asset /users.js - 304 Not Modified (0ms)
281
+
282
+
283
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:31 -0500 2011
284
+ Served asset /application.js - 304 Not Modified (0ms)
285
+
286
+
287
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:17:47 -0500 2011
288
+ Processing by PostsController#new as HTML
289
+ Rendered posts/_form.html.erb (15.7ms)
290
+ Rendered posts/new.html.erb within layouts/application (16.7ms)
291
+ Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.4ms)
292
+
293
+
294
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
295
+ Served asset /jquery.js - 304 Not Modified (0ms)
296
+
297
+
298
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
299
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
300
+
301
+
302
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
303
+ Served asset /posts.css - 304 Not Modified (0ms)
304
+
305
+
306
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
307
+ Served asset /users.css - 304 Not Modified (0ms)
308
+
309
+
310
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
311
+ Served asset /application.css - 304 Not Modified (0ms)
312
+
313
+
314
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
315
+ Served asset /scaffold.css - 304 Not Modified (0ms)
316
+
317
+
318
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
319
+ Served asset /posts.js - 304 Not Modified (0ms)
320
+
321
+
322
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
323
+ Served asset /users.js - 304 Not Modified (0ms)
324
+
325
+
326
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:17:48 -0500 2011
327
+ Served asset /application.js - 304 Not Modified (6ms)
328
+
329
+
330
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:17:58 -0500 2011
331
+ Processing by PostsController#create as HTML
332
+ Parameters: {"commit"=>"Create Post", "post"=>{"slug"=>"slug", "title"=>"The Title", "content"=>"The content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
333
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
334
+ Completed 404 Not Found in 72ms
335
+
336
+ ActionController::RoutingError (No route matches "/slug"):
337
+ app/controllers/posts_controller.rb:46:in `create'
338
+ app/controllers/posts_controller.rb:45:in `create'
339
+
340
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
341
+
342
+
343
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
344
+ Processing by PostsController#index as HTML
345
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
346
+ Rendered posts/index.html.erb within layouts/application (51.9ms)
347
+ Completed 200 OK in 83ms (Views: 82.0ms | ActiveRecord: 0.1ms)
348
+
349
+
350
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
351
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
352
+
353
+
354
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
355
+ Served asset /jquery.js - 304 Not Modified (9ms)
356
+
357
+
358
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
359
+ Served asset /users.css - 304 Not Modified (2ms)
360
+
361
+
362
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
363
+ Served asset /scaffold.css - 304 Not Modified (2ms)
364
+
365
+
366
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
367
+ Served asset /posts.css - 304 Not Modified (2ms)
368
+
369
+
370
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
371
+ Served asset /application.css - 304 Not Modified (0ms)
372
+
373
+
374
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
375
+ Served asset /posts.js - 304 Not Modified (1ms)
376
+
377
+
378
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
379
+ Served asset /users.js - 304 Not Modified (1ms)
380
+
381
+
382
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:40 -0500 2011
383
+ Served asset /application.js - 304 Not Modified (0ms)
384
+
385
+
386
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:19:42 -0500 2011
387
+ Processing by PostsController#new as HTML
388
+ Rendered posts/_form.html.erb (10.5ms)
389
+ Rendered posts/new.html.erb within layouts/application (13.8ms)
390
+ Completed 500 Internal Server Error in 19ms
391
+
392
+ ActionView::Template::Error (undefined method `slug' for #<Post:0x1032c2190>):
393
+ 21: </div>
394
+ 22: <div class="field">
395
+ 23: <%= f.label :slug %>
396
+ 24: <%= f.text_field :slug %>
397
+ 25: </div>
398
+ 26: <div class="actions">
399
+ 27: <%= f.submit %>
400
+ app/views/posts/_form.html.erb:24:in `_app_views_posts__form_html_erb___1064674555_2173983160'
401
+ app/views/posts/_form.html.erb:1:in `_app_views_posts__form_html_erb___1064674555_2173983160'
402
+ app/views/posts/new.html.erb:3:in `_app_views_posts_new_html_erb__903117659_2174067960'
403
+ app/controllers/posts_controller.rb:29:in `new'
404
+
405
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
406
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
407
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (59.2ms)
408
+
409
+
410
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
411
+ Processing by PostsController#new as HTML
412
+ Rendered posts/_form.html.erb (6.0ms)
413
+ Rendered posts/new.html.erb within layouts/application (7.0ms)
414
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms)
415
+
416
+
417
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
418
+ Served asset /application.css - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
422
+ Served asset /users.css - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
426
+ Served asset /scaffold.css - 304 Not Modified (0ms)
427
+
428
+
429
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
430
+ Served asset /posts.css - 304 Not Modified (0ms)
431
+
432
+
433
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
434
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
435
+
436
+
437
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
438
+ Served asset /jquery.js - 304 Not Modified (0ms)
439
+
440
+
441
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
442
+ Served asset /posts.js - 304 Not Modified (0ms)
443
+
444
+
445
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
446
+ Served asset /users.js - 304 Not Modified (0ms)
447
+
448
+
449
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:52 -0500 2011
450
+ Served asset /application.js - 304 Not Modified (0ms)
451
+
452
+
453
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
454
+ Processing by PostsController#create as HTML
455
+ Parameters: {"commit"=>"Create Post", "post"=>{"title"=>"Title", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
456
+ SQL (5.6ms) INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "content"], ["created_at", Tue, 08 Nov 2011 21:19:58 UTC +00:00], ["title", "Title"], ["updated_at", Tue, 08 Nov 2011 21:19:58 UTC +00:00]]
457
+ Redirected to http://localhost:3000/posts/1
458
+ Completed 302 Found in 13ms
459
+
460
+
461
+ Started GET "/posts/1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
462
+ Processing by PostsController#show as HTML
463
+ Parameters: {"id"=>"1"}
464
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
465
+ Rendered posts/show.html.erb within layouts/application (3.8ms)
466
+ Completed 200 OK in 80ms (Views: 13.8ms | ActiveRecord: 0.5ms)
467
+
468
+
469
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
470
+ Served asset /scaffold.css - 304 Not Modified (0ms)
471
+
472
+
473
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
474
+ Served asset /posts.css - 304 Not Modified (0ms)
475
+
476
+
477
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
478
+ Served asset /users.css - 304 Not Modified (0ms)
479
+
480
+
481
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
482
+ Served asset /jquery.js - 304 Not Modified (0ms)
483
+
484
+
485
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
486
+ Served asset /application.css - 304 Not Modified (0ms)
487
+
488
+
489
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
490
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
491
+
492
+
493
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
494
+ Served asset /users.js - 304 Not Modified (3ms)
495
+
496
+
497
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
498
+ Served asset /posts.js - 304 Not Modified (0ms)
499
+
500
+
501
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:19:58 -0500 2011
502
+ Served asset /application.js - 304 Not Modified (0ms)
503
+
504
+
505
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:21:22 -0500 2011
506
+ Processing by PostsController#index as HTML
507
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
508
+ Rendered posts/index.html.erb within layouts/application (4.5ms)
509
+ Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.3ms)
510
+
511
+
512
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
513
+ Served asset /application.css - 304 Not Modified (0ms)
514
+
515
+
516
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
517
+ Served asset /posts.css - 304 Not Modified (0ms)
518
+
519
+
520
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
521
+ Served asset /scaffold.css - 304 Not Modified (0ms)
522
+
523
+
524
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
525
+ Served asset /users.css - 304 Not Modified (0ms)
526
+
527
+
528
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
529
+ Served asset /jquery.js - 304 Not Modified (0ms)
530
+
531
+
532
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
533
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
534
+
535
+
536
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
537
+ Served asset /posts.js - 304 Not Modified (0ms)
538
+
539
+
540
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
541
+ Served asset /users.js - 304 Not Modified (0ms)
542
+
543
+
544
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:23 -0500 2011
545
+ Served asset /application.js - 304 Not Modified (0ms)
546
+
547
+
548
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
549
+ Processing by PostsController#new as HTML
550
+ Rendered posts/_form.html.erb (5.4ms)
551
+ Rendered posts/new.html.erb within layouts/application (6.4ms)
552
+ Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms)
553
+
554
+
555
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
556
+ Served asset /application.css - 304 Not Modified (0ms)
557
+
558
+
559
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
560
+ Served asset /users.css - 304 Not Modified (0ms)
561
+
562
+
563
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
564
+ Served asset /jquery.js - 304 Not Modified (0ms)
565
+
566
+
567
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
568
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
569
+
570
+
571
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
572
+ Served asset /posts.css - 304 Not Modified (0ms)
573
+
574
+
575
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
576
+ Served asset /scaffold.css - 304 Not Modified (0ms)
577
+
578
+
579
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
580
+ Served asset /posts.js - 304 Not Modified (0ms)
581
+
582
+
583
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
584
+ Served asset /users.js - 304 Not Modified (0ms)
585
+
586
+
587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:21:24 -0500 2011
588
+ Served asset /application.js - 304 Not Modified (0ms)
589
+
590
+
591
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:21:29 -0500 2011
592
+ Processing by PostsController#create as HTML
593
+ Parameters: {"commit"=>"Create Post", "post"=>{"title"=>"Another post", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
594
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'another-post' LIMIT 1
595
+ Completed 404 Not Found in 257ms
596
+
597
+ ActionController::RoutingError (No route matches "/another-post"):
598
+ app/controllers/posts_controller.rb:46:in `create'
599
+ app/controllers/posts_controller.rb:45:in `create'
600
+
601
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
602
+
603
+
604
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:25:11 -0500 2011
605
+ Processing by PostsController#create as HTML
606
+ Parameters: {"commit"=>"Create Post", "post"=>{"title"=>"Another post", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
607
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'another-post' LIMIT 1
608
+ Completed 404 Not Found in 224ms
609
+
610
+ ActionController::RoutingError (No route matches "/another-post"):
611
+ app/controllers/posts_controller.rb:46:in `create'
612
+ app/controllers/posts_controller.rb:45:in `create'
613
+
614
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms)
615
+
616
+
617
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
618
+ Processing by PostsController#index as HTML
619
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
620
+ Rendered posts/index.html.erb within layouts/application (5.0ms)
621
+ Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.3ms)
622
+
623
+
624
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
625
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
626
+
627
+
628
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
629
+ Served asset /jquery.js - 304 Not Modified (7ms)
630
+
631
+
632
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
633
+ Served asset /users.css - 304 Not Modified (2ms)
634
+
635
+
636
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
637
+ Served asset /scaffold.css - 304 Not Modified (3ms)
638
+
639
+
640
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
641
+ Served asset /posts.css - 304 Not Modified (2ms)
642
+
643
+
644
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
645
+ Served asset /application.css - 304 Not Modified (0ms)
646
+
647
+
648
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
649
+ Served asset /posts.js - 304 Not Modified (2ms)
650
+
651
+
652
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
653
+ Served asset /users.js - 304 Not Modified (1ms)
654
+
655
+
656
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:19 -0500 2011
657
+ Served asset /application.js - 304 Not Modified (0ms)
658
+
659
+
660
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
661
+ Processing by PostsController#new as HTML
662
+ Rendered posts/_form.html.erb (6.3ms)
663
+ Rendered posts/new.html.erb within layouts/application (9.5ms)
664
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.2ms)
665
+
666
+
667
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
668
+ Served asset /scaffold.css - 304 Not Modified (0ms)
669
+
670
+
671
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
672
+ Served asset /posts.css - 304 Not Modified (0ms)
673
+
674
+
675
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
676
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
677
+
678
+
679
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
680
+ Served asset /jquery.js - 304 Not Modified (0ms)
681
+
682
+
683
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
684
+ Served asset /application.css - 304 Not Modified (0ms)
685
+
686
+
687
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
688
+ Served asset /users.css - 304 Not Modified (0ms)
689
+
690
+
691
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
692
+ Served asset /posts.js - 304 Not Modified (0ms)
693
+
694
+
695
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
696
+ Served asset /users.js - 304 Not Modified (0ms)
697
+
698
+
699
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:25:22 -0500 2011
700
+ Served asset /application.js - 304 Not Modified (0ms)
701
+
702
+
703
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 16:25:27 -0500 2011
704
+ Processing by PostsController#create as HTML
705
+ Parameters: {"commit"=>"Create Post", "post"=>{"title"=>"Foo Bar", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
706
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'foo-bar' LIMIT 1
707
+ Completed 404 Not Found in 79ms
708
+
709
+ ActionController::RoutingError (No route matches "/foo-bar"):
710
+ app/controllers/posts_controller.rb:46:in `create'
711
+ app/controllers/posts_controller.rb:45:in `create'
712
+
713
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
714
+
715
+
716
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:30:17 -0500 2011
717
+ Processing by PostsController#index as HTML
718
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
719
+ Rendered posts/index.html.erb within layouts/application (12.7ms)
720
+ Completed 200 OK in 101ms (Views: 99.7ms | ActiveRecord: 0.3ms)
721
+
722
+
723
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
724
+ Served asset /jquery.js - 304 Not Modified (3ms)
725
+
726
+
727
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
728
+ Served asset /users.css - 304 Not Modified (2ms)
729
+
730
+
731
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
732
+ Served asset /scaffold.css - 304 Not Modified (2ms)
733
+
734
+
735
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
736
+ Served asset /posts.css - 304 Not Modified (2ms)
737
+
738
+
739
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
740
+ Served asset /application.css - 304 Not Modified (0ms)
741
+
742
+
743
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
744
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
745
+
746
+
747
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
748
+ Served asset /posts.js - 304 Not Modified (2ms)
749
+
750
+
751
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
752
+ Served asset /users.js - 304 Not Modified (3ms)
753
+
754
+
755
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:18 -0500 2011
756
+ Served asset /application.js - 304 Not Modified (0ms)
757
+
758
+
759
+ Started GET "/posts/1/edit" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
760
+ Processing by PostsController#edit as HTML
761
+ Parameters: {"id"=>"1"}
762
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
763
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
764
+ Rendered posts/_form.html.erb (25.3ms)
765
+ Rendered posts/edit.html.erb within layouts/application (83.7ms)
766
+ Completed 200 OK in 95ms (Views: 92.4ms | ActiveRecord: 0.8ms)
767
+
768
+
769
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
770
+ Served asset /posts.css - 304 Not Modified (0ms)
771
+
772
+
773
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
774
+ Served asset /application.css - 304 Not Modified (0ms)
775
+
776
+
777
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
778
+ Served asset /scaffold.css - 304 Not Modified (0ms)
779
+
780
+
781
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
782
+ Served asset /jquery.js - 304 Not Modified (0ms)
783
+
784
+
785
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
786
+ Served asset /users.css - 304 Not Modified (0ms)
787
+
788
+
789
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
790
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
791
+
792
+
793
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
794
+ Served asset /posts.js - 304 Not Modified (0ms)
795
+
796
+
797
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
798
+ Served asset /users.js - 304 Not Modified (0ms)
799
+
800
+
801
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:26 -0500 2011
802
+ Served asset /application.js - 304 Not Modified (0ms)
803
+
804
+
805
+ Started PUT "/posts/1" for 127.0.0.1 at Tue Nov 08 16:30:31 -0500 2011
806
+ Processing by PostsController#update as HTML
807
+ Parameters: {"commit"=>"Update Post", "post"=>{"slug"=>"slug", "title"=>"Title", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓", "id"=>"1"}
808
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
809
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
810
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
811
+ SQL (1.7ms) INSERT INTO "permalinks" ("content_id", "content_type", "created_at", "slug", "updated_at") VALUES (?, ?, ?, ?, ?) [["content_id", 1], ["content_type", "Post"], ["created_at", Tue, 08 Nov 2011 21:30:32 UTC +00:00], ["slug", "slug"], ["updated_at", Tue, 08 Nov 2011 21:30:32 UTC +00:00]]
812
+ Redirected to http://localhost:3000/posts/1
813
+ Completed 302 Found in 91ms
814
+
815
+
816
+ Started GET "/posts/1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
817
+ Processing by PostsController#show as HTML
818
+ Parameters: {"id"=>"1"}
819
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
820
+ Rendered posts/show.html.erb within layouts/application (3.7ms)
821
+ Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.4ms)
822
+
823
+
824
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
825
+ Served asset /application.css - 304 Not Modified (0ms)
826
+
827
+
828
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
829
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
830
+
831
+
832
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
833
+ Served asset /users.css - 304 Not Modified (0ms)
834
+
835
+
836
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
837
+ Served asset /posts.css - 304 Not Modified (0ms)
838
+
839
+
840
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
841
+ Served asset /jquery.js - 304 Not Modified (0ms)
842
+
843
+
844
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
845
+ Served asset /scaffold.css - 304 Not Modified (0ms)
846
+
847
+
848
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
849
+ Served asset /posts.js - 304 Not Modified (0ms)
850
+
851
+
852
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
853
+ Served asset /users.js - 304 Not Modified (0ms)
854
+
855
+
856
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:32 -0500 2011
857
+ Served asset /application.js - 304 Not Modified (0ms)
858
+
859
+
860
+ Started GET "/posts/1/edit" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
861
+ Processing by PostsController#edit as HTML
862
+ Parameters: {"id"=>"1"}
863
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
864
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
865
+ Rendered posts/_form.html.erb (74.1ms)
866
+ Rendered posts/edit.html.erb within layouts/application (75.5ms)
867
+ Completed 200 OK in 88ms (Views: 85.5ms | ActiveRecord: 0.7ms)
868
+
869
+
870
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
871
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
872
+
873
+
874
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
875
+ Served asset /jquery.js - 304 Not Modified (0ms)
876
+
877
+
878
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
879
+ Served asset /posts.css - 304 Not Modified (0ms)
880
+
881
+
882
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
883
+ Served asset /users.css - 304 Not Modified (0ms)
884
+
885
+
886
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
887
+ Served asset /scaffold.css - 304 Not Modified (0ms)
888
+
889
+
890
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
891
+ Served asset /application.css - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
895
+ Served asset /posts.js - 304 Not Modified (0ms)
896
+
897
+
898
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
899
+ Served asset /users.js - 304 Not Modified (0ms)
900
+
901
+
902
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:34 -0500 2011
903
+ Served asset /application.js - 304 Not Modified (0ms)
904
+
905
+
906
+ Started GET "/posts/1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
907
+ Processing by PostsController#show as HTML
908
+ Parameters: {"id"=>"1"}
909
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
910
+ Rendered posts/show.html.erb within layouts/application (3.8ms)
911
+ Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.4ms)
912
+
913
+
914
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
915
+ Served asset /scaffold.css - 304 Not Modified (0ms)
916
+
917
+
918
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
919
+ Served asset /posts.css - 304 Not Modified (0ms)
920
+
921
+
922
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
923
+ Served asset /jquery.js - 304 Not Modified (0ms)
924
+
925
+
926
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
927
+ Served asset /users.css - 304 Not Modified (0ms)
928
+
929
+
930
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
931
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
932
+
933
+
934
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
935
+ Served asset /application.css - 304 Not Modified (0ms)
936
+
937
+
938
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
939
+ Served asset /posts.js - 304 Not Modified (0ms)
940
+
941
+
942
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
943
+ Served asset /users.js - 304 Not Modified (0ms)
944
+
945
+
946
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:30:39 -0500 2011
947
+ Served asset /application.js - 304 Not Modified (0ms)
948
+
949
+
950
+ Started GET "/slug" for 127.0.0.1 at Tue Nov 08 16:31:50 -0500 2011
951
+ Processing by PermalinksController#show as HTML
952
+ Parameters: {"slug"=>"slug"}
953
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
954
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
955
+ Completed 500 Internal Server Error in 25ms
956
+
957
+ ActionView::MissingTemplate (Missing partial posts/post with {:locale=>[:en, :en], :formats=>[:html], :handlers=>[:builder, :erb]}. Searched in:
958
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views/posts"
959
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views"
960
+ ):
961
+
962
+
963
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
964
+
965
+
966
+ Started GET "/slug" for 127.0.0.1 at Tue Nov 08 16:32:24 -0500 2011
967
+ Processing by PermalinksController#show as HTML
968
+ Parameters: {"slug"=>"slug"}
969
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
970
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
971
+ Rendered posts/_post.html.erb (0.7ms)
972
+ Completed 500 Internal Server Error in 18ms
973
+
974
+ ActionView::MissingTemplate (Missing partial layouts/application with {:locale=>[:en, :en], :formats=>[:html], :handlers=>[:builder, :erb]}. Searched in:
975
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views/posts"
976
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views"
977
+ ):
978
+
979
+
980
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
981
+
982
+
983
+ Started GET "/slug" for 127.0.0.1 at Tue Nov 08 16:34:12 -0500 2011
984
+ Processing by PermalinksController#show as HTML
985
+ Parameters: {"slug"=>"slug"}
986
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
987
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
988
+ Rendered posts/_post.html.erb (6.1ms)
989
+ Completed 500 Internal Server Error in 89ms
990
+
991
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
992
+ 2:
993
+ 3: <p>
994
+ 4: <b>Title:</b>
995
+ 5: <%= @post.title %>
996
+ 6: </p>
997
+ 7:
998
+ 8: <p>
999
+ app/views/posts/_post.html.erb:5:in `_app_views_posts__post_html_erb___4332477_2175328860'
1000
+
1001
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1002
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1003
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
1004
+
1005
+
1006
+ Started GET "/slug" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1007
+ Processing by PermalinksController#show as HTML
1008
+ Parameters: {"slug"=>"slug"}
1009
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
1010
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
1011
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1012
+ Rendered posts/_post.html.erb (89.2ms)
1013
+ Completed 200 OK in 108ms (Views: 95.0ms | ActiveRecord: 0.9ms)
1014
+
1015
+
1016
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1017
+ Served asset /users.css - 304 Not Modified (2ms)
1018
+
1019
+
1020
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1021
+ Served asset /posts.css - 304 Not Modified (3ms)
1022
+
1023
+
1024
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1025
+ Served asset /application.css - 304 Not Modified (0ms)
1026
+
1027
+
1028
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1029
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1030
+
1031
+
1032
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1033
+ Served asset /jquery.js - 304 Not Modified (9ms)
1034
+
1035
+
1036
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1037
+ Served asset /jquery_ujs.js - 304 Not Modified (9ms)
1038
+
1039
+
1040
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1041
+ Served asset /posts.js - 304 Not Modified (1ms)
1042
+
1043
+
1044
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1045
+ Served asset /users.js - 304 Not Modified (2ms)
1046
+
1047
+
1048
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:34 -0500 2011
1049
+ Served asset /application.js - 304 Not Modified (0ms)
1050
+
1051
+
1052
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1053
+ Processing by PostsController#index as HTML
1054
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1055
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1056
+ Rendered posts/index.html.erb within layouts/application (15.0ms)
1057
+ Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.7ms)
1058
+
1059
+
1060
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1061
+ Served asset /application.css - 304 Not Modified (0ms)
1062
+
1063
+
1064
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1065
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1066
+
1067
+
1068
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1069
+ Served asset /posts.css - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1073
+ Served asset /jquery.js - 304 Not Modified (0ms)
1074
+
1075
+
1076
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1077
+ Served asset /users.css - 304 Not Modified (0ms)
1078
+
1079
+
1080
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1081
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1082
+
1083
+
1084
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1085
+ Served asset /posts.js - 304 Not Modified (0ms)
1086
+
1087
+
1088
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1089
+ Served asset /users.js - 304 Not Modified (0ms)
1090
+
1091
+
1092
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 16:34:37 -0500 2011
1093
+ Served asset /application.js - 304 Not Modified (0ms)
1094
+
1095
+
1096
+ Started GET "/" for 127.0.0.1 at Tue Nov 08 18:16:49 -0500 2011
1097
+
1098
+ ActionController::RoutingError (No route matches [GET] "/"):
1099
+
1100
+
1101
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
1102
+
1103
+
1104
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1105
+ Processing by PostsController#index as HTML
1106
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1107
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1108
+ Rendered posts/index.html.erb within layouts/application (25.1ms)
1109
+ Completed 200 OK in 82ms (Views: 80.2ms | ActiveRecord: 0.6ms)
1110
+
1111
+
1112
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1113
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1114
+
1115
+
1116
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1117
+ Served asset /jquery.js - 304 Not Modified (7ms)
1118
+
1119
+
1120
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1121
+ Served asset /users.css - 304 Not Modified (2ms)
1122
+
1123
+
1124
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1125
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1126
+
1127
+
1128
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1129
+ Served asset /application.css - 304 Not Modified (0ms)
1130
+
1131
+
1132
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1133
+ Served asset /posts.css - 304 Not Modified (3ms)
1134
+
1135
+
1136
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1137
+ Served asset /posts.js - 304 Not Modified (2ms)
1138
+
1139
+
1140
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1141
+ Served asset /users.js - 304 Not Modified (1ms)
1142
+
1143
+
1144
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:54 -0500 2011
1145
+ Served asset /application.js - 304 Not Modified (0ms)
1146
+
1147
+
1148
+ Started GET "/posts/new" for 127.0.0.1 at Tue Nov 08 18:16:55 -0500 2011
1149
+ Processing by PostsController#new as HTML
1150
+ Rendered posts/_form.html.erb (16.5ms)
1151
+ Rendered posts/new.html.erb within layouts/application (19.9ms)
1152
+ Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.5ms)
1153
+
1154
+
1155
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:55 -0500 2011
1156
+ Served asset /posts.css - 304 Not Modified (0ms)
1157
+
1158
+
1159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:55 -0500 2011
1160
+ Served asset /application.css - 304 Not Modified (0ms)
1161
+
1162
+
1163
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:55 -0500 2011
1164
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1165
+
1166
+
1167
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:55 -0500 2011
1168
+ Served asset /jquery.js - 304 Not Modified (0ms)
1169
+
1170
+
1171
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:16:56 -0500 2011
1172
+ Served asset /users.css - 304 Not Modified (0ms)
1173
+
1174
+
1175
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:56 -0500 2011
1176
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1177
+
1178
+
1179
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:56 -0500 2011
1180
+ Served asset /posts.js - 304 Not Modified (0ms)
1181
+
1182
+
1183
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:56 -0500 2011
1184
+ Served asset /users.js - 304 Not Modified (0ms)
1185
+
1186
+
1187
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:16:56 -0500 2011
1188
+ Served asset /application.js - 304 Not Modified (0ms)
1189
+
1190
+
1191
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1192
+ Processing by PostsController#create as HTML
1193
+ Parameters: {"commit"=>"Create Post", "post"=>{"slug"=>"posts", "title"=>"Clashing Slug", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
1194
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'posts' LIMIT 1
1195
+ Rendered posts/_form.html.erb (3.3ms)
1196
+ Rendered posts/new.html.erb within layouts/application (4.1ms)
1197
+ Completed 200 OK in 99ms (Views: 13.3ms | ActiveRecord: 0.6ms)
1198
+
1199
+
1200
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1201
+ Served asset /posts.css - 304 Not Modified (0ms)
1202
+
1203
+
1204
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1205
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1206
+
1207
+
1208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1209
+ Served asset /application.css - 304 Not Modified (0ms)
1210
+
1211
+
1212
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1213
+ Served asset /jquery.js - 304 Not Modified (0ms)
1214
+
1215
+
1216
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1217
+ Served asset /users.css - 304 Not Modified (0ms)
1218
+
1219
+
1220
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1221
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1222
+
1223
+
1224
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1225
+ Served asset /posts.js - 304 Not Modified (0ms)
1226
+
1227
+
1228
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1229
+ Served asset /users.js - 304 Not Modified (0ms)
1230
+
1231
+
1232
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:17:13 -0500 2011
1233
+ Served asset /application.js - 304 Not Modified (0ms)
1234
+
1235
+
1236
+ Started POST "/posts" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1237
+ Processing by PostsController#create as HTML
1238
+ Parameters: {"commit"=>"Create Post", "post"=>{"slug"=>"posts", "title"=>"Clashing Slug", "content"=>"content"}, "authenticity_token"=>"WuvBhG5YxCqkgcyVOAEmZW7GXnqUmICmAJoVNWOJHMc=", "utf8"=>"✓"}
1239
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE "permalinks"."slug" = 'posts' LIMIT 1
1240
+ Rendered posts/_form.html.erb (3.2ms)
1241
+ Rendered posts/new.html.erb within layouts/application (4.1ms)
1242
+ Completed 200 OK in 30ms (Views: 13.3ms | ActiveRecord: 0.7ms)
1243
+
1244
+
1245
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1246
+ Served asset /posts.css - 304 Not Modified (0ms)
1247
+
1248
+
1249
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1250
+ Served asset /application.css - 304 Not Modified (0ms)
1251
+
1252
+
1253
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1254
+ Served asset /users.css - 304 Not Modified (0ms)
1255
+
1256
+
1257
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1258
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1259
+
1260
+
1261
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1262
+ Served asset /jquery.js - 304 Not Modified (0ms)
1263
+
1264
+
1265
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1266
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1267
+
1268
+
1269
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1270
+ Served asset /posts.js - 304 Not Modified (0ms)
1271
+
1272
+
1273
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1274
+ Served asset /users.js - 304 Not Modified (0ms)
1275
+
1276
+
1277
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:09 -0500 2011
1278
+ Served asset /application.js - 304 Not Modified (0ms)
1279
+
1280
+
1281
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1282
+ Processing by UsersController#index as HTML
1283
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1284
+ Rendered users/index.html.erb within layouts/application (0.9ms)
1285
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms)
1286
+
1287
+
1288
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1289
+ Served asset /users.css - 304 Not Modified (0ms)
1290
+
1291
+
1292
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1293
+ Served asset /jquery.js - 304 Not Modified (0ms)
1294
+
1295
+
1296
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1297
+ Served asset /posts.css - 304 Not Modified (0ms)
1298
+
1299
+
1300
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1301
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1302
+
1303
+
1304
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1305
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1306
+
1307
+
1308
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1309
+ Served asset /application.css - 304 Not Modified (0ms)
1310
+
1311
+
1312
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1313
+ Served asset /posts.js - 304 Not Modified (0ms)
1314
+
1315
+
1316
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1317
+ Served asset /users.js - 304 Not Modified (0ms)
1318
+
1319
+
1320
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:13 -0500 2011
1321
+ Served asset /application.js - 304 Not Modified (0ms)
1322
+
1323
+
1324
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1325
+ Processing by UsersController#index as HTML
1326
+ User Load (0.1ms) SELECT "users".* FROM "users"
1327
+ Rendered users/index.html.erb within layouts/application (0.4ms)
1328
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.2ms)
1329
+
1330
+
1331
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1332
+ Served asset /users.css - 304 Not Modified (0ms)
1333
+
1334
+
1335
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1336
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1337
+
1338
+
1339
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1340
+ Served asset /application.css - 304 Not Modified (0ms)
1341
+
1342
+
1343
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1344
+ Served asset /posts.css - 304 Not Modified (0ms)
1345
+
1346
+
1347
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1348
+ Served asset /jquery.js - 304 Not Modified (0ms)
1349
+
1350
+
1351
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1352
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1353
+
1354
+
1355
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1356
+ Served asset /posts.js - 304 Not Modified (0ms)
1357
+
1358
+
1359
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1360
+ Served asset /users.js - 304 Not Modified (0ms)
1361
+
1362
+
1363
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:18:34 -0500 2011
1364
+ Served asset /application.js - 304 Not Modified (0ms)
1365
+
1366
+
1367
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1368
+ Processing by UsersController#index as HTML
1369
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1370
+ Rendered users/index.html.erb within layouts/application (0.4ms)
1371
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
1372
+
1373
+
1374
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1375
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1376
+
1377
+
1378
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1379
+ Served asset /posts.css - 304 Not Modified (0ms)
1380
+
1381
+
1382
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1383
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1384
+
1385
+
1386
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1387
+ Served asset /jquery.js - 304 Not Modified (0ms)
1388
+
1389
+
1390
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1391
+ Served asset /application.css - 304 Not Modified (0ms)
1392
+
1393
+
1394
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1395
+ Served asset /users.css - 304 Not Modified (0ms)
1396
+
1397
+
1398
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1399
+ Served asset /posts.js - 304 Not Modified (0ms)
1400
+
1401
+
1402
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1403
+ Served asset /users.js - 304 Not Modified (0ms)
1404
+
1405
+
1406
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:02 -0500 2011
1407
+ Served asset /application.js - 304 Not Modified (0ms)
1408
+
1409
+
1410
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1411
+ Processing by UsersController#index as HTML
1412
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1413
+ Rendered users/index.html.erb within layouts/application (51.6ms)
1414
+ Completed 200 OK in 83ms (Views: 81.4ms | ActiveRecord: 0.1ms)
1415
+
1416
+
1417
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1418
+ Served asset /application.css - 304 Not Modified (0ms)
1419
+
1420
+
1421
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1422
+ Served asset /posts.css - 304 Not Modified (5ms)
1423
+
1424
+
1425
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1426
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1427
+
1428
+
1429
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1430
+ Served asset /users.css - 304 Not Modified (2ms)
1431
+
1432
+
1433
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1434
+ Served asset /jquery.js - 304 Not Modified (7ms)
1435
+
1436
+
1437
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1438
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1439
+
1440
+
1441
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1442
+ Served asset /posts.js - 304 Not Modified (10ms)
1443
+
1444
+
1445
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1446
+ Served asset /users.js - 304 Not Modified (2ms)
1447
+
1448
+
1449
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:14 -0500 2011
1450
+ Served asset /application.js - 304 Not Modified (0ms)
1451
+
1452
+
1453
+ Started GET "/slug" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1454
+ Processing by PermalinksController#show as HTML
1455
+ Parameters: {"slug"=>"slug"}
1456
+ Permalink Load (0.3ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
1457
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
1458
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1459
+ Rendered posts/_post.html.erb (19.3ms)
1460
+ Completed 200 OK in 136ms (Views: 80.2ms | ActiveRecord: 1.0ms)
1461
+
1462
+
1463
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1464
+ Served asset /posts.css - 304 Not Modified (0ms)
1465
+
1466
+
1467
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1468
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1469
+
1470
+
1471
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1472
+ Served asset /application.css - 304 Not Modified (0ms)
1473
+
1474
+
1475
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1476
+ Served asset /users.css - 304 Not Modified (0ms)
1477
+
1478
+
1479
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1480
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1481
+
1482
+
1483
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1484
+ Served asset /jquery.js - 304 Not Modified (0ms)
1485
+
1486
+
1487
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1488
+ Served asset /posts.js - 304 Not Modified (0ms)
1489
+
1490
+
1491
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1492
+ Served asset /users.js - 304 Not Modified (0ms)
1493
+
1494
+
1495
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:19:31 -0500 2011
1496
+ Served asset /application.js - 304 Not Modified (0ms)
1497
+
1498
+
1499
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1500
+ Processing by UsersController#index as HTML
1501
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1502
+ Rendered users/index.html.erb within layouts/application (0.4ms)
1503
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.2ms)
1504
+
1505
+
1506
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1507
+ Served asset /users.css - 304 Not Modified (0ms)
1508
+
1509
+
1510
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1511
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1512
+
1513
+
1514
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1515
+ Served asset /posts.css - 304 Not Modified (0ms)
1516
+
1517
+
1518
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1519
+ Served asset /application.css - 304 Not Modified (0ms)
1520
+
1521
+
1522
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1523
+ Served asset /jquery.js - 304 Not Modified (0ms)
1524
+
1525
+
1526
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1527
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1528
+
1529
+
1530
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1531
+ Served asset /posts.js - 304 Not Modified (0ms)
1532
+
1533
+
1534
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1535
+ Served asset /users.js - 304 Not Modified (0ms)
1536
+
1537
+
1538
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 18:20:09 -0500 2011
1539
+ Served asset /application.js - 304 Not Modified (0ms)
1540
+
1541
+
1542
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:20:32 -0500 2011
1543
+ Processing by PermalinksController#show as HTML
1544
+ Parameters: {"slug"=>"users"}
1545
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1546
+ Completed 404 Not Found in 1ms
1547
+
1548
+ ActiveRecord::RecordNotFound (Couldn't find Permalink with slug = users):
1549
+
1550
+
1551
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1552
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1553
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (41.1ms)
1554
+
1555
+
1556
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:22:46 -0500 2011
1557
+ Processing by PermalinksController#show as HTML
1558
+ Parameters: {"slug"=>"users"}
1559
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1560
+ Completed 500 Internal Server Error in 1ms
1561
+
1562
+ ArgumentError (wrong number of arguments (0 for 1)):
1563
+
1564
+
1565
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1566
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1567
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.2ms)
1568
+
1569
+
1570
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:23:28 -0500 2011
1571
+ Processing by PermalinksController#show as HTML
1572
+ Parameters: {"slug"=>"users"}
1573
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1574
+ Completed 500 Internal Server Error in 1ms
1575
+
1576
+ NoMethodError (undefined method `RoutingError' for ActionController:Module):
1577
+
1578
+
1579
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1580
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1581
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.8ms)
1582
+
1583
+
1584
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 18:23:46 -0500 2011
1585
+ Processing by PermalinksController#show as HTML
1586
+ Parameters: {"slug"=>"users"}
1587
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1588
+ Completed 404 Not Found in 2ms
1589
+
1590
+ ActionController::RoutingError (No match for slug: users):
1591
+
1592
+
1593
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1594
+
1595
+
1596
+ Started GET "/rails/info/properties" for 127.0.0.1 at Tue Nov 08 18:29:53 -0500 2011
1597
+ Processing by PermalinksController#show as HTML
1598
+ Parameters: {"slug"=>"rails/info/properties"}
1599
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'rails/info/properties' LIMIT 1
1600
+ Completed 404 Not Found in 2ms
1601
+
1602
+ ActionController::RoutingError (No match for slug: rails/info/properties):
1603
+
1604
+
1605
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1606
+
1607
+
1608
+ Started GET "/rails/info/properties" for 127.0.0.1 at Tue Nov 08 18:30:05 -0500 2011
1609
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1610
+ Processing by Rails::InfoController#properties as HTML
1611
+ Rendered inline template (0.3ms)
1612
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1613
+
1614
+
1615
+ Started GET "/posts" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1616
+ Processing by PostsController#index as HTML
1617
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1618
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1619
+ Rendered posts/index.html.erb within layouts/application (26.3ms)
1620
+ Completed 200 OK in 58ms (Views: 56.7ms | ActiveRecord: 0.7ms)
1621
+
1622
+
1623
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1624
+ Served asset /jquery.js - 200 OK (14ms)
1625
+
1626
+
1627
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1628
+ Served asset /jquery_ujs.js - 200 OK (3ms)
1629
+
1630
+
1631
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1632
+ Served asset /posts.css - 304 Not Modified (2ms)
1633
+
1634
+
1635
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1636
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1637
+
1638
+
1639
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1640
+ Served asset /users.css - 304 Not Modified (2ms)
1641
+
1642
+
1643
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1644
+ Served asset /posts.js - 304 Not Modified (9ms)
1645
+
1646
+
1647
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1648
+ Served asset /users.js - 304 Not Modified (1ms)
1649
+
1650
+
1651
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 19:21:22 -0500 2011
1652
+ Served asset /application.js - 200 OK (0ms)
1653
+
1654
+
1655
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 19:21:30 -0500 2011
1656
+ Processing by PermalinksController#show as HTML
1657
+ Parameters: {"slug"=>"users"}
1658
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1659
+ Rendered text template (0.0ms)
1660
+ Completed 500 Internal Server Error in 41ms
1661
+
1662
+ NoMethodError (undefined method `content_type' for nil:NilClass):
1663
+
1664
+
1665
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1666
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1667
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.1ms)
1668
+
1669
+
1670
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 19:22:23 -0500 2011
1671
+ Processing by PermalinksController#show as HTML
1672
+ Parameters: {"slug"=>"users"}
1673
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1674
+ Rendered text template (0.0ms)
1675
+ Completed 500 Internal Server Error in 4ms
1676
+
1677
+ NoMethodError (undefined method `content_type' for nil:NilClass):
1678
+
1679
+
1680
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1681
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1682
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.0ms)
1683
+
1684
+
1685
+ Started GET "/users" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1686
+ Processing by PermalinksController#show as HTML
1687
+ Parameters: {"slug"=>"users"}
1688
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1689
+ Rendered text template (0.0ms)
1690
+ Completed 404 Not Found in 5ms (Views: 2.9ms | ActiveRecord: 0.2ms)
1691
+ Processing by UsersController#index as HTML
1692
+ Parameters: {"slug"=>"users"}
1693
+ User Load (0.1ms) SELECT "users".* FROM "users"
1694
+ Rendered users/index.html.erb within layouts/application (0.8ms)
1695
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms)
1696
+
1697
+
1698
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1699
+ Served asset /application.css - 200 OK (0ms)
1700
+
1701
+
1702
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1703
+ Served asset /posts.css - 304 Not Modified (0ms)
1704
+
1705
+
1706
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1707
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1708
+
1709
+
1710
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1711
+ Served asset /users.css - 304 Not Modified (0ms)
1712
+
1713
+
1714
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1715
+ Served asset /jquery.js - 304 Not Modified (0ms)
1716
+
1717
+
1718
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1719
+ Served asset /posts.js - 304 Not Modified (0ms)
1720
+
1721
+
1722
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1723
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1724
+
1725
+
1726
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1727
+ Served asset /users.js - 304 Not Modified (0ms)
1728
+
1729
+
1730
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Nov 08 19:22:54 -0500 2011
1731
+ Served asset /application.js - 304 Not Modified (0ms)
1732
+
1733
+
1734
+ Started GET "/" for 127.0.0.1 at Sun Nov 13 15:33:25 -0500 2011
1735
+
1736
+ ActionController::RoutingError (No route matches [GET] "/"):
1737
+
1738
+
1739
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
1740
+
1741
+
1742
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1743
+ Processing by PostsController#index as HTML
1744
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" 
1745
+ Permalink Load (0.5ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1746
+ Rendered posts/index.html.erb within layouts/application (29.8ms)
1747
+ Completed 200 OK in 89ms (Views: 86.9ms | ActiveRecord: 1.3ms)
1748
+
1749
+
1750
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1751
+ Served asset /users.css - 200 OK (5ms)
1752
+
1753
+
1754
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1755
+ Served asset /scaffold.css - 200 OK (3ms)
1756
+
1757
+
1758
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1759
+ Served asset /posts.css - 200 OK (3ms)
1760
+
1761
+
1762
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1763
+ Served asset /posts.js - 200 OK (3ms)
1764
+
1765
+
1766
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1767
+ Served asset /jquery.js - 200 OK (7ms)
1768
+
1769
+
1770
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1771
+ Served asset /jquery_ujs.js - 200 OK (6ms)
1772
+
1773
+
1774
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:33:30 -0500 2011
1775
+ Served asset /users.js - 200 OK (8ms)
1776
+
1777
+
1778
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:33:37 -0500 2011
1779
+ Processing by PermalinksController#show as HTML
1780
+ Parameters: {"slug"=>"slug"}
1781
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
1782
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
1783
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1784
+ Rendered posts/_post.html.erb (11.4ms)
1785
+ Completed 200 OK in 71ms (Views: 51.5ms | ActiveRecord: 1.0ms)
1786
+
1787
+
1788
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 15:33:41 -0500 2011
1789
+ Processing by PermalinksController#show as HTML
1790
+ Parameters: {"slug"=>"users"}
1791
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1792
+ Rendered text template (0.0ms)
1793
+ Completed 404 Not Found in 6ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1794
+ Processing by UsersController#index as HTML
1795
+ Parameters: {"slug"=>"users"}
1796
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1797
+ Rendered users/index.html.erb within layouts/application (1.1ms)
1798
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms)
1799
+
1800
+
1801
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1802
+ Processing by PermalinksController#show as HTML
1803
+ Parameters: {"slug"=>"users"}
1804
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1805
+ Rendered text template (0.0ms)
1806
+ Completed 404 Not Found in 72ms (Views: 8.8ms | ActiveRecord: 0.2ms)
1807
+ Processing by UsersController#index as HTML
1808
+ Parameters: {"slug"=>"users"}
1809
+ User Load (0.1ms) SELECT "users".* FROM "users"
1810
+ Rendered users/index.html.erb within layouts/application (2.5ms)
1811
+ Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.1ms)
1812
+
1813
+
1814
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1815
+ Served asset /application.css - 200 OK (0ms)
1816
+
1817
+
1818
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1819
+ Served asset /scaffold.css - 304 Not Modified (4ms)
1820
+
1821
+
1822
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1823
+ Served asset /posts.css - 304 Not Modified (3ms)
1824
+
1825
+
1826
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1827
+ Served asset /users.css - 304 Not Modified (2ms)
1828
+
1829
+
1830
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1831
+ Served asset /jquery.js - 304 Not Modified (7ms)
1832
+
1833
+
1834
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1835
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1836
+
1837
+
1838
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1839
+ Served asset /posts.js - 304 Not Modified (2ms)
1840
+
1841
+
1842
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1843
+ Served asset /users.js - 304 Not Modified (3ms)
1844
+
1845
+
1846
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:20 -0500 2011
1847
+ Served asset /application.js - 200 OK (0ms)
1848
+
1849
+
1850
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 15:39:34 -0500 2011
1851
+ Processing by PermalinksController#show as HTML
1852
+ Parameters: {"slug"=>"users"}
1853
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
1854
+ Rendered text template (0.0ms)
1855
+ Completed 404 Not Found in 72ms (Views: 11.1ms | ActiveRecord: 0.2ms)
1856
+ Processing by UsersController#index as HTML
1857
+ Parameters: {"slug"=>"users"}
1858
+ User Load (0.1ms) SELECT "users".* FROM "users"
1859
+ Rendered users/index.html.erb within layouts/application (2.5ms)
1860
+ Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.1ms)
1861
+
1862
+
1863
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1864
+ Served asset /posts.css - 304 Not Modified (4ms)
1865
+
1866
+
1867
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1868
+ Served asset /application.css - 304 Not Modified (0ms)
1869
+
1870
+
1871
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1872
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1873
+
1874
+
1875
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1876
+ Served asset /jquery.js - 304 Not Modified (13ms)
1877
+
1878
+
1879
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1880
+ Served asset /users.css - 304 Not Modified (1ms)
1881
+
1882
+
1883
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1884
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1885
+
1886
+
1887
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1888
+ Served asset /posts.js - 304 Not Modified (2ms)
1889
+
1890
+
1891
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1892
+ Served asset /users.js - 304 Not Modified (1ms)
1893
+
1894
+
1895
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:39:35 -0500 2011
1896
+ Served asset /application.js - 304 Not Modified (0ms)
1897
+
1898
+
1899
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1900
+ Processing by PermalinksController#show as HTML
1901
+ Parameters: {"slug"=>"slug"}
1902
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
1903
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
1904
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1905
+ Rendered posts/_post.html.erb (21.0ms)
1906
+ Completed 200 OK in 104ms (Views: 28.1ms | ActiveRecord: 1.0ms)
1907
+
1908
+
1909
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1910
+ Served asset /posts.css - 304 Not Modified (0ms)
1911
+
1912
+
1913
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1914
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1915
+
1916
+
1917
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1918
+ Served asset /application.css - 304 Not Modified (0ms)
1919
+
1920
+
1921
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1922
+ Served asset /users.css - 304 Not Modified (0ms)
1923
+
1924
+
1925
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1926
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1927
+
1928
+
1929
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1930
+ Served asset /jquery.js - 304 Not Modified (0ms)
1931
+
1932
+
1933
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1934
+ Served asset /posts.js - 304 Not Modified (0ms)
1935
+
1936
+
1937
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1938
+ Served asset /users.js - 304 Not Modified (0ms)
1939
+
1940
+
1941
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:01 -0500 2011
1942
+ Served asset /application.js - 304 Not Modified (0ms)
1943
+
1944
+
1945
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1946
+ Processing by PostsController#index as HTML
1947
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
1948
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
1949
+ Rendered posts/index.html.erb within layouts/application (26.8ms)
1950
+ Completed 200 OK in 119ms (Views: 116.6ms | ActiveRecord: 0.7ms)
1951
+
1952
+
1953
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1954
+ Served asset /application.css - 304 Not Modified (0ms)
1955
+
1956
+
1957
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1958
+ Served asset /posts.css - 304 Not Modified (2ms)
1959
+
1960
+
1961
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1962
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1963
+
1964
+
1965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1966
+ Served asset /jquery.js - 304 Not Modified (9ms)
1967
+
1968
+
1969
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1970
+ Served asset /users.css - 304 Not Modified (1ms)
1971
+
1972
+
1973
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1974
+ Served asset /scaffold.css - 304 Not Modified (1ms)
1975
+
1976
+
1977
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1978
+ Served asset /posts.js - 304 Not Modified (6ms)
1979
+
1980
+
1981
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1982
+ Served asset /users.js - 304 Not Modified (2ms)
1983
+
1984
+
1985
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:47 -0500 2011
1986
+ Served asset /application.js - 304 Not Modified (2ms)
1987
+
1988
+
1989
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
1990
+ Processing by UsersController#index as HTML
1991
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1992
+ Rendered users/index.html.erb within layouts/application (0.7ms)
1993
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms)
1994
+
1995
+
1996
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
1997
+ Served asset /application.css - 304 Not Modified (0ms)
1998
+
1999
+
2000
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2001
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2002
+
2003
+
2004
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2005
+ Served asset /jquery.js - 304 Not Modified (0ms)
2006
+
2007
+
2008
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2009
+ Served asset /users.css - 304 Not Modified (0ms)
2010
+
2011
+
2012
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2013
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2014
+
2015
+
2016
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2017
+ Served asset /posts.css - 304 Not Modified (0ms)
2018
+
2019
+
2020
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2021
+ Served asset /posts.js - 304 Not Modified (0ms)
2022
+
2023
+
2024
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2025
+ Served asset /users.js - 304 Not Modified (0ms)
2026
+
2027
+
2028
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:40:53 -0500 2011
2029
+ Served asset /application.js - 304 Not Modified (3ms)
2030
+
2031
+
2032
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:40:57 -0500 2011
2033
+
2034
+ ActionController::RoutingError (No route matches [GET] "/slug"):
2035
+
2036
+
2037
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
2038
+
2039
+
2040
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:41:54 -0500 2011
2041
+
2042
+
2043
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:42:10 -0500 2011
2044
+
2045
+
2046
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 15:42:11 -0500 2011
2047
+
2048
+
2049
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 15:42:13 -0500 2011
2050
+ Processing by PostsController#index as HTML
2051
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2052
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2053
+ Rendered posts/index.html.erb within layouts/application (26.2ms)
2054
+ Completed 200 OK in 62ms (Views: 60.2ms | ActiveRecord: 0.7ms)
2055
+
2056
+
2057
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2058
+ Served asset /users.css - 304 Not Modified (3ms)
2059
+
2060
+
2061
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2062
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2063
+
2064
+
2065
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2066
+ Served asset /application.css - 304 Not Modified (0ms)
2067
+
2068
+
2069
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2070
+ Served asset /posts.css - 304 Not Modified (2ms)
2071
+
2072
+
2073
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2074
+ Served asset /jquery.js - 304 Not Modified (6ms)
2075
+
2076
+
2077
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2078
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2079
+
2080
+
2081
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2082
+ Served asset /posts.js - 304 Not Modified (2ms)
2083
+
2084
+
2085
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2086
+ Served asset /users.js - 304 Not Modified (3ms)
2087
+
2088
+
2089
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:42:14 -0500 2011
2090
+ Served asset /application.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:43:30 -0500 2011
2094
+
2095
+ ActionController::RoutingError (No route matches [GET] "/slug"):
2096
+
2097
+
2098
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms)
2099
+
2100
+
2101
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:43:52 -0500 2011
2102
+
2103
+ ActionController::RoutingError (No route matches [GET] "/slug"):
2104
+
2105
+
2106
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
2107
+
2108
+
2109
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:44:01 -0500 2011
2110
+ Processing by PermalinksController#show as HTML
2111
+ Parameters: {"slug"=>"slug"}
2112
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2113
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2114
+ Rendered posts/_post.html.erb (55.8ms)
2115
+ Completed 500 Internal Server Error in 135ms
2116
+
2117
+ ActionView::Template::Error (undefined local variable or method `root_path' for #<#<Class:0x1035347e8>:0x10352f608>):
2118
+ 1: <p id="notice"><%= notice %></p>
2119
+ 2:
2120
+ 3: <p><%= link_to "Home", root_path %></p>
2121
+ 4:
2122
+ 5: <p>
2123
+ 6: <b>Title:</b>
2124
+ app/views/posts/_post.html.erb:3:in `_app_views_posts__post_html_erb___4332477_2175264780'
2125
+
2126
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2127
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
2128
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
2129
+
2130
+
2131
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 15:44:11 -0500 2011
2132
+ Processing by PostsController#show as HTML
2133
+ Parameters: {"id"=>"1"}
2134
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
2135
+ Rendered posts/_post.html.erb (81.1ms)
2136
+ Rendered posts/show.html.erb within layouts/application (85.4ms)
2137
+ Completed 500 Internal Server Error in 108ms
2138
+
2139
+ ActionView::Template::Error (undefined local variable or method `root_path' for #<#<Class:0x1031e80a8>:0x1031e3c88>):
2140
+ 1: <p id="notice"><%= notice %></p>
2141
+ 2:
2142
+ 3: <p><%= link_to "Home", root_path %></p>
2143
+ 4:
2144
+ 5: <p>
2145
+ 6: <b>Title:</b>
2146
+ app/views/posts/_post.html.erb:3:in `_app_views_posts__post_html_erb___4332477_2175264780'
2147
+ app/views/posts/show.html.erb:1:in `_app_views_posts_show_html_erb__663089073_2173636200'
2148
+ app/controllers/posts_controller.rb:18:in `show'
2149
+
2150
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2151
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
2152
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.2ms)
2153
+
2154
+
2155
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2156
+ Processing by PostsController#show as HTML
2157
+ Parameters: {"id"=>"1"}
2158
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
2159
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2160
+ Rendered posts/_post.html.erb (19.3ms)
2161
+ Rendered posts/show.html.erb within layouts/application (23.1ms)
2162
+ Completed 200 OK in 53ms (Views: 51.1ms | ActiveRecord: 0.7ms)
2163
+
2164
+
2165
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2166
+ Served asset /application.css - 304 Not Modified (0ms)
2167
+
2168
+
2169
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2170
+ Served asset /posts.css - 304 Not Modified (11ms)
2171
+
2172
+
2173
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2174
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2175
+
2176
+
2177
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2178
+ Served asset /users.css - 304 Not Modified (2ms)
2179
+
2180
+
2181
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2182
+ Served asset /jquery.js - 304 Not Modified (8ms)
2183
+
2184
+
2185
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2186
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2187
+
2188
+
2189
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2190
+ Served asset /posts.js - 304 Not Modified (3ms)
2191
+
2192
+
2193
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2194
+ Served asset /users.js - 304 Not Modified (1ms)
2195
+
2196
+
2197
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:51 -0500 2011
2198
+ Served asset /application.js - 304 Not Modified (0ms)
2199
+
2200
+
2201
+ Started GET "/" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2202
+ Processing by PostsController#index as HTML
2203
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2204
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2205
+ Rendered posts/index.html.erb within layouts/application (17.8ms)
2206
+ Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 2.4ms)
2207
+
2208
+
2209
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2210
+ Served asset /users.css - 304 Not Modified (0ms)
2211
+
2212
+
2213
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2214
+ Served asset /jquery.js - 304 Not Modified (0ms)
2215
+
2216
+
2217
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2218
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2219
+
2220
+
2221
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2222
+ Served asset /posts.css - 304 Not Modified (0ms)
2223
+
2224
+
2225
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2226
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2227
+
2228
+
2229
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2230
+ Served asset /application.css - 304 Not Modified (1ms)
2231
+
2232
+
2233
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2234
+ Served asset /posts.js - 304 Not Modified (0ms)
2235
+
2236
+
2237
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2238
+ Served asset /users.js - 304 Not Modified (0ms)
2239
+
2240
+
2241
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:44:59 -0500 2011
2242
+ Served asset /application.js - 304 Not Modified (0ms)
2243
+
2244
+
2245
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2246
+ Processing by PostsController#show as HTML
2247
+ Parameters: {"id"=>"1"}
2248
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
2249
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2250
+ Rendered posts/_post.html.erb (11.5ms)
2251
+ Rendered posts/show.html.erb within layouts/application (71.9ms)
2252
+ Completed 200 OK in 89ms (Views: 86.6ms | ActiveRecord: 0.7ms)
2253
+
2254
+
2255
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2256
+ Served asset /users.css - 304 Not Modified (0ms)
2257
+
2258
+
2259
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2260
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2261
+
2262
+
2263
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2264
+ Served asset /posts.css - 304 Not Modified (0ms)
2265
+
2266
+
2267
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2268
+ Served asset /application.css - 304 Not Modified (0ms)
2269
+
2270
+
2271
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2272
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2273
+
2274
+
2275
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2276
+ Served asset /jquery.js - 304 Not Modified (0ms)
2277
+
2278
+
2279
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2280
+ Served asset /posts.js - 304 Not Modified (0ms)
2281
+
2282
+
2283
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2284
+ Served asset /users.js - 304 Not Modified (0ms)
2285
+
2286
+
2287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:04 -0500 2011
2288
+ Served asset /application.js - 304 Not Modified (0ms)
2289
+
2290
+
2291
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2292
+ Processing by PermalinksController#show as HTML
2293
+ Parameters: {"slug"=>"slug"}
2294
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2295
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2296
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2297
+ Rendered posts/_post.html.erb (11.1ms)
2298
+ Completed 200 OK in 28ms (Views: 16.3ms | ActiveRecord: 0.9ms)
2299
+
2300
+
2301
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2302
+ Served asset /users.css - 304 Not Modified (0ms)
2303
+
2304
+
2305
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2306
+ Served asset /posts.css - 304 Not Modified (0ms)
2307
+
2308
+
2309
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2310
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2311
+
2312
+
2313
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2314
+ Served asset /jquery.js - 304 Not Modified (0ms)
2315
+
2316
+
2317
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2318
+ Served asset /application.css - 304 Not Modified (0ms)
2319
+
2320
+
2321
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2322
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2323
+
2324
+
2325
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2326
+ Served asset /posts.js - 304 Not Modified (0ms)
2327
+
2328
+
2329
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2330
+ Served asset /users.js - 304 Not Modified (0ms)
2331
+
2332
+
2333
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:45:07 -0500 2011
2334
+ Served asset /application.js - 304 Not Modified (0ms)
2335
+
2336
+
2337
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:56:06 -0500 2011
2338
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'lug') LIMIT 1
2339
+
2340
+ ActionController::RoutingError (No route matches [GET] "/slug"):
2341
+
2342
+
2343
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
2344
+
2345
+
2346
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:56:47 -0500 2011
2347
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2348
+ Processing by PermalinksController#show as HTML
2349
+ Parameters: {"slug"=>"slug"}
2350
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2351
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2352
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2353
+ Rendered posts/_post.html.erb (44.1ms)
2354
+ Completed 200 OK in 78ms (Views: 57.0ms | ActiveRecord: 0.8ms)
2355
+
2356
+
2357
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 15:58:34 -0500 2011
2358
+ Served asset /application.css - 304 Not Modified (0ms)
2359
+
2360
+
2361
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 15:58:37 -0500 2011
2362
+ Served asset /posts.css - 304 Not Modified (4ms)
2363
+
2364
+
2365
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 15:58:38 -0500 2011
2366
+ Served asset /scaffold.css - 304 Not Modified (3ms)
2367
+
2368
+
2369
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 15:58:39 -0500 2011
2370
+ Served asset /users.css - 304 Not Modified (3ms)
2371
+
2372
+
2373
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 15:58:41 -0500 2011
2374
+ Served asset /jquery.js - 304 Not Modified (9ms)
2375
+
2376
+
2377
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 15:58:42 -0500 2011
2378
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2379
+
2380
+
2381
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 15:58:43 -0500 2011
2382
+ Served asset /posts.js - 304 Not Modified (2ms)
2383
+
2384
+
2385
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 15:58:44 -0500 2011
2386
+ Served asset /users.js - 304 Not Modified (2ms)
2387
+
2388
+
2389
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 15:58:45 -0500 2011
2390
+ Served asset /application.js - 304 Not Modified (0ms)
2391
+
2392
+
2393
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 15:58:51 -0500 2011
2394
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2395
+ Processing by PermalinksController#show as HTML
2396
+ Parameters: {"slug"=>"slug"}
2397
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2398
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2399
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2400
+ Rendered posts/_post.html.erb (13.4ms)
2401
+ Completed 200 OK in 94ms (Views: 79.9ms | ActiveRecord: 0.8ms)
2402
+
2403
+
2404
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:05:26 -0500 2011
2405
+ Served asset /application.css - 304 Not Modified (0ms)
2406
+
2407
+
2408
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:05:27 -0500 2011
2409
+ Served asset /posts.css - 304 Not Modified (55ms)
2410
+
2411
+
2412
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:05:30 -0500 2011
2413
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2414
+
2415
+
2416
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:05:31 -0500 2011
2417
+ Served asset /users.css - 304 Not Modified (0ms)
2418
+
2419
+
2420
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:05:31 -0500 2011
2421
+ Served asset /jquery.js - 304 Not Modified (0ms)
2422
+
2423
+
2424
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:05:31 -0500 2011
2425
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2426
+
2427
+
2428
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:05:32 -0500 2011
2429
+ Served asset /posts.js - 304 Not Modified (0ms)
2430
+
2431
+
2432
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:05:32 -0500 2011
2433
+ Served asset /users.js - 304 Not Modified (0ms)
2434
+
2435
+
2436
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:05:32 -0500 2011
2437
+ Served asset /application.js - 304 Not Modified (0ms)
2438
+
2439
+
2440
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:05:59 -0500 2011
2441
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2442
+ Processing by PermalinksController#show as HTML
2443
+ Parameters: {"slug"=>"slug"}
2444
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2445
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2446
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2447
+ Rendered posts/_post.html.erb (14.1ms)
2448
+ Completed 200 OK in 96ms (Views: 20.3ms | ActiveRecord: 0.9ms)
2449
+
2450
+
2451
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:07 -0500 2011
2452
+ Served asset /users.css - 304 Not Modified (0ms)
2453
+
2454
+
2455
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:09 -0500 2011
2456
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2457
+
2458
+
2459
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:09 -0500 2011
2460
+ Served asset /application.css - 304 Not Modified (0ms)
2461
+
2462
+
2463
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:09 -0500 2011
2464
+ Served asset /jquery.js - 304 Not Modified (0ms)
2465
+
2466
+
2467
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:09 -0500 2011
2468
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2469
+
2470
+
2471
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:10 -0500 2011
2472
+ Served asset /posts.js - 304 Not Modified (0ms)
2473
+
2474
+
2475
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:10 -0500 2011
2476
+ Served asset /users.js - 304 Not Modified (0ms)
2477
+
2478
+
2479
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:10 -0500 2011
2480
+ Served asset /application.js - 304 Not Modified (1ms)
2481
+
2482
+
2483
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:06:19 -0500 2011
2484
+  (0.5ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2485
+ Processing by PermalinksController#show as HTML
2486
+ Parameters: {"slug"=>"slug"}
2487
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2488
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2489
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2490
+ Rendered posts/_post.html.erb (13.2ms)
2491
+ Completed 200 OK in 34ms (Views: 18.8ms | ActiveRecord: 0.8ms)
2492
+
2493
+
2494
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2495
+ Served asset /application.css - 304 Not Modified (0ms)
2496
+
2497
+
2498
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2499
+ Served asset /posts.css - 200 OK (2ms)
2500
+
2501
+
2502
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2503
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2504
+
2505
+
2506
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2507
+ Served asset /users.css - 304 Not Modified (0ms)
2508
+
2509
+
2510
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2511
+ Served asset /jquery.js - 304 Not Modified (0ms)
2512
+
2513
+
2514
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2515
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2516
+
2517
+
2518
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2519
+ Served asset /posts.js - 304 Not Modified (0ms)
2520
+
2521
+
2522
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2523
+ Served asset /users.js - 304 Not Modified (0ms)
2524
+
2525
+
2526
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:06:25 -0500 2011
2527
+ Served asset /application.js - 304 Not Modified (0ms)
2528
+
2529
+
2530
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:08:21 -0500 2011
2531
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2532
+ Processing by PermalinksController#show as HTML
2533
+ Parameters: {"slug"=>"slug"}
2534
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2535
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2536
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2537
+ Rendered posts/_post.html.erb (13.8ms)
2538
+ Completed 200 OK in 35ms (Views: 19.3ms | ActiveRecord: 0.8ms)
2539
+
2540
+
2541
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2542
+ Served asset /application.css - 304 Not Modified (0ms)
2543
+
2544
+
2545
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2546
+ Served asset /posts.css - 304 Not Modified (0ms)
2547
+
2548
+
2549
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2550
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2551
+
2552
+
2553
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2554
+ Served asset /users.css - 304 Not Modified (0ms)
2555
+
2556
+
2557
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2558
+ Served asset /jquery.js - 304 Not Modified (0ms)
2559
+
2560
+
2561
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2562
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2563
+
2564
+
2565
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2566
+ Served asset /posts.js - 304 Not Modified (0ms)
2567
+
2568
+
2569
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2570
+ Served asset /users.js - 304 Not Modified (0ms)
2571
+
2572
+
2573
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:08:30 -0500 2011
2574
+ Served asset /application.js - 304 Not Modified (1ms)
2575
+
2576
+
2577
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:09:45 -0500 2011
2578
+  (0.2ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2579
+ Processing by PermalinksController#show as HTML
2580
+ Parameters: {"slug"=>"slug"}
2581
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2582
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2583
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2584
+ Rendered posts/_post.html.erb (15.2ms)
2585
+ Completed 200 OK in 39ms (Views: 23.4ms | ActiveRecord: 0.8ms)
2586
+
2587
+
2588
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2589
+ Served asset /users.css - 304 Not Modified (0ms)
2590
+
2591
+
2592
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2593
+ Served asset /jquery.js - 304 Not Modified (0ms)
2594
+
2595
+
2596
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2597
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2598
+
2599
+
2600
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2601
+ Served asset /posts.css - 304 Not Modified (0ms)
2602
+
2603
+
2604
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2605
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2606
+
2607
+
2608
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2609
+ Served asset /application.css - 304 Not Modified (0ms)
2610
+
2611
+
2612
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2613
+ Served asset /posts.js - 304 Not Modified (0ms)
2614
+
2615
+
2616
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2617
+ Served asset /users.js - 304 Not Modified (0ms)
2618
+
2619
+
2620
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:09:53 -0500 2011
2621
+ Served asset /application.js - 304 Not Modified (0ms)
2622
+
2623
+
2624
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2625
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2626
+ Processing by PermalinksController#show as HTML
2627
+ Parameters: {"slug"=>"slug"}
2628
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2629
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2630
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2631
+ Rendered posts/_post.html.erb (13.0ms)
2632
+ Completed 200 OK in 33ms (Views: 18.8ms | ActiveRecord: 0.8ms)
2633
+
2634
+
2635
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2636
+ Served asset /users.css - 304 Not Modified (0ms)
2637
+
2638
+
2639
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2640
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2641
+
2642
+
2643
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2644
+ Served asset /jquery.js - 304 Not Modified (0ms)
2645
+
2646
+
2647
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2648
+ Served asset /posts.css - 304 Not Modified (0ms)
2649
+
2650
+
2651
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2652
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2653
+
2654
+
2655
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2656
+ Served asset /application.css - 304 Not Modified (0ms)
2657
+
2658
+
2659
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2660
+ Served asset /posts.js - 304 Not Modified (0ms)
2661
+
2662
+
2663
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2664
+ Served asset /users.js - 304 Not Modified (0ms)
2665
+
2666
+
2667
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:10:22 -0500 2011
2668
+ Served asset /application.js - 304 Not Modified (1ms)
2669
+
2670
+
2671
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:12:24 -0500 2011
2672
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2673
+ Processing by PermalinksController#show as HTML
2674
+ Parameters: {"slug"=>"slug"}
2675
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2676
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2677
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2678
+ Rendered posts/_post.html.erb (70.1ms)
2679
+ Completed 200 OK in 90ms (Views: 75.7ms | ActiveRecord: 1.0ms)
2680
+
2681
+
2682
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2683
+ Served asset /application.css - 304 Not Modified (0ms)
2684
+
2685
+
2686
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2687
+ Served asset /posts.css - 304 Not Modified (0ms)
2688
+
2689
+
2690
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2691
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2692
+
2693
+
2694
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2695
+ Served asset /users.css - 304 Not Modified (0ms)
2696
+
2697
+
2698
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2699
+ Served asset /jquery.js - 304 Not Modified (0ms)
2700
+
2701
+
2702
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2703
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2704
+
2705
+
2706
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2707
+ Served asset /posts.js - 304 Not Modified (0ms)
2708
+
2709
+
2710
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2711
+ Served asset /users.js - 304 Not Modified (0ms)
2712
+
2713
+
2714
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:12:58 -0500 2011
2715
+ Served asset /application.js - 304 Not Modified (0ms)
2716
+
2717
+
2718
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2719
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug') LIMIT 1
2720
+ Processing by PermalinksController#show as HTML
2721
+ Parameters: {"slug"=>"slug"}
2722
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2723
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2724
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2725
+ Rendered posts/_post.html.erb (36.2ms)
2726
+ Completed 200 OK in 123ms (Views: 47.5ms | ActiveRecord: 0.7ms)
2727
+
2728
+
2729
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2730
+ Served asset /jquery.js - 304 Not Modified (5ms)
2731
+
2732
+
2733
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2734
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2735
+
2736
+
2737
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2738
+ Served asset /posts.css - 304 Not Modified (2ms)
2739
+
2740
+
2741
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2742
+ Served asset /application.css - 304 Not Modified (0ms)
2743
+
2744
+
2745
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2746
+ Served asset /users.css - 304 Not Modified (2ms)
2747
+
2748
+
2749
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2750
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2751
+
2752
+
2753
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2754
+ Served asset /posts.js - 304 Not Modified (2ms)
2755
+
2756
+
2757
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2758
+ Served asset /users.js - 304 Not Modified (5ms)
2759
+
2760
+
2761
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:14:14 -0500 2011
2762
+ Served asset /application.js - 304 Not Modified (1ms)
2763
+
2764
+
2765
+ Started GET "/slug" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2766
+ Processing by PermalinksController#show as HTML
2767
+ Parameters: {"slug"=>"slug"}
2768
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug' LIMIT 1
2769
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
2770
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
2771
+ Rendered posts/_post.html.erb (37.7ms)
2772
+ Completed 200 OK in 117ms (Views: 48.1ms | ActiveRecord: 0.9ms)
2773
+
2774
+
2775
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2776
+ Served asset /jquery.js - 304 Not Modified (3ms)
2777
+
2778
+
2779
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2780
+ Served asset /users.css - 304 Not Modified (3ms)
2781
+
2782
+
2783
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2784
+ Served asset /posts.css - 304 Not Modified (2ms)
2785
+
2786
+
2787
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2788
+ Served asset /application.css - 304 Not Modified (0ms)
2789
+
2790
+
2791
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2792
+ Served asset /scaffold.css - 304 Not Modified (3ms)
2793
+
2794
+
2795
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2796
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2797
+
2798
+
2799
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2800
+ Served asset /posts.js - 304 Not Modified (1ms)
2801
+
2802
+
2803
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2804
+ Served asset /users.js - 304 Not Modified (3ms)
2805
+
2806
+
2807
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:16:03 -0500 2011
2808
+ Served asset /application.js - 304 Not Modified (0ms)
2809
+
2810
+
2811
+ Started GET "/slug2" for 127.0.0.1 at Sun Nov 13 16:16:06 -0500 2011
2812
+ Processing by PermalinksController#show as HTML
2813
+ Parameters: {"slug"=>"slug2"}
2814
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug2' LIMIT 1
2815
+ Completed 500 Internal Server Error in 11ms
2816
+
2817
+ ActionView::MissingTemplate (Missing template permalinks/show, application/show with {:locale=>[:en, :en], :handlers=>[:builder, :erb], :formats=>[:html]}. Searched in:
2818
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views"
2819
+ ):
2820
+
2821
+
2822
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
2823
+
2824
+
2825
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 16:16:10 -0500 2011
2826
+ Processing by PermalinksController#show as HTML
2827
+ Parameters: {"slug"=>"users"}
2828
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
2829
+ Completed 500 Internal Server Error in 6ms
2830
+
2831
+ ActionView::MissingTemplate (Missing template permalinks/show, application/show with {:locale=>[:en, :en], :handlers=>[:builder, :erb], :formats=>[:html]}. Searched in:
2832
+ * "/Users/jcarlson/Projects/has_permalink/test/dummy/app/views"
2833
+ ):
2834
+
2835
+
2836
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
2837
+
2838
+
2839
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2840
+ Processing by PermalinksController#show as HTML
2841
+ Parameters: {"slug"=>"users"}
2842
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
2843
+ Rendered text template (0.0ms)
2844
+ Completed 404 Not Found in 68ms (Views: 9.2ms | ActiveRecord: 0.2ms)
2845
+ Processing by UsersController#index as HTML
2846
+ Parameters: {"slug"=>"users"}
2847
+ User Load (0.1ms) SELECT "users".* FROM "users"
2848
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2849
+ Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.1ms)
2850
+
2851
+
2852
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2853
+ Served asset /users.css - 304 Not Modified (2ms)
2854
+
2855
+
2856
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2857
+ Served asset /posts.css - 304 Not Modified (2ms)
2858
+
2859
+
2860
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2861
+ Served asset /application.css - 304 Not Modified (0ms)
2862
+
2863
+
2864
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2865
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2866
+
2867
+
2868
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2869
+ Served asset /jquery.js - 304 Not Modified (8ms)
2870
+
2871
+
2872
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2873
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2874
+
2875
+
2876
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2877
+ Served asset /users.js - 304 Not Modified (1ms)
2878
+
2879
+
2880
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2881
+ Served asset /application.js - 304 Not Modified (0ms)
2882
+
2883
+
2884
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:22:40 -0500 2011
2885
+ Served asset /posts.js - 304 Not Modified (1ms)
2886
+
2887
+
2888
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2889
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
2890
+ Processing by UsersController#index as HTML
2891
+ User Load (0.2ms) SELECT "users".* FROM "users"
2892
+ Rendered users/index.html.erb within layouts/application (2.3ms)
2893
+ Completed 200 OK in 88ms (Views: 32.8ms | ActiveRecord: 0.2ms)
2894
+
2895
+
2896
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2897
+ Served asset /application.css - 304 Not Modified (0ms)
2898
+
2899
+
2900
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2901
+ Served asset /posts.css - 304 Not Modified (3ms)
2902
+
2903
+
2904
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2905
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2906
+
2907
+
2908
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2909
+ Served asset /users.css - 304 Not Modified (5ms)
2910
+
2911
+
2912
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2913
+ Served asset /jquery.js - 304 Not Modified (10ms)
2914
+
2915
+
2916
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2917
+ Served asset /posts.js - 304 Not Modified (3ms)
2918
+
2919
+
2920
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:23:00 -0500 2011
2921
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
2922
+
2923
+
2924
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:23:01 -0500 2011
2925
+ Served asset /users.js - 304 Not Modified (3ms)
2926
+
2927
+
2928
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:23:01 -0500 2011
2929
+ Served asset /application.js - 304 Not Modified (0ms)
2930
+
2931
+
2932
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2933
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
2934
+ Processing by UsersController#index as HTML
2935
+ User Load (0.1ms) SELECT "users".* FROM "users"
2936
+ Rendered users/index.html.erb within layouts/application (0.4ms)
2937
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.2ms)
2938
+
2939
+
2940
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2941
+ Served asset /posts.css - 304 Not Modified (0ms)
2942
+
2943
+
2944
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2945
+ Served asset /application.css - 304 Not Modified (0ms)
2946
+
2947
+
2948
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2949
+ Served asset /jquery.js - 304 Not Modified (0ms)
2950
+
2951
+
2952
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2953
+ Served asset /users.css - 304 Not Modified (0ms)
2954
+
2955
+
2956
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2957
+ Served asset /scaffold.css - 304 Not Modified (0ms)
2958
+
2959
+
2960
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2961
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2962
+
2963
+
2964
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2965
+ Served asset /posts.js - 304 Not Modified (0ms)
2966
+
2967
+
2968
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2969
+ Served asset /users.js - 304 Not Modified (0ms)
2970
+
2971
+
2972
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:27 -0500 2011
2973
+ Served asset /application.js - 304 Not Modified (0ms)
2974
+
2975
+
2976
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 16:24:37 -0500 2011
2977
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
2978
+ Processing by UsersController#index as HTML
2979
+ User Load (0.2ms) SELECT "users".* FROM "users"
2980
+ Rendered users/index.html.erb within layouts/application (2.2ms)
2981
+ Completed 200 OK in 89ms (Views: 34.1ms | ActiveRecord: 0.2ms)
2982
+
2983
+
2984
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
2985
+ Served asset /application.css - 304 Not Modified (0ms)
2986
+
2987
+
2988
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
2989
+ Served asset /posts.css - 304 Not Modified (4ms)
2990
+
2991
+
2992
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
2993
+ Served asset /scaffold.css - 304 Not Modified (2ms)
2994
+
2995
+
2996
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
2997
+ Served asset /users.css - 304 Not Modified (2ms)
2998
+
2999
+
3000
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
3001
+ Served asset /jquery.js - 304 Not Modified (8ms)
3002
+
3003
+
3004
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
3005
+ Served asset /jquery_ujs.js - 304 Not Modified (12ms)
3006
+
3007
+
3008
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
3009
+ Served asset /posts.js - 304 Not Modified (3ms)
3010
+
3011
+
3012
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
3013
+ Served asset /users.js - 304 Not Modified (1ms)
3014
+
3015
+
3016
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:24:38 -0500 2011
3017
+ Served asset /application.js - 304 Not Modified (0ms)
3018
+
3019
+
3020
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3021
+ Processing by PostsController#edit as HTML
3022
+ Parameters: {"id"=>"1"}
3023
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
3024
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3025
+ Rendered posts/_form.html.erb (82.5ms)
3026
+ Rendered posts/edit.html.erb within layouts/application (87.0ms)
3027
+ Completed 200 OK in 130ms (Views: 128.3ms | ActiveRecord: 0.7ms)
3028
+
3029
+
3030
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3031
+ Served asset /application.css - 304 Not Modified (0ms)
3032
+
3033
+
3034
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3035
+ Served asset /posts.css - 304 Not Modified (0ms)
3036
+
3037
+
3038
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3039
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3040
+
3041
+
3042
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3043
+ Served asset /users.css - 304 Not Modified (0ms)
3044
+
3045
+
3046
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3047
+ Served asset /jquery.js - 304 Not Modified (0ms)
3048
+
3049
+
3050
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3051
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3052
+
3053
+
3054
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3055
+ Served asset /posts.js - 304 Not Modified (0ms)
3056
+
3057
+
3058
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3059
+ Served asset /users.js - 304 Not Modified (0ms)
3060
+
3061
+
3062
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:11 -0500 2011
3063
+ Served asset /application.js - 304 Not Modified (0ms)
3064
+
3065
+
3066
+ Started PUT "/posts/1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3067
+ Processing by PostsController#update as HTML
3068
+ Parameters: {"commit"=>"Update Post", "post"=>{"slug"=>"slug/with/nested/path", "title"=>"Title", "content"=>"content"}, "authenticity_token"=>"pCouvqRDapOcoUxNKWafYI7M8dZMLDKJanG77yRDqAI=", "utf8"=>"✓", "id"=>"1"}
3069
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
3070
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3071
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE ("permalinks"."slug" = 'slug/with/nested/path' AND "permalinks"."id" != 1) LIMIT 1
3072
+  (0.3ms) UPDATE "permalinks" SET "slug" = 'slug/with/nested/path', "updated_at" = '2011-11-13 21:25:18.652696' WHERE "permalinks"."id" = 1
3073
+ Redirected to http://living5to9.local:3000/posts/1
3074
+ Completed 302 Found in 95ms
3075
+
3076
+
3077
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3078
+ Processing by PostsController#show as HTML
3079
+ Parameters: {"id"=>"1"}
3080
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
3081
+ Permalink Load (0.3ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3082
+ Rendered posts/_post.html.erb (14.6ms)
3083
+ Rendered posts/show.html.erb within layouts/application (19.6ms)
3084
+ Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 1.2ms)
3085
+
3086
+
3087
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3088
+ Served asset /jquery.js - 304 Not Modified (0ms)
3089
+
3090
+
3091
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3092
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3093
+
3094
+
3095
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3096
+ Served asset /posts.css - 304 Not Modified (0ms)
3097
+
3098
+
3099
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3100
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3101
+
3102
+
3103
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3104
+ Served asset /users.css - 304 Not Modified (0ms)
3105
+
3106
+
3107
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3108
+ Served asset /application.css - 304 Not Modified (0ms)
3109
+
3110
+
3111
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3112
+ Served asset /posts.js - 304 Not Modified (0ms)
3113
+
3114
+
3115
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3116
+ Served asset /users.js - 304 Not Modified (0ms)
3117
+
3118
+
3119
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:18 -0500 2011
3120
+ Served asset /application.js - 304 Not Modified (0ms)
3121
+
3122
+
3123
+ Started GET "/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3124
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
3125
+ Processing by PermalinksController#show as HTML
3126
+ Parameters: {"slug"=>"slug/with/nested/path"}
3127
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3128
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3129
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3130
+ Rendered posts/_post.html.erb (11.5ms)
3131
+ Completed 200 OK in 101ms (Views: 16.4ms | ActiveRecord: 1.3ms)
3132
+
3133
+
3134
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3135
+ Served asset /application.css - 304 Not Modified (0ms)
3136
+
3137
+
3138
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3139
+ Served asset /posts.css - 304 Not Modified (0ms)
3140
+
3141
+
3142
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3143
+ Served asset /jquery.js - 304 Not Modified (0ms)
3144
+
3145
+
3146
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3147
+ Served asset /users.css - 304 Not Modified (0ms)
3148
+
3149
+
3150
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3151
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3152
+
3153
+
3154
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3155
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3156
+
3157
+
3158
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3159
+ Served asset /posts.js - 304 Not Modified (0ms)
3160
+
3161
+
3162
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3163
+ Served asset /users.js - 304 Not Modified (0ms)
3164
+
3165
+
3166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:27 -0500 2011
3167
+ Served asset /application.js - 304 Not Modified (0ms)
3168
+
3169
+
3170
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3171
+ Processing by PostsController#index as HTML
3172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3173
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3174
+ Rendered posts/index.html.erb within layouts/application (20.7ms)
3175
+ Completed 200 OK in 32ms (Views: 29.8ms | ActiveRecord: 0.7ms)
3176
+
3177
+
3178
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3179
+ Served asset /application.css - 304 Not Modified (0ms)
3180
+
3181
+
3182
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3183
+ Served asset /posts.css - 304 Not Modified (0ms)
3184
+
3185
+
3186
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3187
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3188
+
3189
+
3190
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3191
+ Served asset /users.css - 304 Not Modified (0ms)
3192
+
3193
+
3194
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3195
+ Served asset /jquery.js - 304 Not Modified (0ms)
3196
+
3197
+
3198
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3199
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3200
+
3201
+
3202
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3203
+ Served asset /posts.js - 304 Not Modified (0ms)
3204
+
3205
+
3206
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3207
+ Served asset /users.js - 304 Not Modified (0ms)
3208
+
3209
+
3210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:33 -0500 2011
3211
+ Served asset /application.js - 304 Not Modified (0ms)
3212
+
3213
+
3214
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3215
+ Processing by PostsController#index as HTML
3216
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3217
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3218
+ Rendered posts/index.html.erb within layouts/application (13.7ms)
3219
+ Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.7ms)
3220
+
3221
+
3222
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3223
+ Served asset /posts.css - 304 Not Modified (0ms)
3224
+
3225
+
3226
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3227
+ Served asset /application.css - 304 Not Modified (0ms)
3228
+
3229
+
3230
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3231
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3232
+
3233
+
3234
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3235
+ Served asset /users.css - 304 Not Modified (0ms)
3236
+
3237
+
3238
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3239
+ Served asset /jquery.js - 304 Not Modified (0ms)
3240
+
3241
+
3242
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3243
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3244
+
3245
+
3246
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3247
+ Served asset /posts.js - 304 Not Modified (0ms)
3248
+
3249
+
3250
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3251
+ Served asset /users.js - 304 Not Modified (0ms)
3252
+
3253
+
3254
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:25:39 -0500 2011
3255
+ Served asset /application.js - 304 Not Modified (0ms)
3256
+
3257
+
3258
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3259
+ Processing by PostsController#index as HTML
3260
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
3261
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3262
+ Rendered posts/index.html.erb within layouts/application (26.2ms)
3263
+ Completed 200 OK in 111ms (Views: 109.2ms | ActiveRecord: 0.7ms)
3264
+
3265
+
3266
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3267
+ Served asset /jquery.js - 304 Not Modified (2ms)
3268
+
3269
+
3270
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3271
+ Served asset /users.css - 304 Not Modified (7ms)
3272
+
3273
+
3274
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3275
+ Served asset /scaffold.css - 304 Not Modified (2ms)
3276
+
3277
+
3278
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3279
+ Served asset /posts.css - 304 Not Modified (3ms)
3280
+
3281
+
3282
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3283
+ Served asset /application.css - 304 Not Modified (0ms)
3284
+
3285
+
3286
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3287
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
3288
+
3289
+
3290
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3291
+ Served asset /posts.js - 304 Not Modified (2ms)
3292
+
3293
+
3294
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3295
+ Served asset /users.js - 304 Not Modified (6ms)
3296
+
3297
+
3298
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:29:27 -0500 2011
3299
+ Served asset /application.js - 304 Not Modified (0ms)
3300
+
3301
+
3302
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:29:37 -0500 2011
3303
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = '/slug/with/nested/path') LIMIT 1
3304
+
3305
+ ActionController::RoutingError (No route matches [GET] "/p/slug/with/nested/path"):
3306
+
3307
+
3308
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
3309
+
3310
+
3311
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:29:52 -0500 2011
3312
+ CACHE (0.0ms) SELECT 1 FROM "permalinks" WHERE (slug = '/slug/with/nested/path') LIMIT 1
3313
+
3314
+ ActionController::RoutingError (No route matches [GET] "/p/slug/with/nested/path"):
3315
+
3316
+
3317
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
3318
+
3319
+
3320
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:30:04 -0500 2011
3321
+ CACHE (0.0ms) SELECT 1 FROM "permalinks" WHERE (slug = '/slug/with/nested/path') LIMIT 1
3322
+
3323
+ ActionController::RoutingError (No route matches [GET] "/p/slug/with/nested/path"):
3324
+
3325
+
3326
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
3327
+
3328
+
3329
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:36:40 -0500 2011
3330
+
3331
+ NoMethodError (undefined method `env' for #<HasPermalink::SlugWall:0x1031a9240>):
3332
+
3333
+
3334
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3335
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
3336
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms)
3337
+
3338
+
3339
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:37:03 -0500 2011
3340
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = '/') LIMIT 1
3341
+
3342
+ ActionController::RoutingError (No route matches [GET] "/p/slug/with/nested/path"):
3343
+
3344
+
3345
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.1ms)
3346
+
3347
+
3348
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:37:50 -0500 2011
3349
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = '/') LIMIT 1
3350
+
3351
+ ActionController::RoutingError (No route matches [GET] "/p/slug/with/nested/path"):
3352
+
3353
+
3354
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
3355
+
3356
+
3357
+ Started GET "/p/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3358
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
3359
+ Processing by PermalinksController#show as HTML
3360
+ Parameters: {"slug"=>"slug/with/nested/path"}
3361
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3362
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3363
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3364
+ Rendered posts/_post.html.erb (35.5ms)
3365
+ Completed 200 OK in 118ms (Views: 46.5ms | ActiveRecord: 0.8ms)
3366
+
3367
+
3368
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3369
+ Served asset /application.css - 304 Not Modified (0ms)
3370
+
3371
+
3372
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3373
+ Served asset /posts.css - 304 Not Modified (5ms)
3374
+
3375
+
3376
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3377
+ Served asset /scaffold.css - 304 Not Modified (5ms)
3378
+
3379
+
3380
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3381
+ Served asset /posts.js - 304 Not Modified (2ms)
3382
+
3383
+
3384
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3385
+ Served asset /users.css - 304 Not Modified (2ms)
3386
+
3387
+
3388
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3389
+ Served asset /jquery.js - 304 Not Modified (5ms)
3390
+
3391
+
3392
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3393
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
3394
+
3395
+
3396
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3397
+ Served asset /users.js - 304 Not Modified (2ms)
3398
+
3399
+
3400
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:00 -0500 2011
3401
+ Served asset /application.js - 304 Not Modified (0ms)
3402
+
3403
+
3404
+ Started GET "/permalink/engine/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3405
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
3406
+ Processing by PermalinksController#show as HTML
3407
+ Parameters: {"slug"=>"slug/with/nested/path"}
3408
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3409
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3410
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3411
+ Rendered posts/_post.html.erb (10.5ms)
3412
+ Completed 200 OK in 28ms (Views: 15.5ms | ActiveRecord: 0.7ms)
3413
+
3414
+
3415
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3416
+ Served asset /jquery.js - 304 Not Modified (0ms)
3417
+
3418
+
3419
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3420
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3421
+
3422
+
3423
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3424
+ Served asset /posts.css - 304 Not Modified (0ms)
3425
+
3426
+
3427
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3428
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3429
+
3430
+
3431
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3432
+ Served asset /application.css - 304 Not Modified (0ms)
3433
+
3434
+
3435
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3436
+ Served asset /users.css - 304 Not Modified (0ms)
3437
+
3438
+
3439
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3440
+ Served asset /posts.js - 304 Not Modified (0ms)
3441
+
3442
+
3443
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3444
+ Served asset /users.js - 304 Not Modified (0ms)
3445
+
3446
+
3447
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:40:23 -0500 2011
3448
+ Served asset /application.js - 304 Not Modified (0ms)
3449
+
3450
+
3451
+ Started GET "/permalink/engine/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:43:23 -0500 2011
3452
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
3453
+ Processing by PermalinksController#show as HTML
3454
+ Parameters: {"slug"=>"slug/with/nested/path"}
3455
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3456
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3457
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3458
+ Rendered posts/_post.html.erb (29.0ms)
3459
+ Completed 500 Internal Server Error in 47ms
3460
+
3461
+ ActionView::Template::Error (undefined method `slug' for #<ActionDispatch::Routing::RoutesProxy:0x10337cc20>):
3462
+ 14:
3463
+ 15: <p>
3464
+ 16: <b>Slug:</b>
3465
+ 17: <%= link_to post.slug, has_permalink_engine.slug(post.slug) %>
3466
+ 18: </p>
3467
+ 19:
3468
+ 20:
3469
+ app/views/posts/_post.html.erb:17:in `_app_views_posts__post_html_erb___4332477_2174616060'
3470
+
3471
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3472
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
3473
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms)
3474
+
3475
+
3476
+ Started GET "/permalink/engine/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3477
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
3478
+ Processing by PermalinksController#show as HTML
3479
+ Parameters: {"slug"=>"slug/with/nested/path"}
3480
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3481
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3482
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3483
+ Rendered posts/_post.html.erb (11.2ms)
3484
+ Completed 200 OK in 28ms (Views: 16.3ms | ActiveRecord: 0.7ms)
3485
+
3486
+
3487
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3488
+ Served asset /users.css - 304 Not Modified (0ms)
3489
+
3490
+
3491
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3492
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3493
+
3494
+
3495
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3496
+ Served asset /posts.css - 304 Not Modified (0ms)
3497
+
3498
+
3499
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3500
+ Served asset /application.css - 304 Not Modified (0ms)
3501
+
3502
+
3503
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3504
+ Served asset /jquery.js - 304 Not Modified (0ms)
3505
+
3506
+
3507
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3508
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3509
+
3510
+
3511
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3512
+ Served asset /posts.js - 304 Not Modified (0ms)
3513
+
3514
+
3515
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3516
+ Served asset /users.js - 304 Not Modified (0ms)
3517
+
3518
+
3519
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 16:43:36 -0500 2011
3520
+ Served asset /application.js - 304 Not Modified (0ms)
3521
+
3522
+
3523
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3524
+ Processing by PostsController#index as HTML
3525
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
3526
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3527
+ Rendered posts/index.html.erb within layouts/application (26.6ms)
3528
+ Completed 200 OK in 113ms (Views: 59.5ms | ActiveRecord: 0.7ms)
3529
+
3530
+
3531
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3532
+ Served asset /users.css - 304 Not Modified (8ms)
3533
+
3534
+
3535
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3536
+ Served asset /scaffold.css - 304 Not Modified (2ms)
3537
+
3538
+
3539
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3540
+ Served asset /posts.css - 304 Not Modified (2ms)
3541
+
3542
+
3543
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3544
+ Served asset /jquery.js - 200 OK (6ms)
3545
+
3546
+
3547
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3548
+ Served asset /jquery_ujs.js - 200 OK (3ms)
3549
+
3550
+
3551
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3552
+ Served asset /posts.js - 304 Not Modified (13ms)
3553
+
3554
+
3555
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:49 -0500 2011
3556
+ Served asset /users.js - 304 Not Modified (1ms)
3557
+
3558
+
3559
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3560
+ Processing by PostsController#show as HTML
3561
+ Parameters: {"id"=>"1"}
3562
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
3563
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3564
+ Rendered posts/_post.html.erb (14.2ms)
3565
+ Rendered posts/show.html.erb within layouts/application (21.0ms)
3566
+ Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.8ms)
3567
+
3568
+
3569
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3570
+ Served asset /posts.js - 304 Not Modified (0ms)
3571
+
3572
+
3573
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3574
+ Served asset /users.js - 304 Not Modified (0ms)
3575
+
3576
+
3577
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3578
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3579
+
3580
+
3581
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3582
+ Served asset /posts.css - 304 Not Modified (0ms)
3583
+
3584
+
3585
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:51 -0500 2011
3586
+ Served asset /users.css - 304 Not Modified (0ms)
3587
+
3588
+
3589
+ Started GET "/permalink/engine/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3590
+ Processing by PermalinksController#show as HTML
3591
+ Parameters: {"slug"=>"slug/with/nested/path"}
3592
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
3593
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
3594
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
3595
+ Rendered posts/_post.html.erb (11.6ms)
3596
+ Completed 200 OK in 92ms (Views: 72.9ms | ActiveRecord: 0.9ms)
3597
+
3598
+
3599
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3600
+ Served asset /posts.css - 304 Not Modified (0ms)
3601
+
3602
+
3603
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3604
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3605
+
3606
+
3607
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3608
+ Served asset /posts.js - 304 Not Modified (0ms)
3609
+
3610
+
3611
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3612
+ Served asset /users.css - 304 Not Modified (0ms)
3613
+
3614
+
3615
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:02:53 -0500 2011
3616
+ Served asset /users.js - 304 Not Modified (0ms)
3617
+
3618
+
3619
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3620
+ Processing by UsersController#index as HTML
3621
+ User Load (0.1ms) SELECT "users".* FROM "users"
3622
+ Rendered users/index.html.erb within layouts/application (0.8ms)
3623
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.1ms)
3624
+
3625
+
3626
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3627
+ Served asset /posts.css - 304 Not Modified (0ms)
3628
+
3629
+
3630
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3631
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3632
+
3633
+
3634
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3635
+ Served asset /users.css - 304 Not Modified (0ms)
3636
+
3637
+
3638
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3639
+ Served asset /posts.js - 304 Not Modified (0ms)
3640
+
3641
+
3642
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:01 -0500 2011
3643
+ Served asset /users.js - 304 Not Modified (0ms)
3644
+
3645
+
3646
+ Started GET "/users/new" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3647
+ Processing by UsersController#new as HTML
3648
+ Rendered users/_form.html.erb (6.3ms)
3649
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3650
+ Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.2ms)
3651
+
3652
+
3653
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3654
+ Served asset /users.css - 304 Not Modified (0ms)
3655
+
3656
+
3657
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3658
+ Served asset /users.js - 304 Not Modified (0ms)
3659
+
3660
+
3661
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3662
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3663
+
3664
+
3665
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3666
+ Served asset /posts.css - 304 Not Modified (2ms)
3667
+
3668
+
3669
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:03 -0500 2011
3670
+ Served asset /posts.js - 304 Not Modified (0ms)
3671
+
3672
+
3673
+ Started POST "/users" for 127.0.0.1 at Sun Nov 13 17:03:11 -0500 2011
3674
+ Processing by UsersController#create as HTML
3675
+ Parameters: {"commit"=>"Create User", "authenticity_token"=>"pCouvqRDapOcoUxNKWafYI7M8dZMLDKJanG77yRDqAI=", "utf8"=>"✓", "user"=>{"username"=>"john", "email"=>"john@localhost"}}
3676
+ SQL (5.5ms) INSERT INTO "users" ("created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Sun, 13 Nov 2011 22:03:11 UTC +00:00], ["email", "john@localhost"], ["updated_at", Sun, 13 Nov 2011 22:03:11 UTC +00:00], ["username", "john"]]
3677
+ Redirected to http://living5to9.local:3000/users/1
3678
+ Completed 302 Found in 13ms
3679
+
3680
+
3681
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3682
+ Processing by UsersController#show as HTML
3683
+ Parameters: {"id"=>"1"}
3684
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
3685
+ Rendered users/show.html.erb within layouts/application (3.8ms)
3686
+ Completed 200 OK in 40ms (Views: 38.0ms | ActiveRecord: 0.3ms)
3687
+
3688
+
3689
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3690
+ Served asset /posts.css - 304 Not Modified (0ms)
3691
+
3692
+
3693
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3694
+ Served asset /posts.js - 304 Not Modified (0ms)
3695
+
3696
+
3697
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3698
+ Served asset /users.css - 304 Not Modified (0ms)
3699
+
3700
+
3701
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3702
+ Served asset /users.js - 304 Not Modified (0ms)
3703
+
3704
+
3705
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:12 -0500 2011
3706
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3707
+
3708
+
3709
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:03:33 -0500 2011
3710
+ Processing by PermalinksController#show as HTML
3711
+ Parameters: {"slug"=>"users/1"}
3712
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users/1' LIMIT 1
3713
+ Rendered text template (0.0ms)
3714
+ Completed 404 Not Found in 5ms (Views: 3.9ms | ActiveRecord: 0.3ms)
3715
+ Processing by UsersController#show as HTML
3716
+ Parameters: {"slug"=>"users/1"}
3717
+ Completed 404 Not Found in 0ms
3718
+
3719
+ ActiveRecord::RecordNotFound (Couldn't find User without an ID):
3720
+ app/controllers/users_controller.rb:16:in `show'
3721
+
3722
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3723
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
3724
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.1ms)
3725
+
3726
+
3727
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3728
+ Processing by PermalinksController#show as HTML
3729
+ Parameters: {"slug"=>"users"}
3730
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users' LIMIT 1
3731
+ Rendered text template (0.0ms)
3732
+ Completed 404 Not Found in 4ms (Views: 3.0ms | ActiveRecord: 0.2ms)
3733
+ Processing by UsersController#index as HTML
3734
+ Parameters: {"slug"=>"users"}
3735
+ User Load (0.1ms) SELECT "users".* FROM "users" 
3736
+ Rendered users/index.html.erb within layouts/application (4.3ms)
3737
+ Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.3ms)
3738
+
3739
+
3740
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3741
+ Served asset /posts.js - 304 Not Modified (0ms)
3742
+
3743
+
3744
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3745
+ Served asset /users.css - 304 Not Modified (0ms)
3746
+
3747
+
3748
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3749
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3750
+
3751
+
3752
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3753
+ Served asset /posts.css - 304 Not Modified (0ms)
3754
+
3755
+
3756
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:03:38 -0500 2011
3757
+ Served asset /users.js - 304 Not Modified (0ms)
3758
+
3759
+
3760
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:03:41 -0500 2011
3761
+ Processing by PermalinksController#show as HTML
3762
+ Parameters: {"slug"=>"users/1"}
3763
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users/1' LIMIT 1
3764
+ Rendered text template (0.0ms)
3765
+ Completed 404 Not Found in 61ms (Views: 59.8ms | ActiveRecord: 0.2ms)
3766
+ Processing by UsersController#show as HTML
3767
+ Parameters: {"slug"=>"users/1"}
3768
+ Completed 404 Not Found in 0ms
3769
+
3770
+ ActiveRecord::RecordNotFound (Couldn't find User without an ID):
3771
+ app/controllers/users_controller.rb:16:in `show'
3772
+
3773
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3774
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3775
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.3ms)
3776
+
3777
+
3778
+ Started GET "/users/1/edit" for 127.0.0.1 at Sun Nov 13 17:03:52 -0500 2011
3779
+ Processing by PermalinksController#show as HTML
3780
+ Parameters: {"slug"=>"users/1/edit"}
3781
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'users/1/edit' LIMIT 1
3782
+ Rendered text template (0.0ms)
3783
+ Completed 404 Not Found in 4ms (Views: 2.8ms | ActiveRecord: 0.2ms)
3784
+ Processing by UsersController#edit as HTML
3785
+ Parameters: {"slug"=>"users/1/edit"}
3786
+ Completed 404 Not Found in 0ms
3787
+
3788
+ ActiveRecord::RecordNotFound (Couldn't find User without an ID):
3789
+ app/controllers/users_controller.rb:37:in `edit'
3790
+
3791
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3792
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
3793
+ Rendered /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.8ms)
3794
+
3795
+
3796
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 17:04:27 -0500 2011
3797
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
3798
+ Processing by UsersController#index as HTML
3799
+ User Load (0.2ms) SELECT "users".* FROM "users"
3800
+ Rendered users/index.html.erb within layouts/application (7.5ms)
3801
+ Completed 200 OK in 92ms (Views: 39.1ms | ActiveRecord: 0.4ms)
3802
+
3803
+
3804
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3805
+ Served asset /application.css - 200 OK (0ms)
3806
+
3807
+
3808
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3809
+ Served asset /users.css - 304 Not Modified (10ms)
3810
+
3811
+
3812
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3813
+ Served asset /scaffold.css - 304 Not Modified (4ms)
3814
+
3815
+
3816
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3817
+ Served asset /posts.css - 304 Not Modified (9ms)
3818
+
3819
+
3820
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3821
+ Served asset /jquery.js - 304 Not Modified (26ms)
3822
+
3823
+
3824
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3825
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
3826
+
3827
+
3828
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3829
+ Served asset /posts.js - 304 Not Modified (1ms)
3830
+
3831
+
3832
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3833
+ Served asset /users.js - 304 Not Modified (6ms)
3834
+
3835
+
3836
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:28 -0500 2011
3837
+ Served asset /application.js - 200 OK (0ms)
3838
+
3839
+
3840
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3841
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1') LIMIT 1
3842
+ Processing by UsersController#show as HTML
3843
+ Parameters: {"id"=>"1"}
3844
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
3845
+ Rendered users/show.html.erb within layouts/application (60.2ms)
3846
+ Completed 200 OK in 72ms (Views: 70.0ms | ActiveRecord: 0.5ms)
3847
+
3848
+
3849
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3850
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3851
+
3852
+
3853
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3854
+ Served asset /users.css - 304 Not Modified (0ms)
3855
+
3856
+
3857
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3858
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3859
+
3860
+
3861
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3862
+ Served asset /posts.css - 304 Not Modified (0ms)
3863
+
3864
+
3865
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3866
+ Served asset /jquery.js - 304 Not Modified (0ms)
3867
+
3868
+
3869
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3870
+ Served asset /posts.js - 304 Not Modified (0ms)
3871
+
3872
+
3873
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:29 -0500 2011
3874
+ Served asset /users.js - 304 Not Modified (0ms)
3875
+
3876
+
3877
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3878
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
3879
+ Processing by UsersController#index as HTML
3880
+ User Load (0.1ms) SELECT "users".* FROM "users"
3881
+ Rendered users/index.html.erb within layouts/application (4.3ms)
3882
+ Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.3ms)
3883
+
3884
+
3885
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3886
+ Served asset /users.css - 304 Not Modified (0ms)
3887
+
3888
+
3889
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3890
+ Served asset /jquery.js - 304 Not Modified (0ms)
3891
+
3892
+
3893
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3894
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3895
+
3896
+
3897
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3898
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3899
+
3900
+
3901
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3902
+ Served asset /posts.css - 304 Not Modified (0ms)
3903
+
3904
+
3905
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3906
+ Served asset /posts.js - 304 Not Modified (0ms)
3907
+
3908
+
3909
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:33 -0500 2011
3910
+ Served asset /users.js - 304 Not Modified (0ms)
3911
+
3912
+
3913
+ Started GET "/users/1/edit" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3914
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1/edit') LIMIT 1
3915
+ Processing by UsersController#edit as HTML
3916
+ Parameters: {"id"=>"1"}
3917
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
3918
+ Rendered users/_form.html.erb (5.8ms)
3919
+ Rendered users/edit.html.erb within layouts/application (67.5ms)
3920
+ Completed 200 OK in 80ms (Views: 78.1ms | ActiveRecord: 0.4ms)
3921
+
3922
+
3923
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3924
+ Served asset /users.css - 304 Not Modified (0ms)
3925
+
3926
+
3927
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3928
+ Served asset /jquery.js - 304 Not Modified (0ms)
3929
+
3930
+
3931
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3932
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3933
+
3934
+
3935
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3936
+ Served asset /posts.js - 304 Not Modified (0ms)
3937
+
3938
+
3939
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3940
+ Served asset /posts.css - 304 Not Modified (0ms)
3941
+
3942
+
3943
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3944
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3945
+
3946
+
3947
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:35 -0500 2011
3948
+ Served asset /users.js - 304 Not Modified (0ms)
3949
+
3950
+
3951
+ Started PUT "/users/1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3952
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1') LIMIT 1
3953
+ Processing by UsersController#update as HTML
3954
+ Parameters: {"commit"=>"Update User", "authenticity_token"=>"pCouvqRDapOcoUxNKWafYI7M8dZMLDKJanG77yRDqAI=", "utf8"=>"✓", "id"=>"1", "user"=>{"username"=>"john", "email"=>"john@localhost"}}
3955
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
3956
+ Redirected to http://living5to9.local:3000/users/1
3957
+ Completed 302 Found in 7ms
3958
+
3959
+
3960
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3961
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1') LIMIT 1
3962
+ Processing by UsersController#show as HTML
3963
+ Parameters: {"id"=>"1"}
3964
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
3965
+ Rendered users/show.html.erb within layouts/application (3.6ms)
3966
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.4ms)
3967
+
3968
+
3969
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3970
+ Served asset /posts.css - 304 Not Modified (0ms)
3971
+
3972
+
3973
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3974
+ Served asset /scaffold.css - 304 Not Modified (0ms)
3975
+
3976
+
3977
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3978
+ Served asset /jquery.js - 304 Not Modified (0ms)
3979
+
3980
+
3981
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3982
+ Served asset /posts.js - 304 Not Modified (0ms)
3983
+
3984
+
3985
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3986
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3987
+
3988
+
3989
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3990
+ Served asset /users.css - 304 Not Modified (0ms)
3991
+
3992
+
3993
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:37 -0500 2011
3994
+ Served asset /users.js - 304 Not Modified (0ms)
3995
+
3996
+
3997
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
3998
+ Processing by PostsController#index as HTML
3999
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
4000
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4001
+ Rendered posts/index.html.erb within layouts/application (22.2ms)
4002
+ Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.6ms)
4003
+
4004
+
4005
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4006
+ Served asset /users.css - 304 Not Modified (0ms)
4007
+
4008
+
4009
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4010
+ Served asset /jquery.js - 304 Not Modified (0ms)
4011
+
4012
+
4013
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4014
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4015
+
4016
+
4017
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4018
+ Served asset /posts.js - 304 Not Modified (0ms)
4019
+
4020
+
4021
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4022
+ Served asset /posts.css - 304 Not Modified (0ms)
4023
+
4024
+
4025
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4026
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
4027
+
4028
+
4029
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:40 -0500 2011
4030
+ Served asset /users.js - 304 Not Modified (0ms)
4031
+
4032
+
4033
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4034
+ Processing by PostsController#show as HTML
4035
+ Parameters: {"id"=>"1"}
4036
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
4037
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4038
+ Rendered posts/_post.html.erb (13.1ms)
4039
+ Rendered posts/show.html.erb within layouts/application (17.1ms)
4040
+ Completed 200 OK in 95ms (Views: 26.4ms | ActiveRecord: 0.8ms)
4041
+
4042
+
4043
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4044
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4045
+
4046
+
4047
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4048
+ Served asset /users.css - 304 Not Modified (0ms)
4049
+
4050
+
4051
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4052
+ Served asset /jquery.js - 304 Not Modified (0ms)
4053
+
4054
+
4055
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4056
+ Served asset /posts.js - 304 Not Modified (0ms)
4057
+
4058
+
4059
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4060
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4061
+
4062
+
4063
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4064
+ Served asset /posts.css - 304 Not Modified (0ms)
4065
+
4066
+
4067
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:42 -0500 2011
4068
+ Served asset /users.js - 304 Not Modified (0ms)
4069
+
4070
+
4071
+ Started GET "/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4072
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
4073
+ Processing by PermalinksController#show as HTML
4074
+ Parameters: {"slug"=>"slug/with/nested/path"}
4075
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
4076
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
4077
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4078
+ Rendered posts/_post.html.erb (11.0ms)
4079
+ Completed 200 OK in 33ms (Views: 16.2ms | ActiveRecord: 0.8ms)
4080
+
4081
+
4082
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4083
+ Served asset /jquery.js - 304 Not Modified (0ms)
4084
+
4085
+
4086
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4087
+ Served asset /users.css - 304 Not Modified (0ms)
4088
+
4089
+
4090
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4091
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4092
+
4093
+
4094
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4095
+ Served asset /posts.css - 304 Not Modified (0ms)
4096
+
4097
+
4098
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4099
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4100
+
4101
+
4102
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4103
+ Served asset /posts.js - 304 Not Modified (0ms)
4104
+
4105
+
4106
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:04:43 -0500 2011
4107
+ Served asset /users.js - 304 Not Modified (0ms)
4108
+
4109
+
4110
+ Started GET "/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4111
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
4112
+ Processing by PermalinksController#show as HTML
4113
+ Parameters: {"slug"=>"slug/with/nested/path"}
4114
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
4115
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
4116
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4117
+ Rendered posts/_post.html.erb (11.2ms)
4118
+ Completed 200 OK in 29ms (Views: 16.6ms | ActiveRecord: 0.7ms)
4119
+
4120
+
4121
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4122
+ Served asset /users.css - 304 Not Modified (0ms)
4123
+
4124
+
4125
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4126
+ Served asset /jquery.js - 304 Not Modified (0ms)
4127
+
4128
+
4129
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4130
+ Served asset /posts.css - 304 Not Modified (0ms)
4131
+
4132
+
4133
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4134
+ Served asset /application.css - 304 Not Modified (0ms)
4135
+
4136
+
4137
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4138
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4139
+
4140
+
4141
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4142
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4143
+
4144
+
4145
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4146
+ Served asset /posts.js - 304 Not Modified (0ms)
4147
+
4148
+
4149
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4150
+ Served asset /users.js - 304 Not Modified (0ms)
4151
+
4152
+
4153
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:05:06 -0500 2011
4154
+ Served asset /application.js - 304 Not Modified (0ms)
4155
+
4156
+
4157
+ Started GET "/" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4158
+ Processing by PostsController#index as HTML
4159
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
4160
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4161
+ Rendered posts/index.html.erb within layouts/application (26.6ms)
4162
+ Cache for Asset (application.js) is stale
4163
+ /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@has_permalink/gems/jquery-rails-1.0.16/vendor/assets/javascripts/jquery.js isn't in paths: /Users/jcarlson/Projects/slug_engine/test/dummy/app/assets/images, /Users/jcarlson/Projects/slug_engine/test/dummy/app/assets/javascripts, /Users/jcarlson/Projects/slug_engine/test/dummy/app/assets/stylesheets, /Users/jcarlson/.rvm/gems/ruby-1.8.7-p72@slug_engine/gems/jquery-rails-1.0.16/vendor/assets/javascripts
4164
+ Compiled application.js (6ms) (pid 25162)
4165
+ Compiled jquery.js (4ms) (pid 25162)
4166
+ Compiled jquery_ujs.js (1ms) (pid 25162)
4167
+ Completed 200 OK in 190ms (Views: 139.4ms | ActiveRecord: 0.7ms)
4168
+
4169
+
4170
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4171
+ Served asset /users.css - 304 Not Modified (2ms)
4172
+
4173
+
4174
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4175
+ Served asset /scaffold.css - 304 Not Modified (2ms)
4176
+
4177
+
4178
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4179
+ Served asset /posts.css - 304 Not Modified (2ms)
4180
+
4181
+
4182
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4183
+ Served asset /jquery.js - 304 Not Modified (10ms)
4184
+
4185
+
4186
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4187
+ Served asset /application.css - 304 Not Modified (0ms)
4188
+
4189
+
4190
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4191
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
4192
+
4193
+
4194
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4195
+ Served asset /posts.js - 304 Not Modified (7ms)
4196
+
4197
+
4198
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4199
+ Served asset /users.js - 304 Not Modified (2ms)
4200
+
4201
+
4202
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:01 -0500 2011
4203
+ Served asset /application.js - 304 Not Modified (0ms)
4204
+
4205
+
4206
+ Started GET "/posts/1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4207
+ Processing by PostsController#show as HTML
4208
+ Parameters: {"id"=>"1"}
4209
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
4210
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4211
+ Rendered posts/_post.html.erb (65.2ms)
4212
+ Rendered posts/show.html.erb within layouts/application (71.2ms)
4213
+ Completed 200 OK in 82ms (Views: 80.1ms | ActiveRecord: 0.7ms)
4214
+
4215
+
4216
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4217
+ Served asset /jquery.js - 304 Not Modified (0ms)
4218
+
4219
+
4220
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4221
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4222
+
4223
+
4224
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4225
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4226
+
4227
+
4228
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4229
+ Served asset /posts.css - 304 Not Modified (0ms)
4230
+
4231
+
4232
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4233
+ Served asset /application.css - 304 Not Modified (0ms)
4234
+
4235
+
4236
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4237
+ Served asset /users.css - 304 Not Modified (0ms)
4238
+
4239
+
4240
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4241
+ Served asset /posts.js - 304 Not Modified (0ms)
4242
+
4243
+
4244
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4245
+ Served asset /users.js - 304 Not Modified (0ms)
4246
+
4247
+
4248
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:03 -0500 2011
4249
+ Served asset /application.js - 304 Not Modified (0ms)
4250
+
4251
+
4252
+ Started GET "/slug/with/nested/path" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4253
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'slug/with/nested/path') LIMIT 1
4254
+ Processing by PermalinksController#show as HTML
4255
+ Parameters: {"slug"=>"slug/with/nested/path"}
4256
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."slug" = 'slug/with/nested/path' LIMIT 1
4257
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1
4258
+ Permalink Load (0.2ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4259
+ Rendered posts/_post.html.erb (10.9ms)
4260
+ Completed 200 OK in 32ms (Views: 16.0ms | ActiveRecord: 0.8ms)
4261
+
4262
+
4263
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4264
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4265
+
4266
+
4267
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4268
+ Served asset /jquery.js - 304 Not Modified (0ms)
4269
+
4270
+
4271
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4272
+ Served asset /posts.css - 304 Not Modified (0ms)
4273
+
4274
+
4275
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4276
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4277
+
4278
+
4279
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4280
+ Served asset /application.css - 304 Not Modified (0ms)
4281
+
4282
+
4283
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4284
+ Served asset /users.css - 304 Not Modified (0ms)
4285
+
4286
+
4287
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4288
+ Served asset /posts.js - 304 Not Modified (0ms)
4289
+
4290
+
4291
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4292
+ Served asset /users.js - 304 Not Modified (0ms)
4293
+
4294
+
4295
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:07 -0500 2011
4296
+ Served asset /application.js - 304 Not Modified (0ms)
4297
+
4298
+
4299
+ Started GET "/posts" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4300
+ Processing by PostsController#index as HTML
4301
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
4302
+ Permalink Load (0.1ms) SELECT "permalinks".* FROM "permalinks" WHERE "permalinks"."content_id" = 1 AND "permalinks"."content_type" = 'Post' LIMIT 1
4303
+ Rendered posts/index.html.erb within layouts/application (13.9ms)
4304
+ Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.7ms)
4305
+
4306
+
4307
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4308
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4309
+
4310
+
4311
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4312
+ Served asset /posts.css - 304 Not Modified (1ms)
4313
+
4314
+
4315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4316
+ Served asset /application.css - 304 Not Modified (0ms)
4317
+
4318
+
4319
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4320
+ Served asset /users.css - 304 Not Modified (0ms)
4321
+
4322
+
4323
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4324
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4325
+
4326
+
4327
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4328
+ Served asset /jquery.js - 304 Not Modified (0ms)
4329
+
4330
+
4331
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4332
+ Served asset /posts.js - 304 Not Modified (0ms)
4333
+
4334
+
4335
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4336
+ Served asset /users.js - 304 Not Modified (0ms)
4337
+
4338
+
4339
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:09 -0500 2011
4340
+ Served asset /application.js - 304 Not Modified (0ms)
4341
+
4342
+
4343
+ Started GET "/users" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4344
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users') LIMIT 1
4345
+ Processing by UsersController#index as HTML
4346
+ User Load (0.1ms) SELECT "users".* FROM "users"
4347
+ Rendered users/index.html.erb within layouts/application (60.4ms)
4348
+ Completed 200 OK in 71ms (Views: 69.9ms | ActiveRecord: 0.3ms)
4349
+
4350
+
4351
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4352
+ Served asset /posts.css - 304 Not Modified (0ms)
4353
+
4354
+
4355
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4356
+ Served asset /application.css - 304 Not Modified (1ms)
4357
+
4358
+
4359
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4360
+ Served asset /users.css - 304 Not Modified (0ms)
4361
+
4362
+
4363
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4364
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4365
+
4366
+
4367
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4368
+ Served asset /jquery.js - 304 Not Modified (0ms)
4369
+
4370
+
4371
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4372
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4373
+
4374
+
4375
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4376
+ Served asset /posts.js - 304 Not Modified (0ms)
4377
+
4378
+
4379
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4380
+ Served asset /users.js - 304 Not Modified (0ms)
4381
+
4382
+
4383
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:13 -0500 2011
4384
+ Served asset /application.js - 304 Not Modified (0ms)
4385
+
4386
+
4387
+ Started GET "/users/1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4388
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1') LIMIT 1
4389
+ Processing by UsersController#show as HTML
4390
+ Parameters: {"id"=>"1"}
4391
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
4392
+ Rendered users/show.html.erb within layouts/application (3.7ms)
4393
+ Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.3ms)
4394
+
4395
+
4396
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4397
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4398
+
4399
+
4400
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4401
+ Served asset /users.css - 304 Not Modified (5ms)
4402
+
4403
+
4404
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4405
+ Served asset /posts.css - 304 Not Modified (0ms)
4406
+
4407
+
4408
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4409
+ Served asset /jquery.js - 304 Not Modified (0ms)
4410
+
4411
+
4412
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4413
+ Served asset /application.css - 304 Not Modified (0ms)
4414
+
4415
+
4416
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4417
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4418
+
4419
+
4420
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4421
+ Served asset /posts.js - 304 Not Modified (0ms)
4422
+
4423
+
4424
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4425
+ Served asset /users.js - 304 Not Modified (0ms)
4426
+
4427
+
4428
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:15 -0500 2011
4429
+ Served asset /application.js - 304 Not Modified (0ms)
4430
+
4431
+
4432
+ Started GET "/users/1/edit" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4433
+  (0.1ms) SELECT 1 FROM "permalinks" WHERE (slug = 'users/1/edit') LIMIT 1
4434
+ Processing by UsersController#edit as HTML
4435
+ Parameters: {"id"=>"1"}
4436
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
4437
+ Rendered users/_form.html.erb (5.6ms)
4438
+ Rendered users/edit.html.erb within layouts/application (7.1ms)
4439
+ Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.4ms)
4440
+
4441
+
4442
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4443
+ Served asset /jquery.js - 304 Not Modified (0ms)
4444
+
4445
+
4446
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4447
+ Served asset /users.css - 304 Not Modified (0ms)
4448
+
4449
+
4450
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4451
+ Served asset /scaffold.css - 304 Not Modified (0ms)
4452
+
4453
+
4454
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4455
+ Served asset /posts.css - 304 Not Modified (0ms)
4456
+
4457
+
4458
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4459
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4460
+
4461
+
4462
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4463
+ Served asset /application.css - 304 Not Modified (0ms)
4464
+
4465
+
4466
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4467
+ Served asset /posts.js - 304 Not Modified (0ms)
4468
+
4469
+
4470
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4471
+ Served asset /users.js - 304 Not Modified (0ms)
4472
+
4473
+
4474
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Nov 13 17:30:16 -0500 2011
4475
+ Served asset /application.js - 304 Not Modified (0ms)