content_for_rails 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +22 -1
  3. data/lib/content_for_rails.rb +2 -2
  4. data/lib/content_for_rails/version.rb +1 -1
  5. data/spec/controllers/home_controller_spec.rb +17 -0
  6. data/spec/dummy/README.rdoc +28 -0
  7. data/spec/dummy/Rakefile +6 -0
  8. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  9. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  10. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  11. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  12. data/spec/dummy/app/controllers/home_controller.rb +5 -0
  13. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  14. data/spec/dummy/app/views/home/index.html.erb +1 -0
  15. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  16. data/spec/dummy/bin/bundle +3 -0
  17. data/spec/dummy/bin/rails +4 -0
  18. data/spec/dummy/bin/rake +4 -0
  19. data/spec/dummy/bin/setup +29 -0
  20. data/spec/dummy/config.ru +4 -0
  21. data/spec/dummy/config/application.rb +32 -0
  22. data/spec/dummy/config/boot.rb +5 -0
  23. data/spec/dummy/config/database.yml +25 -0
  24. data/spec/dummy/config/environment.rb +5 -0
  25. data/spec/dummy/config/environments/development.rb +41 -0
  26. data/spec/dummy/config/environments/production.rb +79 -0
  27. data/spec/dummy/config/environments/test.rb +42 -0
  28. data/spec/dummy/config/initializers/assets.rb +11 -0
  29. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  31. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  32. data/spec/dummy/config/initializers/inflections.rb +16 -0
  33. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  34. data/spec/dummy/config/initializers/session_store.rb +3 -0
  35. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/spec/dummy/config/locales/en.yml +23 -0
  37. data/spec/dummy/config/routes.rb +57 -0
  38. data/spec/dummy/config/secrets.yml +22 -0
  39. data/spec/dummy/db/development.sqlite3 +0 -0
  40. data/spec/dummy/db/schema.rb +26 -0
  41. data/spec/dummy/db/test.sqlite3 +0 -0
  42. data/spec/dummy/log/development.log +17 -0
  43. data/spec/dummy/log/test.log +1059 -0
  44. data/spec/dummy/public/404.html +67 -0
  45. data/spec/dummy/public/422.html +67 -0
  46. data/spec/dummy/public/500.html +66 -0
  47. data/spec/dummy/public/favicon.ico +0 -0
  48. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  49. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  50. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  51. data/spec/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  52. data/spec/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  53. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  54. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  55. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  56. data/spec/rails_helper.rb +50 -0
  57. data/spec/spec_helper.rb +86 -0
  58. metadata +171 -10
  59. data/.gitignore +0 -14
  60. data/Gemfile +0 -4
  61. data/LICENSE.txt +0 -22
  62. data/README.md +0 -31
  63. data/content_for_rails.gemspec +0 -20
