datetime_picker_input 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +15 -0
  4. data/Gemfile +25 -0
  5. data/LICENSE +21 -0
  6. data/README.md +114 -0
  7. data/Rakefile +12 -0
  8. data/app/inputs/date_time_picker_input.rb +53 -0
  9. data/datetime_picker_input.gemspec +23 -0
  10. data/lib/datetime_picker_input.rb +8 -0
  11. data/lib/datetime_picker_input/version.rb +3 -0
  12. data/lib/generators/datetime_picker_input.rb/install_generator.rb +15 -0
  13. data/lib/generators/templates/inputs/date_time_picker_input.rb +53 -0
  14. data/spec/dummy/README.rdoc +28 -0
  15. data/spec/dummy/Rakefile +6 -0
  16. data/spec/dummy/app/assets/images/.keep +0 -0
  17. data/spec/dummy/app/assets/javascripts/application.js +6 -0
  18. data/spec/dummy/app/assets/stylesheets/application.scss +3 -0
  19. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  20. data/spec/dummy/app/controllers/appointments_controller.rb +15 -0
  21. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  22. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  23. data/spec/dummy/app/mailers/.keep +0 -0
  24. data/spec/dummy/app/models/.keep +0 -0
  25. data/spec/dummy/app/models/appointment.rb +3 -0
  26. data/spec/dummy/app/models/concerns/.keep +0 -0
  27. data/spec/dummy/app/views/appointments/index.html.slim +13 -0
  28. data/spec/dummy/app/views/appointments/new.html.slim +6 -0
  29. data/spec/dummy/app/views/layouts/application.html.slim +11 -0
  30. data/spec/dummy/bin/bundle +3 -0
  31. data/spec/dummy/bin/rails +4 -0
  32. data/spec/dummy/bin/rake +4 -0
  33. data/spec/dummy/bin/setup +29 -0
  34. data/spec/dummy/config.ru +4 -0
  35. data/spec/dummy/config/application.rb +40 -0
  36. data/spec/dummy/config/boot.rb +5 -0
  37. data/spec/dummy/config/database.yml +25 -0
  38. data/spec/dummy/config/environment.rb +5 -0
  39. data/spec/dummy/config/environments/development.rb +41 -0
  40. data/spec/dummy/config/environments/production.rb +79 -0
  41. data/spec/dummy/config/environments/test.rb +42 -0
  42. data/spec/dummy/config/initializers/assets.rb +11 -0
  43. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  44. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  45. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/spec/dummy/config/initializers/inflections.rb +16 -0
  47. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  48. data/spec/dummy/config/initializers/session_store.rb +3 -0
  49. data/spec/dummy/config/initializers/simple_form.rb +166 -0
  50. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/spec/dummy/config/locales/en.yml +23 -0
  52. data/spec/dummy/config/locales/simple_form.en.yml +31 -0
  53. data/spec/dummy/config/routes.rb +5 -0
  54. data/spec/dummy/config/secrets.yml +22 -0
  55. data/spec/dummy/db/development.sqlite3 +0 -0
  56. data/spec/dummy/db/migrate/20150224051923_create_appointments.rb +7 -0
  57. data/spec/dummy/db/schema.rb +20 -0
  58. data/spec/dummy/db/test.sqlite3 +0 -0
  59. data/spec/dummy/lib/assets/.keep +0 -0
  60. data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
  61. data/spec/dummy/log/.keep +0 -0
  62. data/spec/dummy/log/development.log +3657 -0
  63. data/spec/dummy/log/test.log +2263 -0
  64. data/spec/dummy/public/404.html +67 -0
  65. data/spec/dummy/public/422.html +67 -0
  66. data/spec/dummy/public/500.html +66 -0
  67. data/spec/dummy/public/favicon.ico +0 -0
  68. data/spec/feature_helper.rb +37 -0
  69. data/spec/features/datetime_picker_input_spec.rb +12 -0
  70. data/spec/rails_helper.rb +19 -0
  71. data/vendor/assets/javascripts/datetime_picker_input.js +9 -0
  72. data/vendor/assets/stylesheets/datetime_picker_input.scss +1 -0
  73. metadata +196 -0
@@ -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,31 @@
1
+ en:
2
+ simple_form:
3
+ "yes": 'Yes'
4
+ "no": 'No'
5
+ required:
6
+ text: 'required'
7
+ mark: '*'
8
+ # You can uncomment the line below if you need to overwrite the whole required html.
9
+ # When using html, text and mark won't be used.
10
+ # html: '<abbr title="required">*</abbr>'
11
+ error_notification:
12
+ default_message: "Please review the problems below:"
13
+ # Examples
14
+ # labels:
15
+ # defaults:
16
+ # password: 'Password'
17
+ # user:
18
+ # new:
19
+ # email: 'E-mail to sign in.'
20
+ # edit:
21
+ # email: 'E-mail.'
22
+ # hints:
23
+ # defaults:
24
+ # username: 'User name to sign in.'
25
+ # password: 'No special characters, please.'
26
+ # include_blanks:
27
+ # defaults:
28
+ # age: 'Rather not say'
29
+ # prompts:
30
+ # defaults:
31
+ # age: 'Select your age'
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+ root 'appointments#index'
3
+
4
+ resources :appointments, only: [:index, :new, :create]
5
+ 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: 9a0d96e51c72857ddad92e5adbb4760374b63fdf48ae943885e4ea6f28798bd0e1d8ec80c4d9aed932b3cbef43a8df9d1afdb911b620067e8689e321819deb1d
15
+
16
+ test:
17
+ secret_key_base: aec68aa08f16a5f387dbebd4fbb008f00392b1e9fbdb2d86d8d4df2ba605908c8d50c0ede26d669eba66b01227550989ffa5d95ba71d8e956bc85af00f3efd0a
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,7 @@
1
+ class CreateAppointments < ActiveRecord::Migration
2
+ def change
3
+ create_table :appointments do |t|
4
+ t.datetime :scheduled_at
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,20 @@
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: 20150224051923) do
15
+
16
+ create_table "appointments", force: :cascade do |t|
17
+ t.datetime "scheduled_at"
18
+ end
19
+
20
+ end
Binary file
File without changes
@@ -0,0 +1,13 @@
1
+ <%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
2
+ <%%= f.error_notification %>
3
+
4
+ <div class="form-inputs">
5
+ <%- attributes.each do |attribute| -%>
6
+ <%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
7
+ <%- end -%>
8
+ </div>
9
+
10
+ <div class="form-actions">
11
+ <%%= f.button :submit %>
12
+ </div>
13
+ <%% end %>
File without changes
@@ -0,0 +1,3657 @@
1
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) 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
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6
+  (0.0ms) select sqlite_version(*)
7
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+  (0.1ms) SELECT version FROM "schema_migrations"
9
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
10
+
11
+
12
+ Started GET "/" for 127.0.0.1 at 2015-02-24 12:36:17 +0800
13
+ Processing by Rails::WelcomeController#index as HTML
14
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
15
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
16
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
17
+  (0.1ms) select sqlite_version(*)
18
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.1ms) SELECT version FROM "schema_migrations"
20
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
22
+  (0.1ms) select sqlite_version(*)
23
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24
+  (0.1ms) SELECT version FROM "schema_migrations"
25
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
26
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
27
+  (0.0ms) select sqlite_version(*)
28
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.1ms) SELECT version FROM "schema_migrations"
30
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
31
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
32
+  (0.1ms) select sqlite_version(*)
33
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
+  (0.1ms) SELECT version FROM "schema_migrations"
35
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
36
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
37
+  (0.1ms) select sqlite_version(*)
38
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
39
+  (0.1ms) SELECT version FROM "schema_migrations"
40
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
41
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
42
+  (0.1ms) select sqlite_version(*)
43
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
44
+  (0.1ms) SELECT version FROM "schema_migrations"
45
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
46
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
47
+  (0.1ms) select sqlite_version(*)
48
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
49
+  (0.1ms) SELECT version FROM "schema_migrations"
50
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
51
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
52
+  (0.0ms) select sqlite_version(*)
53
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54
+  (0.1ms) SELECT version FROM "schema_migrations"
55
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
56
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
57
+  (0.0ms) select sqlite_version(*)
58
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
59
+  (0.1ms) SELECT version FROM "schema_migrations"
60
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
61
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
62
+  (0.1ms) select sqlite_version(*)
63
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
64
+  (0.1ms) SELECT version FROM "schema_migrations"
65
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
66
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
67
+  (0.1ms) select sqlite_version(*)
68
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
69
+  (0.1ms) SELECT version FROM "schema_migrations"
70
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
71
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
72
+  (0.0ms) select sqlite_version(*)
73
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
+  (0.1ms) SELECT version FROM "schema_migrations"
75
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
76
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
77
+  (0.0ms) select sqlite_version(*)
78
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
79
+  (0.1ms) SELECT version FROM "schema_migrations"
80
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
81
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
82
+  (0.1ms) select sqlite_version(*)
83
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
+  (0.1ms) SELECT version FROM "schema_migrations"
85
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
86
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
87
+  (0.0ms) select sqlite_version(*)
88
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
89
+  (0.1ms) SELECT version FROM "schema_migrations"
90
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
91
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
92
+  (0.1ms) select sqlite_version(*)
93
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
94
+  (0.1ms) SELECT version FROM "schema_migrations"
95
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
96
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
97
+  (0.0ms) select sqlite_version(*)
98
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
99
+  (0.1ms) SELECT version FROM "schema_migrations"
100
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
101
+
102
+
103
+ Started GET "/" for ::1 at 2015-02-24 13:13:04 +0800
104
+
105
+ ActionController::RoutingError (uninitialized constant AppointmentsController):
106
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
107
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
108
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
109
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
110
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
111
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
112
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
113
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
114
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
115
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
116
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
117
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
118
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
119
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
120
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
121
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
122
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
123
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
124
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
125
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
126
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
127
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
128
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
129
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
130
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
131
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
132
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
133
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
134
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
135
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
136
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
137
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
138
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
139
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
140
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
141
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
142
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
143
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
144
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
145
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
146
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
147
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
148
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
149
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
150
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
151
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
152
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
153
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
154
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
155
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
156
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
157
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
158
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
159
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
160
+
161
+
162
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
163
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
164
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
165
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms)
166
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.8ms)
167
+
168
+
169
+ Started GET "/" for ::1 at 2015-02-24 13:13:19 +0800
170
+
171
+ LoadError (Unable to autoload constant AppointmentsController, expected /Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/controllers/appointments_controller.rb to define it):
172
+ activesupport (4.2.0) lib/active_support/dependencies.rb:495:in `load_missing_constant'
173
+ activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
174
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
175
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
176
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
177
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
178
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
179
+ activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
180
+ activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
181
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
182
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
183
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
184
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
185
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
186
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
187
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
188
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
189
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
190
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
191
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
192
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
193
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
194
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
195
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
196
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
197
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
198
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
199
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
200
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
201
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
202
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
203
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
204
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
205
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
206
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
207
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
208
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
209
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
210
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
211
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
212
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
213
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
214
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
215
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
216
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
217
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
218
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
219
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
220
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
221
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
222
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
223
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
224
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
225
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
226
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
227
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
228
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
229
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
230
+
231
+
232
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
233
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
234
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
235
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.7ms)
236
+
237
+
238
+ Started GET "/" for ::1 at 2015-02-24 13:13:34 +0800
239
+
240
+ AbstractController::ActionNotFound (The action 'new' could not be found for AppointmentsController):
241
+ actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process'
242
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
243
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
244
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
245
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
246
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
247
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
248
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
249
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
250
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
251
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
252
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
253
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
254
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
255
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
256
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
257
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
258
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
259
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
260
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
261
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
262
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
263
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
264
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
265
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
266
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
267
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
268
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
269
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
270
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
271
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
272
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
273
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
274
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
275
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
276
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
277
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
278
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
279
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
280
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
281
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
282
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
283
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
284
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
285
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
286
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
287
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
288
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
289
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
290
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
291
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
292
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
293
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
294
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
295
+
296
+
297
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms)
298
+
299
+
300
+ Started GET "/" for ::1 at 2015-02-24 13:13:39 +0800
301
+ Processing by AppointmentsController#new as HTML
302
+ Completed 500 Internal Server Error in 2ms
303
+
304
+ ActionView::MissingTemplate (Missing template appointments/new, application/new with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
305
+ * "/Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/views"
306
+ ):
307
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
308
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
309
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
310
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
311
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
312
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
313
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
314
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
315
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
316
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
317
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
318
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
319
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
320
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
321
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
322
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
323
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
324
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
325
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
326
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
327
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
328
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
329
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
330
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
331
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
332
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
333
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
334
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
335
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
336
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
337
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
338
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
339
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
340
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
341
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
342
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
343
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
344
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
345
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
346
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
347
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
348
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
349
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
350
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
351
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
352
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
353
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
354
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
355
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
356
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
357
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
358
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
359
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
360
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
361
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
362
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
363
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
364
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
365
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
366
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
367
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
368
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
369
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
370
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
371
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
372
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
373
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
374
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
375
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
376
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
377
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
378
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
379
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
380
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
381
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
382
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
383
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
384
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
385
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
386
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
387
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
388
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
389
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
390
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
391
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
392
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
393
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
394
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
395
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
396
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
397
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
398
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
399
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
400
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
401
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
402
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
403
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
404
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
405
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
406
+
407
+
408
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
409
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
410
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
411
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (31.2ms)
412
+
413
+
414
+ Started GET "/" for ::1 at 2015-02-24 13:13:53 +0800
415
+ Processing by AppointmentsController#new as HTML
416
+ Rendered appointments/new.html.erb within layouts/application (0.2ms)
417
+ Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms)
418
+
419
+
420
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:13:53 +0800
421
+
422
+
423
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:13:53 +0800
424
+
425
+
426
+ Started GET "/" for ::1 at 2015-02-24 13:17:37 +0800
427
+ Processing by AppointmentsController#new as HTML
428
+ Rendered appointments/new.html.erb within layouts/application (1.2ms)
429
+ Completed 500 Internal Server Error in 4ms
430
+
431
+ ActionView::Template::Error (First argument in form cannot contain nil or be empty):
432
+ 1: <%= form_for @appointment do |f| %>
433
+ 2: <%= f.label :name %>
434
+ 3: <%= f.text_field :name %>
435
+ 4:
436
+ app/views/appointments/new.html.erb:1:in `_app_views_appointments_new_html_erb___848142299510573115_70234686211300'
437
+
438
+
439
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
440
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
441
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
442
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.7ms)
443
+
444
+
445
+ Started GET "/" for ::1 at 2015-02-24 13:18:18 +0800
446
+ Processing by AppointmentsController#new as HTML
447
+ Rendered appointments/new.html.erb within layouts/application (1.3ms)
448
+ Completed 500 Internal Server Error in 4ms
449
+
450
+ ActionView::Template::Error (First argument in form cannot contain nil or be empty):
451
+ 1: <%= form_for @appointment do |f| %>
452
+ 2: <%= f.label :scheduled_at %>
453
+ 3: <%= f.input :scheduled_at %>
454
+ 4:
455
+ app/views/appointments/new.html.erb:1:in `_app_views_appointments_new_html_erb___848142299510573115_70234626677580'
456
+
457
+
458
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
459
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
460
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
461
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.8ms)
462
+
463
+
464
+ Started GET "/" for ::1 at 2015-02-24 13:18:33 +0800
465
+ Processing by AppointmentsController#new as HTML
466
+ Completed 500 Internal Server Error in 1ms
467
+
468
+ NameError (uninitialized constant AppointmentsController::Appointment):
469
+ app/controllers/appointments_controller.rb:3:in `new'
470
+
471
+
472
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
473
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
474
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
475
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms)
476
+
477
+
478
+ Started GET "/" for ::1 at 2015-02-24 13:18:53 +0800
479
+ Processing by AppointmentsController#new as HTML
480
+ Completed 500 Internal Server Error in 15ms
481
+
482
+ ActiveRecord::StatementInvalid (Could not find table 'appointments'):
483
+ app/controllers/appointments_controller.rb:3:in `new'
484
+
485
+
486
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms)
487
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
488
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
489
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.0ms)
490
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
491
+ Migrating to CreateAppointments (20150224051923)
492
+  (0.1ms) begin transaction
493
+  (0.4ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
494
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150224051923"]]
495
+  (0.6ms) commit transaction
496
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
497
+
498
+
499
+ Started GET "/" for ::1 at 2015-02-24 13:21:30 +0800
500
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
501
+ Processing by AppointmentsController#new as HTML
502
+ Rendered appointments/new.html.erb within layouts/application (6.1ms)
503
+ Completed 500 Internal Server Error in 13ms
504
+
505
+ ActionView::Template::Error (undefined method `appointments_path' for #<#<Class:0x007fc18b5c4c30>:0x007fc18b5b4808>):
506
+ 1: <%= form_for @appointment do |f| %>
507
+ 2: <%= f.label :scheduled_at %>
508
+ 3: <%= f.input :scheduled_at %>
509
+ 4:
510
+ app/views/appointments/new.html.erb:1:in `_app_views_appointments_new_html_erb___848142299510573115_70234626677580'
511
+
512
+
513
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms)
514
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
515
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
516
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.0ms)
517
+
518
+
519
+ Started GET "/" for ::1 at 2015-02-24 13:21:55 +0800
520
+ Processing by AppointmentsController#new as HTML
521
+ Rendered appointments/new.html.erb within layouts/application (14.2ms)
522
+ Completed 500 Internal Server Error in 20ms
523
+
524
+ ActionView::Template::Error (undefined method `input' for #<ActionView::Helpers::FormBuilder:0x007fc18df9a488>):
525
+ 1: <%= form_for @appointment do |f| %>
526
+ 2: <%= f.label :scheduled_at %>
527
+ 3: <%= f.input :scheduled_at %>
528
+ 4:
529
+ 5: <%= f.submit %>
530
+ 6: <% end %>
531
+ app/views/appointments/new.html.erb:3:in `block in _app_views_appointments_new_html_erb___848142299510573115_70234626677580'
532
+ app/views/appointments/new.html.erb:1:in `_app_views_appointments_new_html_erb___848142299510573115_70234626677580'
533
+
534
+
535
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
536
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
537
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
538
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.0ms)
539
+
540
+
541
+ Started GET "/" for ::1 at 2015-02-24 13:22:04 +0800
542
+ Processing by AppointmentsController#new as HTML
543
+ Rendered appointments/new.html.erb within layouts/application (6.3ms)
544
+ Completed 500 Internal Server Error in 9ms
545
+
546
+ ActionView::Template::Error (undefined method `simple_form_for' for #<#<Class:0x007fc1928ab438>:0x007fc18cc8b8d8>):
547
+ 1: <%= simple_form_for @appointment do |f| %>
548
+ 2: <%= f.label :scheduled_at %>
549
+ 3: <%= f.input :scheduled_at %>
550
+ 4:
551
+ app/views/appointments/new.html.erb:1:in `_app_views_appointments_new_html_erb___848142299510573115_70234633673820'
552
+
553
+
554
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
555
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
556
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
557
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.0ms)
558
+
559
+
560
+ Started GET "/" for ::1 at 2015-02-24 13:22:37 +0800
561
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
562
+ Processing by AppointmentsController#new as HTML
563
+ Rendered appointments/new.html.erb within layouts/application (61.4ms)
564
+ Completed 200 OK in 87ms (Views: 83.1ms | ActiveRecord: 0.4ms)
565
+
566
+
567
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:22:37 +0800
568
+
569
+
570
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:22:37 +0800
571
+
572
+
573
+ Started GET "/" for ::1 at 2015-02-24 13:22:49 +0800
574
+ Processing by AppointmentsController#new as HTML
575
+ Rendered appointments/new.html.erb within layouts/application (4.7ms)
576
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
577
+
578
+
579
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:22:49 +0800
580
+
581
+
582
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:22:49 +0800
583
+
584
+
585
+ Started POST "/appointments" for ::1 at 2015-02-24 13:22:52 +0800
586
+
587
+ AbstractController::ActionNotFound (The action 'create' could not be found for AppointmentsController):
588
+ actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process'
589
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
590
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
591
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
592
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
593
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
594
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
595
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
596
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
597
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
598
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
599
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
600
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
601
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
602
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
603
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
604
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
605
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
606
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
607
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
608
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
609
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
610
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
611
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
612
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
613
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
614
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
615
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
616
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
617
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
618
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
619
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
620
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
621
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
622
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
623
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
624
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
625
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
626
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
627
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
628
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
629
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
630
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
631
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
632
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
633
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
634
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
635
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
636
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
637
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
638
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
639
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
640
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
641
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
642
+
643
+
644
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms)
645
+
646
+
647
+ Started POST "/appointments" for ::1 at 2015-02-24 13:23:30 +0800
648
+ Processing by AppointmentsController#create as HTML
649
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"KWIBq2wvp5L2rKMbGO+MBOKTuitzzfJ73eABxzz8S2ks4qRZ4MazbfNC7uOSHJwdnMZDlbOtqb1jRSZczdUX0A==", "appointment"=>{"scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"2", "scheduled_at(3i)"=>"24", "scheduled_at(4i)"=>"05", "scheduled_at(5i)"=>"22"}, "commit"=>"Create Appointment"}
650
+  (0.1ms) begin transaction
651
+ SQL (0.7ms) INSERT INTO "appointments" ("scheduled_at") VALUES (?) [["scheduled_at", "2015-02-24 05:22:00.000000"]]
652
+  (0.5ms) commit transaction
653
+ Redirected to http://localhost:3000/
654
+ Completed 302 Found in 9ms (ActiveRecord: 1.7ms)
655
+
656
+
657
+ Started GET "/" for ::1 at 2015-02-24 13:23:30 +0800
658
+ Processing by AppointmentsController#new as HTML
659
+ Rendered appointments/new.html.erb within layouts/application (6.8ms)
660
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
661
+
662
+
663
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:23:30 +0800
664
+
665
+
666
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:23:30 +0800
667
+
668
+
669
+ Started POST "/appointments" for ::1 at 2015-02-24 13:23:40 +0800
670
+ Processing by AppointmentsController#create as HTML
671
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"iIWgfjDn8RMAQud7wjBPWCPxEVDfihDW3SiWPK4PJ9aNBQWMvA7l7AWsqoNIw19BXaTo7h/qSxBjjbGnXyZ7bw==", "appointment"=>{"scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"2", "scheduled_at(3i)"=>"24", "scheduled_at(4i)"=>"05", "scheduled_at(5i)"=>"23"}, "commit"=>"Create Appointment"}
672
+  (0.0ms) begin transaction
673
+ SQL (0.3ms) INSERT INTO "appointments" ("scheduled_at") VALUES (?) [["scheduled_at", "2015-02-24 05:23:00.000000"]]
674
+  (1.0ms) commit transaction
675
+ Completed 500 Internal Server Error in 9ms
676
+
677
+ ActionView::MissingTemplate (Missing template appointments/create, application/create with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
678
+ * "/Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/views"
679
+ ):
680
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
681
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
682
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
683
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
684
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
685
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
686
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
687
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
688
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
689
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
690
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
691
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
692
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
693
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
694
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
695
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
696
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
697
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
698
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
699
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
700
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
701
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
702
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
703
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
704
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
705
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
706
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
707
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
708
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
709
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
710
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
711
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
712
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
713
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
714
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
715
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
716
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
717
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
718
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
719
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
720
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
721
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
722
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
723
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
724
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
725
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
726
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
727
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
728
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
729
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
730
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
731
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
732
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
733
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
734
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
735
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
736
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
737
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
738
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
739
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
740
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
741
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
742
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
743
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
744
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
745
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
746
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
747
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
748
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
749
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
750
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
751
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
752
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
753
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
754
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
755
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
756
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
757
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
758
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
759
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
760
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
761
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
762
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
763
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
764
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
765
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
766
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
767
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
768
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
769
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
770
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
771
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
772
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
773
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
774
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
775
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
776
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
777
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
778
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
779
+
780
+
781
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
782
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
783
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
784
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (34.5ms)
785
+
786
+
787
+ Started POST "/appointments" for ::1 at 2015-02-24 13:23:46 +0800
788
+ Processing by AppointmentsController#create as HTML
789
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"iIWgfjDn8RMAQud7wjBPWCPxEVDfihDW3SiWPK4PJ9aNBQWMvA7l7AWsqoNIw19BXaTo7h/qSxBjjbGnXyZ7bw==", "appointment"=>{"scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"2", "scheduled_at(3i)"=>"24", "scheduled_at(4i)"=>"05", "scheduled_at(5i)"=>"23"}, "commit"=>"Create Appointment"}
790
+  (0.0ms) begin transaction
791
+ SQL (0.2ms) INSERT INTO "appointments" ("scheduled_at") VALUES (?) [["scheduled_at", "2015-02-24 05:23:00.000000"]]
792
+  (0.8ms) commit transaction
793
+ Redirected to http://localhost:3000/
794
+ Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
795
+
796
+
797
+ Started GET "/" for ::1 at 2015-02-24 13:23:46 +0800
798
+ Processing by AppointmentsController#new as HTML
799
+ Rendered appointments/new.html.erb within layouts/application (4.9ms)
800
+ Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
801
+
802
+
803
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:23:46 +0800
804
+
805
+
806
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:23:46 +0800
807
+
808
+
809
+ Started GET "/" for ::1 at 2015-02-24 13:24:03 +0800
810
+ Processing by AppointmentsController#index as HTML
811
+ Completed 500 Internal Server Error in 3ms
812
+
813
+ ActionView::MissingTemplate (Missing template appointments/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
814
+ * "/Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/views"
815
+ ):
816
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
817
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
818
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
819
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
820
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
821
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
822
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
823
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
824
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
825
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
826
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
827
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
828
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
829
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
830
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
831
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
832
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
833
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
834
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
835
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
836
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
837
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
838
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
839
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
840
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
841
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
842
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
843
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
844
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
845
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
846
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
847
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
848
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
849
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
850
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
851
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
852
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
853
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
854
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
855
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
856
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
857
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
858
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
859
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
860
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
861
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
862
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
863
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
864
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
865
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
866
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
867
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
868
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
869
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
870
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
871
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
872
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
873
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
874
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
875
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
876
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
877
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
878
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
879
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
880
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
881
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
882
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
883
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
884
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
885
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
886
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
887
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
888
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
889
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
890
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
891
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
892
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
893
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
894
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
895
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
896
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
897
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
898
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
899
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
900
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
901
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
902
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
903
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
904
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
905
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
906
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
907
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
908
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
909
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
910
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
911
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
912
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
913
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
914
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
915
+
916
+
917
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
918
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
919
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
920
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (36.7ms)
921
+
922
+
923
+ Started GET "/" for ::1 at 2015-02-24 13:24:14 +0800
924
+ Processing by AppointmentsController#index as HTML
925
+ Rendered appointments/index.html.erb within layouts/application (0.3ms)
926
+ Completed 200 OK in 8ms (Views: 8.3ms | ActiveRecord: 0.0ms)
927
+
928
+
929
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-02-24 13:24:14 +0800
930
+
931
+
932
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-02-24 13:24:14 +0800
933
+
934
+
935
+ Started GET "/" for ::1 at 2015-02-24 13:31:05 +0800
936
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
937
+ Processing by AppointmentsController#index as HTML
938
+ Rendered appointments/index.html.erb within layouts/application (5.0ms)
939
+ Completed 500 Internal Server Error in 17ms
940
+
941
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
942
+ 7: <th>Scheduled At</th>
943
+ 8: </tr>
944
+ 9:
945
+ 10: <% @appointments.each do |appointment| %>
946
+ 11: <tr>
947
+ 12: <td><%= appointment.scheduled_at %></td>
948
+ 13: </tr>
949
+ app/views/appointments/index.html.erb:10:in `_app_views_appointments_index_html_erb__2975845720318313022_70226686953640'
950
+
951
+
952
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms)
953
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
954
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.2ms)
955
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.9ms)
956
+
957
+
958
+ Started GET "/" for ::1 at 2015-02-24 13:31:23 +0800
959
+ Processing by AppointmentsController#index as HTML
960
+ Appointment Load (0.4ms) SELECT "appointments".* FROM "appointments"
961
+ Rendered appointments/index.html.erb within layouts/application (3.6ms)
962
+ Completed 500 Internal Server Error in 1594ms
963
+
964
+ ActionView::Template::Error (couldn't find file 'jquery'
965
+ (in /Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/assets/javascripts/application.js:1)):
966
+ 3: <head>
967
+ 4: <title>Dummy</title>
968
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
969
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
970
+ 7: <%= csrf_meta_tags %>
971
+ 8: </head>
972
+ 9: <body>
973
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2663594268689056434_70226699982440'
974
+
975
+
976
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
977
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
978
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
979
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.6ms)
980
+
981
+
982
+ Started GET "/" for ::1 at 2015-02-24 13:32:29 +0800
983
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
984
+ Processing by AppointmentsController#index as HTML
985
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
986
+ Rendered appointments/index.html.erb within layouts/application (3.5ms)
987
+ Completed 500 Internal Server Error in 29ms
988
+
989
+ ActionView::Template::Error (couldn't find file 'turbolinks'
990
+ (in /Users/Juan/jollygoodcode/datetime_input/spec/dummy/app/assets/javascripts/application.js:3)):
991
+ 3: <head>
992
+ 4: <title>Dummy</title>
993
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
994
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
995
+ 7: <%= csrf_meta_tags %>
996
+ 8: </head>
997
+ 9: <body>
998
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2603464949252538108_70243549046540'
999
+
1000
+
1001
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
1002
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
1003
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
1004
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.1ms)
1005
+
1006
+
1007
+ Started GET "/" for ::1 at 2015-02-24 13:32:49 +0800
1008
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1009
+ Processing by AppointmentsController#index as HTML
1010
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
1011
+ Rendered appointments/index.html.erb within layouts/application (3.6ms)
1012
+ Completed 200 OK in 1180ms (Views: 1169.8ms | ActiveRecord: 0.3ms)
1013
+
1014
+
1015
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1016
+
1017
+
1018
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1019
+
1020
+
1021
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1022
+
1023
+
1024
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1025
+
1026
+
1027
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1028
+
1029
+
1030
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1031
+
1032
+
1033
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1034
+
1035
+
1036
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1037
+
1038
+
1039
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1040
+
1041
+
1042
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1043
+
1044
+
1045
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1046
+
1047
+
1048
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1049
+
1050
+
1051
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1052
+
1053
+
1054
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1055
+
1056
+
1057
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1058
+
1059
+
1060
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1061
+
1062
+
1063
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1064
+
1065
+
1066
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:32:51 +0800
1067
+
1068
+
1069
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:32:57 +0800
1070
+ Processing by AppointmentsController#new as HTML
1071
+ Rendered appointments/new.html.erb within layouts/application (68.5ms)
1072
+ Completed 200 OK in 133ms (Views: 132.5ms | ActiveRecord: 0.0ms)
1073
+
1074
+
1075
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:32:57 +0800
1076
+
1077
+
1078
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:32:57 +0800
1079
+
1080
+
1081
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:32:57 +0800
1082
+
1083
+
1084
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:34:10 +0800
1085
+ Processing by AppointmentsController#new as HTML
1086
+ Rendered appointments/new.html.erb within layouts/application (5.3ms)
1087
+ Completed 200 OK in 75ms (Views: 74.4ms | ActiveRecord: 0.0ms)
1088
+
1089
+
1090
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1091
+
1092
+
1093
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1094
+
1095
+
1096
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1097
+
1098
+
1099
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1100
+
1101
+
1102
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1103
+
1104
+
1105
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1106
+
1107
+
1108
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1109
+
1110
+
1111
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1112
+
1113
+
1114
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1115
+
1116
+
1117
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1118
+
1119
+
1120
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1121
+
1122
+
1123
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1124
+
1125
+
1126
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1127
+
1128
+
1129
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1130
+
1131
+
1132
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1133
+
1134
+
1135
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1136
+
1137
+
1138
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1139
+
1140
+
1141
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:34:10 +0800
1142
+
1143
+
1144
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:35:43 +0800
1145
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1146
+ Processing by AppointmentsController#new as HTML
1147
+ Rendered appointments/new.html.erb within layouts/application (40.8ms)
1148
+ Completed 500 Internal Server Error in 68ms
1149
+
1150
+ ActionView::Template::Error (No input found for datetime_picker):
1151
+ 3: </div>
1152
+ 4:
1153
+ 5: <%= simple_form_for @appointment, html: { class: 'form-horizontal' } do |f| %>
1154
+ 6: <%= f.input :scheduled_at, as: :datetime_picker %>
1155
+ 7:
1156
+ 8: <%= f.submit %>
1157
+ 9: <% end %>
1158
+ app/views/appointments/new.html.erb:6:in `block in _app_views_appointments_new_html_erb__2292754846587499773_70123597111520'
1159
+ app/views/appointments/new.html.erb:5:in `_app_views_appointments_new_html_erb__2292754846587499773_70123597111520'
1160
+
1161
+
1162
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
1163
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
1164
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1165
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.6ms)
1166
+
1167
+
1168
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:36:21 +0800
1169
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1170
+ Processing by AppointmentsController#new as HTML
1171
+ Rendered appointments/new.html.erb within layouts/application (41.5ms)
1172
+ Completed 200 OK in 210ms (Views: 199.0ms | ActiveRecord: 0.4ms)
1173
+
1174
+
1175
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1176
+
1177
+
1178
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1179
+
1180
+
1181
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1182
+
1183
+
1184
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1185
+
1186
+
1187
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1188
+
1189
+
1190
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1191
+
1192
+
1193
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1194
+
1195
+
1196
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1197
+
1198
+
1199
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1200
+
1201
+
1202
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1203
+
1204
+
1205
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1206
+
1207
+
1208
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1209
+
1210
+
1211
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1212
+
1213
+
1214
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1215
+
1216
+
1217
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1218
+
1219
+
1220
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1221
+
1222
+
1223
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1224
+
1225
+
1226
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:36:21 +0800
1227
+
1228
+
1229
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 13:36:21 +0800
1230
+
1231
+
1232
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:36:29 +0800
1233
+
1234
+
1235
+ Started GET "/appointments/new" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1236
+ Processing by AppointmentsController#new as HTML
1237
+ Rendered appointments/new.html.erb within layouts/application (2.9ms)
1238
+ Completed 200 OK in 73ms (Views: 73.2ms | ActiveRecord: 0.0ms)
1239
+
1240
+
1241
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1242
+
1243
+
1244
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1245
+
1246
+
1247
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1248
+
1249
+
1250
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1251
+
1252
+
1253
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1254
+
1255
+
1256
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1257
+
1258
+
1259
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1260
+
1261
+
1262
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1263
+
1264
+
1265
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1266
+
1267
+
1268
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1269
+
1270
+
1271
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1272
+
1273
+
1274
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1275
+
1276
+
1277
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1278
+
1279
+
1280
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1281
+
1282
+
1283
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1284
+
1285
+
1286
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1287
+
1288
+
1289
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1290
+
1291
+
1292
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1293
+
1294
+
1295
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-4c18eb6f51df3274f7d02dcd79043b73.woff" for 127.0.0.1 at 2015-02-24 13:36:39 +0800
1296
+
1297
+
1298
+ Started GET "/" for ::1 at 2015-02-24 13:37:06 +0800
1299
+ Processing by AppointmentsController#index as HTML
1300
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
1301
+ Rendered appointments/index.html.erb within layouts/application (1.2ms)
1302
+ Completed 200 OK in 61ms (Views: 59.5ms | ActiveRecord: 0.1ms)
1303
+
1304
+
1305
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1306
+
1307
+
1308
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1309
+
1310
+
1311
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1312
+
1313
+
1314
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1315
+
1316
+
1317
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1318
+
1319
+
1320
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1321
+
1322
+
1323
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1324
+
1325
+
1326
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1327
+
1328
+
1329
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1330
+
1331
+
1332
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1333
+
1334
+
1335
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1336
+
1337
+
1338
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1339
+
1340
+
1341
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1342
+
1343
+
1344
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1345
+
1346
+
1347
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1348
+
1349
+
1350
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1351
+
1352
+
1353
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1354
+
1355
+
1356
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:37:06 +0800
1357
+  (0.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1358
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1359
+  (0.1ms) select sqlite_version(*)
1360
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1361
+  (0.1ms) SELECT version FROM "schema_migrations"
1362
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1363
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1364
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1365
+  (0.0ms) select sqlite_version(*)
1366
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1367
+  (0.1ms) SELECT version FROM "schema_migrations"
1368
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1369
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1370
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1371
+  (0.1ms) select sqlite_version(*)
1372
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1373
+  (0.1ms) SELECT version FROM "schema_migrations"
1374
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1375
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1376
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1377
+  (0.1ms) select sqlite_version(*)
1378
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1379
+  (0.1ms) SELECT version FROM "schema_migrations"
1380
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1381
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1382
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1383
+  (0.1ms) select sqlite_version(*)
1384
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1385
+  (0.1ms) SELECT version FROM "schema_migrations"
1386
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1387
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1388
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1389
+  (0.1ms) select sqlite_version(*)
1390
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1391
+  (0.1ms) SELECT version FROM "schema_migrations"
1392
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1393
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1394
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1395
+  (0.1ms) select sqlite_version(*)
1396
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1397
+  (0.1ms) SELECT version FROM "schema_migrations"
1398
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1399
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1400
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1401
+  (0.1ms) select sqlite_version(*)
1402
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1403
+  (0.1ms) SELECT version FROM "schema_migrations"
1404
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1405
+
1406
+
1407
+ Started GET "/rails/info" for ::1 at 2015-02-24 13:42:35 +0800
1408
+ Processing by Rails::InfoController#index as HTML
1409
+ Redirected to http://localhost:3000/rails/info/routes
1410
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1411
+
1412
+
1413
+ Started GET "/rails/info/routes" for ::1 at 2015-02-24 13:42:35 +0800
1414
+ Processing by Rails::InfoController#routes as HTML
1415
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1416
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms)
1417
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/railties-4.2.0/lib/rails/templates/rails/info/routes.html.erb within layouts/application (10.8ms)
1418
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
1419
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1420
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1421
+  (0.1ms) select sqlite_version(*)
1422
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1423
+  (0.1ms) SELECT version FROM "schema_migrations"
1424
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1425
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1426
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1427
+  (0.1ms) select sqlite_version(*)
1428
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1429
+  (0.1ms) SELECT version FROM "schema_migrations"
1430
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1431
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1432
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1433
+  (0.1ms) select sqlite_version(*)
1434
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1435
+  (0.1ms) SELECT version FROM "schema_migrations"
1436
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1437
+
1438
+
1439
+ Started GET "/" for ::1 at 2015-02-24 13:46:27 +0800
1440
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1441
+ Processing by AppointmentsController#index as HTML
1442
+ Appointment Load (0.2ms) SELECT "appointments".* FROM "appointments"
1443
+ Rendered appointments/index.html.erb within layouts/application (3.2ms)
1444
+ Completed 200 OK in 123ms (Views: 113.8ms | ActiveRecord: 0.4ms)
1445
+
1446
+
1447
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1448
+
1449
+
1450
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1451
+
1452
+
1453
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1454
+
1455
+
1456
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1457
+
1458
+
1459
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1460
+
1461
+
1462
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1463
+
1464
+
1465
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1466
+
1467
+
1468
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1469
+
1470
+
1471
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1472
+
1473
+
1474
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1475
+
1476
+
1477
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1478
+
1479
+
1480
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1481
+
1482
+
1483
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1484
+
1485
+
1486
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1487
+
1488
+
1489
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1490
+
1491
+
1492
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1493
+
1494
+
1495
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1496
+
1497
+
1498
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:46:28 +0800
1499
+
1500
+
1501
+ Started GET "/new" for ::1 at 2015-02-24 13:46:30 +0800
1502
+
1503
+ ActionController::RoutingError (No route matches [GET] "/new"):
1504
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1505
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1506
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1507
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1508
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1509
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1510
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1511
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1512
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1513
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1514
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1515
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1516
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1517
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1518
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1519
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1520
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1521
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1522
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1523
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1524
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1525
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1526
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1527
+
1528
+
1529
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1530
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1531
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms)
1532
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
1533
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.6ms)
1534
+
1535
+
1536
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:46:35 +0800
1537
+ Processing by AppointmentsController#new as HTML
1538
+ Rendered appointments/new.html.erb within layouts/application (41.9ms)
1539
+ Completed 200 OK in 107ms (Views: 106.0ms | ActiveRecord: 0.0ms)
1540
+
1541
+
1542
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1543
+
1544
+
1545
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1546
+
1547
+
1548
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1549
+
1550
+
1551
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1552
+
1553
+
1554
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1555
+
1556
+
1557
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1558
+
1559
+
1560
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1561
+
1562
+
1563
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1564
+
1565
+
1566
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1567
+
1568
+
1569
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1570
+
1571
+
1572
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1573
+
1574
+
1575
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1576
+
1577
+
1578
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1579
+
1580
+
1581
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1582
+
1583
+
1584
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1585
+
1586
+
1587
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1588
+
1589
+
1590
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1591
+
1592
+
1593
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:46:35 +0800
1594
+
1595
+
1596
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 13:46:35 +0800
1597
+
1598
+
1599
+ Started GET "/" for ::1 at 2015-02-24 13:53:07 +0800
1600
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1601
+ Processing by AppointmentsController#index as HTML
1602
+ Appointment Load (0.2ms) SELECT "appointments".* FROM "appointments"
1603
+ Rendered appointments/index.slim within layouts/application (14.7ms)
1604
+ Completed 200 OK in 151ms (Views: 142.4ms | ActiveRecord: 0.4ms)
1605
+
1606
+
1607
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1608
+
1609
+
1610
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1611
+
1612
+
1613
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1614
+
1615
+
1616
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1617
+
1618
+
1619
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1620
+
1621
+
1622
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1623
+
1624
+
1625
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1626
+
1627
+
1628
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1629
+
1630
+
1631
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1632
+
1633
+
1634
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1635
+
1636
+
1637
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1638
+
1639
+
1640
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1641
+
1642
+
1643
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1644
+
1645
+
1646
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1647
+
1648
+
1649
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1650
+
1651
+
1652
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1653
+
1654
+
1655
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1656
+
1657
+
1658
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:53:07 +0800
1659
+
1660
+
1661
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:53:08 +0800
1662
+ Processing by AppointmentsController#new as HTML
1663
+ Rendered appointments/new.slim within layouts/application (2.6ms)
1664
+ Completed 200 OK in 79ms (Views: 78.2ms | ActiveRecord: 0.0ms)
1665
+
1666
+
1667
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:53:31 +0800
1668
+ Processing by AppointmentsController#new as HTML
1669
+ Rendered appointments/new.slim within layouts/application (49.2ms)
1670
+ Completed 200 OK in 125ms (Views: 124.2ms | ActiveRecord: 0.0ms)
1671
+
1672
+
1673
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1674
+
1675
+
1676
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1677
+
1678
+
1679
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1680
+
1681
+
1682
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1683
+
1684
+
1685
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1686
+
1687
+
1688
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1689
+
1690
+
1691
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1692
+
1693
+
1694
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1695
+
1696
+
1697
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1698
+
1699
+
1700
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1701
+
1702
+
1703
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1704
+
1705
+
1706
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1707
+
1708
+
1709
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1710
+
1711
+
1712
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1713
+
1714
+
1715
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1716
+
1717
+
1718
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1719
+
1720
+
1721
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1722
+
1723
+
1724
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:53:31 +0800
1725
+
1726
+
1727
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 13:53:31 +0800
1728
+
1729
+
1730
+ Started GET "/" for ::1 at 2015-02-24 13:53:54 +0800
1731
+ Processing by AppointmentsController#index as HTML
1732
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
1733
+ Rendered appointments/index.slim within layouts/application (0.9ms)
1734
+ Completed 200 OK in 66ms (Views: 65.6ms | ActiveRecord: 0.1ms)
1735
+
1736
+
1737
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1738
+
1739
+
1740
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1741
+
1742
+
1743
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1744
+
1745
+
1746
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1747
+
1748
+
1749
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1750
+
1751
+
1752
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1753
+
1754
+
1755
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1756
+
1757
+
1758
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1759
+
1760
+
1761
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1762
+
1763
+
1764
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1765
+
1766
+
1767
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1768
+
1769
+
1770
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1771
+
1772
+
1773
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1774
+
1775
+
1776
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1777
+
1778
+
1779
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1780
+
1781
+
1782
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1783
+
1784
+
1785
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1786
+
1787
+
1788
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 13:53:55 +0800
1789
+
1790
+
1791
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:53:56 +0800
1792
+ Processing by AppointmentsController#new as HTML
1793
+ Rendered appointments/new.slim within layouts/application (5.4ms)
1794
+ Completed 200 OK in 69ms (Views: 68.1ms | ActiveRecord: 0.0ms)
1795
+
1796
+
1797
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 13:53:56 +0800
1798
+
1799
+
1800
+ Started GET "/appointments/new" for ::1 at 2015-02-24 13:54:00 +0800
1801
+ Processing by AppointmentsController#new as HTML
1802
+ Rendered appointments/new.slim within layouts/application (2.5ms)
1803
+ Completed 200 OK in 71ms (Views: 71.1ms | ActiveRecord: 0.0ms)
1804
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1805
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1806
+  (0.1ms) select sqlite_version(*)
1807
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1808
+  (0.1ms) SELECT version FROM "schema_migrations"
1809
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1810
+  (1.5ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1811
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1812
+  (0.1ms) select sqlite_version(*)
1813
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1814
+  (0.1ms) SELECT version FROM "schema_migrations"
1815
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1816
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1817
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1818
+  (0.0ms) select sqlite_version(*)
1819
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1820
+  (0.1ms) SELECT version FROM "schema_migrations"
1821
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1822
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1823
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1824
+  (0.1ms) select sqlite_version(*)
1825
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1826
+  (0.1ms) SELECT version FROM "schema_migrations"
1827
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1828
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
1829
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1830
+  (0.1ms) select sqlite_version(*)
1831
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1832
+  (0.1ms) SELECT version FROM "schema_migrations"
1833
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
1834
+
1835
+
1836
+ Started GET "/" for ::1 at 2015-02-24 14:32:48 +0800
1837
+ Processing by AppointmentsController#index as HTML
1838
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
1839
+ Rendered appointments/index.slim within layouts/application (0.7ms)
1840
+ Completed 200 OK in 68ms (Views: 67.4ms | ActiveRecord: 0.1ms)
1841
+
1842
+
1843
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1844
+
1845
+
1846
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1847
+
1848
+
1849
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1850
+
1851
+
1852
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1853
+
1854
+
1855
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1856
+
1857
+
1858
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1859
+
1860
+
1861
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1862
+
1863
+
1864
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1865
+
1866
+
1867
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1868
+
1869
+
1870
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1871
+
1872
+
1873
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1874
+
1875
+
1876
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1877
+
1878
+
1879
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1880
+
1881
+
1882
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1883
+
1884
+
1885
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1886
+
1887
+
1888
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1889
+
1890
+
1891
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1892
+
1893
+
1894
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 14:32:48 +0800
1895
+
1896
+
1897
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:32:50 +0800
1898
+ Processing by AppointmentsController#new as HTML
1899
+ Rendered appointments/new.html.slim within layouts/application (4.8ms)
1900
+ Completed 200 OK in 66ms (Views: 65.5ms | ActiveRecord: 0.0ms)
1901
+
1902
+
1903
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:32:50 +0800
1904
+
1905
+
1906
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:32:52 +0800
1907
+
1908
+
1909
+ Started GET "/assets/jquery-e394adc5e89b50fe24634d4d0bee8333.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1910
+
1911
+
1912
+ Started GET "/assets/bootstrap/alert-eb2ddbc46d38cc5eebf64b20858e31e0.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1913
+
1914
+
1915
+ Started GET "/assets/turbolinks-b186beeb99e5e3387ab311e626469379.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1916
+
1917
+
1918
+ Started GET "/assets/bootstrap/button-44ec99cf4c9120e5304fc4f225b91532.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1919
+
1920
+
1921
+ Started GET "/assets/application-ea3fcd49f6910f9d8b066f6b88ef3385.css?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1922
+
1923
+
1924
+ Started GET "/assets/jquery_ujs-2b4c318854e7f3a64204c50f5ab73cc2.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1925
+
1926
+
1927
+ Started GET "/assets/bootstrap/affix-87e158d3326289eaffd0f164ea1d89ae.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1928
+
1929
+
1930
+ Started GET "/assets/bootstrap/carousel-b985eb57d0269695ca1ceeaf75a63812.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1931
+
1932
+
1933
+ Started GET "/assets/bootstrap/collapse-30124a79edef3d9bc7c20798fbfdb8fb.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1934
+
1935
+
1936
+ Started GET "/assets/bootstrap/dropdown-96284fb3db0d081e1c25fbbe0b722213.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1937
+
1938
+
1939
+ Started GET "/assets/bootstrap/tab-7b4e9bae3e2ed069a9e4802b1c6b87fb.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1940
+
1941
+
1942
+ Started GET "/assets/bootstrap/transition-7461edbe8b2647b0e48aa378b130205a.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1943
+
1944
+
1945
+ Started GET "/assets/bootstrap/scrollspy-1f2f8ab96c2238a7ccfbc6fd64b12d3e.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1946
+
1947
+
1948
+ Started GET "/assets/bootstrap/modal-7bd48944cce755d1eef9daf9bb4dfe7e.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1949
+
1950
+
1951
+ Started GET "/assets/bootstrap/tooltip-54c8e088157d4583036d8837ef2a56a8.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1952
+
1953
+
1954
+ Started GET "/assets/bootstrap/popover-2319cd094fc5bc0727edc19f41b4fe74.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1955
+
1956
+
1957
+ Started GET "/assets/bootstrap-sprockets-66b4f1d5fbadc2069454b35c0c4fa74c.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1958
+
1959
+
1960
+ Started GET "/assets/local_time-430ccbaeb8414916133107234c214183.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1961
+
1962
+ ActionController::RoutingError (No route matches [GET] "/assets/local_time-430ccbaeb8414916133107234c214183.js"):
1963
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1964
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1965
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1966
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1967
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1968
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1969
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1970
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1971
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1972
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1973
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1974
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1975
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1976
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1977
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1978
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1979
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1980
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1981
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1982
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1983
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1984
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1985
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1986
+
1987
+
1988
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1989
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1990
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
1991
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
1992
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.2ms)
1993
+
1994
+
1995
+ Started GET "/assets/moment-c53ed4a8861eb753543b00bc0877a6a8.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1996
+
1997
+
1998
+ Started GET "/assets/bootstrap-datetimepicker-383d7365b3323120ec2cb454a34ba54b.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
1999
+
2000
+
2001
+ Started GET "/assets/datetime_input-4e4f74fac5861717a01982caf0cbfd5f.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2002
+
2003
+
2004
+ Started GET "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2005
+
2006
+ ActionController::RoutingError (No route matches [GET] "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js"):
2007
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2008
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2009
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2010
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2011
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2012
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2013
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2014
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2015
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2016
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2017
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2018
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2019
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2020
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2021
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2022
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2023
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2024
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2025
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2026
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2027
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2028
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2029
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2030
+
2031
+
2032
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2033
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2034
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
2035
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2036
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.3ms)
2037
+
2038
+
2039
+ Started GET "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2040
+
2041
+ ActionController::RoutingError (No route matches [GET] "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js"):
2042
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2043
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2044
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2045
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2046
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2047
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2048
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2049
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2050
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2051
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2052
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2053
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2054
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2055
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2056
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2057
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2058
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2059
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2060
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2061
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2062
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2063
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2064
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2065
+
2066
+
2067
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2068
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2069
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
2070
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2071
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.7ms)
2072
+
2073
+
2074
+ Started GET "/assets/application-5bd4d8693e26fcc2fb01d10158e23b42.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2075
+
2076
+
2077
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2078
+
2079
+
2080
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-4c18eb6f51df3274f7d02dcd79043b73.woff" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2081
+
2082
+
2083
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-b491e790954a68a98fde7e4977dca71f.ttf" for 127.0.0.1 at 2015-02-24 14:34:15 +0800
2084
+
2085
+
2086
+ Started GET "/assets/local_time-430ccbaeb8414916133107234c214183.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2087
+
2088
+ ActionController::RoutingError (No route matches [GET] "/assets/local_time-430ccbaeb8414916133107234c214183.js"):
2089
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2090
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2091
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2092
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2093
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2094
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2095
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2096
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2097
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2098
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2099
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2100
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2101
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2102
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2103
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2104
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2105
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2106
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2107
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2108
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2109
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2110
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2111
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2112
+
2113
+
2114
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2115
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2116
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
2117
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2118
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.2ms)
2119
+
2120
+
2121
+ Started GET "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2122
+
2123
+ ActionController::RoutingError (No route matches [GET] "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js"):
2124
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2125
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2126
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2127
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2128
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2129
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2130
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2131
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2132
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2133
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2134
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2135
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2136
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2137
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2138
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2139
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2140
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2141
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2142
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2143
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2144
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2145
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2146
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2147
+
2148
+
2149
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
2150
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2151
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
2152
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2153
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.7ms)
2154
+
2155
+
2156
+ Started GET "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js?body=1" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2157
+
2158
+ ActionController::RoutingError (No route matches [GET] "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js"):
2159
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2160
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2161
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2162
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2163
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2164
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2165
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2166
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2167
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2168
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2169
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2170
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2171
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2172
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2173
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2174
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2175
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2176
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2177
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2178
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2179
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2180
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2181
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2182
+
2183
+
2184
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
2185
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2186
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2187
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
2188
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.8ms)
2189
+
2190
+
2191
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2192
+
2193
+
2194
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-4c18eb6f51df3274f7d02dcd79043b73.woff" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2195
+
2196
+
2197
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-b491e790954a68a98fde7e4977dca71f.ttf" for 127.0.0.1 at 2015-02-24 14:34:21 +0800
2198
+
2199
+
2200
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:35:10 +0800
2201
+
2202
+
2203
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:35:14 +0800
2204
+
2205
+
2206
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:36:24 +0800
2207
+
2208
+
2209
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:36:47 +0800
2210
+ Processing by AppointmentsController#new as HTML
2211
+ Rendered appointments/new.html.slim within layouts/application (6.2ms)
2212
+ Completed 200 OK in 87ms (Views: 86.5ms | ActiveRecord: 0.0ms)
2213
+
2214
+
2215
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2216
+
2217
+
2218
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2219
+
2220
+
2221
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2222
+
2223
+
2224
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2225
+
2226
+
2227
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2228
+
2229
+
2230
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2231
+
2232
+
2233
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2234
+
2235
+
2236
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2237
+
2238
+
2239
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2240
+
2241
+
2242
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2243
+
2244
+
2245
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2246
+
2247
+
2248
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2249
+
2250
+
2251
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2252
+
2253
+
2254
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2255
+
2256
+
2257
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2258
+
2259
+
2260
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2261
+
2262
+
2263
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2264
+
2265
+
2266
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 14:36:48 +0800
2267
+
2268
+
2269
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:36:48 +0800
2270
+
2271
+
2272
+ Started GET "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js?body=1" for 127.0.0.1 at 2015-02-24 14:36:55 +0800
2273
+
2274
+ ActionController::RoutingError (No route matches [GET] "/assets/application/home-e20b674ed0218611b15ec6d1f047c45b.js"):
2275
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2276
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2277
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2278
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2279
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2280
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2281
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2282
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2283
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2284
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2285
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2286
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2287
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2288
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2289
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2290
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2291
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2292
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2293
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2294
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2295
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2296
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2297
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2298
+
2299
+
2300
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2301
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
2302
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
2303
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2304
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.6ms)
2305
+
2306
+
2307
+ Started GET "/assets/local_time-430ccbaeb8414916133107234c214183.js?body=1" for 127.0.0.1 at 2015-02-24 14:36:55 +0800
2308
+
2309
+ ActionController::RoutingError (No route matches [GET] "/assets/local_time-430ccbaeb8414916133107234c214183.js"):
2310
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2311
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2312
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2313
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2314
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2315
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2316
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2317
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2318
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2319
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2320
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2321
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2322
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2323
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2324
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2325
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2326
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2327
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2328
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2329
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2330
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2331
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2332
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2333
+
2334
+
2335
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
2336
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
2337
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
2338
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2339
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.4ms)
2340
+
2341
+
2342
+ Started GET "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js?body=1" for 127.0.0.1 at 2015-02-24 14:36:55 +0800
2343
+
2344
+ ActionController::RoutingError (No route matches [GET] "/assets/basement-f3ac7004e6f23cf6b521d5aec0c1ca3f.js"):
2345
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2346
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2347
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
2348
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
2349
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2350
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2351
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2352
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
2353
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2354
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2355
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2356
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2357
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2358
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
2359
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2360
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
2361
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
2362
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2363
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2364
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2365
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2366
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2367
+ /Users/Juan/.rubies/ruby-2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2368
+
2369
+
2370
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2371
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2372
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
2373
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2374
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.7ms)
2375
+
2376
+
2377
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for 127.0.0.1 at 2015-02-24 14:36:55 +0800
2378
+
2379
+
2380
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-4c18eb6f51df3274f7d02dcd79043b73.woff" for 127.0.0.1 at 2015-02-24 14:36:56 +0800
2381
+
2382
+
2383
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-b491e790954a68a98fde7e4977dca71f.ttf" for 127.0.0.1 at 2015-02-24 14:36:56 +0800
2384
+
2385
+
2386
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:37:37 +0800
2387
+ Processing by AppointmentsController#new as HTML
2388
+ Rendered appointments/new.html.slim within layouts/application (4.9ms)
2389
+ Completed 200 OK in 62ms (Views: 61.5ms | ActiveRecord: 0.0ms)
2390
+
2391
+
2392
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2393
+
2394
+
2395
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2396
+
2397
+
2398
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2399
+
2400
+
2401
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2402
+
2403
+
2404
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2405
+
2406
+
2407
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2408
+
2409
+
2410
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2411
+
2412
+
2413
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2414
+
2415
+
2416
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2417
+
2418
+
2419
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2420
+
2421
+
2422
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2423
+
2424
+
2425
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2426
+
2427
+
2428
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2429
+
2430
+
2431
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2432
+
2433
+
2434
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2435
+
2436
+
2437
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2438
+
2439
+
2440
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2441
+
2442
+
2443
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 14:37:37 +0800
2444
+
2445
+
2446
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:37:37 +0800
2447
+
2448
+
2449
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:37:52 +0800
2450
+ Processing by AppointmentsController#new as HTML
2451
+ Rendered appointments/new.html.slim within layouts/application (6.3ms)
2452
+ Completed 200 OK in 76ms (Views: 75.0ms | ActiveRecord: 0.0ms)
2453
+
2454
+
2455
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2456
+
2457
+
2458
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2459
+
2460
+
2461
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2462
+
2463
+
2464
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2465
+
2466
+
2467
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2468
+
2469
+
2470
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2471
+
2472
+
2473
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2474
+
2475
+
2476
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2477
+
2478
+
2479
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2480
+
2481
+
2482
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2483
+
2484
+
2485
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2486
+
2487
+
2488
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2489
+
2490
+
2491
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2492
+
2493
+
2494
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2495
+
2496
+
2497
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2498
+
2499
+
2500
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2501
+
2502
+
2503
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2504
+
2505
+
2506
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 14:37:52 +0800
2507
+
2508
+
2509
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:37:52 +0800
2510
+
2511
+
2512
+ Started POST "/appointments" for ::1 at 2015-02-24 14:37:53 +0800
2513
+ Processing by AppointmentsController#create as HTML
2514
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"KGx3Fb+VRmnO+0d0e42xV/Fb02TciMNQ6O5zqLsOEQ8t7NLnM3xSlssVCozxfqFOjw4q2hzomJZWS1QzSidNtg==", "appointment"=>{"scheduled_at"=>""}, "commit"=>"Create Appointment"}
2515
+  (0.1ms) begin transaction
2516
+ SQL (0.8ms) INSERT INTO "appointments" DEFAULT VALUES
2517
+  (1.9ms) commit transaction
2518
+ Redirected to http://localhost:3000/
2519
+ Completed 302 Found in 8ms (ActiveRecord: 2.7ms)
2520
+
2521
+
2522
+ Started GET "/" for ::1 at 2015-02-24 14:37:53 +0800
2523
+ Processing by AppointmentsController#index as HTML
2524
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
2525
+ Rendered appointments/index.slim within layouts/application (1.0ms)
2526
+ Completed 200 OK in 62ms (Views: 61.3ms | ActiveRecord: 0.1ms)
2527
+
2528
+
2529
+ Started GET "/assets/application-890f66a570b08f813f8158551f99f641.css?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2530
+
2531
+
2532
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2533
+
2534
+
2535
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2536
+
2537
+
2538
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2539
+
2540
+
2541
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2542
+
2543
+
2544
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2545
+
2546
+
2547
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2548
+
2549
+
2550
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2551
+
2552
+
2553
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2554
+
2555
+
2556
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2557
+
2558
+
2559
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2560
+
2561
+
2562
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2563
+
2564
+
2565
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2566
+
2567
+
2568
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2569
+
2570
+
2571
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2572
+
2573
+
2574
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2575
+
2576
+
2577
+ Started GET "/assets/application-4fa9ccf250466434bb4209229b39bd8c.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2578
+
2579
+
2580
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:37:53 +0800
2581
+
2582
+
2583
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:37:55 +0800
2584
+
2585
+
2586
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:39:41 +0800
2587
+ Processing by AppointmentsController#new as HTML
2588
+ Rendered appointments/new.html.slim within layouts/application (2.6ms)
2589
+ Completed 200 OK in 2032ms (Views: 2031.0ms | ActiveRecord: 0.0ms)
2590
+
2591
+
2592
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2593
+
2594
+
2595
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2596
+
2597
+
2598
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2599
+
2600
+
2601
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2602
+
2603
+
2604
+ Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2605
+
2606
+
2607
+ Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2608
+
2609
+
2610
+ Started GET "/assets/application-8b46cac90221106006a918a438b0ea95.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2611
+
2612
+
2613
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2614
+
2615
+
2616
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2617
+
2618
+
2619
+ Started GET "/assets/datetime_input-4dc47c2b25f6fcffcb8d918be89f8065.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2620
+
2621
+
2622
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2623
+
2624
+
2625
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2626
+
2627
+
2628
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2629
+
2630
+
2631
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2632
+
2633
+
2634
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2635
+
2636
+
2637
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2638
+
2639
+
2640
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2641
+
2642
+
2643
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2644
+
2645
+
2646
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2647
+
2648
+
2649
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2650
+
2651
+
2652
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:39:43 +0800
2653
+
2654
+
2655
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:39:43 +0800
2656
+
2657
+
2658
+ Started GET "/" for ::1 at 2015-02-24 14:40:00 +0800
2659
+ Processing by AppointmentsController#index as HTML
2660
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
2661
+ Rendered appointments/index.slim within layouts/application (1.1ms)
2662
+ Completed 200 OK in 97ms (Views: 96.0ms | ActiveRecord: 0.1ms)
2663
+
2664
+
2665
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2666
+
2667
+
2668
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2669
+
2670
+
2671
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2672
+
2673
+
2674
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2675
+
2676
+
2677
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2678
+
2679
+
2680
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2681
+
2682
+
2683
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2684
+
2685
+
2686
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2687
+
2688
+
2689
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2690
+
2691
+
2692
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2693
+
2694
+
2695
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2696
+
2697
+
2698
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2699
+
2700
+
2701
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2702
+
2703
+
2704
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2705
+
2706
+
2707
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2708
+
2709
+
2710
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:40:00 +0800
2711
+
2712
+
2713
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:40:18 +0800
2714
+ Processing by AppointmentsController#new as HTML
2715
+ Rendered appointments/new.html.slim within layouts/application (4.9ms)
2716
+ Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
2717
+
2718
+
2719
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:40:18 +0800
2720
+
2721
+
2722
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:40:59 +0800
2723
+ Processing by AppointmentsController#new as HTML
2724
+ Rendered appointments/new.html.slim within layouts/application (2.5ms)
2725
+ Completed 200 OK in 88ms (Views: 87.9ms | ActiveRecord: 0.0ms)
2726
+  (0.7ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2727
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2728
+  (0.0ms) select sqlite_version(*)
2729
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2730
+  (0.1ms) SELECT version FROM "schema_migrations"
2731
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2732
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2733
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2734
+  (0.1ms) select sqlite_version(*)
2735
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2736
+  (0.1ms) SELECT version FROM "schema_migrations"
2737
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2738
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2739
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2740
+  (0.0ms) select sqlite_version(*)
2741
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2742
+  (0.1ms) SELECT version FROM "schema_migrations"
2743
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2744
+  (1.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2745
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2746
+  (0.1ms) select sqlite_version(*)
2747
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2748
+  (0.1ms) SELECT version FROM "schema_migrations"
2749
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2750
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2751
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2752
+  (0.1ms) select sqlite_version(*)
2753
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2754
+  (0.1ms) SELECT version FROM "schema_migrations"
2755
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2756
+
2757
+
2758
+ Started GET "/appointments/new" for ::1 at 2015-02-24 14:50:16 +0800
2759
+ Processing by AppointmentsController#new as HTML
2760
+ Rendered appointments/new.html.slim within layouts/application (4.0ms)
2761
+ Completed 200 OK in 81ms (Views: 80.1ms | ActiveRecord: 0.0ms)
2762
+
2763
+
2764
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2765
+
2766
+
2767
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2768
+
2769
+
2770
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2771
+
2772
+
2773
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2774
+
2775
+
2776
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2777
+
2778
+
2779
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2780
+
2781
+
2782
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2783
+
2784
+
2785
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2786
+
2787
+
2788
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2789
+
2790
+
2791
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2792
+
2793
+
2794
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2795
+
2796
+
2797
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2798
+
2799
+
2800
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2801
+
2802
+
2803
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2804
+
2805
+
2806
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2807
+
2808
+
2809
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2810
+
2811
+
2812
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2813
+
2814
+
2815
+ Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2816
+
2817
+
2818
+ Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2819
+
2820
+
2821
+ Started GET "/assets/datetime_input-4dc47c2b25f6fcffcb8d918be89f8065.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2822
+
2823
+
2824
+ Started GET "/assets/application-8b46cac90221106006a918a438b0ea95.js?body=1" for ::1 at 2015-02-24 14:50:17 +0800
2825
+
2826
+
2827
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 14:50:17 +0800
2828
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2829
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2830
+  (0.1ms) select sqlite_version(*)
2831
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2832
+  (0.1ms) SELECT version FROM "schema_migrations"
2833
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2834
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2835
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2836
+  (0.1ms) select sqlite_version(*)
2837
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2838
+  (0.1ms) SELECT version FROM "schema_migrations"
2839
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2840
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2841
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2842
+  (0.1ms) select sqlite_version(*)
2843
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2844
+  (0.1ms) SELECT version FROM "schema_migrations"
2845
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2846
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2847
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2848
+  (0.1ms) select sqlite_version(*)
2849
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2850
+  (0.1ms) SELECT version FROM "schema_migrations"
2851
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2852
+  (0.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2853
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2854
+  (0.1ms) select sqlite_version(*)
2855
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2856
+  (0.1ms) SELECT version FROM "schema_migrations"
2857
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2858
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2859
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2860
+  (0.1ms) select sqlite_version(*)
2861
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2862
+  (0.1ms) SELECT version FROM "schema_migrations"
2863
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2864
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2865
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2866
+  (0.1ms) select sqlite_version(*)
2867
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2868
+  (0.1ms) SELECT version FROM "schema_migrations"
2869
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2870
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2871
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2872
+  (0.1ms) select sqlite_version(*)
2873
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2874
+  (0.1ms) SELECT version FROM "schema_migrations"
2875
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2876
+  (1.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2877
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2878
+  (0.1ms) select sqlite_version(*)
2879
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2880
+  (0.1ms) SELECT version FROM "schema_migrations"
2881
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2882
+  (0.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2883
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2884
+  (0.1ms) select sqlite_version(*)
2885
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2886
+  (0.1ms) SELECT version FROM "schema_migrations"
2887
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2888
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2889
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2890
+  (0.0ms) select sqlite_version(*)
2891
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2892
+  (0.1ms) SELECT version FROM "schema_migrations"
2893
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2894
+  (1.4ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2895
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2896
+  (0.0ms) select sqlite_version(*)
2897
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2898
+  (0.1ms) SELECT version FROM "schema_migrations"
2899
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2900
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2901
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2902
+  (0.0ms) select sqlite_version(*)
2903
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2904
+  (0.1ms) SELECT version FROM "schema_migrations"
2905
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2906
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2907
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2908
+  (0.0ms) select sqlite_version(*)
2909
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2910
+  (0.1ms) SELECT version FROM "schema_migrations"
2911
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
2912
+
2913
+
2914
+ Started GET "/" for ::1 at 2015-02-24 15:12:31 +0800
2915
+ Processing by AppointmentsController#index as HTML
2916
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
2917
+ Rendered appointments/index.slim within layouts/application (0.9ms)
2918
+ Completed 200 OK in 87ms (Views: 86.2ms | ActiveRecord: 0.1ms)
2919
+
2920
+
2921
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2922
+
2923
+
2924
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2925
+
2926
+
2927
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2928
+
2929
+
2930
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2931
+
2932
+
2933
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2934
+
2935
+
2936
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2937
+
2938
+
2939
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2940
+
2941
+
2942
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2943
+
2944
+
2945
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2946
+
2947
+
2948
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2949
+
2950
+
2951
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2952
+
2953
+
2954
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2955
+
2956
+
2957
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2958
+
2959
+
2960
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2961
+
2962
+
2963
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2964
+
2965
+
2966
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2967
+
2968
+
2969
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2970
+
2971
+
2972
+ Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2973
+
2974
+
2975
+ Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2976
+
2977
+
2978
+ Started GET "/assets/datetime_input-4dc47c2b25f6fcffcb8d918be89f8065.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2979
+
2980
+
2981
+ Started GET "/assets/application-8b46cac90221106006a918a438b0ea95.js?body=1" for ::1 at 2015-02-24 15:12:32 +0800
2982
+
2983
+
2984
+ Started GET "/appointments/new" for ::1 at 2015-02-24 15:12:33 +0800
2985
+ Processing by AppointmentsController#new as HTML
2986
+ Rendered appointments/new.html.slim within layouts/application (3.2ms)
2987
+ Completed 200 OK in 66ms (Views: 65.0ms | ActiveRecord: 0.0ms)
2988
+
2989
+
2990
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-24 15:12:33 +0800
2991
+
2992
+
2993
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-24 15:12:34 +0800
2994
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
2995
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2996
+  (0.1ms) select sqlite_version(*)
2997
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2998
+  (0.1ms) SELECT version FROM "schema_migrations"
2999
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3000
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3001
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3002
+  (0.1ms) select sqlite_version(*)
3003
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3004
+  (0.2ms) SELECT version FROM "schema_migrations"
3005
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3006
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3007
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3008
+  (0.1ms) select sqlite_version(*)
3009
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3010
+  (0.1ms) SELECT version FROM "schema_migrations"
3011
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3012
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3013
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3014
+  (0.1ms) select sqlite_version(*)
3015
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3016
+  (0.1ms) SELECT version FROM "schema_migrations"
3017
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3018
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3019
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3020
+  (0.2ms) select sqlite_version(*)
3021
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3022
+  (0.1ms) SELECT version FROM "schema_migrations"
3023
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3024
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3025
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3026
+  (0.0ms) select sqlite_version(*)
3027
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3028
+  (0.1ms) SELECT version FROM "schema_migrations"
3029
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3030
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3031
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3032
+  (0.1ms) select sqlite_version(*)
3033
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3034
+  (0.1ms) SELECT version FROM "schema_migrations"
3035
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3036
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3037
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3038
+  (0.1ms) select sqlite_version(*)
3039
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3040
+  (0.1ms) SELECT version FROM "schema_migrations"
3041
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3042
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3043
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3044
+  (0.2ms) select sqlite_version(*)
3045
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3046
+  (0.1ms) SELECT version FROM "schema_migrations"
3047
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3048
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3049
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3050
+  (0.0ms) select sqlite_version(*)
3051
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3052
+  (0.1ms) SELECT version FROM "schema_migrations"
3053
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3054
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3055
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3056
+  (0.1ms) select sqlite_version(*)
3057
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3058
+  (0.1ms) SELECT version FROM "schema_migrations"
3059
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3060
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3061
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3062
+  (0.1ms) select sqlite_version(*)
3063
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3064
+  (0.1ms) SELECT version FROM "schema_migrations"
3065
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3066
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3067
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3068
+  (0.0ms) select sqlite_version(*)
3069
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3070
+  (0.1ms) SELECT version FROM "schema_migrations"
3071
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3072
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3073
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3074
+  (0.1ms) select sqlite_version(*)
3075
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3076
+  (0.1ms) SELECT version FROM "schema_migrations"
3077
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3078
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3079
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3080
+  (0.0ms) select sqlite_version(*)
3081
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3082
+  (0.1ms) SELECT version FROM "schema_migrations"
3083
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3084
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3085
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3086
+  (0.1ms) select sqlite_version(*)
3087
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3088
+  (0.1ms) SELECT version FROM "schema_migrations"
3089
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3090
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3091
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3092
+  (0.1ms) select sqlite_version(*)
3093
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3094
+  (0.1ms) SELECT version FROM "schema_migrations"
3095
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3096
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3097
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3098
+  (0.1ms) select sqlite_version(*)
3099
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3100
+  (0.1ms) SELECT version FROM "schema_migrations"
3101
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3102
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3103
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3104
+  (0.1ms) select sqlite_version(*)
3105
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3106
+  (0.1ms) SELECT version FROM "schema_migrations"
3107
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3108
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3109
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3110
+  (0.1ms) select sqlite_version(*)
3111
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3112
+  (0.1ms) SELECT version FROM "schema_migrations"
3113
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3114
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3115
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3116
+  (0.1ms) select sqlite_version(*)
3117
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3118
+  (0.1ms) SELECT version FROM "schema_migrations"
3119
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3120
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3121
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3122
+  (0.1ms) select sqlite_version(*)
3123
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3124
+  (0.1ms) SELECT version FROM "schema_migrations"
3125
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3126
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3127
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3128
+  (0.1ms) select sqlite_version(*)
3129
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3130
+  (0.1ms) SELECT version FROM "schema_migrations"
3131
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3132
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3133
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3134
+  (0.0ms) select sqlite_version(*)
3135
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3136
+  (0.1ms) SELECT version FROM "schema_migrations"
3137
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3138
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3139
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3140
+  (0.0ms) select sqlite_version(*)
3141
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3142
+  (0.1ms) SELECT version FROM "schema_migrations"
3143
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3144
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3145
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3146
+  (0.0ms) select sqlite_version(*)
3147
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3148
+  (0.1ms) SELECT version FROM "schema_migrations"
3149
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3150
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3151
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3152
+  (0.1ms) select sqlite_version(*)
3153
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3154
+  (0.1ms) SELECT version FROM "schema_migrations"
3155
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3156
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3157
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3158
+  (0.0ms) select sqlite_version(*)
3159
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3160
+  (0.1ms) SELECT version FROM "schema_migrations"
3161
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3162
+  (1.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3163
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3164
+  (0.0ms) select sqlite_version(*)
3165
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3166
+  (0.1ms) SELECT version FROM "schema_migrations"
3167
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3168
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3169
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3170
+  (0.1ms) select sqlite_version(*)
3171
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3172
+  (0.1ms) SELECT version FROM "schema_migrations"
3173
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3174
+
3175
+
3176
+ Started GET "/" for ::1 at 2015-02-26 14:39:20 +0800
3177
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3178
+ Processing by AppointmentsController#index as HTML
3179
+ Appointment Load (0.1ms) SELECT "appointments".* FROM "appointments"
3180
+ Rendered appointments/index.html.slim within layouts/application (12.3ms)
3181
+ Completed 200 OK in 2905ms (Views: 2897.5ms | ActiveRecord: 0.3ms)
3182
+
3183
+
3184
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3185
+
3186
+
3187
+ Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3188
+
3189
+
3190
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3191
+
3192
+
3193
+ Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3194
+
3195
+
3196
+ Started GET "/assets/datetime_picker_input-e5f2ba064552406fa8838767efac72b8.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3197
+
3198
+
3199
+ Started GET "/assets/application-d3cf3f1a766b509b306c6384fb48e152.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3200
+
3201
+
3202
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3203
+
3204
+
3205
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3206
+
3207
+
3208
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3209
+
3210
+
3211
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3212
+
3213
+
3214
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3215
+
3216
+
3217
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3218
+
3219
+
3220
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3221
+
3222
+
3223
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3224
+
3225
+
3226
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3227
+
3228
+
3229
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3230
+
3231
+
3232
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3233
+
3234
+
3235
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3236
+
3237
+
3238
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3239
+
3240
+
3241
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3242
+
3243
+
3244
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-26 14:39:23 +0800
3245
+
3246
+
3247
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:39:25 +0800
3248
+ Processing by AppointmentsController#new as HTML
3249
+ Rendered appointments/new.html.slim within layouts/application (25.6ms)
3250
+ Completed 500 Internal Server Error in 29ms
3251
+
3252
+ ActionView::Template::Error (undefined method `new' for DatetimePickerInput:Module):
3253
+ 2: h1 New Appointment
3254
+ 3:
3255
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3256
+ 5: = f.input :scheduled_at, as: :datetime_picker
3257
+ 6: = f.submit
3258
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___3646184153468638851_70103485141320'
3259
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___3646184153468638851_70103485141320'
3260
+
3261
+
3262
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.8ms)
3263
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
3264
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3265
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.2ms)
3266
+
3267
+
3268
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:39:25 +0800
3269
+ Processing by AppointmentsController#new as HTML
3270
+ Rendered appointments/new.html.slim within layouts/application (4.4ms)
3271
+ Completed 500 Internal Server Error in 7ms
3272
+
3273
+ ActionView::Template::Error (undefined method `new' for DatetimePickerInput:Module):
3274
+ 2: h1 New Appointment
3275
+ 3:
3276
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3277
+ 5: = f.input :scheduled_at, as: :datetime_picker
3278
+ 6: = f.submit
3279
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3280
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3281
+
3282
+
3283
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
3284
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3285
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
3286
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.7ms)
3287
+
3288
+
3289
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:40:00 +0800
3290
+ Processing by AppointmentsController#new as HTML
3291
+ Rendered appointments/new.html.slim within layouts/application (1.4ms)
3292
+ Completed 500 Internal Server Error in 10ms
3293
+
3294
+ ActionView::Template::Error (undefined method `new' for DatetimePickerInput:Module):
3295
+ 2: h1 New Appointment
3296
+ 3:
3297
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3298
+ 5: = f.input :scheduled_at, as: :datetime_picker
3299
+ 6: = f.submit
3300
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3301
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3302
+
3303
+
3304
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
3305
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3306
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3307
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.2ms)
3308
+
3309
+
3310
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:40:02 +0800
3311
+ Processing by AppointmentsController#new as HTML
3312
+ Rendered appointments/new.html.slim within layouts/application (1.2ms)
3313
+ Completed 500 Internal Server Error in 5ms
3314
+
3315
+ ActionView::Template::Error (undefined method `new' for DatetimePickerInput:Module):
3316
+ 2: h1 New Appointment
3317
+ 3:
3318
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3319
+ 5: = f.input :scheduled_at, as: :datetime_picker
3320
+ 6: = f.submit
3321
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3322
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___3646184153468638851_70103471253040'
3323
+
3324
+
3325
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
3326
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
3327
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3328
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.6ms)
3329
+
3330
+
3331
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:40:10 +0800
3332
+ Processing by AppointmentsController#new as HTML
3333
+ Rendered appointments/new.html.slim within layouts/application (5.8ms)
3334
+ Completed 500 Internal Server Error in 9ms
3335
+
3336
+ ActionView::Template::Error (No input found for date_time_picker):
3337
+ 2: h1 New Appointment
3338
+ 3:
3339
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3340
+ 5: = f.input :scheduled_at, as: :date_time_picker
3341
+ 6: = f.submit
3342
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___3646184153468638851_70103430858340'
3343
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___3646184153468638851_70103430858340'
3344
+
3345
+
3346
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
3347
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3348
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
3349
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.0ms)
3350
+
3351
+
3352
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:40:20 +0800
3353
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3354
+ Processing by AppointmentsController#new as HTML
3355
+ Rendered appointments/new.html.slim within layouts/application (33.6ms)
3356
+ Completed 500 Internal Server Error in 49ms
3357
+
3358
+ ActionView::Template::Error (No input found for date_time_picker):
3359
+ 2: h1 New Appointment
3360
+ 3:
3361
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3362
+ 5: = f.input :scheduled_at, as: :date_time_picker
3363
+ 6: = f.submit
3364
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim__4281112800707497896_70245000629720'
3365
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim__4281112800707497896_70245000629720'
3366
+
3367
+
3368
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
3369
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
3370
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3371
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.3ms)
3372
+
3373
+
3374
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:41:51 +0800
3375
+ Processing by AppointmentsController#new as HTML
3376
+ Rendered appointments/new.html.slim within layouts/application (4.7ms)
3377
+ Completed 500 Internal Server Error in 11ms
3378
+
3379
+ ActionView::Template::Error (No input found for date_time_picker):
3380
+ 2: h1 New Appointment
3381
+ 3:
3382
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3383
+ 5: = f.input :scheduled_at, as: :date_time_picker
3384
+ 6: = f.submit
3385
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3386
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3387
+
3388
+
3389
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
3390
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3391
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3392
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.2ms)
3393
+
3394
+
3395
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:42:27 +0800
3396
+ Processing by AppointmentsController#new as HTML
3397
+ Rendered appointments/new.html.slim within layouts/application (2.3ms)
3398
+ Completed 500 Internal Server Error in 6ms
3399
+
3400
+ ActionView::Template::Error (No input found for date_time_picker):
3401
+ 2: h1 New Appointment
3402
+ 3:
3403
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3404
+ 5: = f.input :scheduled_at, as: :date_time_picker
3405
+ 6: = f.submit
3406
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3407
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3408
+
3409
+
3410
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
3411
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
3412
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3413
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.6ms)
3414
+
3415
+
3416
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:42:51 +0800
3417
+ Processing by AppointmentsController#new as HTML
3418
+ Rendered appointments/new.html.slim within layouts/application (2.9ms)
3419
+ Completed 500 Internal Server Error in 10ms
3420
+
3421
+ ActionView::Template::Error (No input found for date_time_picker):
3422
+ 2: h1 New Appointment
3423
+ 3:
3424
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3425
+ 5: = f.input :scheduled_at, as: :date_time_picker
3426
+ 6: = f.submit
3427
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3428
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3429
+
3430
+
3431
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
3432
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3433
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3434
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.1ms)
3435
+
3436
+
3437
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:43:59 +0800
3438
+ Processing by AppointmentsController#new as HTML
3439
+ Rendered appointments/new.html.slim within layouts/application (3.6ms)
3440
+ Completed 500 Internal Server Error in 7ms
3441
+
3442
+ ActionView::Template::Error (No input found for date_time_picker):
3443
+ 2: h1 New Appointment
3444
+ 3:
3445
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3446
+ 5: = f.input :scheduled_at, as: :date_time_picker
3447
+ 6: = f.submit
3448
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3449
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim__4281112800707497896_70244992353080'
3450
+
3451
+
3452
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
3453
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms)
3454
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3455
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.1ms)
3456
+
3457
+
3458
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:44:11 +0800
3459
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3460
+ Processing by AppointmentsController#new as HTML
3461
+ Rendered appointments/new.html.slim within layouts/application (35.4ms)
3462
+ Completed 500 Internal Server Error in 51ms
3463
+
3464
+ ActionView::Template::Error (No input found for date_time_picker):
3465
+ 2: h1 New Appointment
3466
+ 3:
3467
+ 4: = simple_form_for @appointment, html: { class: "form-horizontal" } do |f|
3468
+ 5: = f.input :scheduled_at, as: :date_time_picker
3469
+ 6: = f.submit
3470
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3471
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3472
+
3473
+
3474
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
3475
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
3476
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
3477
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.0ms)
3478
+
3479
+
3480
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:44:45 +0800
3481
+ Processing by AppointmentsController#new as HTML
3482
+ Rendered appointments/new.html.slim within layouts/application (13.2ms)
3483
+ Completed 500 Internal Server Error in 16ms
3484
+
3485
+ NotImplementedError (NotImplementedError):
3486
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3487
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3488
+
3489
+
3490
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
3491
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
3492
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3493
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.7ms)
3494
+
3495
+
3496
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:44:47 +0800
3497
+ Processing by AppointmentsController#new as HTML
3498
+ Rendered appointments/new.html.slim within layouts/application (1.1ms)
3499
+ Completed 500 Internal Server Error in 4ms
3500
+
3501
+ NotImplementedError (NotImplementedError):
3502
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3503
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3504
+
3505
+
3506
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.7ms)
3507
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
3508
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3509
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.7ms)
3510
+
3511
+
3512
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:44:48 +0800
3513
+ Processing by AppointmentsController#new as HTML
3514
+ Rendered appointments/new.html.slim within layouts/application (1.1ms)
3515
+ Completed 500 Internal Server Error in 4ms
3516
+
3517
+ NotImplementedError (NotImplementedError):
3518
+ app/views/appointments/new.html.slim:5:in `block in _app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3519
+ app/views/appointments/new.html.slim:4:in `_app_views_appointments_new_html_slim___79188491720733168_70359575271660'
3520
+
3521
+
3522
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
3523
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
3524
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3525
+ Rendered /Users/Juan/.gem/ruby/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.4ms)
3526
+
3527
+
3528
+ Started GET "/appointments/new" for ::1 at 2015-02-26 14:45:10 +0800
3529
+ Processing by AppointmentsController#new as HTML
3530
+ Rendered appointments/new.html.slim within layouts/application (5.6ms)
3531
+ Completed 200 OK in 144ms (Views: 141.6ms | ActiveRecord: 0.3ms)
3532
+
3533
+
3534
+ Started GET "/assets/application-0a62de01ca47db5ed7d31c63748c716c.css?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3535
+
3536
+
3537
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3538
+
3539
+
3540
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3541
+
3542
+
3543
+ Started GET "/assets/bootstrap/affix-31984abe1036c1c2f684af192191ce9f.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3544
+
3545
+
3546
+ Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3547
+
3548
+
3549
+ Started GET "/assets/bootstrap/alert-7c03e11fecf6b3ef100f76ae4f08586e.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3550
+
3551
+
3552
+ Started GET "/assets/bootstrap/button-98bba85be4dcdd597554e0b7ce8e33a2.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3553
+
3554
+
3555
+ Started GET "/assets/bootstrap/carousel-93f34f850a932957c93b7605c79faf45.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3556
+
3557
+
3558
+ Started GET "/assets/bootstrap/collapse-7a82a3d4fb154ded3d2702465e21ca00.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3559
+
3560
+
3561
+ Started GET "/assets/bootstrap/dropdown-65c3929585250221f53bae696936ed44.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3562
+
3563
+
3564
+ Started GET "/assets/bootstrap/tab-a90a1841af8c1eae12bfa5283a8093b0.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3565
+
3566
+
3567
+ Started GET "/assets/bootstrap/transition-9e4de96204f41141474e9dbb59570af9.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3568
+
3569
+
3570
+ Started GET "/assets/bootstrap/scrollspy-e550695030be1d627d1ba91b14792316.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3571
+
3572
+
3573
+ Started GET "/assets/bootstrap/modal-ce380b9327d2cf6c826d8df818ea48a1.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3574
+
3575
+
3576
+ Started GET "/assets/bootstrap/tooltip-4d90d4ee015d2df34a7696864b2ea83c.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3577
+
3578
+
3579
+ Started GET "/assets/bootstrap/popover-5a060f876311e7fcb18f35058070de5a.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3580
+
3581
+
3582
+ Started GET "/assets/bootstrap-sprockets-00b1738c651720f44abc4bbf70bedb3e.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3583
+
3584
+
3585
+ Started GET "/assets/moment-66988874bf5714cb1e4a6f53d733b6e1.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3586
+
3587
+
3588
+ Started GET "/assets/bootstrap-datetimepicker-207776b276cc4aec32e5f32af8939235.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3589
+
3590
+
3591
+ Started GET "/assets/datetime_picker_input-e5f2ba064552406fa8838767efac72b8.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3592
+
3593
+
3594
+ Started GET "/assets/application-d3cf3f1a766b509b306c6384fb48e152.js?body=1" for ::1 at 2015-02-26 14:45:10 +0800
3595
+
3596
+
3597
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular-3b21d33cc4addb2ebfe7f625dad8559b.woff2" for ::1 at 2015-02-26 14:45:10 +0800
3598
+  (1.8ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3599
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3600
+  (0.1ms) select sqlite_version(*)
3601
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3602
+  (0.1ms) SELECT version FROM "schema_migrations"
3603
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3604
+  (1.3ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3605
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3606
+  (0.1ms) select sqlite_version(*)
3607
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3608
+  (0.1ms) SELECT version FROM "schema_migrations"
3609
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3610
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3611
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3612
+  (0.1ms) select sqlite_version(*)
3613
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3614
+  (0.1ms) SELECT version FROM "schema_migrations"
3615
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3616
+  (2.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3617
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3618
+  (0.1ms) select sqlite_version(*)
3619
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3620
+  (0.1ms) SELECT version FROM "schema_migrations"
3621
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3622
+  (0.9ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3623
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3624
+  (0.0ms) select sqlite_version(*)
3625
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3626
+  (0.1ms) SELECT version FROM "schema_migrations"
3627
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3628
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3629
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3630
+  (0.1ms) select sqlite_version(*)
3631
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3632
+  (0.1ms) SELECT version FROM "schema_migrations"
3633
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3634
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3635
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3636
+  (0.1ms) select sqlite_version(*)
3637
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3638
+  (0.1ms) SELECT version FROM "schema_migrations"
3639
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3640
+  (1.2ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3641
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3642
+  (0.0ms) select sqlite_version(*)
3643
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3644
+  (0.1ms) SELECT version FROM "schema_migrations"
3645
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3646
+  (1.0ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3647
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3648
+  (0.1ms) select sqlite_version(*)
3649
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3650
+  (0.1ms) SELECT version FROM "schema_migrations"
3651
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')
3652
+  (1.1ms) CREATE TABLE "appointments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scheduled_at" datetime) 
3653
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3654
+  (0.1ms) select sqlite_version(*)
3655
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3656
+  (0.1ms) SELECT version FROM "schema_migrations"
3657
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150224051923')