@@ -0,0 +1,42 @@
1
+ Rails.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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
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
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,57 @@
1
+ Rails.application.routes.draw do
2
+ get 'home/index'
3
+ # The priority is based upon order of creation: first created -> highest priority.
4
+ # See how all your routes lay out with "rake routes".
5
+
6
+ # You can have the root of your site routed with "root"
7
+ # root 'welcome#index'
8
+
9
+ # Example of regular route:
10
+ # get 'products/:id' => 'catalog#view'
11
+
12
+ # Example of named route that can be invoked with purchase_url(id: product.id)
13
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
14
+
15
+ # Example resource route (maps HTTP verbs to controller actions automatically):
16
+ # resources :products
17
+
18
+ # Example resource route with options:
19
+ # resources :products do
20
+ # member do
21
+ # get 'short'
22
+ # post 'toggle'
23
+ # end
24
+ #
25
+ # collection do
26
+ # get 'sold'
27
+ # end
28
+ # end
29
+
30
+ # Example resource route with sub-resources:
31
+ # resources :products do
32
+ # resources :comments, :sales
33
+ # resource :seller
34
+ # end
35
+
36
+ # Example resource route with more complex sub-resources:
37
+ # resources :products do
38
+ # resources :comments
39
+ # resources :sales do
40
+ # get 'recent', on: :collection
41
+ # end
42
+ # end
43
+
44
+ # Example resource route with concerns:
45
+ # concern :toggleable do
46
+ # post 'toggle'
47
+ # end
48
+ # resources :posts, concerns: :toggleable
49
+ # resources :photos, concerns: :toggleable
50
+
51
+ # Example resource route within a namespace:
52
+ # namespace :admin do
53
+ # # Directs /admin/products/* to Admin::ProductsController
54
+ # # (app/controllers/admin/products_controller.rb)
55
+ # resources :products
56
+ # end
57
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 558c93c669a909aabb1a087560f961f14046edede99944c79655b9b111fc5076ebd9175b3caade510de8f2e009cd57a5d52d4007c8c565e074155a93901902de
15
+
16
+ test:
17
+ secret_key_base: e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,26 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150114204029) do
15
+
16
+ create_table "homes", force: :cascade do |t|
17
+ t.datetime "created_at", null: false
18
+ t.datetime "updated_at", null: false
19
+ end
20
+
21
+ create_table "totos", force: :cascade do |t|
22
+ t.datetime "created_at", null: false
23
+ t.datetime "updated_at", null: false
24
+ end
25
+
26
+ end
Binary file
@@ -0,0 +1,17 @@
1
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.4ms) select sqlite_version(*)
3
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateHomes (20150114202352)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150114202352"]]
9
+  (0.6ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ Migrating to CreateTotos (20150114204029)
13
+  (0.1ms) begin transaction
14
+  (0.5ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
15
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150114204029"]]
16
+  (0.9ms) commit transaction
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,1059 @@
1
+  (1.2ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
+  (0.1ms) select sqlite_version(*)
4
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
7
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+  (0.1ms) begin transaction
9
+  (0.1ms) rollback transaction
10
+  (0.1ms) begin transaction
11
+  (0.0ms) rollback transaction
12
+  (0.0ms) begin transaction
13
+ Processing by HomesController#new as HTML
14
+ Rendered homes/new.html.erb within layouts/application (0.4ms)
15
+ Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.2ms)
16
+  (0.1ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+  (0.1ms) rollback transaction
19
+  (0.0ms) begin transaction
20
+  (0.1ms) SELECT COUNT(*) FROM "homes"
21
+  (0.1ms) rollback transaction
22
+  (0.0ms) begin transaction
23
+  (0.2ms) rollback transaction
24
+  (0.1ms) begin transaction
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+  (0.1ms) begin transaction
29
+  (0.0ms) rollback transaction
30
+  (0.0ms) begin transaction
31
+  (0.0ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+  (0.0ms) rollback transaction
34
+  (0.0ms) begin transaction
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+  (0.0ms) rollback transaction
38
+  (0.1ms) begin transaction
39
+  (0.0ms) rollback transaction
40
+  (0.1ms) begin transaction
41
+  (0.1ms) rollback transaction
42
+  (0.0ms) begin transaction
43
+  (0.0ms) rollback transaction
44
+  (0.0ms) begin transaction
45
+ Started GET "/homes" for 127.0.0.1 at 2015-01-14 20:24:07 +0000
46
+ Processing by HomesController#index as HTML
47
+ Home Load (0.2ms) SELECT "homes".* FROM "homes"
48
+ Rendered homes/index.html.erb within layouts/application (15.3ms)
49
+ Completed 200 OK in 36ms (Views: 36.0ms | ActiveRecord: 0.2ms)
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+  (0.0ms) rollback transaction
53
+  (0.1ms) begin transaction
54
+  (0.0ms) rollback transaction
55
+  (0.1ms) begin transaction
56
+  (0.0ms) rollback transaction
57
+  (0.1ms) begin transaction
58
+  (0.0ms) rollback transaction
59
+  (0.0ms) begin transaction
60
+  (0.0ms) rollback transaction
61
+  (0.0ms) begin transaction
62
+  (0.0ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+  (0.0ms) rollback transaction
65
+  (0.1ms) begin transaction
66
+  (0.1ms) SAVEPOINT active_record_1
67
+ SQL (0.4ms) INSERT INTO "homes" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:24:07.174552"], ["updated_at", "2015-01-14 20:24:07.174552"]]
68
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69
+ Rendered homes/_form.html.erb (9.2ms)
70
+ Rendered homes/edit.html.erb (19.4ms)
71
+  (0.4ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+  (0.0ms) SAVEPOINT active_record_1
74
+ SQL (0.5ms) INSERT INTO "homes" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:24:07.215663"], ["updated_at", "2015-01-14 20:24:07.215663"]]
75
+  (0.1ms) RELEASE SAVEPOINT active_record_1
76
+  (0.0ms) SAVEPOINT active_record_1
77
+ SQL (0.8ms) INSERT INTO "homes" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:24:07.218005"], ["updated_at", "2015-01-14 20:24:07.218005"]]
78
+  (0.0ms) RELEASE SAVEPOINT active_record_1
79
+ Rendered homes/index.html.erb (1.6ms)
80
+  (0.5ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ Rendered homes/_form.html.erb (1.4ms)
83
+ Rendered homes/new.html.erb (5.6ms)
84
+  (0.1ms) rollback transaction
85
+  (0.1ms) begin transaction
86
+  (0.1ms) SAVEPOINT active_record_1
87
+ SQL (0.3ms) INSERT INTO "homes" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:24:07.238358"], ["updated_at", "2015-01-14 20:24:07.238358"]]
88
+  (0.1ms) RELEASE SAVEPOINT active_record_1
89
+ Rendered homes/show.html.erb (0.9ms)
90
+  (0.4ms) rollback transaction
91
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
92
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
93
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
94
+  (0.1ms) select sqlite_version(*)
95
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
96
+  (0.1ms) SELECT version FROM "schema_migrations"
97
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
98
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
99
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
100
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
101
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
102
+  (0.1ms) select sqlite_version(*)
103
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
104
+  (0.1ms) SELECT version FROM "schema_migrations"
105
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
106
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
108
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
109
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
110
+  (0.1ms) select sqlite_version(*)
111
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
112
+  (0.1ms) SELECT version FROM "schema_migrations"
113
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
114
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
115
+  (0.1ms) begin transaction
116
+  (0.1ms) rollback transaction
117
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
+  (4.3ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
119
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
120
+  (0.1ms) select sqlite_version(*)
121
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
122
+  (0.1ms) SELECT version FROM "schema_migrations"
123
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
125
+  (0.1ms) begin transaction
126
+  (0.1ms) rollback transaction
127
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
128
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
129
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
130
+  (0.1ms) select sqlite_version(*)
131
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
132
+  (0.1ms) SELECT version FROM "schema_migrations"
133
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
134
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
135
+  (0.1ms) begin transaction
136
+  (0.1ms) rollback transaction
137
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
138
+  (1.2ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
140
+  (0.1ms) select sqlite_version(*)
141
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
142
+  (0.3ms) SELECT version FROM "schema_migrations"
143
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
144
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
145
+  (0.1ms) begin transaction
146
+  (0.1ms) rollback transaction
147
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
148
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
149
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
150
+  (0.1ms) select sqlite_version(*)
151
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
152
+  (0.1ms) SELECT version FROM "schema_migrations"
153
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114202352')
154
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
155
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
156
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
157
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
158
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
159
+  (0.1ms) select sqlite_version(*)
160
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
161
+  (0.1ms) SELECT version FROM "schema_migrations"
162
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
163
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
164
+  (0.1ms) begin transaction
165
+  (0.1ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+  (0.0ms) rollback transaction
168
+  (0.0ms) begin transaction
169
+  (0.0ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+ Processing by TotosController#new as HTML
172
+ Rendered totos/new.html.erb within layouts/application (0.4ms)
173
+ Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 0.2ms)
174
+  (0.1ms) rollback transaction
175
+  (0.0ms) begin transaction
176
+  (0.0ms) rollback transaction
177
+  (0.0ms) begin transaction
178
+  (0.1ms) SELECT COUNT(*) FROM "totos"
179
+  (0.1ms) rollback transaction
180
+  (0.0ms) begin transaction
181
+  (0.0ms) rollback transaction
182
+  (0.0ms) begin transaction
183
+  (0.0ms) rollback transaction
184
+  (0.0ms) begin transaction
185
+  (0.0ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+  (0.0ms) rollback transaction
188
+  (0.0ms) begin transaction
189
+  (0.0ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+  (0.0ms) rollback transaction
192
+  (0.1ms) begin transaction
193
+  (0.0ms) rollback transaction
194
+  (0.0ms) begin transaction
195
+  (0.0ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+  (0.0ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+  (0.0ms) rollback transaction
200
+  (0.0ms) begin transaction
201
+  (0.0ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+ Started GET "/totos" for 127.0.0.1 at 2015-01-14 20:41:14 +0000
204
+ Processing by TotosController#index as HTML
205
+ Toto Load (0.1ms) SELECT "totos".* FROM "totos"
206
+ Rendered totos/index.html.erb within layouts/application (12.8ms)
207
+ Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.1ms)
208
+  (0.1ms) rollback transaction
209
+  (0.0ms) begin transaction
210
+  (0.1ms) rollback transaction
211
+  (0.2ms) begin transaction
212
+  (0.1ms) rollback transaction
213
+  (0.1ms) begin transaction
214
+  (0.1ms) rollback transaction
215
+  (0.1ms) begin transaction
216
+  (0.1ms) rollback transaction
217
+  (0.1ms) begin transaction
218
+  (0.0ms) rollback transaction
219
+  (0.0ms) begin transaction
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+  (0.0ms) rollback transaction
223
+  (0.1ms) begin transaction
224
+ Rendered home/index.html.erb (0.5ms)
225
+  (0.1ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+  (0.1ms) SAVEPOINT active_record_1
228
+ SQL (0.4ms) INSERT INTO "totos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:41:14.761364"], ["updated_at", "2015-01-14 20:41:14.761364"]]
229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
230
+ Rendered totos/_form.html.erb (8.6ms)
231
+ Rendered totos/edit.html.erb (17.4ms)
232
+  (0.4ms) rollback transaction
233
+  (0.1ms) begin transaction
234
+  (0.0ms) SAVEPOINT active_record_1
235
+ SQL (0.2ms) INSERT INTO "totos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:41:14.799998"], ["updated_at", "2015-01-14 20:41:14.799998"]]
236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237
+  (0.0ms) SAVEPOINT active_record_1
238
+ SQL (0.9ms) INSERT INTO "totos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:41:14.801361"], ["updated_at", "2015-01-14 20:41:14.801361"]]
239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
240
+ Rendered totos/index.html.erb (1.5ms)
241
+  (0.6ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ Rendered totos/_form.html.erb (1.2ms)
244
+ Rendered totos/new.html.erb (4.7ms)
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+  (0.2ms) SAVEPOINT active_record_1
248
+ SQL (0.6ms) INSERT INTO "totos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-14 20:41:14.820253"], ["updated_at", "2015-01-14 20:41:14.820253"]]
249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
250
+ Rendered totos/show.html.erb (0.7ms)
251
+  (0.3ms) rollback transaction
252
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
253
+  (1.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
254
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
255
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
256
+  (0.1ms) select sqlite_version(*)
257
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
258
+  (0.1ms) SELECT version FROM "schema_migrations"
259
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
260
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
261
+  (0.1ms) begin transaction
262
+  (0.1ms) rollback transaction
263
+  (0.1ms) begin transaction
264
+ Rendered home/index.html.erb (1.2ms)
265
+  (0.1ms) rollback transaction
266
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
267
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
268
+  (1.2ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
269
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
270
+  (0.1ms) select sqlite_version(*)
271
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
272
+  (0.1ms) SELECT version FROM "schema_migrations"
273
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
274
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
275
+  (10.9ms) begin transaction
276
+  (0.1ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+ Rendered home/index.html.erb (1.2ms)
279
+  (0.1ms) rollback transaction
280
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
281
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
282
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
283
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
284
+  (0.1ms) select sqlite_version(*)
285
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
286
+  (0.1ms) SELECT version FROM "schema_migrations"
287
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
288
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (0.1ms) begin transaction
290
+  (0.1ms) rollback transaction
291
+  (0.0ms) begin transaction
292
+ Rendered home/index.html.erb (1.7ms)
293
+  (0.1ms) rollback transaction
294
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
295
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
296
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
297
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
298
+  (0.1ms) select sqlite_version(*)
299
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
300
+  (0.1ms) SELECT version FROM "schema_migrations"
301
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
302
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
303
+  (0.1ms) begin transaction
304
+  (0.1ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ Rendered home/index.html.erb (1.7ms)
307
+  (0.1ms) rollback transaction
308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
309
+  (1.3ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
310
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
311
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
312
+  (0.1ms) select sqlite_version(*)
313
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
314
+  (0.1ms) SELECT version FROM "schema_migrations"
315
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
316
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
317
+  (0.1ms) begin transaction
318
+  (0.1ms) rollback transaction
319
+  (0.1ms) begin transaction
320
+ Rendered home/index.html.erb (1.7ms)
321
+  (0.1ms) rollback transaction
322
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+  (1.6ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
324
+  (1.5ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
325
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
326
+  (0.1ms) select sqlite_version(*)
327
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
328
+  (0.1ms) SELECT version FROM "schema_migrations"
329
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
+  (0.1ms) begin transaction
332
+  (0.1ms) rollback transaction
333
+  (0.1ms) begin transaction
334
+ Rendered home/index.html.erb (1.7ms)
335
+  (0.1ms) rollback transaction
336
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
337
+  (1.8ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
338
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
339
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
340
+  (0.1ms) select sqlite_version(*)
341
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
342
+  (0.1ms) SELECT version FROM "schema_migrations"
343
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
344
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
345
+  (0.1ms) begin transaction
346
+  (0.1ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+ Rendered home/index.html.erb (2.0ms)
349
+  (0.1ms) rollback transaction
350
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
351
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
352
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
353
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
354
+  (0.1ms) select sqlite_version(*)
355
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
+  (0.1ms) SELECT version FROM "schema_migrations"
357
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
358
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
359
+  (0.1ms) begin transaction
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+  (0.1ms) rollback transaction
363
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
364
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
365
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
366
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
367
+  (0.1ms) select sqlite_version(*)
368
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
369
+  (0.3ms) SELECT version FROM "schema_migrations"
370
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
371
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
372
+  (0.1ms) begin transaction
373
+  (0.1ms) rollback transaction
374
+  (0.1ms) begin transaction
375
+ Rendered home/index.html.erb (1.5ms)
376
+  (0.1ms) rollback transaction
377
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+  (2.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
379
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
381
+  (0.1ms) select sqlite_version(*)
382
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
383
+  (0.1ms) SELECT version FROM "schema_migrations"
384
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
385
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
386
+  (0.1ms) begin transaction
387
+  (0.1ms) rollback transaction
388
+  (0.1ms) begin transaction
389
+ Rendered home/index.html.erb (1.3ms)
390
+ ----------------------
391
+ "\n"
392
+  (0.1ms) rollback transaction
393
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
394
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
395
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
396
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
397
+  (0.1ms) select sqlite_version(*)
398
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
399
+  (0.1ms) SELECT version FROM "schema_migrations"
400
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
401
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
402
+  (0.1ms) begin transaction
403
+  (0.1ms) rollback transaction
404
+  (0.0ms) begin transaction
405
+  (0.1ms) rollback transaction
406
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
407
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
408
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
409
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
410
+  (0.1ms) select sqlite_version(*)
411
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
412
+  (0.1ms) SELECT version FROM "schema_migrations"
413
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
414
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
415
+  (0.1ms) begin transaction
416
+  (0.1ms) rollback transaction
417
+  (0.1ms) begin transaction
418
+ Processing by HomeController#index as HTML
419
+ Rendered home/index.html.erb within layouts/application (0.3ms)
420
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
421
+ --------------------------------
422
+  (0.1ms) rollback transaction
423
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
424
+  (1.4ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
425
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
426
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
427
+  (0.1ms) select sqlite_version(*)
428
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
429
+  (0.1ms) SELECT version FROM "schema_migrations"
430
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
431
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
432
+  (0.1ms) begin transaction
433
+  (0.1ms) rollback transaction
434
+  (0.1ms) begin transaction
435
+ Processing by HomeController#index as HTML
436
+ Rendered home/index.html.erb within layouts/application (0.4ms)
437
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
438
+  (0.1ms) rollback transaction
439
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
440
+  (1.8ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
441
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
442
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
443
+  (0.1ms) select sqlite_version(*)
444
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
445
+  (0.1ms) SELECT version FROM "schema_migrations"
446
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
448
+  (0.1ms) begin transaction
449
+  (0.1ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ Processing by HomeController#index as HTML
452
+ Rendered home/index.html.erb within layouts/application (0.3ms)
453
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
454
+  (0.1ms) rollback transaction
455
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
456
+  (1.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
457
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
458
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
459
+  (0.1ms) select sqlite_version(*)
460
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
461
+  (0.1ms) SELECT version FROM "schema_migrations"
462
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
463
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
464
+  (0.1ms) begin transaction
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ Processing by HomeController#index as HTML
468
+ Rendered home/index.html.erb within layouts/application (0.4ms)
469
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
470
+ #<ActionController::TestResponse:0x007f8438f32000 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007f8438f29270>, @stream=#<ActionDispatch::Response::Buffer:0x007f8438e68de0 @response=#<ActionController::TestResponse:0x007f8438f32000 ...>, @buf=[""], @closed=false>, @header={"X-Frame-Options"=>"SAMEORIGIN", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff", "Content-Type"=>"text/html; charset=utf-8"}, @status=200, @sending_file=false, @blank=false, @cv=#<MonitorMixin::ConditionVariable:0x007f8438f291a8 @monitor=#<ActionController::TestResponse:0x007f8438f32000 ...>, @cond=#<Thread::ConditionVariable:0x007f8438f29158>>, @committed=false, @sending=false, @sent=false, @content_type="text/html", @charset="utf-8", @cache_control={}, @etag=nil, @request=#<ActionController::TestRequest:0x007f8438f32410 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007f8438f22b00>, "rack.errors"=>#<StringIO:0x007f8435d59448>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>nil, "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007f8435a0c4e8>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007f84340c6740 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007f84340c66c8 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007f8435c193f8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007f84340c6650 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/private/tmp/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007f84340c6628 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007f84340c6588>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007f8438f4bc30 @filters=[#<Proc:0x007f8438f4bb18@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007f8438f4baf0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007f8438f4bac8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007f8438f4b690@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007f8438f4b668@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/private/tmp/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007f8438a3aae8 @key_generator=#<ActiveSupport::KeyGenerator:0x007f8438a3ab10 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007f8438a3aac0 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"149904df0e14b0ae8211b87fa27ea1fa"}, "action_dispatch.request.query_parameters"=>{}, "action_dispatch.cookies"=>#<ActionDispatch::Cookies::CookieJar:0x007f8438f29810 @key_generator=#<ActiveSupport::CachingKeyGenerator:0x007f8438a3aae8 @key_generator=#<ActiveSupport::KeyGenerator:0x007f8438a3ab10 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007f8438a3aac0 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, @set_cookies={}, @delete_cookies={}, @host="test.host", @secure=false, @options={:signed_cookie_salt=>"signed cookie", :encrypted_cookie_salt=>"encrypted cookie", :encrypted_signed_cookie_salt=>"signed encrypted cookie", :secret_token=>nil, :secret_key_base=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", :upgrade_legacy_signed_cookies=>false, :serializer=>:json, :digest=>nil}, @cookies={}, @committed=false>, "rack.request.cookie_hash"=>{}, "action_dispatch.request.path_parameters"=>{:controller=>"home", :action=>"index"}, "action_dispatch.request.content_type"=>nil, "action_dispatch.request.request_parameters"=>{}, "action_dispatch.request.flash_hash"=>#<ActionDispatch::Flash::FlashHash:0x007f8438f22a88 @discard=#<Set: {}>, @flashes={}, @now=nil>, "PATH_INFO"=>"/home/index", "action_dispatch.request.parameters"=>{"controller"=>"home", "action"=>"index"}, "action_dispatch.request.formats"=>[#<Mime::Type:0x007f84343f2888 @synonyms=["application/xhtml+xml"], @symbol=:html, @string="text/html">]}, @filtered_parameters={"controller"=>"home", "action"=>"index"}, @filtered_env=nil, @filtered_path=nil, @protocol="http://", @port=80, @method=nil, @request_method="GET", @remote_ip=nil, @original_fullpath=nil, @fullpath="/home/index", @ip=nil, @uuid=nil, @formats=nil, @set_cookies={}, @cookies={}>>
471
+  (0.1ms) rollback transaction
472
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
473
+  (2.2ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
474
+  (1.6ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
475
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
476
+  (0.1ms) select sqlite_version(*)
477
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
478
+  (0.1ms) SELECT version FROM "schema_migrations"
479
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
480
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
481
+  (0.1ms) begin transaction
482
+  (0.1ms) rollback transaction
483
+  (0.1ms) begin transaction
484
+ Processing by HomeController#index as HTML
485
+ Rendered home/index.html.erb within layouts/application (0.3ms)
486
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
487
+ ""
488
+  (0.1ms) rollback transaction
489
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
490
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
491
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
492
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
493
+  (0.1ms) select sqlite_version(*)
494
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
495
+  (0.6ms) SELECT version FROM "schema_migrations"
496
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
497
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
498
+  (0.1ms) begin transaction
499
+  (0.1ms) rollback transaction
500
+  (0.1ms) begin transaction
501
+ Processing by HomeController#index as HTML
502
+ Rendered home/index.html.erb within layouts/application (0.4ms)
503
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
504
+  (0.1ms) rollback transaction
505
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
506
+  (1.6ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
507
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
508
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
509
+  (0.1ms) select sqlite_version(*)
510
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
511
+  (0.2ms) SELECT version FROM "schema_migrations"
512
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
513
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
514
+  (0.1ms) begin transaction
515
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ Processing by HomeController#index as HTML
518
+ Rendered home/index.html.erb within layouts/application (0.6ms)
519
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
520
+  (0.1ms) rollback transaction
521
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
522
+  (2.3ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
523
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
524
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
525
+  (0.1ms) select sqlite_version(*)
526
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
527
+  (0.1ms) SELECT version FROM "schema_migrations"
528
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
529
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
530
+  (0.1ms) begin transaction
531
+  (0.1ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+ Processing by HomeController#index as HTML
534
+ Rendered home/index.html.erb within layouts/application (0.4ms)
535
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
536
+  (0.1ms) rollback transaction
537
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
538
+  (2.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
539
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
540
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
541
+  (0.1ms) select sqlite_version(*)
542
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
543
+  (0.1ms) SELECT version FROM "schema_migrations"
544
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
545
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
546
+  (0.1ms) begin transaction
547
+  (0.1ms) rollback transaction
548
+  (0.0ms) begin transaction
549
+ Processing by HomeController#index as HTML
550
+ Rendered home/index.html.erb within layouts/application (0.7ms)
551
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
552
+  (0.1ms) rollback transaction
553
+  (0.1ms) begin transaction
554
+ Rendered home/index.html.erb within layouts/application (1.4ms)
555
+ ----------------------
556
+ "<!DOCTYPE html>\n<html>\n<head>\n <title>Dummy</title>\n <link rel=\"stylesheet\" media=\"all\" href=\"/assets/application.css\" data-turbolinks-track=\"true\" />\n <script src=\"/assets/application.js\" data-turbolinks-track=\"true\"></script>\n \n</head>\n<body>\n\n\n\n\n\n</body>\n</html>\n"
557
+  (0.4ms) rollback transaction
558
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
559
+  (2.4ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
560
+  (1.3ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
561
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
562
+  (0.1ms) select sqlite_version(*)
563
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
564
+  (0.1ms) SELECT version FROM "schema_migrations"
565
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
566
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
567
+  (0.1ms) begin transaction
568
+  (0.1ms) rollback transaction
569
+  (0.1ms) begin transaction
570
+ Rendered home/index.html.erb within layouts/application (1.3ms)
571
+ ----------------------
572
+ "<!DOCTYPE html>\n<html>\n<head>\n <title>Dummy</title>\n <link rel=\"stylesheet\" media=\"all\" href=\"/assets/application.css\" data-turbolinks-track=\"true\" />\n <script src=\"/assets/application.js\" data-turbolinks-track=\"true\"></script>\n \n</head>\n<body>\n\n\n\n\n\n</body>\n</html>\n"
573
+  (0.1ms) rollback transaction
574
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
575
+  (1.6ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
576
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
577
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
578
+  (0.1ms) select sqlite_version(*)
579
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
580
+  (0.1ms) SELECT version FROM "schema_migrations"
581
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
582
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
583
+  (11.3ms) begin transaction
584
+  (0.1ms) rollback transaction
585
+  (0.1ms) begin transaction
586
+ Rendered home/index.html.erb within layouts/application (1.3ms)
587
+ ----------------------
588
+ "<!DOCTYPE html>\n<html>\n<head>\n <title>Dummy</title>\n <link rel=\"stylesheet\" media=\"all\" href=\"/assets/application.css\" data-turbolinks-track=\"true\" />\n <script src=\"/assets/application.js\" data-turbolinks-track=\"true\"></script>\n \n</head>\n<body>\n\n\n\n\n\n</body>\n</html>\n"
589
+  (0.1ms) rollback transaction
590
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
591
+  (2.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
592
+  (1.2ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
593
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
594
+  (0.1ms) select sqlite_version(*)
595
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
596
+  (0.1ms) SELECT version FROM "schema_migrations"
597
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
598
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
599
+  (0.1ms) begin transaction
600
+  (0.1ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ Rendered home/index.html.erb within layouts/application (1.0ms)
603
+ ----------------------
604
+ "<!DOCTYPE html>\n<html>\n<head>\n <title>Dummy</title>\n <link rel=\"stylesheet\" media=\"all\" href=\"/assets/application.css\" data-turbolinks-track=\"true\" />\n <script src=\"/assets/application.js\" data-turbolinks-track=\"true\"></script>\n \n</head>\n<body>\n\n\n\n\n\n</body>\n</html>\n"
605
+  (0.1ms) rollback transaction
606
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
607
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
608
+  (1.4ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
609
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
610
+  (0.1ms) select sqlite_version(*)
611
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
612
+  (0.1ms) SELECT version FROM "schema_migrations"
613
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
614
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
615
+  (0.1ms) begin transaction
616
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
618
+ Processing by HomeController#index as HTML
619
+ Rendered home/index.html.erb within layouts/application (0.3ms)
620
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
621
+  (0.1ms) rollback transaction
622
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
623
+  (1.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
624
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
625
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
626
+  (0.1ms) select sqlite_version(*)
627
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
628
+  (0.1ms) SELECT version FROM "schema_migrations"
629
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
630
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
631
+  (0.1ms) begin transaction
632
+  (0.2ms) rollback transaction
633
+  (0.1ms) begin transaction
634
+ Processing by HomeController#index as HTML
635
+ Completed 500 Internal Server Error in 2ms
636
+  (0.1ms) rollback transaction
637
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
638
+  (2.2ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
639
+  (1.1ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
640
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
641
+  (0.1ms) select sqlite_version(*)
642
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
643
+  (0.1ms) SELECT version FROM "schema_migrations"
644
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
645
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
646
+  (0.1ms) begin transaction
647
+  (0.1ms) rollback transaction
648
+  (0.1ms) begin transaction
649
+ Processing by HomeController#index as HTML
650
+ "this is title"
651
+ Rendered home/index.html.erb within layouts/application (0.3ms)
652
+ Completed 200 OK in 9ms (Views: 4.3ms | ActiveRecord: 0.0ms)
653
+  (0.1ms) rollback transaction
654
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
655
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
656
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
657
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
658
+  (0.1ms) select sqlite_version(*)
659
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
660
+  (0.1ms) SELECT version FROM "schema_migrations"
661
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+  (0.1ms) begin transaction
664
+  (0.1ms) rollback transaction
665
+  (0.1ms) begin transaction
666
+ Processing by HomeController#index as HTML
667
+ "this is title"
668
+ Rendered home/index.html.erb within layouts/application (0.4ms)
669
+ Completed 200 OK in 10ms (Views: 4.9ms | ActiveRecord: 0.0ms)
670
+  (0.1ms) rollback transaction
671
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
672
+  (1.8ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
673
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
674
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
675
+  (0.1ms) select sqlite_version(*)
676
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
677
+  (0.1ms) SELECT version FROM "schema_migrations"
678
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
679
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
680
+  (0.1ms) begin transaction
681
+  (0.1ms) rollback transaction
682
+  (0.0ms) begin transaction
683
+ Processing by HomeController#index as HTML
684
+ "this is title"
685
+ Rendered home/index.html.erb within layouts/application (0.3ms)
686
+ Completed 200 OK in 11ms (Views: 4.0ms | ActiveRecord: 0.0ms)
687
+  (0.1ms) rollback transaction
688
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
689
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
690
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
691
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
692
+  (0.1ms) select sqlite_version(*)
693
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
694
+  (0.1ms) SELECT version FROM "schema_migrations"
695
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
696
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
697
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
698
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
699
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
700
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
701
+  (0.1ms) select sqlite_version(*)
702
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
703
+  (0.1ms) SELECT version FROM "schema_migrations"
704
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
705
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
706
+  (0.1ms) begin transaction
707
+  (0.1ms) rollback transaction
708
+  (0.0ms) begin transaction
709
+ Processing by HomeController#index as HTML
710
+ Rendered home/index.html.erb within layouts/application (0.4ms)
711
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
712
+  (0.1ms) rollback transaction
713
+  (0.1ms) begin transaction
714
+  (0.1ms) rollback transaction
715
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
716
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
717
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
718
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
719
+  (0.1ms) select sqlite_version(*)
720
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
721
+  (0.1ms) SELECT version FROM "schema_migrations"
722
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
723
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
724
+  (0.1ms) begin transaction
725
+  (0.1ms) rollback transaction
726
+  (0.1ms) begin transaction
727
+ Processing by HomeController#index as HTML
728
+ Rendered home/index.html.erb within layouts/application (0.3ms)
729
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
730
+  (0.1ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ Rendered home/index.html.erb (1.4ms)
733
+  (0.1ms) rollback transaction
734
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
735
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
736
+  (1.1ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
737
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
738
+  (0.1ms) select sqlite_version(*)
739
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
740
+  (0.1ms) SELECT version FROM "schema_migrations"
741
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
742
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
743
+  (0.1ms) begin transaction
744
+  (0.1ms) rollback transaction
745
+  (0.1ms) begin transaction
746
+  (0.1ms) rollback transaction
747
+  (0.0ms) begin transaction
748
+ Rendered home/index.html.erb (1.0ms)
749
+  (0.1ms) rollback transaction
750
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
751
+  (1.8ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
752
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
753
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
754
+  (0.1ms) select sqlite_version(*)
755
+  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
756
+  (0.2ms) SELECT version FROM "schema_migrations"
757
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
758
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
+  (0.1ms) begin transaction
760
+  (0.1ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+  (0.1ms) rollback transaction
763
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
764
+  (1.8ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
765
+  (1.1ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
766
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
767
+  (0.1ms) select sqlite_version(*)
768
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
769
+  (0.1ms) SELECT version FROM "schema_migrations"
770
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
771
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
772
+  (0.1ms) begin transaction
773
+ Rendered home/index.html.erb (1.0ms)
774
+ #<#<Class:0x007fd8b6358a40>:0x007fd8b63494c8 @_routes=nil, @_config={}, @view_renderer=#<ActionView::Renderer:0x007fd8b63481b8 @lookup_context=#<ActionView::LookupContext:0x007fd8b6348438 @details_key=#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["", "home"], @rendered_format=:html, @view_paths=#<ActionView::PathSet:0x007fd8b6348348 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd8b243dbd0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd8b243db30 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd8b243db08 @backend={#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303658 @backend={"index"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303518 @backend={"home"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303400 @backend={false=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b63032c0 @backend={[]=>[app/views/home/index.html.erb]}, @default_proc=nil>}, @default_proc=#<Proc:0x007fd8b2481c68@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:46 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c40@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:47 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c18@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:48 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481bc8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>>, @request=#<ActionController::TestRequest:0x007fd8b6373070 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007fd8b223f108>, "rack.errors"=>#<StringIO:0x007fd8b22447c0>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007fd8b24446b0>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007fd8b239bf10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd8b239bec0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd8b15933c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd8b239be48 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd8b239be20 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b239bdd0>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007fd8b635b358 @filters=[#<Proc:0x007fd8b635b1c8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007fd8b635b1a0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007fd8b635b178@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007fd8b635ac00@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007fd8b635abb0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/Users/nicolas/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007fd8b19e1b78 @key_generator=#<ActiveSupport::KeyGenerator:0x007fd8b19e1ba0 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007fd8b19e1b50 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"98ca11bb33ac586dcd6851ddb596ea3c"}, "action_dispatch.request.path_parameters"=>{:controller=>"home", :action=>"index"}}, @filtered_parameters=nil, @filtered_env=nil, @filtered_path=nil, @protocol=nil, @port=nil, @method=nil, @request_method=nil, @remote_ip=nil, @original_fullpath=nil, @fullpath=nil, @ip=nil, @uuid=nil>, @response=#<ActionController::TestResponse:0x007fd8b6359968 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63598a0>, @stream=#<ActionDispatch::Response::Buffer:0x007fd8b63597b0 @response=#<ActionController::TestResponse:0x007fd8b6359968 ...>, @buf=[], @closed=false>, @header={"X-Frame-Options"=>"SAMEORIGIN", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff"}, @status=200, @sending_file=false, @blank=false, @cv=#<MonitorMixin::ConditionVariable:0x007fd8b6359788 @monitor=#<ActionController::TestResponse:0x007fd8b6359968 ...>, @cond=#<Thread::ConditionVariable:0x007fd8b6359738>>, @committed=false, @sending=false, @sent=false, @content_type=nil, @charset=nil, @cache_control={}, @etag=nil>, @params={}, @_assigns={:example=>nil, :__memoized=>{:_default_file_to_render=>"home/index"}, :fixture_cache=>{}, :fixture_connections=>[#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 @transaction_manager=#<ActiveRecord::ConnectionAdapters::TransactionManager:0x007fd8b63c2058 @stack=[#<ActiveRecord::ConnectionAdapters::RealTransaction:0x007fd8b63783b8 @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>, @state=#<ActiveRecord::ConnectionAdapters::TransactionState:0x007fd8b6378390 @state=nil, @parent=nil>, @records=[], @joinable=false>], @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>>, @query_cache={}, @query_cache_enabled=false, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63c1e78>, @connection=#<SQLite3::Database:0x007fd8b63c24b8 @tracefunc=nil, @authorizer=nil, @encoding=#<Encoding:UTF-8>, @busy_handler=nil, @collations={}, @functions={}, @results_as_hash=true, @type_translation=nil, @readonly=false>, @owner=#<Thread:0x007fd8b10cb7c8 run>, @instrumenter=#<ActiveSupport::Notifications::Instrumenter:0x007fd8b1321428 @id="ce03cacfd8eeaa4f51d7", @notifier=#<ActiveSupport::Notifications::Fanout:0x007fd8b155bab8 @subscribers=[#<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bbb38 @pattern="start_processing.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb818 @pattern="process_action.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb660 @pattern="halted_callback.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb408 @pattern="send_file.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb228 @pattern="redirect_to.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb048 @pattern="send_data.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16badf0 @pattern="unpermitted_parameters.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16babe8 @pattern="deep_munge.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16baa08 @pattern="write_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba800 @pattern="read_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba5d0 @pattern="exist_fragment?.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba260 @pattern="expire_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9fb8 @pattern="expire_page.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9b80 @pattern="write_page.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9720 @pattern="logger.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c700 @pattern="render_template.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c4f8 @pattern="render_partial.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c340 @pattern="render_collection.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c160 @pattern="logger.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593d78 @pattern="render_bind.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593af8 @pattern="sql.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593850 @pattern="odd?.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593698 @pattern="logger.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b60321b8 @pattern="deliver.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6032000 @pattern="receive.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6031e20 @pattern="process.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6031c68 @pattern="logger.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6169fe0 @pattern="sql.active_record", @delegate=#<ActiveRecord::ExplainSubscriber:0x007fd8b616a058>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358c70 @pattern="render_template.action_view", @delegate=#<Proc:0x007fd8b6358c98@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:27>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358b58 @pattern="!render_template.action_view", @delegate=#<Proc:0x007fd8b6358b80@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:37>, @can_publish=false>], @listeners_for=#<ThreadSafe::Cache:0x007fd8b155ba68 @backend={"render_template.action_view"=>[#<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c700 @pattern="render_template.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358c70 @pattern="render_template.action_view", @delegate=#<Proc:0x007fd8b6358c98@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:27>, @can_publish=false>], "!render_template.action_view"=>[#<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358b58 @pattern="!render_template.action_view", @delegate=#<Proc:0x007fd8b6358b80@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:37>, @can_publish=false>], "!compile_template.action_view"=>[]}, @default_proc=nil>, @_mutex=#<Mutex:0x007fd8b155b9f0>>>, @logger=#<ActiveSupport::Logger:0x007fd8b239bf10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd8b239bec0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd8b15933c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd8b239be48 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd8b239be20 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b239bdd0>>>>, @pool=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63c3728>, @spec=#<ActiveRecord::ConnectionAdapters::ConnectionSpecification:0x007fd8b63c3c50 @config={:adapter=>"sqlite3", :pool=>5, :timeout=>5000, :database=>"/Users/nicolas/content_for_rails/spec/dummy/db/test.sqlite3"}, @adapter_method="sqlite3_connection">, @checkout_timeout=5, @reaper=#<ActiveRecord::ConnectionAdapters::ConnectionPool::Reaper:0x007fd8b63c36b0 @pool=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @frequency=nil>, @size=5, @reserved_connections=#<ThreadSafe::Cache:0x007fd8b63c3660 @backend={70284330032100=>#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>}, @default_proc=nil>, @connections=[#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>], @automatic_reconnect=true, @available=#<ActiveRecord::ConnectionAdapters::ConnectionPool::Queue:0x007fd8b63c3520 @lock=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @cond=#<MonitorMixin::ConditionVariable:0x007fd8b63c34a8 @monitor=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @cond=#<Thread::ConditionVariable:0x007fd8b63c33e0>>, @num_waiting=0, @queue=[]>>, @schema_cache=#<ActiveRecord::ConnectionAdapters::SchemaCache:0x007fd8b63c1e00 @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>, @columns={}, @columns_hash={}, @primary_keys={}, @tables={}>, @visitor=#<Arel::Visitors::SQLite:0x007fd8b63c1bf8 @dispatch={Arel::Nodes::SelectStatement=>"visit_Arel_Nodes_SelectStatement", Arel::Attributes::Attribute=>"visit_Arel_Attributes_Attribute", Arel::Nodes::JoinSource=>"visit_Arel_Nodes_JoinSource", Arel::Table=>"visit_Arel_Table"}, @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>>, @prepared_statements=true, @active=nil, @statements=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool:0x007fd8b63c1c98 @connection=#<SQLite3::Database:0x007fd8b63c24b8 @tracefunc=nil, @authorizer=nil, @encoding=#<Encoding:UTF-8>, @busy_handler=nil, @collations={}, @functions={}, @results_as_hash=true, @type_translation=nil, @readonly=false>, @max=1000, @cache={}>, @config={:adapter=>"sqlite3", :pool=>5, :timeout=>5000, :database=>"/Users/nicolas/content_for_rails/spec/dummy/db/test.sqlite3"}>], :loaded_fixtures=>{}}, @_controller=#<ActionView::TestCase::TestController:0x007fd8b63731d8 @_action_has_layout=true, @_routes=nil, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=nil, @_response=nil, @request=#<ActionController::TestRequest:0x007fd8b6373070 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007fd8b223f108>, "rack.errors"=>#<StringIO:0x007fd8b22447c0>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007fd8b24446b0>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007fd8b239bf10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd8b239bec0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd8b15933c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd8b239be48 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd8b239be20 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b239bdd0>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007fd8b635b358 @filters=[#<Proc:0x007fd8b635b1c8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007fd8b635b1a0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007fd8b635b178@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007fd8b635ac00@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007fd8b635abb0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/Users/nicolas/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007fd8b19e1b78 @key_generator=#<ActiveSupport::KeyGenerator:0x007fd8b19e1ba0 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007fd8b19e1b50 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"98ca11bb33ac586dcd6851ddb596ea3c"}, "action_dispatch.request.path_parameters"=>{:controller=>"home", :action=>"index"}}, @filtered_parameters=nil, @filtered_env=nil, @filtered_path=nil, @protocol=nil, @port=nil, @method=nil, @request_method=nil, @remote_ip=nil, @original_fullpath=nil, @fullpath=nil, @ip=nil, @uuid=nil>, @response=#<ActionController::TestResponse:0x007fd8b6359968 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63598a0>, @stream=#<ActionDispatch::Response::Buffer:0x007fd8b63597b0 @response=#<ActionController::TestResponse:0x007fd8b6359968 ...>, @buf=[], @closed=false>, @header={"X-Frame-Options"=>"SAMEORIGIN", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff"}, @status=200, @sending_file=false, @blank=false, @cv=#<MonitorMixin::ConditionVariable:0x007fd8b6359788 @monitor=#<ActionController::TestResponse:0x007fd8b6359968 ...>, @cond=#<Thread::ConditionVariable:0x007fd8b6359738>>, @committed=false, @sending=false, @sent=false, @content_type=nil, @charset=nil, @cache_control={}, @etag=nil>, @params={}, @_view_context_class=#<Class:0x007fd8b6358a40>, @_lookup_context=#<ActionView::LookupContext:0x007fd8b6348438 @details_key=#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["", "home"], @rendered_format=:html, @view_paths=#<ActionView::PathSet:0x007fd8b6348348 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd8b243dbd0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd8b243db30 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd8b243db08 @backend={#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303658 @backend={"index"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303518 @backend={"home"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303400 @backend={false=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b63032c0 @backend={[]=>[app/views/home/index.html.erb]}, @default_proc=nil>}, @default_proc=#<Proc:0x007fd8b2481c68@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:46 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c40@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:47 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c18@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:48 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481bc8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>, @_view_renderer=#<ActionView::Renderer:0x007fd8b63481b8 @lookup_context=#<ActionView::LookupContext:0x007fd8b6348438 @details_key=#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["", "home"], @rendered_format=:html, @view_paths=#<ActionView::PathSet:0x007fd8b6348348 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd8b243dbd0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd8b243db30 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd8b243db08 @backend={#<ActionView::LookupContext::DetailsKey:0x007fd8b63037c0 @hash=3252948958885552791>=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303658 @backend={"index"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303518 @backend={"home"=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b6303400 @backend={false=>#<ActionView::Resolver::Cache::SmallCache:0x007fd8b63032c0 @backend={[]=>[app/views/home/index.html.erb]}, @default_proc=nil>}, @default_proc=#<Proc:0x007fd8b2481c68@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:46 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c40@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:47 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481c18@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:48 (lambda)>>}, @default_proc=#<Proc:0x007fd8b2481bc8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>>, @_config={}>, @_request=#<ActionController::TestRequest:0x007fd8b6373070 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007fd8b223f108>, "rack.errors"=>#<StringIO:0x007fd8b22447c0>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007fd8b24446b0>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007fd8b239bf10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd8b239bec0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd8b15933c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd8b239be48 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd8b239be20 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b239bdd0>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007fd8b635b358 @filters=[#<Proc:0x007fd8b635b1c8@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007fd8b635b1a0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007fd8b635b178@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007fd8b635ac00@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007fd8b635abb0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/Users/nicolas/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007fd8b19e1b78 @key_generator=#<ActiveSupport::KeyGenerator:0x007fd8b19e1ba0 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007fd8b19e1b50 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"98ca11bb33ac586dcd6851ddb596ea3c"}, "action_dispatch.request.path_parameters"=>{:controller=>"home", :action=>"index"}}, @filtered_parameters=nil, @filtered_env=nil, @filtered_path=nil, @protocol=nil, @port=nil, @method=nil, @request_method=nil, @remote_ip=nil, @original_fullpath=nil, @fullpath=nil, @ip=nil, @uuid=nil>, @view_flow=#<ActionView::OutputFlow:0x007fd8b6338fb0 @content={}>, @output_buffer="", @virtual_path=nil, @rendered_views=#<ActionView::TestCase::Behavior::RenderedViewsCollection:0x007fd8b6338e20 @rendered_views={}>, @example=nil, @__memoized={:_default_file_to_render=>"home/index"}, @fixture_cache={}, @fixture_connections=[#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 @transaction_manager=#<ActiveRecord::ConnectionAdapters::TransactionManager:0x007fd8b63c2058 @stack=[#<ActiveRecord::ConnectionAdapters::RealTransaction:0x007fd8b63783b8 @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>, @state=#<ActiveRecord::ConnectionAdapters::TransactionState:0x007fd8b6378390 @state=nil, @parent=nil>, @records=[], @joinable=false>], @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>>, @query_cache={}, @query_cache_enabled=false, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63c1e78>, @connection=#<SQLite3::Database:0x007fd8b63c24b8 @tracefunc=nil, @authorizer=nil, @encoding=#<Encoding:UTF-8>, @busy_handler=nil, @collations={}, @functions={}, @results_as_hash=true, @type_translation=nil, @readonly=false>, @owner=#<Thread:0x007fd8b10cb7c8 run>, @instrumenter=#<ActiveSupport::Notifications::Instrumenter:0x007fd8b1321428 @id="ce03cacfd8eeaa4f51d7", @notifier=#<ActiveSupport::Notifications::Fanout:0x007fd8b155bab8 @subscribers=[#<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bbb38 @pattern="start_processing.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb818 @pattern="process_action.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb660 @pattern="halted_callback.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb408 @pattern="send_file.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb228 @pattern="redirect_to.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16bb048 @pattern="send_data.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16badf0 @pattern="unpermitted_parameters.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16babe8 @pattern="deep_munge.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16baa08 @pattern="write_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba800 @pattern="read_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba5d0 @pattern="exist_fragment?.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16ba260 @pattern="expire_fragment.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9fb8 @pattern="expire_page.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9b80 @pattern="write_page.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b16b9720 @pattern="logger.action_controller", @delegate=#<ActionController::LogSubscriber:0x007fd8b24b87b8 @queue_key="ActionController::LogSubscriber-70284340478940", @patterns=["start_processing.action_controller", "process_action.action_controller", "halted_callback.action_controller", "send_file.action_controller", "redirect_to.action_controller", "send_data.action_controller", "unpermitted_parameters.action_controller", "deep_munge.action_controller", "write_fragment.action_controller", "read_fragment.action_controller", "exist_fragment?.action_controller", "expire_fragment.action_controller", "expire_page.action_controller", "write_page.action_controller", "logger.action_controller"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c700 @pattern="render_template.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c4f8 @pattern="render_partial.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c340 @pattern="render_collection.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c160 @pattern="logger.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593d78 @pattern="render_bind.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593af8 @pattern="sql.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593850 @pattern="odd?.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b1593698 @pattern="logger.active_record", @delegate=#<ActiveRecord::LogSubscriber:0x007fd8b1599fe8 @queue_key="ActiveRecord::LogSubscriber-70284332552180", @patterns=["render_bind.active_record", "sql.active_record", "odd?.active_record", "logger.active_record"], @odd=true>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b60321b8 @pattern="deliver.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6032000 @pattern="receive.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6031e20 @pattern="process.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6031c68 @pattern="logger.action_mailer", @delegate=#<ActionMailer::LogSubscriber:0x007fd8b60325c8 @queue_key="ActionMailer::LogSubscriber-70284371661540", @patterns=["deliver.action_mailer", "receive.action_mailer", "process.action_mailer", "logger.action_mailer"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b6169fe0 @pattern="sql.active_record", @delegate=#<ActiveRecord::ExplainSubscriber:0x007fd8b616a058>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358c70 @pattern="render_template.action_view", @delegate=#<Proc:0x007fd8b6358c98@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:27>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358b58 @pattern="!render_template.action_view", @delegate=#<Proc:0x007fd8b6358b80@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:37>, @can_publish=false>], @listeners_for=#<ThreadSafe::Cache:0x007fd8b155ba68 @backend={"render_template.action_view"=>[#<ActiveSupport::Notifications::Fanout::Subscribers::Evented:0x007fd8b138c700 @pattern="render_template.action_view", @delegate=#<ActionView::LogSubscriber:0x007fd8b138ca20 @root="/Users/nicolas/content_for_rails/spec/dummy/", @queue_key="ActionView::LogSubscriber-70284331476240", @patterns=["render_template.action_view", "render_partial.action_view", "render_collection.action_view", "logger.action_view"]>, @can_publish=false>, #<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358c70 @pattern="render_template.action_view", @delegate=#<Proc:0x007fd8b6358c98@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:27>, @can_publish=false>], "!render_template.action_view"=>[#<ActiveSupport::Notifications::Fanout::Subscribers::Timed:0x007fd8b6358b58 @pattern="!render_template.action_view", @delegate=#<Proc:0x007fd8b6358b80@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.0/lib/action_controller/test_case.rb:37>, @can_publish=false>], "!compile_template.action_view"=>[]}, @default_proc=nil>, @_mutex=#<Mutex:0x007fd8b155b9f0>>>, @logger=#<ActiveSupport::Logger:0x007fd8b239bf10 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd8b239bec0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd8b15933c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd8b239be48 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd8b239be20 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b239bdd0>>>>, @pool=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd8b63c3728>, @spec=#<ActiveRecord::ConnectionAdapters::ConnectionSpecification:0x007fd8b63c3c50 @config={:adapter=>"sqlite3", :pool=>5, :timeout=>5000, :database=>"/Users/nicolas/content_for_rails/spec/dummy/db/test.sqlite3"}, @adapter_method="sqlite3_connection">, @checkout_timeout=5, @reaper=#<ActiveRecord::ConnectionAdapters::ConnectionPool::Reaper:0x007fd8b63c36b0 @pool=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @frequency=nil>, @size=5, @reserved_connections=#<ThreadSafe::Cache:0x007fd8b63c3660 @backend={70284330032100=>#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>}, @default_proc=nil>, @connections=[#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>], @automatic_reconnect=true, @available=#<ActiveRecord::ConnectionAdapters::ConnectionPool::Queue:0x007fd8b63c3520 @lock=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @cond=#<MonitorMixin::ConditionVariable:0x007fd8b63c34a8 @monitor=#<ActiveRecord::ConnectionAdapters::ConnectionPool:0x007fd8b63c3868 ...>, @cond=#<Thread::ConditionVariable:0x007fd8b63c33e0>>, @num_waiting=0, @queue=[]>>, @schema_cache=#<ActiveRecord::ConnectionAdapters::SchemaCache:0x007fd8b63c1e00 @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>, @columns={}, @columns_hash={}, @primary_keys={}, @tables={}>, @visitor=#<Arel::Visitors::SQLite:0x007fd8b63c1bf8 @dispatch={Arel::Nodes::SelectStatement=>"visit_Arel_Nodes_SelectStatement", Arel::Attributes::Attribute=>"visit_Arel_Attributes_Attribute", Arel::Nodes::JoinSource=>"visit_Arel_Nodes_JoinSource", Arel::Table=>"visit_Arel_Table"}, @connection=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x007fd8b63c22b0 ...>>, @prepared_statements=true, @active=nil, @statements=#<ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool:0x007fd8b63c1c98 @connection=#<SQLite3::Database:0x007fd8b63c24b8 @tracefunc=nil, @authorizer=nil, @encoding=#<Encoding:UTF-8>, @busy_handler=nil, @collations={}, @functions={}, @results_as_hash=true, @type_translation=nil, @readonly=false>, @max=1000, @cache={}>, @config={:adapter=>"sqlite3", :pool=>5, :timeout=>5000, :database=>"/Users/nicolas/content_for_rails/spec/dummy/db/test.sqlite3"}>], @loaded_fixtures={}>
775
+  (0.1ms) rollback transaction
776
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
777
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
778
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
779
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
780
+  (0.1ms) select sqlite_version(*)
781
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
782
+  (0.1ms) SELECT version FROM "schema_migrations"
783
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
784
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
785
+  (0.1ms) begin transaction
786
+ Rendered home/index.html.erb (1.5ms)
787
+  (0.1ms) rollback transaction
788
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
789
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
790
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
791
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
792
+  (0.1ms) select sqlite_version(*)
793
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
794
+  (0.2ms) SELECT version FROM "schema_migrations"
795
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
796
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
797
+  (0.1ms) begin transaction
798
+  (0.1ms) rollback transaction
799
+  (0.1ms) begin transaction
800
+  (0.1ms) rollback transaction
801
+  (0.1ms) begin transaction
802
+ Processing by HomeController#index as HTML
803
+ Rendered home/index.html.erb within layouts/application (1.5ms)
804
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
805
+  (0.1ms) rollback transaction
806
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
807
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
808
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
809
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
810
+  (0.1ms) select sqlite_version(*)
811
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
812
+  (0.2ms) SELECT version FROM "schema_migrations"
813
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
814
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
815
+  (0.2ms) begin transaction
816
+  (0.1ms) rollback transaction
817
+  (0.1ms) begin transaction
818
+  (0.1ms) rollback transaction
819
+  (0.1ms) begin transaction
820
+ Processing by HomeController#index as HTML
821
+ Rendered home/index.html.erb within layouts/application (1.7ms)
822
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
823
+  (0.1ms) rollback transaction
824
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
825
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
826
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
827
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
828
+  (0.1ms) select sqlite_version(*)
829
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
830
+  (0.1ms) SELECT version FROM "schema_migrations"
831
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
832
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
833
+  (0.1ms) begin transaction
834
+  (0.1ms) rollback transaction
835
+  (0.1ms) begin transaction
836
+  (0.1ms) rollback transaction
837
+  (0.0ms) begin transaction
838
+ Processing by HomeController#index as HTML
839
+ Rendered home/index.html.erb within layouts/application (1.2ms)
840
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
841
+  (0.1ms) rollback transaction
842
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
843
+  (1.7ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
844
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
845
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
846
+  (0.1ms) select sqlite_version(*)
847
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
848
+  (0.1ms) SELECT version FROM "schema_migrations"
849
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
850
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+  (0.1ms) begin transaction
852
+  (0.1ms) rollback transaction
853
+  (0.1ms) begin transaction
854
+  (0.1ms) rollback transaction
855
+  (0.1ms) begin transaction
856
+ Processing by HomeController#index as HTML
857
+ Rendered home/index.html.erb within layouts/application (2.1ms)
858
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
859
+  (0.1ms) rollback transaction
860
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
861
+  (1.5ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
862
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
863
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
864
+  (0.1ms) select sqlite_version(*)
865
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
866
+  (0.1ms) SELECT version FROM "schema_migrations"
867
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
868
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
869
+  (0.1ms) begin transaction
870
+  (0.1ms) rollback transaction
871
+  (0.1ms) begin transaction
872
+ #<#<Class:0x007fd6f64e43f8>:0x007fd6f64d6938 @_routes=nil, @_config={}, @view_renderer=#<ActionView::Renderer:0x007fd6f64d5268 @lookup_context=#<ActionView::LookupContext:0x007fd6f64d4110 @details_key=nil, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["home", "application"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x007fd6f64d4070 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd6f4c78cb0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd6f4c78c88 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd6f4c78c60 @backend={}, @default_proc=#<Proc:0x007fd6f4ccb708@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>>, @_assigns={}, @_controller=#<HomeController:0x007fd6f64e5758 @_action_has_layout=true, @_routes=nil, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=#<ActionController::TestRequest:0x007fd6f64e5668 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007fd6f327da90>, "rack.errors"=>#<StringIO:0x007fd6f327e418>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007fd6f4c7a3d0>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007fd6f4bc6ba0 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd6f4bc6b50 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd6f4f42b30 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd6f4bc6b00 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd6f4bc6ad8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd6f4bc6a38>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007fd6f6505c60 @filters=[#<Proc:0x007fd6f6505a58@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007fd6f6505a30@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007fd6f6505968@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007fd6f65053f0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007fd6f65053a0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/Users/nicolas/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007fd6f37318e8 @key_generator=#<ActiveSupport::KeyGenerator:0x007fd6f3731910 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007fd6f37318c0 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"68b2e9a906b4b13a2b01f2c6a51e644b"}}, @filtered_parameters=nil, @filtered_env=nil, @filtered_path=nil, @protocol=nil, @port=nil, @method=nil, @request_method=nil, @remote_ip=nil, @original_fullpath=nil, @fullpath=nil, @ip=nil, @uuid=nil>, @_response=nil, @_params={}, @_view_context_class=#<Class:0x007fd6f64e43f8>, @_lookup_context=#<ActionView::LookupContext:0x007fd6f64d4110 @details_key=nil, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["home", "application"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x007fd6f64d4070 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd6f4c78cb0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd6f4c78c88 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd6f4c78c60 @backend={}, @default_proc=#<Proc:0x007fd6f4ccb708@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>, @_view_renderer=#<ActionView::Renderer:0x007fd6f64d5268 @lookup_context=#<ActionView::LookupContext:0x007fd6f64d4110 @details_key=nil, @details={:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["home", "application"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x007fd6f64d4070 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007fd6f4c78cb0 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007fd6f4c78c88 @data=#<ActionView::Resolver::Cache::SmallCache:0x007fd6f4c78c60 @backend={}, @default_proc=#<Proc:0x007fd6f4ccb708@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/actionview-4.2.0/lib/action_view/template/resolver.rb:49 (lambda)>>>, @path="/Users/nicolas/content_for_rails/spec/dummy/app/views">]>>>, @_config={}>, @_request=#<ActionController::TestRequest:0x007fd6f64e5668 @env={"rack.version"=>[1, 3], "rack.input"=>#<StringIO:0x007fd6f327da90>, "rack.errors"=>#<StringIO:0x007fd6f327e418>, "rack.multithread"=>true, "rack.multiprocess"=>true, "rack.run_once"=>false, "REQUEST_METHOD"=>"GET", "SERVER_NAME"=>"example.org", "SERVER_PORT"=>"80", "QUERY_STRING"=>"", "rack.url_scheme"=>"http", "HTTPS"=>"off", "SCRIPT_NAME"=>"", "CONTENT_LENGTH"=>"0", "HTTP_HOST"=>"test.host", "REMOTE_ADDR"=>"0.0.0.0", "HTTP_USER_AGENT"=>"Rails Testing", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007fd6f4c7a3d0>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", "action_dispatch.show_exceptions"=>false, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007fd6f4bc6ba0 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007fd6f4bc6b50 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007fd6f4f42b30 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007fd6f4bc6b00 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/nicolas/content_for_rails/spec/dummy/log/test.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007fd6f4bc6ad8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fd6f4bc6a38>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007fd6f6505c60 @filters=[#<Proc:0x007fd6f6505a58@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:14>, #<Proc:0x007fd6f6505a30@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:15>, #<Proc:0x007fd6f6505968@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:16>, #<Proc:0x007fd6f65053f0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:29>], @silencers=[#<Proc:0x007fd6f65053a0@/Users/nicolas/.rvm/gems/ruby-2.1.5/gems/railties-4.2.0/lib/rails/backtrace_cleaner.rb:19>], @root="/Users/nicolas/content_for_rails/spec/dummy/">, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007fd6f37318e8 @key_generator=#<ActiveSupport::KeyGenerator:0x007fd6f3731910 @secret="e1cd4cd07ae120805b242fd79c07c20e0f7ee605cab9816c045434bd73e8800c149b18dad9d9224aa5ed4b3da7bcb5d9cdf7cd2e09bc806ebedfbaaa14ae0855", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007fd6f37318c0 @backend={"signed_global_ids64"=>"\x16F>.\xF4\xCB\xF3\x81\xF9\x10\x18\b\x8B\xFB\x9D\x04\xC0O\xB1\xFE<\x8C\x8E\xE7h<=\xDD\xEBt\x89\a\xA8\x89[5\x1F\xC2\xD3\x9DU\xE2)\x13\x06\x14\xB8\x16\xA7\x02\x91\xC4'\xCB\xF6\x95\x7F\x92\xA2+\x930\x16\xAD"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>:json, "action_dispatch.cookies_digest"=>nil, "rack.session"=>{}, "rack.session.options"=>{:key=>"rack.session", :path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false, :sidbits=>128, :cookie_only=>true, :secure_random=>SecureRandom, :id=>"68b2e9a906b4b13a2b01f2c6a51e644b"}}, @filtered_parameters=nil, @filtered_env=nil, @filtered_path=nil, @protocol=nil, @port=nil, @method=nil, @request_method=nil, @remote_ip=nil, @original_fullpath=nil, @fullpath=nil, @ip=nil, @uuid=nil>, @view_flow=#<ActionView::OutputFlow:0x007fd6f64c5db8 @content={}>, @output_buffer=nil, @virtual_path=nil>
873
+  (0.1ms) rollback transaction
874
+  (0.1ms) begin transaction
875
+ Processing by HomeController#index as HTML
876
+ Rendered home/index.html.erb within layouts/application (1.0ms)
877
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
878
+  (0.1ms) rollback transaction
879
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
880
+  (1.4ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
881
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
882
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
883
+  (0.1ms) select sqlite_version(*)
884
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
885
+  (0.1ms) SELECT version FROM "schema_migrations"
886
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
887
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
888
+  (0.1ms) begin transaction
889
+  (0.4ms) rollback transaction
890
+  (0.1ms) begin transaction
891
+ [:default_url_options, :default_url_options?, :default_url_options=, :view_cache_dependencies, :cookies, :alert, :notice, :form_authenticity_token, :protect_against_forgery?, :_main_app, :main_app, :_routes, :home_index_path, :home_index_url, :url_for, :url_options, :_routes_context, :optimize_routes_generation?, :_with_routes, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :convert_to_model, :model_name_from_record_or_class, :field_error_proc, :field_error_proc=, :streaming_completion_on_exception, :streaming_completion_on_exception=, :prefix_partial_path_with_controller_namespace, :prefix_partial_path_with_controller_namespace=, :default_formats, :default_formats=, :raise_on_missing_translations, :raise_on_missing_translations=, :_routes?, :_routes=, :logger, :logger?, :logger=, :view_renderer, :view_renderer=, :config, :assigns, :config=, :assigns=, :lookup_context, :formats, :formats=, :locale, :locale=, :view_paths, :view_paths=, :assign, :assets_environment, :assets_environment?, :assets_environment=, :assets_manifest, :assets_manifest?, :assets_manifest=, :assets_prefix, :assets_prefix?, :assets_prefix=, :digest_assets, :digest_assets?, :digest_assets=, :debug_assets, :debug_assets?, :debug_assets=, :precompile, :assets, :raise_runtime_errors, :compute_asset_path, :asset_path, :path_to_asset, :asset_digest, :asset_digest_path, :javascript_include_tag, :stylesheet_link_tag, :check_dependencies!, :check_errors_for, :asset_needs_precompile?, :request_debug_assets?, :lookup_asset_for_path, :translate, :t, :localize, :l, :render, :_layout_for, :div_for, :content_tag_for, :dom_class, :dom_id, :record_key_for_dom_id, :form_for, :fields_for, :label, :text_field, :password_field, :hidden_field, :file_field, :text_area, :check_box, :radio_button, :color_field, :search_field, :telephone_field, :phone_field, :date_field, :time_field, :datetime_field, :datetime_local_field, :month_field, :week_field, :url_field, :email_field, :number_field, :range_field, :number_to_phone, :number_to_currency, :number_to_percentage, :number_with_delimiter, :number_with_precision, :number_to_human_size, :number_to_human, :escape_javascript, :j, :javascript_tag, :javascript_cdata_section, :select, :collection_select, :grouped_collection_select, :time_zone_select, :options_for_select, :options_from_collection_for_select, :option_groups_from_collection_for_select, :grouped_options_for_select, :time_zone_options_for_select, :collection_radio_buttons, :collection_check_boxes, :embed_authenticity_token_in_remote_forms, :embed_authenticity_token_in_remote_forms=, :form_tag, :select_tag, :text_field_tag, :label_tag, :hidden_field_tag, :file_field_tag, :password_field_tag, :text_area_tag, :check_box_tag, :radio_button_tag, :submit_tag, :button_tag, :image_submit_tag, :field_set_tag, :color_field_tag, :search_field_tag, :telephone_field_tag, :phone_field_tag, :date_field_tag, :time_field_tag, :datetime_field_tag, :datetime_local_field_tag, :month_field_tag, :week_field_tag, :url_field_tag, :email_field_tag, :number_field_tag, :range_field_tag, :utf8_enforcer_tag, :concat, :safe_concat, :truncate, :highlight, :excerpt, :pluralize, :word_wrap, :simple_format, :cycle, :current_cycle, :reset_cycle, :debug, :sanitize, :sanitize_css, :strip_tags, :strip_links, :cache, :cache_if, :cache_unless, :cache_fragment_name, :atom_feed, :_back_url, :link_to, :button_to, :link_to_unless_current, :link_to_unless, :link_to_if, :mail_to, :current_page?, :auto_discovery_link_tag, :favicon_link_tag, :image_tag, :image_alt, :video_tag, :audio_tag, :asset_url, :url_to_asset, :compute_asset_extname, :compute_asset_host, :javascript_path, :path_to_javascript, :javascript_url, :url_to_javascript, :stylesheet_path, :path_to_stylesheet, :stylesheet_url, :url_to_stylesheet, :image_path, :path_to_image, :image_url, :url_to_image, :video_path, :path_to_video, :video_url, :url_to_video, :audio_path, :path_to_audio, :audio_url, :url_to_audio, :font_path, :path_to_font, :font_url, :url_to_font, :benchmark, :tag, :content_tag, :cdata_section, :escape_once, :raw, :safe_join, :distance_of_time_in_words, :time_ago_in_words, :distance_of_time_in_words_to_now, :date_select, :time_select, :datetime_select, :select_datetime, :select_date, :select_time, :select_second, :select_minute, :select_hour, :select_day, :select_month, :select_year, :time_tag, :csrf_meta_tags, :csrf_meta_tag, :controller, :request, :controller=, :request=, :request_forgery_protection_token, :params, :session, :response, :headers, :flash, :action_name, :controller_name, :controller_path, :assign_controller, :capture, :content_for, :provide, :content_for?, :with_output_buffer, :output_buffer, :output_buffer=, :view_flow, :view_flow=, :_prepare_context, :blank?, :present?, :presence, :try, :try!, :acts_like?, :duplicable?, :deep_dup, :itself, :in?, :presence_in, :to_param, :to_query, :instance_values, :instance_variable_names, :to_json_with_active_support_encoder, :to_json_without_active_support_encoder, :to_json, :as_json, :with_options, :html_safe?, :psych_to_yaml, :to_yaml, :to_yaml_properties, :`, :require_or_load, :require_dependency, :load_dependency, :unloadable, :pretty_print, :pretty_print_cycle, :pretty_print_instance_variables, :pretty_print_inspect, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :singleton_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :pretty_inspect, :class_eval, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :silence, :quietly, :concern, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__, :should, :should_not, :should_receive, :should_not_receive, :stub, :unstub, :stub_chain, :as_null_object, :null_object?, :received_message?]
892
+  (0.1ms) rollback transaction
893
+  (0.1ms) begin transaction
894
+ Processing by HomeController#index as HTML
895
+ Rendered home/index.html.erb within layouts/application (1.3ms)
896
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
897
+  (0.1ms) rollback transaction
898
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
899
+  (0.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
900
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
901
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
902
+  (0.1ms) select sqlite_version(*)
903
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
904
+  (0.1ms) SELECT version FROM "schema_migrations"
905
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
906
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
907
+  (0.1ms) begin transaction
908
+  (0.1ms) rollback transaction
909
+  (0.1ms) begin transaction
910
+ [:default_url_options, :default_url_options?, :default_url_options=, :view_cache_dependencies, :cookies, :alert, :notice, :form_authenticity_token, :protect_against_forgery?, :_main_app, :main_app, :_routes, :home_index_path, :home_index_url, :url_for, :url_options, :_routes_context, :optimize_routes_generation?, :_with_routes, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :convert_to_model, :model_name_from_record_or_class, :field_error_proc, :field_error_proc=, :streaming_completion_on_exception, :streaming_completion_on_exception=, :prefix_partial_path_with_controller_namespace, :prefix_partial_path_with_controller_namespace=, :default_formats, :default_formats=, :raise_on_missing_translations, :raise_on_missing_translations=, :_routes?, :_routes=, :logger, :logger?, :logger=, :view_renderer, :view_renderer=, :config, :assigns, :config=, :assigns=, :lookup_context, :formats, :formats=, :locale, :locale=, :view_paths, :view_paths=, :assign, :assets_environment, :assets_environment?, :assets_environment=, :assets_manifest, :assets_manifest?, :assets_manifest=, :assets_prefix, :assets_prefix?, :assets_prefix=, :digest_assets, :digest_assets?, :digest_assets=, :debug_assets, :debug_assets?, :debug_assets=, :precompile, :assets, :raise_runtime_errors, :compute_asset_path, :asset_path, :path_to_asset, :asset_digest, :asset_digest_path, :javascript_include_tag, :stylesheet_link_tag, :check_dependencies!, :check_errors_for, :asset_needs_precompile?, :request_debug_assets?, :lookup_asset_for_path, :translate, :t, :localize, :l, :render, :_layout_for, :div_for, :content_tag_for, :dom_class, :dom_id, :record_key_for_dom_id, :form_for, :fields_for, :label, :text_field, :password_field, :hidden_field, :file_field, :text_area, :check_box, :radio_button, :color_field, :search_field, :telephone_field, :phone_field, :date_field, :time_field, :datetime_field, :datetime_local_field, :month_field, :week_field, :url_field, :email_field, :number_field, :range_field, :number_to_phone, :number_to_currency, :number_to_percentage, :number_with_delimiter, :number_with_precision, :number_to_human_size, :number_to_human, :escape_javascript, :j, :javascript_tag, :javascript_cdata_section, :select, :collection_select, :grouped_collection_select, :time_zone_select, :options_for_select, :options_from_collection_for_select, :option_groups_from_collection_for_select, :grouped_options_for_select, :time_zone_options_for_select, :collection_radio_buttons, :collection_check_boxes, :embed_authenticity_token_in_remote_forms, :embed_authenticity_token_in_remote_forms=, :form_tag, :select_tag, :text_field_tag, :label_tag, :hidden_field_tag, :file_field_tag, :password_field_tag, :text_area_tag, :check_box_tag, :radio_button_tag, :submit_tag, :button_tag, :image_submit_tag, :field_set_tag, :color_field_tag, :search_field_tag, :telephone_field_tag, :phone_field_tag, :date_field_tag, :time_field_tag, :datetime_field_tag, :datetime_local_field_tag, :month_field_tag, :week_field_tag, :url_field_tag, :email_field_tag, :number_field_tag, :range_field_tag, :utf8_enforcer_tag, :concat, :safe_concat, :truncate, :highlight, :excerpt, :pluralize, :word_wrap, :simple_format, :cycle, :current_cycle, :reset_cycle, :debug, :sanitize, :sanitize_css, :strip_tags, :strip_links, :cache, :cache_if, :cache_unless, :cache_fragment_name, :atom_feed, :_back_url, :link_to, :button_to, :link_to_unless_current, :link_to_unless, :link_to_if, :mail_to, :current_page?, :auto_discovery_link_tag, :favicon_link_tag, :image_tag, :image_alt, :video_tag, :audio_tag, :asset_url, :url_to_asset, :compute_asset_extname, :compute_asset_host, :javascript_path, :path_to_javascript, :javascript_url, :url_to_javascript, :stylesheet_path, :path_to_stylesheet, :stylesheet_url, :url_to_stylesheet, :image_path, :path_to_image, :image_url, :url_to_image, :video_path, :path_to_video, :video_url, :url_to_video, :audio_path, :path_to_audio, :audio_url, :url_to_audio, :font_path, :path_to_font, :font_url, :url_to_font, :benchmark, :tag, :content_tag, :cdata_section, :escape_once, :raw, :safe_join, :distance_of_time_in_words, :time_ago_in_words, :distance_of_time_in_words_to_now, :date_select, :time_select, :datetime_select, :select_datetime, :select_date, :select_time, :select_second, :select_minute, :select_hour, :select_day, :select_month, :select_year, :time_tag, :csrf_meta_tags, :csrf_meta_tag, :controller, :request, :controller=, :request=, :request_forgery_protection_token, :params, :session, :response, :headers, :flash, :action_name, :controller_name, :controller_path, :assign_controller, :capture, :content_for, :provide, :content_for?, :with_output_buffer, :output_buffer, :output_buffer=, :view_flow, :view_flow=, :_prepare_context, :blank?, :present?, :presence, :try, :try!, :acts_like?, :duplicable?, :deep_dup, :itself, :in?, :presence_in, :to_param, :to_query, :instance_values, :instance_variable_names, :to_json_with_active_support_encoder, :to_json_without_active_support_encoder, :to_json, :as_json, :with_options, :html_safe?, :psych_to_yaml, :to_yaml, :to_yaml_properties, :`, :require_or_load, :require_dependency, :load_dependency, :unloadable, :pretty_print, :pretty_print_cycle, :pretty_print_instance_variables, :pretty_print_inspect, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :singleton_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :pretty_inspect, :class_eval, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :silence, :quietly, :concern, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__, :should, :should_not, :should_receive, :should_not_receive, :stub, :unstub, :stub_chain, :as_null_object, :null_object?, :received_message?]
911
+  (0.1ms) rollback transaction
912
+  (0.1ms) begin transaction
913
+ Processing by HomeController#index as HTML
914
+ Rendered home/index.html.erb within layouts/application (1.4ms)
915
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
916
+  (0.1ms) rollback transaction
917
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
918
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
919
+  (0.9ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
920
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
921
+  (0.1ms) select sqlite_version(*)
922
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
923
+  (0.1ms) SELECT version FROM "schema_migrations"
924
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
925
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
926
+  (0.1ms) begin transaction
927
+  (0.1ms) rollback transaction
928
+  (0.1ms) begin transaction
929
+ [:default_url_options, :default_url_options?, :default_url_options=, :view_cache_dependencies, :cookies, :alert, :notice, :form_authenticity_token, :protect_against_forgery?, :_main_app, :main_app, :_routes, :home_index_path, :home_index_url, :url_for, :url_options, :_routes_context, :optimize_routes_generation?, :_with_routes, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :convert_to_model, :model_name_from_record_or_class, :field_error_proc, :field_error_proc=, :streaming_completion_on_exception, :streaming_completion_on_exception=, :prefix_partial_path_with_controller_namespace, :prefix_partial_path_with_controller_namespace=, :default_formats, :default_formats=, :raise_on_missing_translations, :raise_on_missing_translations=, :_routes?, :_routes=, :logger, :logger?, :logger=, :view_renderer, :view_renderer=, :config, :assigns, :config=, :assigns=, :lookup_context, :formats, :formats=, :locale, :locale=, :view_paths, :view_paths=, :assign, :assets_environment, :assets_environment?, :assets_environment=, :assets_manifest, :assets_manifest?, :assets_manifest=, :assets_prefix, :assets_prefix?, :assets_prefix=, :digest_assets, :digest_assets?, :digest_assets=, :debug_assets, :debug_assets?, :debug_assets=, :precompile, :assets, :raise_runtime_errors, :compute_asset_path, :asset_path, :path_to_asset, :asset_digest, :asset_digest_path, :javascript_include_tag, :stylesheet_link_tag, :check_dependencies!, :check_errors_for, :asset_needs_precompile?, :request_debug_assets?, :lookup_asset_for_path, :translate, :t, :localize, :l, :render, :_layout_for, :div_for, :content_tag_for, :dom_class, :dom_id, :record_key_for_dom_id, :form_for, :fields_for, :label, :text_field, :password_field, :hidden_field, :file_field, :text_area, :check_box, :radio_button, :color_field, :search_field, :telephone_field, :phone_field, :date_field, :time_field, :datetime_field, :datetime_local_field, :month_field, :week_field, :url_field, :email_field, :number_field, :range_field, :number_to_phone, :number_to_currency, :number_to_percentage, :number_with_delimiter, :number_with_precision, :number_to_human_size, :number_to_human, :escape_javascript, :j, :javascript_tag, :javascript_cdata_section, :select, :collection_select, :grouped_collection_select, :time_zone_select, :options_for_select, :options_from_collection_for_select, :option_groups_from_collection_for_select, :grouped_options_for_select, :time_zone_options_for_select, :collection_radio_buttons, :collection_check_boxes, :embed_authenticity_token_in_remote_forms, :embed_authenticity_token_in_remote_forms=, :form_tag, :select_tag, :text_field_tag, :label_tag, :hidden_field_tag, :file_field_tag, :password_field_tag, :text_area_tag, :check_box_tag, :radio_button_tag, :submit_tag, :button_tag, :image_submit_tag, :field_set_tag, :color_field_tag, :search_field_tag, :telephone_field_tag, :phone_field_tag, :date_field_tag, :time_field_tag, :datetime_field_tag, :datetime_local_field_tag, :month_field_tag, :week_field_tag, :url_field_tag, :email_field_tag, :number_field_tag, :range_field_tag, :utf8_enforcer_tag, :concat, :safe_concat, :truncate, :highlight, :excerpt, :pluralize, :word_wrap, :simple_format, :cycle, :current_cycle, :reset_cycle, :debug, :sanitize, :sanitize_css, :strip_tags, :strip_links, :cache, :cache_if, :cache_unless, :cache_fragment_name, :atom_feed, :_back_url, :link_to, :button_to, :link_to_unless_current, :link_to_unless, :link_to_if, :mail_to, :current_page?, :auto_discovery_link_tag, :favicon_link_tag, :image_tag, :image_alt, :video_tag, :audio_tag, :asset_url, :url_to_asset, :compute_asset_extname, :compute_asset_host, :javascript_path, :path_to_javascript, :javascript_url, :url_to_javascript, :stylesheet_path, :path_to_stylesheet, :stylesheet_url, :url_to_stylesheet, :image_path, :path_to_image, :image_url, :url_to_image, :video_path, :path_to_video, :video_url, :url_to_video, :audio_path, :path_to_audio, :audio_url, :url_to_audio, :font_path, :path_to_font, :font_url, :url_to_font, :benchmark, :tag, :content_tag, :cdata_section, :escape_once, :raw, :safe_join, :distance_of_time_in_words, :time_ago_in_words, :distance_of_time_in_words_to_now, :date_select, :time_select, :datetime_select, :select_datetime, :select_date, :select_time, :select_second, :select_minute, :select_hour, :select_day, :select_month, :select_year, :time_tag, :csrf_meta_tags, :csrf_meta_tag, :controller, :request, :controller=, :request=, :request_forgery_protection_token, :params, :session, :response, :headers, :flash, :action_name, :controller_name, :controller_path, :assign_controller, :capture, :content_for, :provide, :content_for?, :with_output_buffer, :output_buffer, :output_buffer=, :view_flow, :view_flow=, :_prepare_context, :blank?, :present?, :presence, :try, :try!, :acts_like?, :duplicable?, :deep_dup, :itself, :in?, :presence_in, :to_param, :to_query, :instance_values, :instance_variable_names, :to_json_with_active_support_encoder, :to_json_without_active_support_encoder, :to_json, :as_json, :with_options, :html_safe?, :psych_to_yaml, :to_yaml, :to_yaml_properties, :`, :require_or_load, :require_dependency, :load_dependency, :unloadable, :pretty_print, :pretty_print_cycle, :pretty_print_instance_variables, :pretty_print_inspect, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :singleton_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :pretty_inspect, :class_eval, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :silence, :quietly, :concern, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__, :should, :should_not, :should_receive, :should_not_receive, :stub, :unstub, :stub_chain, :as_null_object, :null_object?, :received_message?]
930
+  (0.2ms) rollback transaction
931
+  (0.1ms) begin transaction
932
+ Processing by HomeController#index as HTML
933
+ Rendered home/index.html.erb within layouts/application (3.3ms)
934
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
935
+  (0.1ms) rollback transaction
936
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
937
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
938
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
939
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
940
+  (0.1ms) select sqlite_version(*)
941
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
942
+  (0.1ms) SELECT version FROM "schema_migrations"
943
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
944
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
945
+  (0.1ms) begin transaction
946
+  (0.1ms) rollback transaction
947
+  (0.0ms) begin transaction
948
+ [:default_url_options, :default_url_options?, :default_url_options=, :view_cache_dependencies, :cookies, :alert, :notice, :form_authenticity_token, :protect_against_forgery?, :_main_app, :main_app, :_routes, :home_index_path, :home_index_url, :url_for, :url_options, :_routes_context, :optimize_routes_generation?, :_with_routes, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :convert_to_model, :model_name_from_record_or_class, :field_error_proc, :field_error_proc=, :streaming_completion_on_exception, :streaming_completion_on_exception=, :prefix_partial_path_with_controller_namespace, :prefix_partial_path_with_controller_namespace=, :default_formats, :default_formats=, :raise_on_missing_translations, :raise_on_missing_translations=, :_routes?, :_routes=, :logger, :logger?, :logger=, :view_renderer, :view_renderer=, :config, :assigns, :config=, :assigns=, :lookup_context, :formats, :formats=, :locale, :locale=, :view_paths, :view_paths=, :assign, :assets_environment, :assets_environment?, :assets_environment=, :assets_manifest, :assets_manifest?, :assets_manifest=, :assets_prefix, :assets_prefix?, :assets_prefix=, :digest_assets, :digest_assets?, :digest_assets=, :debug_assets, :debug_assets?, :debug_assets=, :precompile, :assets, :raise_runtime_errors, :compute_asset_path, :asset_path, :path_to_asset, :asset_digest, :asset_digest_path, :javascript_include_tag, :stylesheet_link_tag, :check_dependencies!, :check_errors_for, :asset_needs_precompile?, :request_debug_assets?, :lookup_asset_for_path, :translate, :t, :localize, :l, :render, :_layout_for, :div_for, :content_tag_for, :dom_class, :dom_id, :record_key_for_dom_id, :form_for, :fields_for, :label, :text_field, :password_field, :hidden_field, :file_field, :text_area, :check_box, :radio_button, :color_field, :search_field, :telephone_field, :phone_field, :date_field, :time_field, :datetime_field, :datetime_local_field, :month_field, :week_field, :url_field, :email_field, :number_field, :range_field, :number_to_phone, :number_to_currency, :number_to_percentage, :number_with_delimiter, :number_with_precision, :number_to_human_size, :number_to_human, :escape_javascript, :j, :javascript_tag, :javascript_cdata_section, :select, :collection_select, :grouped_collection_select, :time_zone_select, :options_for_select, :options_from_collection_for_select, :option_groups_from_collection_for_select, :grouped_options_for_select, :time_zone_options_for_select, :collection_radio_buttons, :collection_check_boxes, :embed_authenticity_token_in_remote_forms, :embed_authenticity_token_in_remote_forms=, :form_tag, :select_tag, :text_field_tag, :label_tag, :hidden_field_tag, :file_field_tag, :password_field_tag, :text_area_tag, :check_box_tag, :radio_button_tag, :submit_tag, :button_tag, :image_submit_tag, :field_set_tag, :color_field_tag, :search_field_tag, :telephone_field_tag, :phone_field_tag, :date_field_tag, :time_field_tag, :datetime_field_tag, :datetime_local_field_tag, :month_field_tag, :week_field_tag, :url_field_tag, :email_field_tag, :number_field_tag, :range_field_tag, :utf8_enforcer_tag, :concat, :safe_concat, :truncate, :highlight, :excerpt, :pluralize, :word_wrap, :simple_format, :cycle, :current_cycle, :reset_cycle, :debug, :sanitize, :sanitize_css, :strip_tags, :strip_links, :cache, :cache_if, :cache_unless, :cache_fragment_name, :atom_feed, :_back_url, :link_to, :button_to, :link_to_unless_current, :link_to_unless, :link_to_if, :mail_to, :current_page?, :auto_discovery_link_tag, :favicon_link_tag, :image_tag, :image_alt, :video_tag, :audio_tag, :asset_url, :url_to_asset, :compute_asset_extname, :compute_asset_host, :javascript_path, :path_to_javascript, :javascript_url, :url_to_javascript, :stylesheet_path, :path_to_stylesheet, :stylesheet_url, :url_to_stylesheet, :image_path, :path_to_image, :image_url, :url_to_image, :video_path, :path_to_video, :video_url, :url_to_video, :audio_path, :path_to_audio, :audio_url, :url_to_audio, :font_path, :path_to_font, :font_url, :url_to_font, :benchmark, :tag, :content_tag, :cdata_section, :escape_once, :raw, :safe_join, :distance_of_time_in_words, :time_ago_in_words, :distance_of_time_in_words_to_now, :date_select, :time_select, :datetime_select, :select_datetime, :select_date, :select_time, :select_second, :select_minute, :select_hour, :select_day, :select_month, :select_year, :time_tag, :csrf_meta_tags, :csrf_meta_tag, :controller, :request, :controller=, :request=, :request_forgery_protection_token, :params, :session, :response, :headers, :flash, :action_name, :controller_name, :controller_path, :assign_controller, :capture, :content_for, :provide, :content_for?, :with_output_buffer, :output_buffer, :output_buffer=, :view_flow, :view_flow=, :_prepare_context, :blank?, :present?, :presence, :try, :try!, :acts_like?, :duplicable?, :deep_dup, :itself, :in?, :presence_in, :to_param, :to_query, :instance_values, :instance_variable_names, :to_json_with_active_support_encoder, :to_json_without_active_support_encoder, :to_json, :as_json, :with_options, :html_safe?, :psych_to_yaml, :to_yaml, :to_yaml_properties, :`, :require_or_load, :require_dependency, :load_dependency, :unloadable, :pretty_print, :pretty_print_cycle, :pretty_print_instance_variables, :pretty_print_inspect, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :remove_instance_variable, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :extend, :display, :method, :public_method, :singleton_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :pretty_inspect, :class_eval, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :silence, :quietly, :concern, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__, :should, :should_not, :should_receive, :should_not_receive, :stub, :unstub, :stub_chain, :as_null_object, :null_object?, :received_message?]
949
+  (0.1ms) rollback transaction
950
+  (0.0ms) begin transaction
951
+ Processing by HomeController#index as HTML
952
+ Rendered home/index.html.erb within layouts/application (1.4ms)
953
+ Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
954
+  (0.1ms) rollback transaction
955
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
956
+  (1.0ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
957
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
958
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
959
+  (0.1ms) select sqlite_version(*)
960
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
961
+  (0.1ms) SELECT version FROM "schema_migrations"
962
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
963
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
964
+  (0.1ms) begin transaction
965
+  (0.1ms) rollback transaction
966
+  (0.1ms) begin transaction
967
+ Processing by HomeController#index as HTML
968
+ Rendered home/index.html.erb within layouts/application (1.6ms)
969
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
970
+  (0.1ms) rollback transaction
971
+  (0.1ms) begin transaction
972
+ Processing by HomeController#index as HTML
973
+ Rendered home/index.html.erb within layouts/application (0.1ms)
974
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
975
+  (0.1ms) rollback transaction
976
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
977
+  (1.5ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
978
+  (1.5ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
979
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
980
+  (0.1ms) select sqlite_version(*)
981
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
982
+  (0.1ms) SELECT version FROM "schema_migrations"
983
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
984
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+  (0.1ms) begin transaction
986
+  (0.1ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+ Processing by HomeController#index as HTML
989
+ Rendered home/index.html.erb within layouts/application (1.8ms)
990
+ Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
991
+  (0.1ms) rollback transaction
992
+  (0.1ms) begin transaction
993
+ Processing by HomeController#index as HTML
994
+ Rendered home/index.html.erb within layouts/application (0.1ms)
995
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
996
+  (0.1ms) rollback transaction
997
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
998
+  (1.4ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
999
+  (1.0ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1000
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1001
+  (0.1ms) select sqlite_version(*)
1002
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1003
+  (0.1ms) SELECT version FROM "schema_migrations"
1004
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
1005
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1006
+  (0.2ms) begin transaction
1007
+  (0.1ms) rollback transaction
1008
+  (0.1ms) begin transaction
1009
+ Processing by HomeController#index as HTML
1010
+ Rendered home/index.html.erb within layouts/application (2.2ms)
1011
+ Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
1012
+  (0.1ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+ Processing by HomeController#index as HTML
1015
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1016
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1017
+  (0.1ms) rollback transaction
1018
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1019
+  (1.9ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1020
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1021
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1022
+  (0.1ms) select sqlite_version(*)
1023
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1024
+  (0.1ms) SELECT version FROM "schema_migrations"
1025
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
1026
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1027
+  (0.1ms) begin transaction
1028
+  (0.1ms) rollback transaction
1029
+  (0.1ms) begin transaction
1030
+ Processing by HomeController#index as HTML
1031
+ Rendered home/index.html.erb within layouts/application (1.9ms)
1032
+ Completed 200 OK in 24ms (Views: 24.2ms | ActiveRecord: 0.0ms)
1033
+  (0.1ms) rollback transaction
1034
+  (0.0ms) begin transaction
1035
+ Processing by HomeController#index as HTML
1036
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1037
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1038
+  (0.1ms) rollback transaction
1039
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1040
+  (1.1ms) CREATE TABLE "homes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1041
+  (0.8ms) CREATE TABLE "totos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1042
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1043
+  (0.1ms) select sqlite_version(*)
1044
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1045
+  (0.1ms) SELECT version FROM "schema_migrations"
1046
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150114204029')
1047
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1048
+  (0.1ms) begin transaction
1049
+  (0.1ms) rollback transaction
1050
+  (0.1ms) begin transaction
1051
+ Processing by HomeController#index as HTML
1052
+ Rendered home/index.html.erb within layouts/application (1.6ms)
1053
+ Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
1054
+  (0.1ms) rollback transaction
1055
+  (0.1ms) begin transaction
1056
+ Processing by HomeController#index as HTML
1057
+ Rendered home/index.html.erb within layouts/application (0.1ms)
1058
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1059
+  (0.1ms) rollback transaction